开发者

How to get information about compile error in Oracle/TOAD

开发者 https://www.devze.com 2023-03-27 06:49 出处:网络
I\'m using TOAD to develop a stored function in an Oracle database. When I click the \"run as script\" button in TOAD, it tells me that the script was executed with 0 errors and 1 compile errors. Wher

I'm using TOAD to develop a stored function in an Oracle database. When I click the "run as script" button in TOAD, it tells me that the script was executed with 0 errors and 1 compile errors. Where do I see the specific compile error(s). I'm fairly new to TOAD so I might be mi开发者_Go百科ssing something obvious about the interface like a tab/window to see such error messages.


You can either add SHOW ERRORS to the end of the script, which will print the error message(s) to the "script output" tab, or compile the function using the "Execute Statement" command in Toad, which will cause the errors to be displayed in a box at the bottom of the editor.


Or you can look in USER_ERRORS table afterwards


Click on Database -> Procedure Editor in top tool bar.

Paste your code in this new editor window and execute by clicking green play button on top.

All the errors will be displayed in a new window at the bottom.


2 things you can do

  1. goto Toad, schema browser, select Invalid Objects will tell you where to look.
  2. then load the package into the editor and select the function, right click, compile, wioll show you the errors


Another option that worked for me was to open my script in the procedure editor and compile it there.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号