dbo.ATT_FTAttCasesForBaseObject
SQL_INLINE_TABLE_VALUED_FUNCTION
Created 2026-04-14T23:20:42.977 · modified 2026-04-14T23:20:42.977 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@ObjectKeyRelated | varchar | no |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| dbo | AttestationCase | OBJECT_OR_COLUMN | |
| dbo | AttestationCase | UID_AttestationCase | OBJECT_OR_COLUMN |
| dbo | AttestationCase | ObjectKeyBase | OBJECT_OR_COLUMN |
| dbo | AttestationCase | ObjectKey1 | OBJECT_OR_COLUMN |
| dbo | AttestationCase | ObjectKey2 | OBJECT_OR_COLUMN |
| dbo | AttestationCase | ObjectKey3 | OBJECT_OR_COLUMN |
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1create function dbo.ATT_FTAttCasesForBaseObject( @ObjectKeyRelated varchar(138) ) returns table with schemabinding as return ( select y.UID_AttestationCase 2 from ( select ac.UID_AttestationCase, ac.ObjectKey1, ac.ObjectKeyBase , ac.ObjectKey2 , ac.ObjectKey3 from dbo.AttestationCase ac ) as x unpivot (ObjectKeyRelated 3 for spalte in (ObjectKey1,ObjectKeyBase , ObjectKey2, ObjectKey3)) as y where y.ObjectKeyRelated = @ObjectKeyRelated ) 4
Module relation graph
Loading module relation graph…
Source-derived context
Generated from exported SQL module definitions plus read-only sandbox sys.objects/sys.parameters/sys.sql_expression_dependencies metadata. This is factual source evidence, not a semantic guess.
provenance: SQL definition export provenance: sandbox DB metadata modified: 2026-04-14T23:20:42.977
None extracted.
Summary: reads/joins AttestationCase
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@ObjectKeyRelated | varchar(138) | input |
DML targets
None extracted.Called routines
None extracted.
Read/join references
SQL dependency metadata
Config/session
Config: None extracted.
Session: None extracted.
DBQueue/tasks
None extracted.Temp tables / referenced variables
Temp: None extracted.
Variables: @ObjectKeyRelated
Referenced by / reverse dependencies
Generated from live DB metadata, FK rows, and exported SQL dependency/source extraction. This is factual linkage evidence, not inferred behavior.
No reverse dependencies extracted.