Back to OIM Explorer

dbo.QBM_FSQRemoveCommentAndFormat

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 165 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_FSQRemoveComment source text reference
  • references source dbo.QBM_FSQRemoveComment_i source text reference

Complete Source

SQL8 lines
1CREATE FUNCTION dbo.QBM_FSQRemoveCommentAndFormat(2  @SQLIn nvarchar(max)3) RETURNS nvarchar(max4)5AS6BEGIN7  RETURN(dbo.QBM_FSQRemoveComment_i(@SQLIn, 1))8END
Open raw exported source
SQL ยท Raw3 lines
1create   function dbo.QBM_FSQRemoveCommentAndFormat (@SQLIn nvarchar(max) ) returns nvarchar(max) as begin return(dbo.QBM_FSQRemoveComment_i (@SQLIn2 , 1 ) ) end 3