This more looks like you just registered the server in your local environment.
Select newly registered server (SRV2005) and click 'New Query' and run select @@servername. You will get SRV2005.
Now if you want to restore a SQL Server 2000 db to SQL Server 2005, You just need to restore the database from old backup.
To take backup of a database in Sql server 2000 GUI Environment,
1. Open SQL Server Enterprise Manager
2. Select DB server from "Server Group"
3. Select the database to be backed up from the server
4. Right click on the database and select "All Tasks => Backup Database" from Menu.
5. Provide Destination file name and path
6. Click OK
This will create a .bak file at given path in #5.
To Restore a database,
1. Open SQL Server Enterprise Manager
2. Select DB server from "Server Group"
3. Select the database folder
4. Right click on the database folder and select "All Tasks => Restore Database" from Menu.
5. Give new DB Name in "Restore as database" combo box
6. Select "From device" in restore option
7. Click "Select Device" => "Restore from" +> Disk => Add => Provide file path of backed up database(Path given in #5 to Backup DB)
8. Click Ok and finish the Wizard.
This way you can back up and restore the databases between servers.
Main Topics
Browse All Topics





by: angelIIIPosted on 2007-02-12 at 04:04:11ID: 18514214
>I have imported the 2000 DB to a server called: SRV2005
how?
It looks to me that you only created a LINKED server, and did not copy the database, ie that you run the select @@servername in a connection to SRV2000
to copy a database, you have to:
BACKUP the database on sql server 2000, copy the backupfile over, and RESTORE it there