Hello, I need to transfer one small MS SQL 2000 database to a MS SQL 2005 database. Both servers have limited access privileges. The solution for this is to create a SQL script containing the metadata (table definitions, procedures aso.), and use the Import/Export Wizard to fill the data in. Please let me know somebody can do this job. Need to do immediately.
You should consider Data Transformation Services ( DTS ) and BCP tools. Find articles about migration from SQL 2000 to SQL 7 for guidelines because it is not possible to restore backup of SQL 2000 file to SQL Server 7.
U have to firstly connect both server with sp_addlinkedserver then u can do data transfer from script like.. select * into table1 from [192.168.1.25].testdb.dbo.table1 Thanks, Manoj Kumar
its a very simple thing to do, there is a stored procedure that can transfer all your data to your new server, just search for it. cheers