Back to OIM Explorer

dbo.QBM_FGISessionErrorForLog_7

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 201 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 source dbo.QBM_FGISessionErrorForLog_i source text reference

References

Referenced By

  • No direct source references extracted.

Complete Source

SQL9 lines
1CREATE FUNCTION dbo.QBM_FGISessionErrorForLog_7(2) RETURNS nvarchar(max3)4AS5BEGIN6  DECLARE @RowDelimiter nvarchar(16) = nchar(7)7  RETURN(8  SELECT dbo.QBM_FGISessionErrorForLog_i(@RowDelimiter))9END
Open raw exported source
SQL ยท Raw3 lines
1create   function dbo.QBM_FGISessionErrorForLog_7() returns nvarchar(max) as begin declare @RowDelimiter nvarchar(16) = nchar(7) return( select 2dbo.QBM_FGISessionErrorForLog_i(@RowDelimiter) ) end 3