? 存储过程中的行集作为子查询 可以使用Openrowset,但Openrowset不支持参数话的语句,要实现参数只能在客户端程序中把要的最终语句拼接好传入。 实际应用中,我用openrowset连接ssas服务器来和sqlserver数据库对象实现交互。 测试语句如下:
?
use tempdb go create proc p_test as begin ??? select 1 as a,2 as b,3 as c union ??? select 4 as a,5 as b,6 as c union ??? select 7 as a,8 as b,9 as c end go select * from openrowset ('SQLOLEDB','Server=.;Trusted_Connection=yes;DataBase=tempdb', 'exec p_test' )? where a <> 4 go drop proc p_test
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/jinjazz/archive/2009/08/27/4489870.aspx
(编辑:李大同)
【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!
|