Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 7,2000
»
Backups
»
Restore DB backup from Enterprise Edition to...
11 posts, Page 1 of 2
1
2
»»
Restore DB backup from Enterprise Edition to Standard Edition
Rate Topic
Display Mode
Topic Options
Author
Message
chetanr.jain
chetanr.jain
Posted Monday, January 10, 2011 11:56 PM
SSC-Addicted
Group: General Forum Members
Last Login: Monday, May 20, 2013 9:13 AM
Points: 465,
Visits: 437
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).
Post #1045705
Henrico Bekker
Henrico Bekker
Posted Tuesday, January 11, 2011 12:24 AM
SSCommitted
Group: General Forum Members
Last Login: Tuesday, May 14, 2013 2:24 AM
Points: 1,871,
Visits: 2,692
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.
----------------------------------------------
Msg 8134, Level 16, State 1, Line 1
Divide by zero error encountered.
Post #1045713
GilaMonster
GilaMonster
Posted Tuesday, January 11, 2011 12:53 AM
SSC-Dedicated
Group: General Forum Members
Last Login: Today @ 3:18 PM
Points: 37,744,
Visits: 30,025
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 2008, MVP
SQL In The Wild
: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter
We stand on the bridge and no one may pass
Post #1045721
Henrico Bekker
Henrico Bekker
Posted Tuesday, January 11, 2011 12:56 AM
SSCommitted
Group: General Forum Members
Last Login: Tuesday, May 14, 2013 2:24 AM
Points: 1,871,
Visits: 2,692
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.
----------------------------------------------
Msg 8134, Level 16, State 1, Line 1
Divide by zero error encountered.
Post #1045724
Sean Redmond
Sean Redmond
Posted Wednesday, December 21, 2011 7:51 AM
Valued Member
Group: General Forum Members
Last Login: Friday, May 17, 2013 3:07 AM
Points: 71,
Visits: 159
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.
Post #1225147
GilaMonster
GilaMonster
Posted Wednesday, December 21, 2011 7:56 AM
SSC-Dedicated
Group: General Forum Members
Last Login: Today @ 3:18 PM
Points: 37,744,
Visits: 30,025
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 2008, MVP
SQL In The Wild
: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter
We stand on the bridge and no one may pass
Post #1225153
Sean Redmond
Sean Redmond
Posted Wednesday, December 21, 2011 8:20 AM
Valued Member
Group: General Forum Members
Last Login: Friday, May 17, 2013 3:07 AM
Points: 71,
Visits: 159
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.
Post #1225178
danielk1
danielk1
Posted Wednesday, November 28, 2012 10:41 AM
Grasshopper
Group: General Forum Members
Last Login: Yesterday @ 6:44 AM
Points: 15,
Visits: 90
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.
Post #1389989
Michael Valentine Jones
Michael Valentine Jones
Posted Wednesday, November 28, 2012 10:59 AM
SSCrazy
Group: General Forum Members
Last Login: Yesterday @ 10:43 AM
Points: 2,945,
Visits: 10,517
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.
Post #1390000
GilaMonster
GilaMonster
Posted Wednesday, November 28, 2012 11:03 AM
SSC-Dedicated
Group: General Forum Members
Last Login: Today @ 3:18 PM
Points: 37,744,
Visits: 30,025
Please note: year old thread.
Gail Shaw
Microsoft Certified Master: SQL Server 2008, MVP
SQL In The Wild
: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter
We stand on the bridge and no one may pass
Post #1390003
« Prev Topic
|
Next Topic »
11 posts, Page 1 of 2
1
2
»»
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.