JamesR
1
Hi All,
Really basic question, how to I execute a package in TDA?
In Toad for Oracle I can right-click on the package and execute, but in TDA this option is greyed out (see image).
I’ve not used packages before, is there a way I can execute this from a script?
Thanks,
James
![package.jpeg](https://global.discourse-cdn.com/quest/original/2X/2/2949b66563428a6d5aa9d24369069875c6f9cf8d.jpeg)
BEGIN
:P_EMPNO := 1;
QUEST_STAGE.DSAL ( :P_EMPNO );
END;
Mnnn…that’s a bug. I entered CR98396.
For now you will have to use functions in a SQL statement and procedures in a block of code.
JamesR
3
Ah, I thought it was just me!
Thanks for the info.
James