dbo.QBM_FCVJobParameterToList_fa
SQL_INLINE_TABLE_VALUED_FUNCTION
Created 2026-04-14T23:14:09.937 · modified 2026-04-14T23:14:09.937 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@paramin | nvarchar | no |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| No SQL expression dependencies in snapshot. | |||
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1create function dbo.QBM_FCVJobParameterToList_fa (@paramin nvarchar(max)) returns table with schemabinding as return( select z.Zeile as SortOrder, z.ParameterName 2, z.ParameterValue, case when z.crypthide like N'%Crypted%' then 1 else 0 end as isCrypted , case when z.crypthide like N'%Hidden%' then 1 else 0 end as 3 isHidden , z.CryptHide , z.LaengenPruefung as LengthCheck from ( select w.Zeile, w.CryptHide, w.ParameterName, w.ParameterValue , (w.lenParameterName 4^ len(w.ParameterName)) | (w.lenParameterValue ^ len(w.ParameterValue)) | (w.lenCryptHide ^ len(w.CryptHide)) as LaengenPruefung from ( select (y.DieZeile 5 / 6) as Zeile , try_convert(int, left(max( case when y.DieZeile % 6 = 0 then y.Wert end ), 32) )as lenParameterName , max( case when y.DieZeile % 6 = 6 1 then y.Wert end ) as ParameterName , try_convert(int, left(max( case when y.DieZeile % 6 = 2 then y.Wert end ), 32) ) as lenParameterValue , max( case 7 when y.DieZeile % 6 = 3 then y.Wert end ) as ParameterValue , try_convert(int, left(max( case when y.DieZeile % 6 = 4 then y.Wert end ), 32) ) as lenCryptHide 8 , max( case when y.DieZeile % 6 = 5 then y.Wert end ) as CryptHide from ( select (ROW_NUMBER() over(order by folge ) -1) as DieZeile, x.value as Wert 9 from ( select s.value, 1 as Folge from string_split( case when len(@paramin) > 2 then (substring(@paramin, 2 , len(@Paramin)-2)) else '' end , '~') as 10 s ) as x ) as y group by (y.DieZeile / 6) ) as w ) as z ) 11
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:14:09.937
None extracted.
Summary: reads/joins string_split
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@paramin | nvarchar | input |
DML targets
None extracted.Called routines
None extracted.
Read/join references
SQL dependency metadata
None extracted.
Config/session
Config: None extracted.
Session: None extracted.
DBQueue/tasks
None extracted.Temp tables / referenced variables
Temp: None extracted.
Variables: @paramin @Paramin
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.
| Referencing object | Relation | Evidence |
|---|---|---|
| dbo.QBM_FCVJobParameterToList | SQL expression dependency | dbo · OBJECT_OR_COLUMN |
| dbo.QBM_FCVJobParameterToList | source text reference | SQL_TABLE_VALUED_FUNCTION |