Oracle9i Database Error Messages Release 2 (9.2) Part Number A96525-01 |
|
Cause: An operation has completed normally, having met no exceptions.
Action: No action required.
Cause: An internal error occurred.
Action: Contact the development organization.
Cause: The file I/O package failed in trying to dynamically allocate memory. function name is used for additional comments to indicate where, when and why the error occurred.
Action: Perform whatever actions necessary to make more memory available to the executing program.
Cause: Indicated by the parameters in the message. The first 'string' gives the internal exception code; the second is for any other additional comments.
Action: Report to the appropriate development group.
Cause: A function call has failed. This error is a generic message to show that the exception has occurred in a particular function name. This allows the client to know the trace runtime calling sequence by examining the exception stack.
Action: See the accompanying error messages for more information.
Cause: A call to free some memory in function name has failed.
Action: See the accompanying error messages for more information and contact Oracle Support Services immediately.
Cause: The function was called with an invalid parameter.
Action: Check the function call to make sure that the correct parameters are being passed.
Cause: LX calls return failure.
Action: Check if the parameters are correct. Contact the appropriate group immediately if the parameters are valid.
Cause: SLTS's call return failure in function 'string'.
Action: Contact the appropriate development group.
Cause: The file has not been successfully opened at the time the operation is attempted.
Action: Check to make sure that the file exists (for read) or that the program has access to the write a file (for write). It is also possible that the file was just never opened.
Cause: The buffer write operation failed. Possibly due to incorrect parameters being passed in.
Action: Check the underlying error for more information.
Cause: The file was opened with the flag LFILFA_SEQ for sequential file operations. Use seek only on files that are opened with the LFILFA_RANDOM flag for random access.
Action: Check to see how the file is being opened and accessed and make the two operations consistent (that is, make them both operations either sequential or random).
Cause: The buffer seek operation failed. Probably due to incorrect parameters or flags.
Action: Check syntax of the seek command and retry the operation.
Cause: The buffer read operation failed. Probably due to incorrect parameters or flags.
Action: Check syntax of the read command and retry the operation.
Cause: One of the following:
Action: Check the format of the current path and the new directory; check that the name object was initialized properly.
Cause: The path object passed to LFIPPTH() holds more than one path.
Action: Make sure that the path object used in LFIPPTH() holds only one path.
Cause: The flags specified for the open indicate that the file does not exist. However, the file does exist.
Action: Check to make sure that the options that were specified for the file are correct and that you do not expect that the file should exist. If so then find out why the file does exist.
Cause: The flags specified for the open indicate that the file is expected to exist and it does not.
Action: Check to make sure that the options that were specified for the file are correct and that you expect that the file should exist. If so, then find out why the file does not.
Cause: Either:
Action: Check to make sure the proper access permissions are assigned. If they are and the file still cannot be opened, then contact Oracle Support Services.
Cause: The Buffer Manager initialization routine failed, probably because memory was exhausted.
Action: See the accompanying error messages for more information.
Cause: Other options are specified with the fixed length format.
Action: Clear other options from flag.
Cause: The function LFIGFO() was called with an invalid File ID Descriptor. The valid File ID Descriptors are LFISTDIN, LFISTDOUT, and LFISTDERR.
Action: Check the call to LFIGFO() to make sure it is correct.
Cause: The call to open the standard file object failed.
Action: Check the underlying errors for more information.
Cause: An attempt was made to append using certain options.
Action: Check the flag options to verify its usage.
Cause: The buffer flush failed.
Action: See the accompanying error messages for more information.
Cause: The file close operation failed.
Action: See the accompanying error messages for more information.
Cause: The rename operation failed. Rename is called when a file is protected by operating on a temporary file.
Action: Check to make sure that the process has the correct access rights to perform a rename.
Cause: The function LFICHTY() was called to change the file extension to LFIEXUNK (Unknown). This is not a valid operation.
Action: Check why you are doing this. If the extension is already unknown then you do not need to do this. If you just want no extension then use the extension type LFIEXNONE.
Cause: The Abort function LFIABT() was called on a file that was not opened as a protected file. As such the abort operation is not valid.
Action: Check to see if you intended to open the file as a protected file.
Cause: The root file name that was given to LFIMKNAM() is not in a format that this platform understands.
Action: Check the format of the file name and retry the operation.
Cause: Both of the following open type options were specified for the LFILINI() function: LFILOPTY_REPLACE or LFILOPTY_PROT.
Action: Remove one of the options so that you are only passing in one option.
Cause: The delete file flag was specified for a file that was not created by this file operation. The ability to delete a file is not portable. As such, the only deletion that is allowed by this package is if Oracle knows the file should be deleted when Oracle created it.
Action: You can only delete a file that you create. If you need to delete a file that you do not create then you will have to find another means of doing so.
Cause: Both the LFILFA_SEQ (sequential) and LFILFA_RANDOM (random) flags were specified during the file object creation. This is not allowed. Only one of the two may be specified.
Action: Choose how you wish to access the file. If you choose random you can still access sequentially by just not using the repositioning functions.
Cause: Neither LFILFA_SEQ (sequential) or LFILFA_RANDOM (random) were specified during file object creation.
Action: The default is sequential but this should be explicitly set.
Cause: The LFILFA_RANDOM flag was specified on a file that was not organized into fixed-length records. Random access is only allowed on fixed-length record files.
Action: Determine if the organization of your data needs to be in variable-length records and if you need to have random access to the file. If both conditions are true then you might need to buffer the entire file or enough of it to remove your need for random access. Another option is to close and rescan the file although this is not the optimal solution.
Cause: Both LFILRF_FIXED (fixed) and LFILRF_VAR (variable) were specified during file object creation. Only one of the two is allowed for a given file.
Action: Determine how the file is organized and choose the option that matches.
Cause: Neither LFILRF_FIXED (fixed) or LFILRF_VAR (variable) were specified for record format. One of the two must be specified for each file.
Action: The default is LFILRF_VAR, but this should be explicitly set during file object creation.
Cause: The Carriage Control option is only valid for the standard file objects (LFISTDIN, LFISTDOUT, LFISTDERR). You may not specify this option for any other type of file.
Action: Choose between LFILRF_FIXED and LFILRF_VAR for the record format.
Cause: The file was opened as input only but the output mode option LFILRF_WR_ASIS or delete option LFLOPTY_DELETE was specified.
Action: Check to see how you intend to open this file and make the necessary changes.
Cause: The file was opened as output only but one of the input mode options (LFILRF_READ_NL or LFILRF_FORCE_NL) or was specified.
Action: Check to see how you intend to open this file and make the necessary changes.
Cause: The file object was created without an open type (that is, LFILOPTY_INPUT, LFILOPTY_OUTPUT, and so on).
Action: Decide how the file should be accessed and specify one of the open types.
Cause: The record length specified for the file is greater than the maximum supported by this platform.
Action: Decrease the record length.
Cause: The file object was initialized with LFILOPTY_OUTPUT and without LFILOPTY_REPLACE and yet a file by this name already exists.
Action: Check to make sure that you are creating the right file. If you intend to overwrite the file if it exists that specify the replace option LFILOPTY_REPLACE when initializing the file object.
Cause: The LFILOPTY_APPEND and LFILOPTY_PROT options were both specified for the file. This is currently not allowed because it would require copying the entire file at open time.
Action: Decide if you really need to protect the file for append. If so then think about making a copy of it before appending.
Cause: A temporary file was created to protect a file. When the temporary file was no longer needed, LFI attempted to remove it and was unable to do so.
Action: Check the permissions and where the temporary files are being created.
Cause: The function LFICHTY() was called on an opened file.
Action: This is a bug in the client code. LFICHTY() cannot be used in this case.
Cause: Unable to perform an LFI operation on a file object for the given reason.
Action: Take the appropriate corrective measure. For example if a file is supposed to be opened before the operation can be performed, client code will need to open the file first.
Cause: Unable to perform an LFI operation on a name object for the given reason.
Action: Take the appropriate corrective measure.
Cause: First option cannot be used with second option in such a function call.
Action: Re-examine code to determine which option is needed.
Cause: The file was opened as input-output and one of the mode options (LFIOPTY_DELETE or non-LFIOPTY_RANDOM) was specified.
Action: Check to see how you intend to open this file and make the necessary changes.
Cause: The abort operation failed.
Action: Check the underlying errors for more information.
Cause: The file was not created by Oracle.
Action: Change owner of file to Oracle or give Oracle access privileges to delete it.
Cause: The file to be deleted does not exist.
Action: Check the underlying errors for more information.
Cause: The file does not exist.
Action: Check to make sure the file exists and retry the operation.
Cause: The buffer that was passed is not large enough.
Action: Allocate a larger buffer and retry the operation.
Cause: The destination file was not expected to exist and it does.
Action: Find out why the file does exist.
Cause: The file does not exist.
Action: Check to make sure the file exists and retry the operation.
Cause: A routine that should be used only for files in byte mode was called for a file that was opened in record mode.
Action: In order to use this function, the file should be opened in byte mode.
Cause: The cache path object was expected and it does not exist.
Action: In order to use this function, the path object should be the cache path object.
Cause: A routine failed to create path object hash table.
Action: Make sure that the value of STARTSIZE is less than or equal to the value of LHTQMAXSLOTS.
Cause: A routine failed to insert into the hash table.
Action: Make sure there is enough memory for allocation and that the hash table exists.
Cause: Byte mode read operation failed. Probably due to incorrect parameters or flags, or trying to read beyond end of file.
Action: Check syntax of the read command and size of file.
Cause: The file being written to may no longer be open or the end of the file may have been reached.
Action: Examine underlying errors for more information.
Cause: The file being written to may no longer be open or the end of the file may have been reached.
Action: Examine underlying errors for more information.
Cause: The file being read from may no longer be open.
Action: Examine underlying errors for more information.
Cause: The file being read from may no longer be open.
Action: See the accompanying error messages for more information.
Cause: The Buffer Manager is probably unable to write to the underlying file.
Action: Examine underlying errors for more information.
Cause: The Buffer Manager is probably unable to read from the underlying file.
Action: See the accompanying error messages for more information.
Cause: A line ends in a partial character.
Action: Examine underlying errors for more information.
Cause: The length of the line exceeds the maximum length.
Action: Examine underlying errors for more information.
Cause: An error condition arises in calling an OSD function. This message occurs if calls to MALLOC or free functions failed.
Action: Contact Oracle Support Services.
Cause: Operating system was unable to create temporary file name.
Action: Contact the development organization.
Cause: The file name that was parsed had no base file. It was either all path or extension.
Action: Check the file name being passed in to make sure it is correct.
Cause: While building a file name, the buffer allocated to hold the new file name was exceeded.
Action: Contact the development organization.
Cause: The function FSEEK() returned an error condition.
Action: Contact Oracle Support Services.
Cause: The function FCLOSE() returned an error condition.
Action: Contact Oracle Support Services.
Cause: The function FFLUSH() returned an error condition.
Action: Contact the development organization.
Cause: File pointer may be null or may not be opened for write.
Action: Contact the development organization.
Cause: Call to ACCESS() failed.
Action: Contact the development organization.
Cause: Call to FOPEN() failed.
Action: Contact Oracle Support Services.
Cause: Call to FREAD() failed.
Action: Contact Oracle Support Services.
Cause: Call to UNLINK() failed.
Action: Contact the development organization.
Cause: Call to STAT() failed.
Action: Contact Oracle Support Services.
Cause: The FTELL() function returned an error.
Action: Contact Oracle Support Services.
Cause: The function TRUNCATE() returned an error condition.
Action: Contact the development organization.
Cause: Call to READ() failed.
Action: Contact the development organization.
Cause: Call to OPEN() failed.
Action: Contact the development organization.
Cause: Call to WRITE() failed.
Action: Contact the development organization.
Cause: The LLSEEK() function returned an error.
Action: Contact Oracle Support Services.
Cause: The function CLOSE() returned an error condition.
Action: Contact the development organization.
Cause: The function FSYNC() returned an error condition.
Action: Contact the development organization.
Cause: The function OPENDIR() returned an error condition.
Action: Contact the development organization.
Cause: The function RENAME() returned an error condition.
Action: Contact the development organization.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|