Back to OIM Explorer

dbo.QBM_FGISessionErrorRethrow

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 197 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_FGISessionErrorForLog source text reference

References

Referenced By

Complete Source

SQL8 lines
1CREATE FUNCTION dbo.QBM_FGISessionErrorRethrow(2) RETURNS varchar(10003)4  WITH SCHEMABINDING5AS6BEGIN7  RETURN('error(s) detected, select dbo.QBM_FGISessionErrorForLog() to see details')8END
Open raw exported source
SQL ยท Raw3 lines
1   create   function dbo.QBM_FGISessionErrorRethrow() returns varchar(1000) with SCHEMABINDING as begin return( 'error(s) detected, select dbo.QBM_FGISessionErrorForLog() to see details'2 ) end 3