Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Other Discussions
  3. The Insider News
  4. Microsoft continues hybrid cloud push with stretchable SQL Server

Microsoft continues hybrid cloud push with stretchable SQL Server

Scheduled Pinned Locked Moved The Insider News
databasehtmlsql-servercomsysadmin
3 Posts 3 Posters 1 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    Kent Sharkey
    wrote on last edited by
    #1

    Infoworld[^]:

    A new feature lets enterprises keep hot data on-premises and move cold data to the cloud.

    "Keeps the hot side hot, and the cool side cool."

    D 1 Reply Last reply
    0
    • K Kent Sharkey

      Infoworld[^]:

      A new feature lets enterprises keep hot data on-premises and move cold data to the cloud.

      "Keeps the hot side hot, and the cool side cool."

      D Offline
      D Offline
      Dan Neely
      wrote on last edited by
      #2

      Quote:

      When a table is set up to use SQL Stretch Database, administrators can specify a length of time after which data is automatically moved from their on-premises SQL Server instance to Azure. Applications querying that database table will be able to see both the data stored on-premises and the data stored in Azure. That functionality is key because it means that application developers shouldn't have to modify their work in order to take advantage of the feature -- administrators just need to enable it.

      Really...

      var GetTransaction(int id)
      {
      var allTheThings = RunMeSomeSql("SELECT * FROM AllCustomerTransactions");
      var theOneIWant;
      var foundIt = false;

      foreach (var transaction in allTheThings)
      {
          if (transaction.id == id)
          {
              foundIt = true;
              theOneIWant = transaction;
          }
      
          if (foundIt)
              return theOneIWant;
          else return new Transaction();  //if I return null here it crashes
      }
      

      I can't wait to see how much faster my code'll run after this gets turned on. :doh:

      Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

      P 1 Reply Last reply
      0
      • D Dan Neely

        Quote:

        When a table is set up to use SQL Stretch Database, administrators can specify a length of time after which data is automatically moved from their on-premises SQL Server instance to Azure. Applications querying that database table will be able to see both the data stored on-premises and the data stored in Azure. That functionality is key because it means that application developers shouldn't have to modify their work in order to take advantage of the feature -- administrators just need to enable it.

        Really...

        var GetTransaction(int id)
        {
        var allTheThings = RunMeSomeSql("SELECT * FROM AllCustomerTransactions");
        var theOneIWant;
        var foundIt = false;

        foreach (var transaction in allTheThings)
        {
            if (transaction.id == id)
            {
                foundIt = true;
                theOneIWant = transaction;
            }
        
            if (foundIt)
                return theOneIWant;
            else return new Transaction();  //if I return null here it crashes
        }
        

        I can't wait to see how much faster my code'll run after this gets turned on. :doh:

        Did you ever see history portrayed as an old man with a wise brow and pulseless heart, waging all things in the balance of reason? Is not rather the genius of history like an eternal, imploring maiden, full of fire, with a burning heart and flaming soul, humanly warm and humanly beautiful? --Zachris Topelius Training a telescope on one’s own belly button will only reveal lint. You like that? You go right on staring at it. I prefer looking at galaxies. -- Sarah Hoyt

        P Offline
        P Offline
        Pete OHanlon
        wrote on last edited by
        #3

        Well, if you will insist on doing all your filtering on the client side ;P

        This space for rent

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups