Back to OIM Explorer

dbo.QBM_FCVIntToHash

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 218 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_FCVIntToString 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_FCVIntToHash(2  @in int3) RETURNS varbinary(204)5AS6BEGIN7  RETURN(CASE8  WHEN @in IS NULL THEN9  dbo.QBM_FCVStringToHash('')10  ELSE dbo.QBM_FCVStringToHash(dbo.QBM_FCVIntToString(@in))11  END)12END
Open raw exported source
SQL ยท Raw3 lines
1  create   function dbo.QBM_FCVIntToHash(@in int ) returns varbinary(20) as begin return ( case when @in is null then dbo.QBM_FCVStringToHash(''2) else dbo.QBM_FCVStringToHash(dbo.QBM_FCVIntToString(@in)) end ) end 3