Moving from MSDE to SQL 2000 EE

  • Guys,

    I need to move my MSDE to SQL 2000 EE, what do I need to do, to perform this?

    OS: WIndows Server 2003.

    Thnak you for your help.

  • Hi,

    Do you mean just moving the database or "upgrading" MSDE?

    If you just want to move the databases you can do backup/restore but I don't believe you can Edition Upgrade. Looking at "Version and Edition Upgrade" http://msdn.microsoft.com/en-us/library/ms143393.aspx it is not listed and if you check the upgrade path for SQL 2005, the equivalent cannot be done.

    HTH!

    /Elisabeth

    elisabeth@sqlserverland.com
    MCITP | MCT
    http://sqlblog.com/blogs/elisabeth_redei/
    http://linkedin.com/in/elisabethredei

  • Hang on, you mean from 7.0 to 2000? I forgot it is called Personal Edition in 2000. So then the link is http://msdn.microsoft.com/en-us/library/aa176562(SQL.80).aspx and no, you cannot do it.

    /Elisabeth

    elisabeth@sqlserverland.com
    MCITP | MCT
    http://sqlblog.com/blogs/elisabeth_redei/
    http://linkedin.com/in/elisabethredei

  • Hello Elisabeth,

    Thank you....Yes, I need to upgrade my db from MSDE to SQL 2000, is there any way to perform this?

    I have MSDE under version 8.00.760 SP3.

    Thank you.

  • You can do this by one of two ways, backup/restore or detach/attach.

  • but what happen with the version, is that, that simple? I mean, I need to upgrade from MSDE to SQL 2000, just to backup/restore ?

  • What version is MSDE? Can you connect to it with QA? If so, do this: select @@VERSION and report the results.

  • It says version 8.00.760 Desktop Edition SP3.

  • That tells me that the version of MSDE you are running is SQL Server 2000 as well. All you need to do is a backup of the database on MSDE and then restore the backup to the SQL Server 2000 EE instance. The other way is to detach the database from the MSDE instance and attach it to the SQL Server 2000 EE instance. If you use the detach/attach, be sure to take a full backup first in case you have a problem with the files (get corrupted, accidently deleted, whatever).

    The only other issue you may run into is logins. I'd read BOL about that. You may need to delete and recreate the logins and database users.

  • Thank you, so that means that I don't need to run any script? anything?, just because is under SP3?

  • Not sure what kind of script you are talking about. If there are any structure changes, SQL Server will handle that for you.

  • Thank you Lynn,

    I was asking because one of my partners told me that I need to run queries, scripts...in order to upgrade my MSDE SP3 to SQl 2000, I didn't find anything like that, but my partner was insisting me, and I just want to be sure.

    Thank you much.

  • One more thing??? MSDE SP3 means that I am already under SQL 2000 EE?, or able to do just a backup/restore?

  • What I got from the version is that you are using the same base code. Your version of MSDE wasn't SQL Server 7.0 or (7.5). You still would have been able to do a backup/restore or detach/attach as SQL Server 2000 is backward compatible. You just would have to change the compatability mode of the data base to make use of SQL Server 2000 enhancements if MSDE was SQL Server 7.0/7.5 based. Not necessary here as both are SQL Server 2000.

  • Thanks for all your help!

Viewing 15 posts - 1 through 14 (of 14 total)

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