dbo.QBM_PBufferT_ProcessAll_Delta

SQL_STORED_PROCEDURE

Created 2025-06-27T17:57:30.343 · modified 2026-04-14T23:14:36.580 · source: live DB sys.objects/sys.sql_expression_dependencies.

Open formatted source/search result

Parameters

NameTypeOutput
@ModuleNamevarcharno

Referenced objects

SchemaObjectColumn/minorClass
QBM_PBufferT_DeleteNonlinearOBJECT_OR_COLUMN
QBM_PBufferT_ProcAll_Delta_iOBJECT_OR_COLUMN
QBM_PSessionErrorAddOBJECT_OR_COLUMN
QBMBufferTransferOBJECT_OR_COLUMN
dboQBM_FGISessionErrorRethrowOBJECT_OR_COLUMN

Source excerpt

First extracted SQL definition lines from the exported source. Use the full source page for complete context.

Open full formatted source

1  create   procedure QBM_PBufferT_ProcessAll_Delta (@ModuleName varchar(3) ) as begin declare @DebugLevel char(1) = 'W'  SET XACT_ABORT OFF BEGIN
2 TRY  if OBJECT_ID('tempdb..#QBMBufferTransferOneTable') is null begin  create table #QBMBufferTransferOneTable (ColumnName varchar(30) collate database_default
3 , ObjectKeyOfRow varchar(138) collate database_default  , ContentShort nvarchar(400) collate database_default , HasContentFull bit default 0 , ContentFull
4 nvarchar(max) collate database_default ) end if exists (select top 1 1 from QBMBufferTransfer t where t.TableName = 'QBMNonLinearDepend' ) begin  truncate
5 table #QBMBufferTransferOneTable exec QBM_PBufferT_ProcAll_Delta_i @Modulename, 'QBMNonLinearDepend' delete QBMBufferTransfer where TableName = 'QBMNonLinearDepend'
6 end exec QBM_PBufferT_DeleteNonlinear @ModuleName  exec QBM_PBufferT_ProcAll_Delta_i @Modulename, '%' END TRY BEGIN CATCH exec QBM_PSessionErrorAdd default
7 declare @Rethrow varchar(1000) = dbo.QBM_FGISessionErrorRethrow() RAISERROR (@Rethrow, 18, 1) WITH NOWAIT END CATCH endLabel: truncate table #QBMBufferTransferOneTable
8 end 
9

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.580

has TRY/CATCH error handling

Summary: calls QBM_PBufferT_ProcAll_Delta_i, QBM_PBufferT_DeleteNonlinear, QBM_PSessionErrorAdd; writes DELETE QBMBufferTransfer; reads/joins QBMBufferTransfer

Declared parameters

ParameterTypeDirection
@ModuleNamevarchar(3)input

DML targets

DELETE QBMBufferTransfer

Read/join references

Config/session

Config: None extracted.

Session: None extracted.

DBQueue/tasks

None extracted.

Temp tables / referenced variables

Temp: #QBMBufferTransferOneTable

Variables: @ModuleName @DebugLevel @Modulename @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.

No reverse dependencies extracted.