Hi,
I just want to ask if the Stored Procedure will be triggered in Modeler → Connect when we add it as an extract object?
I added this code in the Query and the object is returning the result. However the table being populated in BI_Util.[dbo].[usp_dvProcessExecution] is not updated.
DECLARE @processName varchar(100)
SET @processName = 'PTO_Reporting'
EXECUTE BI_Util.[dbo].[usp_dvProcessExecution]
@processName = @processName
, @minimumSequenceToRun = 0
, @debug = 0
SELECT 1 as [result1], 1 as [result2]