dbo.QBM_FGISessionErrorCount
Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB
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
1CREATE FUNCTION dbo.QBM_FGISessionErrorCount(2) RETURNS int3AS4BEGIN5 RETURN(6 SELECT count(*)7 FROM dbo.QBM_FTSessionErrorLoad())8END
Open raw exported source
1create function dbo.QBM_FGISessionErrorCount() returns int as begin return (select count(*) from dbo.QBM_FTSessionErrorLoad() ) end 2