How to convert Microsoft sql 7 database to Microsoft sql 2008 database?

2

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

Wern Ancheta

Posted 2011-06-11T03:49:25.193

Reputation: 5 822

Answers

3

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

Conrad Frix

Posted 2011-06-11T03:49:25.193

Reputation: 413

thanks, its ok now, I just restored a backup of the database from sql 7 using server management studio. – Wern Ancheta – 2011-06-11T05:41:13.997