upgrade SQL Server 2005 developer ed to standard ed

  • I'm going to upgrade SQL Server 2005 developer ed to standard ed. Not changing version, just edition. My plan is to detach the databases, uninstall developer ed, install standard ed and attach the databases.

    My question is about the jobs and user logins. Should I also detach/attach the system databases master and msdb to preserve the jobs and logins?

    Or should I script them out and run scripts after the standard ed is installed?

    Is there an easier way to accomplish this upgrade?

    Thanks very much for any ideas and help.

  • Just be sure you didn't use any Enterprise Edition only features when developing using Developer Edition.

  • I'm trying to get this command to work:

    start /wait d:\setup.exe addlocal=SQL_Engine instancename=MSSQLSERVER upgrade=SQL_Engine skuupgrade=1 /qb

    But I get error that the upgrade is blocked because the existing component is a later version than the version you are trying to upgrade to.

    It does have sp3, but I thought that would be lost with the upgrade.

    Am I doing something wrong, or just out of luck and have to resort to the uninstall/install plan?

    Any ideas are grealy appreciated.

    Thanks!

  • Hi

    The problem you have here is that Developer is a higher version than Standard so you can't upgrade that way.

    You would need to uninstall standard then install Developer.

    Backup and reinstall databases - or detach and reattach them.

    For and sys jobs etc you have the easiest method would be to script them out then reapply them.

    I am not sure of the best way to copy logins and user permissions though.

    I beg your Pardon you can upgrade from Developer to standard

    http://msdn.microsoft.com/en-us/library/ms143393(SQL.90).aspx

    I upgraded standard to dev with this:

    start /wait d:\setup.exe instancename=MSSQLSERVER upgrade=SQL_Engine,SQL_Data_Files,SQL_Tools90,SQL_Replication skuupgrade=1 /qb

    The same as you but no addlocal and a few other features in the upgrade list

  • I just ran this to re-upgrade my developer edition back to standard:

    :: You need disk 1 in servers and disk 2 in tools underneath c:\sqladmin\sql2005

    @echo off

    Set ADDLOCAL=SQL_Engine,SQL_Data_Files,SQL_Tools90,SQL_Replication

    Set INSTANCENAME=MSSQLSERVER

    Start /wait c:\sqlAdmin\SQL2005\servers\setup.exe /qb UPGRADE=%ADDLOCAL% SKUUPGRADE=1 INSTANCENAME=%INSTANCENAME%

    And it went through ok

  • I did end up uninstalling developer ed and installing standard. It worked just fine. I ran out of time to keep trying the upgrade method. I will try it again if I ever have the need to do this again. Thanks for all the help.

Viewing 7 posts - 1 through 6 (of 6 total)

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