What's the advantage of Sql Azure?

Hi all;
We assumed that Sql Azure handled clustering, but apparently that feature is in beta (and has been making no progress for a long time). So what's the advantage of Sql Azure over having a VM we install Sql Server on? Because it looks to me like the VM route
is equivalent or better (better because you don't get the occasional delay).
I'm not trying to be antagonistic here, just trying to understand the utility of Sql Azure.
??? - thanks - dave
What we did for the last 6 months -
Made the world's coolest reporting & docgen system even more amazing

Hi;
First off, we've never found Sql Server all that much work. Installs easily and then we're off and running.  I understand people finding create & go a big win, but Sql Server is pretty much that already for us.
Our use case is we are creating a cloud app that we hope to see world-wide use of it. So we want to start located in the US & Europe and use TrafficManager to send apps to the closest server. There are 2 key DB records for all the requests we'll get,
the customer & the user.
The user will tend to be on one continent (but not always). But the customer can have employees (users) on every continent. And for each request coming through, we need to get that customer record fast. Very very fast.
I'm guessing that 95% (or more) of our DB activity will be selects. 
Our hope was you had Sql Azure working so it could be instantiated in each data center we have our cloud service and then each is hitting a local DB. But we need it keeping each in-sync with the other because of that customer record (and the user record
in case of TrafficManager switching who they go to because something went down).
This is the one thing we've never been able to get Sql Server (on our servers) to do - sync between instances. So I understand that this is hard (impossible?). But at the same time, I think many have this same need we have.
thanks - dave
What we did for the last 6 months -
Made the world's coolest reporting & docgen system even more amazing

Similar Messages

  • What  are the advantages over sql in pl/sql...can you please answer this?

    Hi,
    what are the main differences between sql and pl/sql...why v are using pl/sql rather then sql...can you please answer this question?

    SQL is used to access the database. PL/SQL is a programming language where SQL is seamlessly integrated. In order to access the database in PL/SQL, you have to use SQL.
    Think of it as two pieces of software, two "engines". If you want to interact with the database, then performance wise it's best to use only one engine (SQL only), instead of two (PL/SQL and SQL). If a PL/SQL program executes a SQL statement, it does a "context switch", i.e. saving its state in PL/SQL before giving control to the SQL engine and vice versa. This is quite fast, but do a lot of them and it is slow, so beware of programming SQL statements inside loops.
    Another way to put it: SQL is a fourth generation language (4GL) where you tell what you want, not how. The software, the optimizer, will decide for you how to process the statement. PL/SQL is a third generation language (3GL), or at least the PL-part is, where you describe how things should be processed. Leading to more code and more control. With every Oracle release, SQL becomes more powerful and the optimizer gets better, so using SQL is increasingly important.
    For complex processing, using PL/SQL is still necessary. But use it with care.
    Hope this helps.
    Regards,
    Rob.

  • What are the advantage of using Oracle Database when compare to SQL SERVER

    Hi all
    Please tell anyone about
    what are the advantage of using Oracle Database when compare to SQL SERVER
    Thanks in advance
    Balamurugan S

    user12842738 wrote:
    Hi,
    There are various differences between the two.
    1. SQL Server is only Windows, but Oracle runs on almost all Platforms.
    2. You can have multiple databases in SQL Server, but Oracle provides you only one database per instance.Given that the very term 'database' has s different meaning in the two products, this "difference" is absolutely meaningless.
    3. SQL Server provides T-SQL for writing programs, whereas Oracle provides PL/SQLWhich means what? Both products have a procedural programming language. They named them differently, and the languages are not interchangeable. Means nothing in comparing the features/strengths/weaknesses/suitability to purpose.
    4. Backup types in both are the same. (Except Oracle provides an additional backup called Logical Backup.)You make that sound like "Logical Backup" is something more than it is. It is nothing more than an export of the data and metadata. Many experts don't even consider it a backup. I'm sure SQL Server provides the same functionality though they probably call it by some other name.
    5. Both provide High Availability.Well, I guess they both have a suite of features they refer to as "High Availability". But what does that really mean? The devil is in the details. Remember, the two products don't even agree on what constitutes a "database".
    6. Both come in various distributions.???
    >
    If you are going for an Implementation, you can try SQL Server Express Edition and Oracle XE which are free to use.
    Then you can choose whichever is comfortable for your needs.
    Thanks.

  • What are the advantages of using CACHE and NOCACHE Hint

    What are the advantages of using CACHE and NOCACHE Hint & difference of them.I saw one of oracle.sql script have CACHE & oracle rac script include NOCACHE .Why is that

    924250 wrote:
    In a SOA product include db scripts,when we install the product we want to execute the db script to create sequence both oracle RAC & Oracle db
    Oracle DB
    CREATE SEQUENCE REG_LOG_SEQUENCE START WITH 1 INCREMENT BY 1 NOCACHE
    Oracle RAC DB
    CREATE SEQUENCE REG_LOG_SEQUENCE START WITH 1 INCREMENT BY 1 CACHE 20 ORDERas sb mentioned, this has nothing to do with oracle hints.
    you'll want to search the documentation about sequences.

  • What are the advantages and disadvantages of the Joint operation

    Hi, I am currently trying what out the advantages and disadvantages of the Joint Operation ... any help would be appreciated

    The advantage of join operations are that joins allow
    retrieval or data from more than one table at a
    time.
    A disadvantage of join operations is that the SQL
    statement may be more complicated to write and read
    than multiple simple selects.
    Another advantage is that fetching data from multiple
    tables in a single SQL statement is that using a join
    is likely to be more efficient than using several
    simple SQL statements with procedural logic
    performing the work of the join.
    There are basic three types of join operations in
    Oracle: nested loop, hash join, and sort/merge.
    You can find descriptions of these operations in the
    Oracle Performance and Tuning manual.
    HTH -- Mark D Powell --
    Thanks for the information Mark ... Much Appreciated

  • What is VIEW in Database table what is the advantage

    Hi:
    I would like to get your opinion on what is the advantage of Table VIEW?
    I read a note saying it is all about simplifying Query.
    But when you come to XMLTYPE where there is only ONE ROW and NO COLUMN,
    How do you create XMLVIEW for a large XML files?
    Please help
    Ali_02

    Overview of Views
    Read here...
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10713/schemaob.htm#i20690
    XMLView or XMLTYPE ?
    Overview of XML in Oracle Database
    Read here...
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10713/cncptdev.htm#CNCPT1535
    Edited by: ordba on Mar 4, 2010 9:50 AM

  • What is the advantage of using IB to create XIBs/Class Objects over coding?

    Hi all,
    I hoping someone can provide me some pros and cons as to when I should use IB to create XIBs and/or class objects as opposed to directly coding them.
    For example, if I choose Apple's Template for creating a Navigation Based Application (cocoa touch), the project creates two NIB files - MainMenu and RootViewController.
    However looking at one of demo apps SimpleDrillDown, it does not have a RootViewController XIB and instead creates it via code.
    Another example from the same two apps is that the template generates a "Navigation Controller" class object in the Mainmenu.xib. SimpleDrillDown does not bother with this in the XIB, but uses code to generate the controller:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Create the navigation and view controllers
    RootViewController *rootViewController = [[RootViewController alloc] init];
    UINavigationController *aNavigationController = [[UINavigationController alloc] initWithRootViewController:rootViewController];
    self.navigationController = aNavigationController;
    [aNavigationController release];
    [rootViewController release];
    // Configure and show the window
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
    as opposed to the template which only needs this:
    - (void)applicationDidFinishLaunching:(UIApplication *)application {
    // Configure and show the window
    // Navigation Controller is defined in MainWindow.xib
    [window addSubview:[navigationController view]];
    [window makeKeyAndVisible];
    So what are the advantages of each approach. Why does apple suggest one approach and yet all its demos use another.
    Any thoughts, answers gratefully received.
    TIA, Michael.

    You can do whatever you're comfortable with, but most of the best Cocoa programmers--the ones on the Mac, I mean--recommend putting everything you can into Interface Builder.
    It's a little like the difference between writing a program to do a bunch of financial calculations and using a spreadsheet. Yeah, the program can do everything the spreadsheet can--and more besides--but you'll find it far easier to create, use and modify the spreadsheet.
    Interface Builder takes away a lot of completely meaningless choices ("What order should I create the objects in? How should I name the variables? How should I create their frames? What order should I set the attributes in?"), leaving you with an interface optimized for creating and arranging objects, and allowing your code to focus on what you really do need to think about--your application's logic.
    (By the way--part of the reason Apple's demos don't all use Interface Builder is that the very first SDK releases didn't have it. Back then, you had to create all your views programatically. Believe me, I have no wish to go back to setting autoresize masks manually. Now get off my lawn, whippersnapper.)

  • What are the advantages of compressor and it it even necessary

    what are the advantages of compressor and it it even necessary?

    Necessary for some and not for others – probably a large majority – who can by with the presets avalaible in FCX.
    The users who need Compressor are those who want to control the parameters of the encodes to get the best possible trade-off between file size and quality. Or those who want to do things like standards conversions, complex frame speed changes, better re-scaling capabilities, de-interlacing, re-interlacing, output formats beyond which are available in FCX, chapter markers for DVD and Blu-Ray authoring, batch conversions for multiple purposes through droplets, access to clusters for faster rendering.
    Russ

  • What are the advantage of using a passive monitoring technique ?

    What are the advantage of using a passive monitoring technique

    Hi Plawansai,
    I saw your question that is still unanswered.
    I believe an advantage of using a passive monitoring technique is that it won't interfer with live traffic, as it does not inject traffic into the network or modify the traffic that is already on the network.
    One drawback anyway, is that post-processing time can take a large amount of time with passive monitoring!
    A combination of the two monitoring methods seems to be the route to go.
    V.

  • What are the advantages of WiFi + cellular as to just WiFi devices

    What are the advantages of WiFi + cellular as to just WiFi devices

    Advantages of Wi-Fi and cellular iPad.
    1. You can use it in places without Wi-Fi.
    2. The cellular model have GPS.

  • What are the advantages of varying write speeds and burn speeds?

    What are the advantages of varying write speeds and burn speeds?

    The slower the speed, the fewer burn errors (or, in other words, you'll burn fewer "coasters"). I've always tried to burn at a slower speed, i.e. 2x - 4x. I'd rather wait a few minutes more and I've never had any burn errors.

  • What is the advantages of using Flexconnect groups

    what is the advantages of using Flexconnect groups in WLC?
    Reg,
    Ezra.

    Pls refer this document for more detail about these features
    http://www.cisco.com/c/en/us/td/docs/solutions/Enterprise/Mobility/emob73dg/emob73/ch7_HREA.html#wp1091114
    FlexConnect is one mode an AP can operate, typically deployed in Branch setup where you do not have a controller at branch site. Those AP can register to a controller at your HQ or main site. So traffic will terminate at your branch switch instead of tunnel back to HQ-WLC.
    If you want roaming within your branch FlexConnect AP then you have to put those AP into a FlexConnect Group. Then only key information shared among those AP to facilitate fast roaming.
    Pls do not forget to rate our responses if you find them useful.
    HTH
    Rasika

  • What is the advantages of polymorphism over method overriding?

    what is the advantages of polymorphism over method overriding,that means if we are able to to create object at different instances at diff time for that sub class reff variable than what is the need of careating object of super class data type(i.e why always it is necessary to have upcasting for polymorphism?but if we can achive the same output without upcasting).....please tell me..lets have complete discuss..

    Seriously though....
    WebLogic (for which I have deployed many apps on) as
    well as Websphere are both high end Java application
    servers, meaning J2EE servers (in short). They allow
    one to deploy Enterprise Archive(EAR), a Web
    Archive(WAR), or an EJB Archive (in a JR file).
    These two servers allow one to deploy EJBs, use
    e JNDI, JMS, connectors, and other J2EE technologies
    - Tomcat does not. well, EJBs - no
    JNDI, yes - http://tomcat.apache.org/tomcat-4.1-doc/jndi-resources-howto.html
    JMS - yes (with an implementation, such as ActiveMQ: http://activemq.codehaus.org/Tomcat)
    Not sure what you mean by "connectors".
    Tomcat provides quite a bit of functionality (but yes, no EJBs)

  • What is the advantage of an iCloud mail account?

    I recently updated to iOS 5 on my 64GB iPad 2 +3G. I signed up for iCloud using the same Apple ID I have been using all along.
    I was also able to create a new iCloud mail account using @me.com.  What is the advantage of having this new email account?
    I kind of understand the function of iCloud. It enables me to access the same content via all my iOS devices.  If I have a photo in my iPad 2, for example, iCloud could push that same photo to my iPhone if I had one.  (It is not much use to me now as I have no other devices besides my iPad 2. I guess I could use the computer at the library and access stuff at iCloud.com.)
    The two email accounts I already have are already accessible using other devices.
    I can access the same Yahoo account using my iPad 2, an iPhone, or a computer at the local library. So, why do I really need this iCloud account?
    I have seen postings from others who have had prior Apple IDs, @me.com accounts, and something called MobileMe. My head spins when reading those posts.
    I am new to the Apple world, so luckily I don't have those problems concerning the use of previously established stuff.
    I used the same Apple ID I already had to set up my iCloud, but I used a slightly different variation of that email address to set up the iCloud mail account.
    Was that a mistake? I am now wondering if I should have kept it all the same. It tells you you cannot change the @me.com address once it is established anyway.
    Also, the iPad is considered superior to other tablets because of the wealth of apps available (140,000). Isn't that a little hyped?
    There seem to be a lot of duplicative apps that are not too useful. For example, there are tons of calculator, alarm clock, and reminder apps in the app store.
    Thanks for any insights you can provide.

    "What is the advantage of having this new email account?"
    It is simply an extra email if you wish to use it. You don't have to.
    "Also, the iPad is considered superior to other tablets because of the wealth of apps available (140,000). Isn't that a little hyped?"
    No. It is actually +600,000 apps.
    The 140,000 is iPad specific apps. You can also run iPhone apps and universal apps just fine.
    Sure there are lots of duplicates and a bunch of apps are lame but there are definitely plenty of very good quality apps.

  • What are Parameters? How are they differenet from Variables? Why can't we use variables for passing data from one sequnece to another? What is the advantage of using Parameters instead of Variables?

    Hi All,
    I am new to TestStand. Still in the process of learning it.
    What are Parameters? How are they differenet from Variables? Why can't we use variables for passing data from one sequnece to another? What is the advantage of using Parameters instead of Variables?
    Thanks in advance,
    LaVIEWan
    Solved!
    Go to Solution.

    Hi,
    Using the Parameters is the correct method to pass data into and out of a sub sequence. You assign your data to be passed into or out of a Sequence when you are in the Edit Sequence Call dialog and in the Sequence Parameter list.
    Regards
    Ray Farmer

Maybe you are looking for

  • Reposting Reconciliation Account

    Hi, I have a probleme with reposting reconciliation accounts. After changing a reconciliation account for a vendor, the client posted the balance at the end of the year from the old to the new account. Any former consultant found a way to post direct

  • Can anyone help with some free real estate software for our School in the UK to practice with

    Hi Guys We are setting our class a task to set up their own Estate agency (real Estate) and need some basic web software for them to use to develp their own shop. can anyone help us with a IWEB template that they can copy their own photos over and re

  • How to commit Domains?

    How to commit Domains?

  • Lenovo g480 con splitter conectado no reconoce microfono externo por momentos

    Hola, buenas noches, cuando conecto el splitter a la maquina para usar el microfono externo (compre la maquina para grabacion de audio) en la configuración de sonido me figura un solo micrófono que figura como interno, al conectarlo pasa a llamarse e

  • Unable to stream live radio

    I have a MacBook laptop and I'm currently unable to stream live radio to it. It had been working. My tech updated it and now it won't stream. Is there a setting some place that I need to set to get it going again? Thanks much! Ginger