2008 Enterprise edition of SQL Server стоит дороже, толку с нее, вроде бы, не так и много. То же самое можно получить за счет других редакций. Очень простой пример, показывает ЧТО ИМЕННО теряет пользователь в стандартной редакции:
declare @d1 datetime
select @d1=getdate()
ALTER INDEX [I_***] ON [dbo].[***]
rebuild
WITH (PAD_INDEX = ON, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = ON, ONLINE = ON, ALLOW_ROW_LOCKS = ON,ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 95,DATA_COMPRESSION = PAGE,maxdop=1);
select ‘Time,s’,datediff(ss,@d1,getdate())
Msg 1712, Level 16, State 1, Line 6
Online index operations can only be performed in Enterprise edition of SQL Server.
Msg 7738, Level 16, State 2, Line 4
Cannot enable compression for object ***. Only SQL Server Enterprise Edition supports compression.
То есть, нельзя сжимать индексы и таблицы, нельзя перестраивать индексы оставляя их доступными. То есть, если у вас есть очень большая база, которая должна работать в режиме 24/7- стандартная редакция будет буквально связывать вам руки.
2008 Enterprise edition of SQL Server costs more sense to her, like, not so much. The same can be achieved by other editors. A very simple example shows EXACTLY WHAT loses the user in the standard edition
That is, you can not compress the indexes and tables, you can not rebuild indexes leaving them available. That is, if you have a very large base, which is to operate in a mode 24/7 standard edition will literally bind your hands.