Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any difference between the Web Edition and Business Edition of SQL Azure other than the maximum supported database sizes? I'm assuming the naming has some significance but all of the information I find simply talks about the max db size. I want to know if there are any other differences such as SLA, replication, scalability, etc.

Any clues?

share|improve this question

2 Answers

up vote 57 down vote accepted

The two editions are identical except for capacity. Both offer the same replication and SLA.

Web Edition scales from 1GB to 5GB, whereas Business Edition scales from 10GB to 50GB in 10GB increments, plus 100GB and 150GB. The only thing you'd need to worry about, if you had an MSDN Premium or BizSpark account, is that you get 3 free 1GB Web Edition databases. If you add a Business Edition database, you'll incur costs.

Both allow you to set maximum size on the billing boundaries (1 or 5 for web, 10, 20, 30, 40, 50, 100, 150 for business). And both are billed on an amortized schedule, where your capacity is evaluated daily, and your daily rate is based on which tier your capacity falls into.

Regardless of edition, you have the exact same set of features - it's all about capacity limits. You can easily change maximum capacity, or even change edition, with T-SQL. For instance, you might start with a Web edition:

CREATE DATABASE Test (EDITION='WEB', MAXSIZE=1GB)

Your needs grow, so you bump up to 5GB:

   ALTER DATABASE Test MODIFY (EDITION='WEB', MAXSIZE=5GB)

Now you need even more capacity, so you need to switch to one of the Business Edition tiers:

ALTER DATABASE Test MODIFY (EDITION='BUSINESS', MAXSIZE=10GB)

If you ever need to reduce your database size, that works just fine as well - just alter right back to Web edition:

ALTER DATABASE Test MODIFY (EDITION='WEB', MAXSIZE=5GB)
share|improve this answer
2  
Thanks for the reply David. From what I have gathered elsewhere the reason for the two different names is to allow for differentiation in the future. For example the Business edition might get more features that the Web edition doesn't. But for now they are identical other than size limitations. A little confusing but I can understand the reasoning. – BrettRobi Aug 19 '10 at 17:10
The way I read it was they auto scale you, like as soon as my DB starts using 1.01GB I am bumped to the 5GB limit and pricing bracket, is this not the case? – odyth Apr 20 '11 at 3:39
2  
to answer my question its No it will not auto scale you must go in and run a command to up the database size, which is lame. msdn.microsoft.com/en-us/library/ee621788.aspx – odyth Apr 20 '11 at 3:59
1  
Well... you set the cap. Then you're metered based on current usage. So, in effect, your cost is then auto-scaled. In your example, you'd set MAXSIZE=5GB. Then, for each day you're under 1GB, you're billed at the 1GB rate (amortized daily). For the days you go to 1.01GB (all the way up to 5GB), you're billed at the 5GB rate. If 29 of 30 days are under 1GB, and only one day between 1 and 5GB, you'd be billed around $11.32 ((9.99/30)*29) + ((49.95/30)*1). – David Makogon Apr 20 '11 at 11:39
I'm glad they don't auto scale. It's all money. I want a notification that the cap has been reached or preferably that the cap is being approached and then I want to have to manually intervene to increase my cost structure. Think of this way, if you do something wrong and MS autoscale for you, it could literally cost you thousands. – rism Dec 15 '11 at 23:56
show 4 more comments

I have noticed a behavioral difference between the two versions. In the Business edition we have set up for QA, the following code snippet gets an error when applying the foreign key unless a "GO" is placed after adding the column. Then it works fine. This is not needed in the Web edition databases we have for development.

IF NOT EXISTS (SELECT * 
                FROM INFORMATION_SCHEMA.COLUMNS 
               WHERE TABLE_SCHEMA='ASSIGN'
                 AND TABLE_NAME = 'ASSIGNTARGET_EXCEPTION' 
                 AND COLUMN_NAME = 'EXCESS_WEAR_FLAG')
    ALTER TABLE [ASSIGN].[ASSIGNTARGET_EXCEPTION] ADD [EXCESS_WEAR_FLAG] [varchar](1) NULL
-- GO  -- placing this here makes this sectino work.
IF NOT EXISTS (SELECT * 
                 FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS 
                WHERE  TABLE_SCHEMA ='ASSIGN'
                  AND TABLE_NAME = 'ASSIGNTARGET_EXCEPTION' 
                  AND CONSTRAINT_NAME = 'CHK_ATEXCPTN_EXCESSWEARFLAG')
BEGIN
    ALTER TABLE [ASSIGN].[ASSIGNTARGET_EXCEPTION]  WITH NOCHECK ADD  CONSTRAINT [CHK_ATEXCPTN_EXCESSWEARFLAG] CHECK  (([EXCESS_WEAR_FLAG]='N' OR [EXCESS_WEAR_FLAG]='Y'))
    ALTER TABLE [ASSIGN].[ASSIGNTARGET_EXCEPTION] CHECK CONSTRAINT [CHK_ATEXCPTN_EXCESSWEARFLAG]
END
share|improve this answer
I suspect something else is going on in your scenario. To my knowledge there is still nothing different between the two editions other than what the maximum size database supported is. – BrettRobi Feb 26 at 19:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.