Cross-server SQL

前端 未结 8 1097
再見小時候
再見小時候 2021-02-02 08:07

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

8条回答
  •  渐次进展
    2021-02-02 08:28

    I think what you want to do is create a linked server as per this msdn article. You would then select using a 4 part object name eg:

    Select * From ServerName.DbName.SchemaName.TableName
    

提交回复
热议问题