我目前正在使用Sybase ASE 15.7并编写一个使用另一个SP的结果的存储过程。我想调用它并将结果插入到临时表中,因此原始SP不需要修改。
参考这篇文章:How can I get data from a stored procedure into a temp table?
Jakub使用代理表的答案与样本SP定义完美配合:
create procedure mydb.mylogin.sp_extractSomething (
@timestamp datetime) as
select column_a, column_b
from sometable
where timestamp = @timestamp
然而最后一件丢失!如何获得输出参数和结果集?我的案例中的SP定义如下:
create procedure mydb.mylogin.sp_extractSomething
(
@timestamp datetime,
@errcode char(10) output
) as
select @errcode='NOERR'
select column_a, column_b
from sometable
where timestamp = @timestamp
if (@@rowcount = 0)
begin
select @errcode = 'ERR001'
end
我已经定义并使用了代理表如下:
--create proxy table
create existing table myproxy_extractSomething (
column_a int not null,
column_b varchar(20) not null,
_timestamp datetime null,
_errcode char(10) null) external procedure at "loopback.mydb.mylogin.sp_extractSomething"
--calling sp
declare @errcode Char
declare @myTimestamp datetime
set @myTimestamp = getdate()
select *
from myproxy_extractSomething
where _timestamp = @myTimestamp
and _errcode = @errcode
select @errcode
虽然可以成功返回结果集,但@errcode
/ _errcode
始终为空。如何在代理表中定义输出参数?
答案 0 :(得分:0)
甚至在存储过程中也不允许创建代理表。将弹出以下错误:
Statement with location clause must be the only statement in a query batch
所以我猜在Sybase sp中没有办法在不修改原始sp的情况下使用另一个sp的结果数据集。不幸的是,似乎唯一的方法是复制orignal sp(有1.4k行)。