Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

calling Oracle stored procedure within a dts package

Status
Not open for further replies.

anupamanimak

Programmer
Apr 2, 2003
1
0
0
US
I need to call an oracle stored procedure from a DTS package. I used Execute SQL task. I need to pass input parameters to the procedure and I need to get back some computed values. I thought I could do it by setting up the global parameters and using the "Parameters" button on the Execute SQL task. I have my procedure call as :

begin
pkg_test.pr_test(inparam1 => ?, outparam2 => ?) ;
end;

But when I click on the "Parameters" button, I get a message
"SQL statement does not contain any parameters"

what am I doing wrong?

Thanks,
Anupama
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top