UFN_IMPORTSOURCE_GETNAME

Return

Return Type
nvarchar(100)

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN

Definition

Copy


create function dbo.UFN_IMPORTSOURCE_GETNAME(@ID uniqueidentifier) 
returns nvarchar(100
as
begin
    declare @s nvarchar(100);
    select @s = NAME from dbo.IMPORTSOURCE where ID = @ID;
    return @s;
end