Link to home
Start Free TrialLog in
Avatar of lbtoadmin
lbtoadmin

asked on

upgrade sql 2000 db to 2005

Hello,

I'll first preface this by saying that I am by no means a sql database administrator.  What I need to do is upgrade my current sql 2000 db to 2005 standard.  I have both running on my server (2003 Ent w SP2) and would like to remove sql 2000 completely.  

What steps would I need to undertake, and would I have to do a new instance, or will it just upgrade it in the current location?

Thanks,
ASKER CERTIFIED SOLUTION
Avatar of radcaesar
radcaesar
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
take a Full backup and restore it on the destiantion folder then
use this script to
USE [master]
GO
ALTER DATABASE <DATABASE NAME> SET COMPATIBILITY_LEVEL = 100
GO
to change the compatability mode , please have a eye on the Collation mode,
Avatar of Alpesh Patel
You can upgrade using friendly wizard.
Avatar of lbtoadmin
lbtoadmin

ASKER

PatelAlpesh,

Do you mean during the sql 2005 setup wizard where it shows you the db instances and says to select one to upgrade?