dbTalk Databases Forums  

"ORA-xxxxx" error's description?

comp.databases.oracle.tools comp.databases.oracle.tools


Discuss "ORA-xxxxx" error's description? in the comp.databases.oracle.tools forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
sunshine
 
Posts: n/a

Default "ORA-xxxxx" error's description? - 06-13-2007 , 07:28 AM






Hi folks,

I am working on oracle 9i on windows xp system.
while executing queries in SQL interpreter (oracle SQL* plus) i get
error messages
starting with ' ORA-XXXXX: ' .many times i can not understand the
errors because of limited description.

I got the detailed description on net @ http://www.cs.uvm.edu/oracle9doc/nav/error_search.htm
but i want to know -
Is there any help tool that get installed with oracle 9i in the
system
which wud give me detailed description about error on specifying the
error code(ORA-XXXX) without internet connection??

if yes, tell me path of that help tool.

regards.


Reply With Quote
  #2  
Old   
Wazusa Blong
 
Posts: n/a

Default Re: "ORA-xxxxx" error's description? - 06-13-2007 , 07:42 AM






On Jun 13, 7:28 am, sunshine <ravindra.har... (AT) gmail (DOT) com> wrote:
Quote:
Hi folks,

I am working on oracle 9i on windows xp system.
while executing queries in SQL interpreter (oracle SQL* plus) i get
error messages
starting with ' ORA-XXXXX: ' .many times i can not understand the
errors because of limited description.

I got the detailed description on net @http://www.cs.uvm.edu/oracle9doc/nav/error_search.htm
but i want to know -
Is there any help tool that get installed with oracle 9i in the
system
which wud give me detailed description about error on specifying the
error code(ORA-XXXX) without internet connection??

if yes, tell me path of that help tool.

regards.
I would read this link and implement the oerr.java code provided:

http://www.oracleutilities.com/OSUtil/oerr.html


David Fitzjarrell



Reply With Quote
  #3  
Old   
Brian Peasland
 
Posts: n/a

Default Re: "ORA-xxxxx" error's description? - 06-13-2007 , 10:33 AM



sunshine wrote:
Quote:
Hi folks,

I am working on oracle 9i on windows xp system.
while executing queries in SQL interpreter (oracle SQL* plus) i get
error messages
starting with ' ORA-XXXXX: ' .many times i can not understand the
errors because of limited description.

I got the detailed description on net @ http://www.cs.uvm.edu/oracle9doc/nav/error_search.htm
but i want to know -
Is there any help tool that get installed with oracle 9i in the
system
which wud give me detailed description about error on specifying the
error code(ORA-XXXX) without internet connection??

if yes, tell me path of that help tool.

regards.

If you are on Unix/Linux, Oracle includes the 'oerr' utility. I'm not
sure why they do not include this on Windows. Otherwise, you can use the
Oracle documentation:

http://download-east.oracle.com/docs...a96525/toc.htm


HTH,
Brian


--
================================================== =================

Brian Peasland
dba (AT) nospam (DOT) peasland.net
http://www.peasland.net

Remove the "nospam." from the email address to email me.


"I can give it to you cheap, quick, and good.
Now pick two out of the three" - Unknown

--
Posted via a free Usenet account from http://www.teranews.com



Reply With Quote
  #4  
Old   
Wazusa Blong
 
Posts: n/a

Default Re: "ORA-xxxxx" error's description? - 06-13-2007 , 11:57 AM



On Jun 13, 10:33 am, Brian Peasland <d... (AT) nospam (DOT) peasland.net> wrote:
Quote:
sunshine wrote:
Hi folks,

I am working on oracle 9i on windows xp system.
while executing queries in SQL interpreter (oracle SQL* plus) i get
error messages
starting with ' ORA-XXXXX: ' .many times i can not understand the
errors because of limited description.

I got the detailed description on net @http://www.cs.uvm.edu/oracle9doc/nav/error_search.htm
but i want to know -
Is there any help tool that get installed with oracle 9i in the
system
which wud give me detailed description about error on specifying the
error code(ORA-XXXX) without internet connection??

if yes, tell me path of that help tool.

regards.

If you are on Unix/Linux, Oracle includes the 'oerr' utility. I'm not
sure why they do not include this on Windows. Otherwise, you can use the
Oracle documentation:

http://download-east.oracle.com/docs...r.920/a96525/t...

HTH,
Brian

--
================================================== =================

Brian Peasland
d... (AT) nospam (DOT) peasland.nethttp://www.peasland.net

Remove the "nospam." from the email address to email me.

"I can give it to you cheap, quick, and good.
Now pick two out of the three" - Unknown

--
Posted via a free Usenet account fromhttp://www.teranews.com- Hide quoted text -

- Show quoted text -
It's not included on Windows because:

1) It's a shell script
2) It uses sed and awk to parse the message file, utilities not
installed on Windows

The java option I posted does a good job of emulating the oerr shell
script functionality.


David Fitzjarrell



Reply With Quote
  #5  
Old   
OneMan
 
Posts: n/a

Default Re: "ORA-xxxxx" error's description? - 06-13-2007 , 01:02 PM



The documentation is on the CD that contains the 9i server s/w.

You can download it from:
http://www.oracle.com/technology/doc.../oracle9i.html

You can use the following pl/sql from within sql*plus to get the error
details, by entering the error number when prompted:

set serveroutput on size 1000000
begin
dbms_output.put_line( sqlerrm(-&verr) );
end;
/



In article <1181737728.895393.250570 (AT) j4g2000prf (DOT) googlegroups.com>,
ravindra.harige (AT) gmail (DOT) com says...
Quote:
Hi folks,

I am working on oracle 9i on windows xp system.
while executing queries in SQL interpreter (oracle SQL* plus) i get
error messages
starting with ' ORA-XXXXX: ' .many times i can not understand the
errors because of limited description.

I got the detailed description on net @ http://www.cs.uvm.edu/oracle9doc/nav/error_search.htm
but i want to know -
Is there any help tool that get installed with oracle 9i in the
system
which wud give me detailed description about error on specifying the
error code(ORA-XXXX) without internet connection??

if yes, tell me path of that help tool.

regards.



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.