sql 2000 database running within sql2005

  • I have a hyland product running sql 2000 withing sql studio. what steps are needed to upgrade it to sql2005. lost here!!

  • More details & more specifc question(s) would help.

  • I agree with homebrew you should be more specific with your question. When you are going to upgrade you can always use the upgrade advisor.

  • 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

  • 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.

  • 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

  • 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?

  • 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 mode

    thanks in advance

    http://lmgtfy.com/?q=sql+2005+in+place+upgrade

    P.S. The more information you give, the better answer you will get.

  • its running both sql200 and sql2005.

    my current running databases are running under sql2005

    compatibility mode is set to Sql server 2000 (80)

  • 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

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • select @@version

    microsoft sql 2000 8.00

  • select @@version respond with microsoft sql 20000 8.00.2039

  • 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

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • only one that i know of.

    thanks

  • 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