January 15, 2010 at 2:30 pm
I have a hyland product running sql 2000 withing sql studio. what steps are needed to upgrade it to sql2005. lost here!!
January 15, 2010 at 3:20 pm
More details & more specifc question(s) would help.
January 22, 2010 at 10:42 am
ok, i have sql studio 2005 running on my server and within that the instance of the database says I'm running sql server 8.0. how do i begin to upgrade that to sql 9.0
January 22, 2010 at 10:53 am
So, you're SQL Management Studio tool on your desktop is running SQL 2005, but you're managing a 2000 database ? Or is your SQL database 2005, but running in 2000 compatibility mode (8.0) ?
Upgrading SQL from 2000 to 2005 can be a bit of a project. You have 2 options:
"Side by Side" migration from one server to a new server (or instance).
"In Place" upgrade in which the 2000 server is directly upgraded to 2005.
There are lots of threads on this topic here that may help you and answer many questions.
January 22, 2010 at 11:16 am
not to sound stupid or anything but can you direct me to a few links for the inplace upgrade? I just made a vmware image of the server and now i can perfrom it in test mode
thanks in advance
January 22, 2010 at 11:37 am
Answer me these questions:
Is the server currently running SQL Server 2000 or SQL Server 2005?
If running SQL Server 2005, is the database attached to SQL Server 2005 running in 8.0 compatibility mode?
January 22, 2010 at 12:29 pm
jeffmc123452003 (1/22/2010)
not to sound stupid or anything but can you direct me to a few links for the inplace upgrade? I just made a vmware image of the server and now i can perfrom it in test modethanks in advance
http://lmgtfy.com/?q=sql+2005+in+place+upgrade
P.S. The more information you give, the better answer you will get.
January 22, 2010 at 12:45 pm
its running both sql200 and sql2005.
my current running databases are running under sql2005
compatibility mode is set to Sql server 2000 (80)
January 22, 2010 at 12:48 pm
Some clarification needed here.
A database that's on a SQL 2005 server in compatibility mode 80 is still a SQL 2005 database. It's only that it's behaving like it was still on SQL 2000. A simple ALTER DATABASE to change the compatibility level is all that you need.
Now, is it a single SQL 2005 server with databases in different compatibility levels or do you have a SQL 2000 instance and a SQL 2005 instance?
If you're not sure, run the following, post the results.
SELECT @@version
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
January 22, 2010 at 12:51 pm
select @@version
microsoft sql 2000 8.00
January 22, 2010 at 12:57 pm
select @@version respond with microsoft sql 20000 8.00.2039
January 22, 2010 at 1:12 pm
Is there a second SQL instance or is that the only one?
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
January 22, 2010 at 1:24 pm
only one that i know of.
thanks
January 22, 2010 at 1:52 pm
In that case, read up on the 2 upgrade methods, then come back if you have questions. You will probably see mention of the Upgrade advisor. It's a useful tool to points out issues you may need to take care of before the upgrade.
Viewing 15 posts - 1 through 15 (of 15 total)
You must be logged in to reply to this topic. Login to reply