Re: Oracle error -20001

2001-05-15 Thread Bill Pribyl

 Unless things have changed, 2 thru 20999 are user specified error numbers, not 
generated by Oracle.

It turns out that some of the developers at Oracle have been using these error numbers 
as well.  If you're
on a unix box, try this:

grep -i '\-20[0-9][0-9][0-9]' $ORACLE_HOME/rdbms/admin/*

...I see about 200 uses of this error range by Oracle.  A few examples:

utlpwdmg.sql: raise_application_error(-20001, 'Password same as user');
utltcp.sql:  end_of_input_errcode CONSTANT PLS_INTEGER:= -20001;
recover.bsq:raise_application_error(-20001, 'Database not found');

A good application developer will include a descriptive message to go along with that 
error number...if you
can't get to the source code, maybe see if there is a way to enable more logging 
features so you can see
the error text.

Good luck
Bill
--

__
http://www.datacraft.com/http://plnet.org/


-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Bill Pribyl
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Oracle error -20001

2001-05-14 Thread Tim Sawmiller

Unless things have changed, 2 thru 20999 are user specified error numbers, not 
generated by Oracle.



 [EMAIL PROTECTED] 05/11/01 01:20PM 
Has anyone any idea what this means?

It is coming up when trying to use a procedure in a PL/SQL package to
display a web page. With some negative errors we are able to remove
them by reloading all for the application in the OAS manager but not
this one.

Searching MetaLink I come up with suggestions to patch Applications
11i or upgrade Developer 6 - neither of which are in use here. I also
came up with cause not determined.

Environment: Sun OS 5.7
 Oracle8i Enterprise Edition release 8.1.6.0.0
 OAS 4.0 - we are using a secure server

Both the package and package body are valid.

Any help in unraveling this would be greaterly appreciated.


  Pat
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com 
-- 
Author: Pat Hildebrand
  INET: [EMAIL PROTECTED] 

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).

--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Tim Sawmiller
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Re: Oracle error -20001

2001-05-12 Thread Connor McDonald

This is a user generated error - typically 2 to
20999 are when people use to raise their own errors
using the raise_application_error built in.

hth
connor

--- Pat Hildebrand [EMAIL PROTECTED] wrote:  Has
anyone any idea what this means?
 
 It is coming up when trying to use a procedure in a
 PL/SQL package to
 display a web page. With some negative errors we are
 able to remove
 them by reloading all for the application in the OAS
 manager but not
 this one.
 
 Searching MetaLink I come up with suggestions to
 patch Applications
 11i or upgrade Developer 6 - neither of which are in
 use here. I also
 came up with cause not determined.
 
 Environment: Sun OS 5.7
  Oracle8i Enterprise Edition release
 8.1.6.0.0
  OAS 4.0 - we are using a secure server
 
 Both the package and package body are valid.
 
 Any help in unraveling this would be greaterly
 appreciated.
 
 
   Pat
 -- 
 Please see the official ORACLE-L FAQ:
 http://www.orafaq.com
 -- 
 Author: Pat Hildebrand
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- (858) 538-5051  FAX:
 (858) 538-5051
 San Diego, California-- Public Internet
 access / Mailing Lists


 To REMOVE yourself from this mailing list, send an
 E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of
 'ListGuru') and in
 the message BODY, include a line containing: UNSUB
 ORACLE-L
 (or the name of mailing list you want to be removed
 from).  You may
 also send the HELP command for other information
 (like subscribing).


=
Connor McDonald
http://www.oracledba.co.uk (mirrored at 
http://www.oradba.freeserve.co.uk)

Some days you're the pigeon, some days you're the statue


Do You Yahoo!?
Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
or your free @yahoo.ie address at http://mail.yahoo.ie
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: =?iso-8859-1?q?Connor=20McDonald?=
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



Oracle error -20001

2001-05-11 Thread Pat Hildebrand

Has anyone any idea what this means?

It is coming up when trying to use a procedure in a PL/SQL package to
display a web page. With some negative errors we are able to remove
them by reloading all for the application in the OAS manager but not
this one.

Searching MetaLink I come up with suggestions to patch Applications
11i or upgrade Developer 6 - neither of which are in use here. I also
came up with cause not determined.

Environment: Sun OS 5.7
 Oracle8i Enterprise Edition release 8.1.6.0.0
 OAS 4.0 - we are using a secure server

Both the package and package body are valid.

Any help in unraveling this would be greaterly appreciated.


  Pat
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Pat Hildebrand
  INET: [EMAIL PROTECTED]

Fat City Network Services-- (858) 538-5051  FAX: (858) 538-5051
San Diego, California-- Public Internet access / Mailing Lists

To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).