Back to OIM Explorer

dbo.QBM_FCVBigIntToHash

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 228 characters

Interpretation

  • Database function. Usually supports views, validation, or calculated predicates; look at referenced-by entries for callers.

Relations

  • No extracted relations.

Typed Edges

  • references source dbo.QBM_FCVBigIntToString source text reference
  • references source dbo.QBM_FCVStringToHash source text reference

References

Referenced By

  • No direct source references extracted.

Complete Source

SQL12 lines
1CREATE FUNCTION dbo.QBM_FCVBigIntToHash(2  @in bigint3) RETURNS varbinary(204)5AS6BEGIN7  RETURN(CASE8  WHEN @in IS NULL THEN9  dbo.QBM_FCVStringToHash(N '')10  ELSE dbo.QBM_FCVStringToHash(dbo.QBM_FCVBigIntToString(@in))11  END)12END
Open raw exported source
SQL ยท Raw3 lines
1  create   function dbo.QBM_FCVBigIntToHash(@in bigint ) returns varbinary(20) as begin return ( case when @in is null then dbo.QBM_FCVStringToHash2(N'') else dbo.QBM_FCVStringToHash(dbo.QBM_FCVBigIntToString(@in)) end ) end 3