Back to OIM Explorer

dbo.QBM_FSQIndexDef

Scalar FunctionSQL_SCALAR_FUNCTIONSandbox DB

Scalar Function.

Source: sandbox-db sys.sql_modules

Source size: 215 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_FSQIndexDef_i source text reference

Complete Source

SQL11 lines
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
SQL ยท Raw3 lines
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