码迷,mamicode.com
首页 > 数据库 > 详细

存储过程与SQL的结合使用

时间:2014-06-27 14:49:43      阅读:248      评论:0      收藏:0      [点我收藏+]

标签:style   使用   set   line   sql   io   

--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

存储过程与SQL的结合使用,布布扣,bubuko.com

存储过程与SQL的结合使用

标签:style   使用   set   line   sql   io   

原文地址:http://www.cnblogs.com/zllz5230/p/3810362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!