January 10, 2011 at 11:56 pm
Team,
i have my production database on SQL 2000 Enterprise Edition.
Now to test one of the component, i need to restore the backup to another server. To save on the cost, we have been given SQL 2000 Standard Edition ( not the enterprise Edition).
Can i restore the prod db backup (SQL 2000 Ent) to Dev Box ( SQL 2000 Std).
January 11, 2011 at 12:24 am
Can i restore the prod db backup (SQL 2000 Ent) to Dev Box ( SQL 2000 Std).
If both SQL Servers are on the same level version, yes.
If your source SQL Server is on a newer Service Pack level, your destination needs to be the same.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle
January 11, 2011 at 12:53 am
Henrico Bekker (1/11/2011)
If your source SQL Server is on a newer Service Pack level, your destination needs to be the same.
You can, in the vast majority of cases, restore from a higher service pack number to a lower, providing the two servers are the same major version. ie SQL 2000 SP4 -> SQL 2000 SP2 is fine. SQL 2005 -> SQL 2000 is not ok.
The exception is SQL 2005 SP2 to lower service packs of SQL 2005 if vardecimal storage has been enabled.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
January 11, 2011 at 12:56 am
GilaMonster (1/11/2011)
Henrico Bekker (1/11/2011)
If your source SQL Server is on a newer Service Pack level, your destination needs to be the same.You can, in the vast majority of cases, restore from a higher service pack number to a lower, providing the two servers are the same major version. ie SQL 2000 SP4 -> SQL 2000 SP2 is fine. SQL 2005 -> SQL 2000 is not ok.
The exception is SQL 2005 SP2 to lower service packs of SQL 2005 if vardecimal storage has been enabled.
Thanx for clearing that up Gail.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle
December 21, 2011 at 7:51 am
I find this very surprising, that one can restore a DB created on an Enterprise server onto a Standard server, even if both are at the exact same version and service pack.
I wondered about the usage of features that are Enterprise only.
I found this in Brent Ozar's 60-Minute Blitz script:
/*
Are any of the databases using features that are Enterprise Edition only?
If a database is using something like partitioning, compression, or
Transparent Data Encryption, then I won't be able to restore it onto a
Standard Edition server.
*/
EXEC dbo.sp_MSforeachdb 'SELECT ''[?]'' AS DatabaseName, * FROM [?].sys.dm_db_persisted_sku_features'
I have to go find a copy of the SQL Server 2008 standard edition and test it.
December 21, 2011 at 7:56 am
Providing you're not using the persistent Enterprise-only features (partitioning, compression, TDE), an Enterprise edition DB can even be restored to Express (if small enough). Most of the time you can go up and down the editions without problem.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
December 21, 2011 at 8:20 am
Hi Gail,
Many thanks for the prompt reply. I am surprised (and happy) to learn it and I look forward to trying it out on an Express-Instance.
Sean.
November 28, 2012 at 10:41 am
FYI, you cannot go from Enterprise 2012 -> [?] 2012 if the Enterprise DB has vardecimal or compression as neither of these are supported in the lower versions of 2012 SQL.
November 28, 2012 at 10:59 am
chetanr.jain (1/10/2011)
Team,i have my production database on SQL 2000 Enterprise Edition.
Now to test one of the component, i need to restore the backup to another server. To save on the cost, we have been given SQL 2000 Standard Edition ( not the enterprise Edition).
Can i restore the prod db backup (SQL 2000 Ent) to Dev Box ( SQL 2000 Std).
If you are only doing testing/development, you would be better of with Developer Edition, since it has all of the features of Enterprise Edition, and costs less than Standard Edition.
November 28, 2012 at 11:03 am
Please note: year old thread.
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
November 28, 2012 at 11:06 am
Yes, I knew it was an older thread, however, I felt the information was a) related and b) helpful to anyone else coming along this way.
Thank you for monitoring the site.
Viewing 11 posts - 1 through 10 (of 10 total)
You must be logged in to reply to this topic. Login to reply