dbo.QBM_FSQRemoveCommentAndFormat
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_FSQRemoveComment source text reference
- references source dbo.QBM_FSQRemoveComment_i source text reference
References
Referenced By
Complete Source
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
1create function dbo.QBM_FSQRemoveCommentAndFormat (@SQLIn nvarchar(max) ) returns nvarchar(max) as begin return(dbo.QBM_FSQRemoveComment_i (@SQLIn2 , 1 ) ) end 3