Back to OIM Explorer

dbo.TSB_FTDlgColumnITDataFromOrg

Inline Table FunctionSQL_INLINE_TABLE_VALUED_FUNCTIONSandbox DB

Inline Table Function.

Source: sandbox-db sys.sql_modules

Source size: 167 characters

Interpretation

  • Database function. Usually supports views, validation, or calculated predicates; look at referenced-by entries for callers.

Relations

  • No extracted relations.

Typed Edges

  • No typed edges extracted for this source.

References

  • No direct source references extracted.

Referenced By

  • No direct source references extracted.

Complete Source

SQL8 lines
1CREATE FUNCTION dbo.TSB_FTDlgColumnITDataFromOrg(2) RETURNS TABLE3AS4RETURN(5SELECT UID_DialogColumn6FROM DialogColumn7WHERE8  Template LIKE '%TSB_ITDataFromOrg%')
Open raw exported source
SQL ยท Raw3 lines
1create function dbo.TSB_FTDlgColumnITDataFromOrg () returns table as return( SELECT UID_DialogColumn FROM DialogColumn WHERE Template like '%TSB_ITDataFromOrg%'2 ) 3