Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Everyone,
I have a scenario where I have to call Procedure based on system date. below is the scenario.
----------------------------------------------------------------
If system_date =1 (1st of every month)
then sql call procedure_1 and sql procedure 2;
else
sql call procedure_2
--------------------------
how i can achieve this via load editor.
If Day(Today()) = 1 then
Trace Procedure 1;
End If
Trace Procedure 2;
If Day(Today()) = 1 then
Trace Procedure 1;
End If
Trace Procedure 2;