存储过程与SQL的结合使用
--1调用存储过程
exec 存储过程名 参数
openrowset方法使用:
select * from openrowset(‘sqlncli‘, ‘server=192.168.247.64;uid=sa;pwd=123;‘, ‘exec dbo.process ‘‘参数值‘‘‘) as tmp;
-------------------------------------------------------------------------------------------------------------------------
a、启用Ad Hoc Distributed Queries:
exec sp_configure ‘show advanced options‘,1
reconfigure
exec sp_configure ‘Ad Hoc Distributed Queries‘,1
reconfigure
b、关闭Ad Hoc Distributed Queries:
exec sp_configure ‘Ad Hoc Distributed Queries‘,0
reconfigure
exec sp_configure ‘show advanced options‘,0
reconfigure
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。