Skip to content

Commit cb1e3a5

Browse files
authored
Merge pull request #205795 from gianlucadardia/patch-2
Update handle-long-running-stored-procedures-sql-connector.md
2 parents 35a0216 + 43cc100 commit cb1e3a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/logic-apps/handle-long-running-stored-procedures-sql-connector.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Here are the steps to add:
108108
@step_timeout_seconds = 30,
109109
@command= N'
110110
IF NOT EXISTS(SELECT [jobid] FROM [dbo].[LongRunningState]
111-
WHERE jobid = $(job_execution_id)
111+
WHERE jobid = $(job_execution_id))
112112
THROW 50400, ''Failed to locate call parameters (Step1)'', 1',
113113
@credential_name='JobRun',
114114
@target_group_name='DatabaseGroupLongRunning'
@@ -126,7 +126,7 @@ Here are the steps to add:
126126
DECLARE @timespan char(8)
127127
DECLARE @callparams NVARCHAR(MAX)
128128
SELECT @callparams = [parameters] FROM [dbo].[LongRunningState]
129-
WHERE jobid = $(job_execution_id))
129+
WHERE jobid = $(job_execution_id)
130130
SET @timespan = @callparams
131131
EXECUTE [dbo].[WaitForIt] @delay = @timespan',
132132
@credential_name='JobRun',

0 commit comments

Comments
 (0)