저장 프로 시저에서 SQL 스크립트를 실행하는 것과 관련된 오류를 트래핑 할 수있는 방법에 대한 도움이 필요합니다.저장 프로 시저 내에서 sql 스크립트를 실행하는 데 도움이 필요
select sopScript
from M_SopInsert
where soptype = @soptype and sopnumbe = @sopnumbe and lnitmseq = @lnitmseq
If result_count > 0 //if result from above sql query is >0
exec sopScript //loop through the record set and execute sopscript for every record.
참고 : 질문 원래
update customerMaster
set custname='abc'
where custid=100`"
(http://technet.microsoft를이 [기사]을 확인하시기 바랍니다 : 그런 다음
TRY
언제의 개별 실행은이
ERROR CATCH
사용 절차에서 오류를 잡으려고합니다. com/ko-kr/library/aa175920 % 28v = sql.80 % 29.aspx) –커서를 작성하는 방법에 대한 예제가 있습니까? – davids
SQL 커서에 대한이 기사를 읽으십시오. http://technet.microsoft.com/en-us/library/ms180169.aspx – davids