如何从用户定义的函数调用存储过程在SQL Server 2000中

时间:2009-07-01 19:23:32

标签: sql-server

如何从SQL Server 2000中的用户定义函数调用存储过程

3 个答案:

答案 0 :(得分:4)

您需要将存储过程修改为用户定义的函数,或者反过来。

实现所需内容的一种粗略方法是在批处理脚本中使用exec语句,并从函数中调用该批处理脚本。像这样:

create function <functionName>
exec master.sys.xp_cmpshell 'C:\storedProc.bat'
....
....

return @return
end

更多关于xp_cmpshell on MSDN

答案 1 :(得分:1)

您不能从函数调用常规存储过程 - 只能调用其他函数或某些扩展存储过程。请参阅此处了解BOL article(来自SQL 2005)。尝试从UDF调用标准存储过程将导致以下错误...

Msg 557,Level 16,State 2,Line 1 只能在函数内执行函数和一些扩展存储过程。

答案 2 :(得分:0)

我最近有类似的问题。实际上错误消息格式不正确,因为sp_executesql是一个扩展存储过程,您可以通过以下脚本进行检查: select objectproperty(object_id('sp_executesql'),'IsExtendedProc')

返回1

由于我们不能使用sp_executesql即使它是XP,我也必须使用sp_OAMethod找到另一种解决方法。我的方案是如何根据某些条件(我的方案中的null值)在表中动态查找行数。使用sp_OAMethod我构建了以下函数:

IF object_id(N'dbo.fc_ContaRegistros_x_Criterio') is not null DROP FUNCTION [dbo].[fc_ContaRegistros_x_Criterio]
GO
SET QUOTED_IDENTIFIER ON 
GO
SET ANSI_NULLS ON 
GO
CREATE FUNCTION dbo.fc_ContaRegistros_x_Criterio (
    @str_TBName VARCHAR(100), 
    @str_Criter VARCHAR(500)
)
RETURNS BIGINT
AS
BEGIN
-- Objetivo   : Contar numero de registros de uma determinada tabela de acordo com o critério passado 
-- Criação    : Josué Monteiro Viana - 09/07/09
/*
Exemplo: 
    DECLARE @count INT
    SET @count = dbo.fc_ContaRegistros_x_Criterio('master.dbo.sysobjects', '') 
    PRINT @count
    SET @count = dbo.fc_ContaRegistros_x_Criterio('crk.dbo.acao', 'where cod_acao is null') 
    PRINT @count
*/
    DECLARE 
        @int_objSQL INT,
        @int_erros INT,
        @int_objSelectCountResult INT,
        @bint_SelectCount BIGINT,
        @sql NVARCHAR(2000)

    EXEC @int_erros = sp_OACreate 'SQLDMO.SQLServer', @int_objSQL OUTPUT
    EXEC @int_erros = sp_OASetProperty @int_objSQL, 'LoginSecure', TRUE
    EXEC @int_erros = sp_OAMethod @int_objSQL, 'Connect', null, '.'
    --SET @sql = 'SELECT count(*) FROM ' + @str_TBName + ' WHERE ' + @str_Criter 
    SET @sql = 'SELECT count(*) FROM ' + @str_TBName + ' ' + @str_Criter 
    SET @sql = 'ExecuteWithResults("' + @sql + '")'
    EXEC @int_erros = sp_OAMethod @int_objSQL, @sql, @int_objSelectCountResult OUTPUT
    EXEC @int_erros = sp_OAMethod @int_objSelectCountResult, 'GetRangeString(1, 1)', @bint_SelectCount OUT
    EXEC @int_erros = sp_OADestroy @int_objSQL
    -- debug info: not valid inside a fc
    --if @int_erros <> 0 EXEC sp_OAGetErrorInfo @int_objSQL else print 'ok'
    if @int_erros <> 0 SET @bint_SelectCount = @int_erros
    RETURN @bint_SelectCount
END
GO
SET QUOTED_IDENTIFIER OFF 
GO
SET ANSI_NULLS ON 
GO

我知道你的情况有点不同,但我相信你可以用这个udf作为指导来帮助你。

祝福, Josue Monteiro Viana