在存储过程中执行存储过程

时间:2008-10-04 13:29:18

标签: sql sql-server tsql stored-procedures sql-server-2005

我想在存储过程中执行存储过程,例如

EXEC SP1

BEGIN

EXEC SP2
END

但我只希望SP1SP2完成运行后完成,所以我需要找到SP1等待SP2完成{{1}之前的方法结束。

SP1正作为SP2的一部分执行,所以我有类似的内容:

SP1

6 个答案:

答案 0 :(得分:34)

T-SQL不是异步的,所以你别无选择,只能等到SP2结束。幸运的是,这就是你想要的。

CREATE PROCEDURE SP1 AS
   EXEC SP2
   PRINT 'Done'

答案 1 :(得分:15)

以下是我们的一个存储过程的示例,该存储过程在其中执行多个存储过程:

ALTER PROCEDURE [dbo].[AssetLibrary_AssetDelete]
(
    @AssetID AS uniqueidentifier
)
AS

SET NOCOUNT ON

SET TRANSACTION ISOLATION LEVEL READ COMMITTED

EXEC AssetLibrary_AssetDeleteAttributes @AssetID
EXEC AssetLibrary_AssetDeleteComponents @AssetID
EXEC AssetLibrary_AssetDeleteAgreements @AssetID
EXEC AssetLibrary_AssetDeleteMaintenance @AssetID

DELETE FROM
    AssetLibrary_Asset
WHERE
    AssetLibrary_Asset.AssetID = @AssetID

RETURN (@@ERROR)

答案 2 :(得分:11)

我们根据需要使用的内联存储过程。 示例与不同的相同参数具有不同的值,我们必须在查询中使用..

Create Proc SP1
(
 @ID int,
 @Name varchar(40)
 -- etc parameter list, If you don't have any parameter then no need to pass.
 )

  AS
  BEGIN

  -- Here we have some opereations

 -- If there is any Error Before Executing SP2 then SP will stop executing.

  Exec SP2 @ID,@Name,@SomeID OUTPUT 

 -- ,etc some other parameter also we can use OutPut parameters like 

 -- @SomeID is useful for some other operations for condition checking insertion etc.

 -- If you have any Error in you SP2 then also it will stop executing.

 -- If you want to do any other operation after executing SP2 that we can do here.

END

答案 3 :(得分:3)

这是如何工作的存储过程按顺序运行,你不需要像

那样开始
exec dbo.sp1
exec dbo.sp2

答案 4 :(得分:1)

您好我发现我的问题是SP1执行SP1时SP1内部没有执行。

以下是SP1的结构:

ALTER PROCEDURE SP1
AS
BEGIN

Declare c1 cursor....

open c1
fetch next from c1 ...

while @@fetch_status = 0
Begin

...

Fetch Next from c1
end

close c1

deallocate c1

exec sp2

end

答案 5 :(得分:1)

由于SP1中的早期代码出现故障,您的SP2可能无法运行,因此无法访问EXEC SP2。

请发布您的整个代码。