insert-exec 블록에서 호출되는 저장 프로 시저가 있습니다.
insert into @t
exec('test')
저장 프로 시저에서 생성 된 예외를 처리하고 계속 처리하려면 어떻게해야합니까?
다음 코드는 문제를 보여줍니다. 내부 exec()
통화 의 성공 또는 실패에 따라 0 또는 -1을 반환하려고합니다 .
alter procedure test -- or create
as
begin try
declare @retval int;
-- This code assumes that PrintMax exists already so this generates an error
exec('create procedure PrintMax as begin print ''hello world'' end;')
set @retval = 0;
select @retval;
return(@retval);
end try
begin catch
-- if @@TRANCOUNT > 0 commit;
print ERROR_MESSAGE();
set @retval = -1;
select @retval;
return(@retval);
end catch;
go
declare @t table (i int);
insert into @t
exec('test');
select *
from @t;
내 문제는 return(-1)
입니다. 성공 경로는 괜찮습니다.
저장 프로 시저에서 try / catch 블록을 제외하면 오류가 발생하고 삽입이 실패합니다. 그러나 내가하고 싶은 일은 오류를 처리하고 좋은 값을 반환하는 것입니다.
코드는 다음과 같은 메시지를 반환합니다.
Msg 3930, Level 16, State 1, Line 6
The current transaction cannot be committed and cannot support operations that write to the log file. Roll back the transaction.
이것은 아마도 내가 경험 한 최악의 오류 메시지 일 것입니다. "중첩 된 트랜잭션에서 오류를 처리하지 않았습니다."를 의미하는 것 같습니다.
에 넣으면 if @@TRANCOUNT > 0
메시지가 나타납니다.
Msg 3916, Level 16, State 0, Procedure gordontest, Line 7
Cannot use the COMMIT statement within an INSERT-EXEC statement unless BEGIN TRANSACTION is used first.
트랜잭션 시작 / 커밋을 사용하여 시도했지만 아무것도 작동하지 않는 것 같습니다.
그렇다면 전체 트랜잭션을 중단하지 않고 저장 프로 시저에서 오류를 처리하도록하려면 어떻게해야합니까?
Martin에 대한 답변으로 수정 :
실제 호출 코드는 다음과 같습니다.
declare @RetvalTable table (retval int);
set @retval = -1;
insert into @RetvalTable
exec('
@retval int 선언; exec @retval = '+ @ query +'; @retval '선택);
select @retval = retval from @RetvalTable;
@query
저장 프로 시저 호출은 어디에 있습니까 ? 저장 프로 시저에서 반환 값을 얻는 것이 목표입니다. 이것이 insert
(또는 더 구체적으로, 거래를 시작 하지 않고) 가능하다면 , 그것은 좋을 것입니다.
값이 너무 많아 테이블에 값을 저장하기 위해 일반적으로 저장 프로 시저를 수정할 수 없습니다. 그들 중 하나 가 실패하고 그것을 수정할 수 있습니다. 내 현재 최고의 솔루션은 다음과 같습니다.
if (@StoredProcedure = 'sp_rep__post') -- causing me a problem
begin
exec @retval = sp_rep__post;
end;
else
begin
-- the code I'm using now
end;
select @retval; return @retval
결국 더 비슷 합니다. 동적 저장 프로 시저 호출에서 반환 값을 얻는 다른 방법을 알고 있다면 알고 싶습니다.
DECLARE @RC INT;EXEC sp_executesql N'EXEC @RC = test', N'@RC INT OUTPUT', @RC = @RC OUTPUT;insert into @t VALUES (@RC)
declare @t table (i int);declare @RC int;exec @RC = test;insert into @t values (@RC);select * from @t;
잘 작동합니다.