UFN_PDACCOUNTSTRUCTURE_ACCOUNTSTRINGLENGTH

Returns the number of characters in the account string

Return

Return Type
int

Definition

Copy


CREATE function dbo.UFN_PDACCOUNTSTRUCTURE_ACCOUNTSTRINGLENGTH()
returns int
with execute as caller
as 
begin
    declare @AcctStringLength int = (select dbo.UFN_PDACCOUNTSTRUCTURE_ACCOUNTSTRINGLENGTH2('4B121C2C-CCE6-440D-894C-EA0DEF80D50B'))

    return @AcctStringLength
end