在存储过程中,执行远程数据操作,有时会发生异常
错误 7405: 异类查询要求为连接设置 ANSI_NULLS 和 ANSI_WARNINGS 选项。这将确保一致的查询语义。请启用这些选项,然后重新发出查询。
set ansi_nulls on
Go
Create proc new_Store
as
set nocount on
set ansi_warnings on
insert into Table_PiaoQingSong(f1,f2,f3)
select F1,f2,f3 from RemoteServer1.DB.dbo.Table_PiaoqingSong
Go
就可以