标签集

在JOB中执行存储过程

 EXEC  [dbo].[haha]

 

数据库自动生成的语句如下:

 

USE [Runtime]
GO

DECLARE @return_value int

EXEC @return_value = [dbo].[haha]

SELECT 'Return Value' = @return_value

GO

 

posted on 2009-11-01 22:32  宋亚奇  阅读(214)  评论(0编辑  收藏  举报

导航