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 since the destination database is generated from scratch on a [time interval] basis.
我更愿意做这样的事情
insert *
from db1/table1
into db2/table2
where rule1 = true
很明显,连接凭据会出现在这个脚本的某个位置。