error PCC-F-02066 [message #94493] |
Tue, 21 December 2004 01:38 |
Seanne
Messages: 1 Registered: December 2004
|
Junior Member |
|
|
I got the following message from proc.
Can anyone help me with this problem?
--------------------------------------------------------------
Pro*C/C++: Release 9.2.0.4.0 - Production on Tue Dec 21 19:24:36 2004
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Message 1024 not found; No message file for product=precomp, facility=PGO/opt/ora9/product/9.2/precomp/admin/pcscfg.cfg
PCC-F-02066, Message 66 not found; No message file for product=precomp, facility=PGO
--------------------------------------------------------------
Thank You!
|
|
|
Re: error PCC-F-02066 [message #94494 is a reply to message #94493] |
Tue, 21 December 2004 03:47 |
Frank Naude
Messages: 4589 Registered: April 1998
|
Senior Member |
|
|
Hi,
You can use oerr to lookup these messages:
$ oerr pgo 1024
1024, 0, "System default option values taken from: "
$ oerr pgo 66
66 , 0, "CMD-LINE: Could not find or could not open system config file"
// *Cause: The system configuration file has a standard name (pmscfg.h)
// and a location that is operating system dependent. On UNIX
// systems, it is located in the ORACLE_HOME/proc directory. If
// a file named pmscfg.h is not found in the standard location,
// this warning message is issued.
// *Action: Create a system configuration file in the standard location.
// The file can be empty. See also the operating system specific
// Oracle documentation.
Best regards.
Frank
|
|
|