I want to port data from one server\'s database to another server\'s database.
The databases are both on a different mssql 2005 server.
Replication is probably not an option sin
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure 'Ad Hoc Distributed Queries', 1
GO
RECONFIGURE
GO
SELECT *
FROM OPENDATASOURCE('SQLOLEDB',
'Data Source=;
User ID=;Password=')...