我想将数据从1表复制到另一个表,它们位于不同的服务器中.
我已经设置了2台服务器作为链接服务器.在sql Server Management Studio中,
>服务器对象
我将连接服务器作为我的服务器名称SERVER2,并输入为sqlSERVER.
现在我执行查询:
Insert Into Server1.Database1.dbo..Table1 (Col1,Col2) Select Col1,Col2 From Server2.Database2..dbo.Table2
它正在抛出一个错误消息,
The OLE DB provider “sqlNCLI” for linked server “SERVER2” has returned the message “Invalid authorization specification”.
我不知道在哪里更改授权.