dbo.QBM_PBufferT_DeleteNonlinear
SQL_STORED_PROCEDURE
Created 2025-06-27T17:57:30.200 · modified 2026-04-14T23:14:36.507 · source: live DB sys.objects/sys.sql_expression_dependencies.
Parameters
| Name | Type | Output |
|---|---|---|
@ModuleName | varchar | no |
Referenced objects
| Schema | Object | Column/minor | Class |
|---|---|---|---|
| QBM_PNonlinear_SetFound | OBJECT_OR_COLUMN | ||
| QBM_PSessionErrorAdd | OBJECT_OR_COLUMN | ||
| QBM_YSingleObjectKey | TYPE | ||
| QBMBufferTransfer | OBJECT_OR_COLUMN | ||
| QBMModuleDef | OBJECT_OR_COLUMN | ||
| QBMNonLinearDepend | OBJECT_OR_COLUMN | ||
| dbo | QBM_FCVGUIDToModuleOwner | OBJECT_OR_COLUMN | |
| dbo | QBM_FGISessionErrorRethrow | OBJECT_OR_COLUMN |
Source excerpt
First extracted SQL definition lines from the exported source. Use the full source page for complete context.
1 create procedure QBM_PBufferT_DeleteNonlinear (@ModuleName varchar(3) ) as begin declare @Missing QBM_YSingleObjectKey SET XACT_ABORT OFF 2 BEGIN TRY insert into @Missing(SingleObjectKey) select distinct nd.ObjectKeyOwner from QBMNonLinearDepend nd cross apply string_split( nd.NeededModules 3, char(7)) x left outer join QBMModuleDef m on m.ModuleName = x.value and x.value > ' ' where m.UID_ModuleDef is null and dbo.QBM_FCVGUIDToModuleOwner 4(nd.uid_QBMNonLinearDepend) = @ModuleName option (recompile) delete QBMBufferTransfer from QBMBufferTransfer bt join @Missing m on bt.ObjectKeyOfRow = 5m.SingleObjectKey where bt.ModuleName = @ModuleName option (recompile) exec QBM_PNonlinear_SetFound END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default 6 declare @Rethrow varchar(1000) = dbo.QBM_FGISessionErrorRethrow() RAISERROR (@Rethrow, 18, 1) WITH NOWAIT END CATCH end 7
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:36.507
has TRY/CATCH error handling
Summary: calls QBM_PNonlinear_SetFound, QBM_PSessionErrorAdd; writes INSERT into, DELETE QBMBufferTransfer; reads/joins QBMNonLinearDepend, QBMModuleDef, QBMBufferTransfer
Declared parameters
| Parameter | Type | Direction |
|---|---|---|
@ModuleName | varchar(3) | input |
DML targets
INSERT into DELETE QBMBufferTransferCalled routines
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: @ModuleName @Missing @Rethrow
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_PBufferT_ProcessAll_Delta | SQL expression dependency | OBJECT_OR_COLUMN |
| dbo.QBM_PBufferT_ProcessAll_Delta | source text reference | has TRY/CATCH error handling |