Back to OIM Explorer

dbo.QBM_FSQRemoveComment

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 156 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_i source text reference

Complete Source

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