Back to OIM Explorer

dbo.QBM_FGISessionErrorCount

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 137 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_FTSessionErrorLoad source text reference

Complete Source

SQL8 lines
1CREATE FUNCTION dbo.QBM_FGISessionErrorCount(2) RETURNS int3AS4BEGIN5  RETURN(6  SELECT count(*)7  FROM dbo.QBM_FTSessionErrorLoad())8END
Open raw exported source
SQL ยท Raw2 lines
1create   function dbo.QBM_FGISessionErrorCount() returns int as begin  return (select count(*) from dbo.QBM_FTSessionErrorLoad() ) end 2