Trouble generating test script from package function?

Stew Stryker

Member³
I'm running version 7.1.1 of PSD and notice that the test script generator isn't working for me any longer.

1) When I have the package open in the editor, I (swore I) used to be able to right-click over the function header (either the source or in the Code Context window) and select Test. Now I don't see the Test option. Only Select, Cut, Copy, Paste, Comment and Expand All.

2) I tried to create a test script by opening object browser, right-click over package function name and choose Test. It opens a blank test window, then displays the following error:

ORA-03117: two-task save area overflow

What am I doing wrong here?

Thanks,

Stew
 
1) When I have the package open in the editor, I (swore I) used to be able to right-click over the function header (either the source or in the Code Context window) and select Test. Now I don't see the Test option. Only Select, Cut, Copy, Paste, Comment and Expand All.
There are 3 requirements:
  1. The package specification must be valid.
  2. The function must be public (declared in the package specification).
  3. You must be connected.

ORA-03117: two-task save area overflow
This may be an Oracle bug. Can you describe the same function in SQL*Plus (from the same Oracle Home that PL/SQL Developer is using)?
 
Marco,

I get the same Oracle error using Describe in SQL*plus. A Google search held out some promising solutions, but none have worked so far.

Thanks for the suggestion that it's an Oracle bug, I hadn't considered that!

Feel free to re-title this topic since it's clearly not a PSD bug.
 
Back
Top