找不到程序中调用的查找函数

时间:2011-12-19 23:16:17

标签: sql-server function object sys

我是SQL Server的新手。我有一个问题,我们有一个名为sys.sp_MSallocate_new_identity_range的存储过程(参见下面的逻辑部分)。它引用了我可以找到的两个函数。

if (**sys.fn_MSmerge_isrepublisher**(@artid)=0)
    begin
        declare @publisher_max_used numeric(38,0)
        declare @pubid uniqueidentifier
        declare @pub_ranges_needed tinyint
        declare @pub_refresh_constraint bit

        select @pubid = subid, @publisher_max_used = max_used from dbo.MSmerge_identity_range 
            where artid = @artid and is_pub_range = 1 and (**sys.fn_MSmerge_islocalpubid**(subid)=1)
        if @pubid is NULL
        begin
            raiserror(20663, 16, -1)
            return 1
        end

使用适当的参数运行存储的prcoedure - 返回结果:

declare @p4 smallint
set @p4=2
declare @p5 numeric(38,0)
set @p5=31001
declare @p6 numeric(38,0)
set @p6=32001
declare @p7 numeric(38,0)
set @p7=32001
declare @p8 numeric(38,0)
set @p8=33001
exec sys.sp_MSallocate_new_identity_range 'B551D87F-5457-2102-9E6A-DD4EB44B1DD1','4EB5E2D0-3FC1-4D77-B894-5D57C433D0B2',2,@p4 output,@p5 output,@p6 output,@p7 output,@p8 output,N'dev_02',N'PPC04 - 21a535007fd8',N'My Documents\Assets\assets.sdf'
select @p4, @p5, @p6, @p7, @p8

即这可以工作并返回结果。一切都很好 - 但我无法找到存储过程中嵌入的函数,即sys.fn_MSmerge_isrepublishersys.fn_MSmerge_islocalpubid

我查看了sys.objectssys.all_objects where name like '%fn_MSmerge%'

我已设法跟踪SQL并且跟踪提供了ObjectID,我可以看到语句正在执行。跟踪告诉我这是一个功能 - 20038 - FN - 给我一个563464549的目标 - 但是通过在sys.objects中查找数据库找不到

任何帮助/建议都乐意接受。

1 个答案:

答案 0 :(得分:1)

这些对象定义似乎确实被隐藏了。如果通过DAC连接并运行

SELECT OBJECT_DEFINITION(OBJECT_ID('sys.fn_MSmerge_islocalpubid'))  AS
       [processing-instruction(x)],
       OBJECT_DEFINITION(OBJECT_ID('sys.fn_MSmerge_isrepublisher')) AS
       [processing-instruction(y)]
FOR XML PATH('')  

你可以看到它们。我的SQL Server版本的定义如下

create function sys.fn_MSmerge_islocalpubid (@pubid uniqueidentifier)
returns bit
as
begin
    declare @publisher_db sysname
    declare @publisher sysname

    select @publisher_db = publisher_db, @publisher = publisher 
    from dbo.sysmergepublications 
    where pubid = @pubid
    if @publisher_db is NULL or @publisher is NULL
        return 0

    if @publisher_db = db_name() and UPPER(@publisher) = UPPER(publishingservername())
        return 1

    return 0
end


create function sys.fn_MSmerge_isrepublisher (@artid uniqueidentifier)
returns bit
as
begin
    if exists (select pubid from dbo.sysmergearticles where artid = @artid and (sys.fn_MSmerge_islocalpubid(pubid) = 0))
        return 1

    return 0
end