dbo.QBM_FSQIndexDef
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_FSQIndexDef_i source text reference
Complete Source
1CREATE FUNCTION dbo.QBM_FSQIndexDef(2 @TableOrTypeName nvarchar(64),3 @IndexPattern nvarchar(64)4) RETURNS nvarchar(max5)6AS7BEGIN8 RETURN(9 SELECT10 dbo.QBM_FSQIndexDef_i(@TableOrTypeName, @IndexPattern, 0))11END
Open raw exported source
1create function dbo.QBM_FSQIndexDef (@TableOrTypeName nvarchar(64), @IndexPattern nvarchar(64) ) returns nvarchar(max) as begin return( select2 dbo.QBM_FSQIndexDef_i(@TableOrTypeName , @IndexPattern , 0) ) end 3