Home > Database > Mysql Tutorial > sqlserver将存储过程返回的数据集存入临时表的问题

sqlserver将存储过程返回的数据集存入临时表的问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-07 15:39:32
Original
2098 people have browsed it

项目需求:在我的存储过程中要调用组内其它人写的存储过程,取得它返回的数据集与我自己的数据做联合查询。 该存储过程是带输入和输出参数的,并且存储过程里有插入临时表的操作。 我尝试了网上的几种解决办法,都不能奏效: 1.insert into #tmpTable exec P

项目需求:在我的存储过程中要调用组内其它人写的存储过程,取得它返回的数据集与我自己的数据做联合查询。

  该存储过程是带输入和输出参数的,并且存储过程里有插入临时表的操作。

 

我尝试了网上的几种解决办法,都不能奏效:

1.insert into #tmpTable exec Pro

  【insert语句不能嵌套】

2.insert into #tmpTable

  select * from openrowset('SQLNCLI','DRIVER={SQL Server};SERVER=[servername];UID=[用户名];PWD=[密码];database=[数据库名],'declare @t int  exec dbo.Pro   

  ''cy'',@t output')

  【无法处理对象 "exec dbo.Pro  'cy',@t output'"。链接服务器 "(null)" 的 OLE DB 访问接口 "SQLNCLI" 指示该对象没有列,或当前用户没有访问该对象的权限。】

 

有哪位高手有什么解决办法,请不吝赐教,在此先谢过了!!!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
Problem with tp6 connecting to sqlserver database
From 1970-01-01 08:00:00
0
0
0
Unable to connect to SQL Server in Laravel
From 1970-01-01 08:00:00
0
0
0
Methods of parsing MYD, MYI, and FRM files
From 1970-01-01 08:00:00
0
0
0
SQLSTATE: User login failed
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template