ストアドプロシージャのレコードセットを反復処理し、各フィールドを引数として使用して別のストアドプロシージャを実行する必要があります。この反復をコードで完了することはできません。私はインターネットでサンプルを見つけましたが、それらはすべてカウンターを扱っているようです。私の問題がカウンターに関するものかどうかはわかりません。 foreachに相当するT-SQLが必要です
現在、最初のストアドプロシージャはそのレコードセットを一時テーブル#mytempに格納しています。私は次のようにセカンダリストアドプロシージャを呼び出すと想定します。
while (something)
execute nameofstoredprocedure arg1, arg2, arg3
end
レコードセットをループするカーソルを作成する必要があります。
テーブルの例:
CREATE TABLE Customers
(
CustomerId INT NOT NULL PRIMARY KEY IDENTITY(1,1)
,FirstName Varchar(50)
,LastName VARCHAR(40)
)
INSERT INTO Customers VALUES('jane', 'doe')
INSERT INTO Customers VALUES('bob', 'smith')
カーソル:
DECLARE @CustomerId INT, @FirstName VARCHAR(30), @LastName VARCHAR(50)
DECLARE @MessageOutput VARCHAR(100)
DECLARE Customer_Cursor CURSOR FOR
SELECT CustomerId, FirstName, LastName FROM Customers
OPEN Customer_Cursor
FETCH NEXT FROM Customer_Cursor INTO
@CustomerId, @FirstName, @LastName
WHILE @@FETCH_STATUS = 0
BEGIN
SET @MessageOutput = @FirstName + ' ' + @LastName
RAISERROR(@MessageOutput,0,1) WITH NOWAIT
FETCH NEXT FROM Customer_Cursor INTO
@CustomerId, @FirstName, @LastName
END
CLOSE Customer_Cursor
DEALLOCATE Customer_Cursor
これらの作成方法に関するMSDNへのリンクは次のとおりです。
http://msdn.Microsoft.com/en-us/library/ms180169.aspx
これが、出力にPRINTではなくRaise Errorを使用した理由です。
http://structuredsight.com/2014/11/24/wait-wait-dont-tell-me-on-second-thought/
SQLプロシージャの行をループするのは非常に簡単です。カーソルを使用する必要があるだけです。ここで例を示します。これは、テーブルEmployee with column [〜 #〜] name [〜#〜]および[〜#〜] age [〜#〜] 50レコードが含まれ、ストアドプロシージャを実行する必要がある[ 〜#〜] testproc [〜#〜]各行の名前と年齢のパラメータを取得します。
create procedure CursorProc
as
begin
declare @count bigint;
declare @age varchar(500)
declare @name varchar(500)
select @count = (select count(*) from employee)
declare FirstCursor cursor for select name, age from employee
open FirstCursor
while @count > 0
begin
fetch FirstCursor into @name, @age
Exec TestProc @name, @age
set @count = @count - 1
end
close FirstCursor
deallocate FirstCursor
end
エラーを回避するために、カーソルの割り当てを解除してください。
これを試してください(カーソルなしのループ):
CREATE TABLE #Results (RowID int identity(1,1), Col1 varchar(5), Col2 int, ... )
DECLARE @Current int
,@End int
DECLARE @Col1 varchar(5)
,@Col2 int
,...
--you need to capture the result set from the primary stored procedure
INSERT INTO #Results
(Col1, COl2,...)
EXEC nameofstoredprocedure_1 arg1, arg2, arg3
SELECT @End=@@ROWCOUNT,@Current=0
--process each row in the result set
WHILE @Current<@End
BEGIN
SET @Current=@Current+1
SELECT
@Col1=COl1, @Col2=Col2
FROM #Results
WHERE RowID=@Current
--call the secondary procedure for each row
EXEC nameofstoredprocedure_2 @Col1, @Col2,...
END
作業例:
CREATE PROCEDURE nameofstoredprocedure_1
(@arg1 int, @arg2 int, @arg3 int)
AS
SELECT 'AAA',@arg1 UNION SELECT 'BBB',@arg2 UNION SELECT 'CCC',@arg3
GO
CREATE PROCEDURE nameofstoredprocedure_2
(@P1 varchar(5), @P2 int)
AS
PRINT '>>'+ISNULL(@P1,'')+','+ISNULL(CONVERT(varchar(10),@P2),'')
GO
CREATE TABLE #Results (RowID int identity(1,1), Col1 varchar(5), Col2 int)
DECLARE @Current int
,@End int
DECLARE @Col1 varchar(5)
,@Col2 int
INSERT INTO #Results
(Col1, COl2)
EXEC nameofstoredprocedure_1 111, 222, 333
SELECT @End=@@ROWCOUNT,@Current=0
WHILE @Current<@End
BEGIN
SET @Current=@Current+1
SELECT
@Col1=COl1, @Col2=Col2
FROM #Results
WHERE RowID=@Current
EXEC nameofstoredprocedure_2 @Col1, @Col2
END
出力:
(3 row(s) affected)
>>AAA,111
>>BBB,222
>>CCC,333