Hello DTS gods! I come before you again with a question...
Were trying to create a DTS pacakge on our SQL server to push some data over to Oracle, then when the push is done, execute an exising oracle stored procedure to move that data around and do some funky stuff with that.
After reading around, i can find someone who has said "Yes it can be done" or "No it can't be done".
I figured that i could just use the "execute sql" with the oracle connection and it would execute the SP.
Here comes the problem. I can't figure out the right execution syntax. The stored procedure takes no parameters in or out.
Here is how i've tried calling(none work):
BEGIN
LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
END;
BEGIN
USER.LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
END;
LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
Any idea why they wont work? I get errors about things not being declared. I get stuff about the function doesn't exists.
I'm seriously stumped. Anyone have any experience with this? Or an idea to help? Thanks guys! It will be a huge help!
Paul
Were trying to create a DTS pacakge on our SQL server to push some data over to Oracle, then when the push is done, execute an exising oracle stored procedure to move that data around and do some funky stuff with that.
After reading around, i can find someone who has said "Yes it can be done" or "No it can't be done".
I figured that i could just use the "execute sql" with the oracle connection and it would execute the SP.
Here comes the problem. I can't figure out the right execution syntax. The stored procedure takes no parameters in or out.
Here is how i've tried calling(none work):
BEGIN
LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
END;
BEGIN
USER.LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
END;
LSS_PKG_PROD_DESC.LSS_PRO_UPDATE_DESC();
Any idea why they wont work? I get errors about things not being declared. I get stuff about the function doesn't exists.
I'm seriously stumped. Anyone have any experience with this? Or an idea to help? Thanks guys! It will be a huge help!
Paul