Hello,
Can any of you guide me the steps to schedule an Oracle proc via AdTempus? I see it only has option for SQL server DB not for Oracle. Please help.
Thanks
Hello,
Can any of you guide me the steps to schedule an Oracle proc via AdTempus? I see it only has option for SQL server DB not for Oracle. Please help.
Thanks
I have installed Oracle client and OLEDB . test connection is successfull. I placed the EXEC statement to run a procedure in Database operation task properties>Action: Exectue Database job and underneath pasted the exec statement which has to be run. But it failed
When i tried using execute sql option, it says invalid sql statement.
ANyone can help on where to place teh exec statement in order to run oracle procedure??
You should be using the "Execute SQL" action. However, I got the same error you did when trying to execute a stored procedure. We are investigating the problem.
If you use a simple exec statement, this fails with ORA-00900: invalid SQL statement. This appears to be a limitation of the OLEDB driver used to connect to the database.
It works correctly if you use either of the following approaches (assuming you're calling the procedure "my_procedure"):
begin
my_procedure(
'param1'
)
end
;
or
{call my_procedure(
'param1'
)}
Replies are disabled for this topic.