Is it possible to convert an Microsoft SQL 7 database into Microsoft SQL 2008?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Migrating a Database can include

  1. Upgrading the server components (engine, dts packages, Sql jobs)
  2. Database structure
  3. Routines (stored procedures, views, etc)

depending on if you just need the data and its schema or you need everthing your options will be different

In any case from what I gather MS only supports skipping one version but not two. This means you'll need an intermediate step of upgrading to 2000 or 2005 before you can upgrade to 2008.

these guides will help you figure out what to do

upgrading to 2005

upgrading to 2008

link|improve this answer
thanks, its ok now, I just restored a backup of the database from sql 7 using server management studio. – Ieyasu Sawada Jun 11 '11 at 5:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.