Restoring SQL2008 Enterprise Edition db into SQL2008 Standard edition question

  • A vendor of ours is going to give us a database that is in SQL2008 Enterprise Edition for us to restore into our environment. However, we do NOT have Enterprise Edition. If they backup the database without compression I should be able to restore it into SQL2008 Standard Edition shouldn't I?

    We are not going to use this database, we will take some of the information out of it and it will go into a newly created database. We only want the table structure and data.

    In SQL2008 I know backup compression is only available in Enterprise Edition so I specifically told them to NOT backup the database with Compression.

  • go-ahead..no issue

  • Thanks, that is what I thought but wanted to throw it out there and see.

    🙂

  • you might want to buy a copy of developer so you can restore and test teh client backup, even if they are using enterprise only stuff like compression;

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Actually, even if they back it up with compression, you can restore it. I tested this recently here at my work, as we have clients who (tightwads) use SQL Express.

    BUT one thing to be wary of, is to make sure the Vendor isn't using Enterprise only features in their DB. Things like partitioned tables comes to mind.

    Jason

  • It will work, providing the database contains no persistent enterprise-only features (partitioning, compression, TDE). If the DB uses any of those, the restore will fail *at the end*

    Backup compression isn't a problem, while only Enterprise/Developer edition can create compressed backups, any edition can read compressed backups and restore the DB.

    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

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • Thanks everyone. I will double check with the vendor about the Enterprise Edition special features.

    If, any of those are in there can I restore this into SQL2008R2 Standard Edition? I can't remember if Partitioning is in SQL2008R2 Standard.

  • Markus (10/16/2012)


    If, any of those are in there can I restore this into SQL2008R2 Standard Edition?

    No, the restore will fail.

    The DMV to check is sys.dm_db_persistent_sku_features (or something like that)

    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

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • GilaMonster (10/16/2012)


    Markus (10/16/2012)


    If, any of those are in there can I restore this into SQL2008R2 Standard Edition?

    No, the restore will fail.

    The DMV to check is sys.dm_db_persistent_sku_features (or something like that)

    Thanks,.... I was afraid of that...

    I have fired off an email asking them to verify that they are not using any of those features. I guess I should have done a lookup on the MSFT website for editions comparision before I posted as all that information was there. The database is 270gig so there is a possibility that they are using partitioning.

  • Here is the DMV mentioned:

    /*can identify all Enterprise-edition-specific features that are enabled within a user database by

    using the sys.dm_db_persisted_sku_features Dynamic Management View */

    --SQL Server 2008 only

    USE <DBNAME>

    GO

    SELECT * FROM sys.dm_db_persisted_sku_features

    I have this as 2008 only. I assume it will also work for 2008 R2. Maybe it was talking about the previous versions (2005 and before).

  • Have the vendor run it on the database and let you know if any records are returned.

  • vikingDBA (10/17/2012)


    Have the vendor run it on the database and let you know if any records are returned.

    Very interesting. Thanks a million. I sent the query to them and asked for them to run it.

Viewing 12 posts - 1 through 11 (of 11 total)

You must be logged in to reply to this topic. Login to reply