Attaching Databases

  • Is it possible to attach a database created with SQL Server 2K to an SQL Server 7.0?

    Can a backup of a SQL Server 2K database be restored (forcing) onto an SQL Server 7.0

    database?

  • No. The only way to move a SQL Server 2000 database to a SQL Server 7.0 server is by using Data Transformation Services (DTS).

    --Jonathan



    --Jonathan

  • Or the traditional way, BCP.

  • quote:


    Or the traditional way, BCP.


    bcp is for copying data, it will not create any objects.

    --Jonathan



    --Jonathan

  • You are right. I should say script all objects from your original database and create them in SQL Server 7.0 database, BCP data out from SQL Server 2000 database and BCP in into database in SQL Server 7.0.

  • quote:


    You are right. I should say script all objects from your original database and create them in SQL Server 7.0 database, BCP data out from SQL Server 2000 database and BCP in into database in SQL Server 7.0.


    That sounds a lot like DTS, only more difficult.

    --Jonathan



    --Jonathan

  • As I said, Traditional way.

Viewing 7 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic. Login to reply