Oracle8 Error Messages
Release 8.0
A54625_01

Library

Product

Contents


Prev Next

01400-01489: SQL Execution Messages

This section lists messages generated during SQL execution.

ORA-01400: cannot insert NULL into ("USER"."TABLE"."COLUMN")

Cause: An attempt was made to insert a NULL into the column "USER"."TABLE"."COLUMN".

For example, if you enter:

connect scott/tiger 

create table a (a1 number not null); 

insert into a values (null); 

Oracle returns:

ORA-01400 cannot insert NULL into ("SCOTT"."A"."A1") :  which means you 
cannot insert NULL into "SCOTT"."A"."A1". 

Action: Retry the operation with a value other than NULL.

ORA-01401: inserted value too large for column

Cause: The value entered is larger than the maximum width defined for the column.

Action: Enter a value smaller than the column width or use the MODIFY option with ALTER TABLE to expand the column width.

ORA-01402: view WITH CHECK OPTION where-clause violation

Cause: An INSERT or UPDATE statement was attempted on a view created with the CHECK OPTION. This would have resulted in the creation of a row that would not satisfy the view's WHERE clause.

Action: Examine the view's WHERE clause in the dictionary table VIEWS. If the current view does not have the CHECK OPTION, then its FROM clause must reference a second view that is defined using the CHECK OPTION. The second view's WHERE clause must also be satisfied by any INSERT or UPDATE statements. To insert the row, it may be necessary to insert it directly into the underlying table, rather than through the view.

ORA-01403: no data found

Cause: In a host language program, all records have been fetched. The return code from the fetch was +4, indicating that all records have been returned from the SQL query.

Action: Terminate processing for the SELECT statement.

ORA-01404: ALTER COLUMN will make a concatenated index too large

Cause: Increasing the length of a column would cause the combined length of the columns specified in a previous CREATE INDEX statement to exceed the maximum index length (255). The total index length is computed as the sum of the width of all indexed columns plus the number of indexed columns. Date fields are calculated as a length of 7, character fields are calculated at their defined width, and numeric fields are length 22.

Action: The only way to alter the column is to drop the affected index. The index cannot be recreated if to do so would exceed the maximum index width.

ORA-01405: fetched column value is NULL

Cause: The INTO clause of a FETCH operation contained a NULL value, and no indicator was used. The column buffer in the program remained unchanged, and the cursor return code was +2. This is an error unless you are running Oracle with DBMS=6, emulating version 6, in which case it is only a warning.

Action: You may do any of the following:

ORA-01406: fetched column value was truncated

Cause: In a host language program, a FETCH operation was forced to truncate a character string. The program buffer area for this column was not large enough to contain the entire string. The cursor return code from the fetch was +3.

Action: Increase the column buffer area to hold the largest column value or perform other appropriate processing.

ORA-01407: cannot update ("USER"."TABLE"."COLUMN") to NULL

Cause: An attempt was made to update a table column "USER"."TABLE"."COLUMN" with a NULL value.

For example, if you enter:

connect scott/tiger 

update table a (a1 number not null); 

insert into a values (null); 

Oracle returns:

ORA-01407 cannot update ("SCOTT"."A"."A1") to NULL: which means you cannot update the column "SCOTT"."A"."A1" to NULL.

Action: Retry the operation with a value other than NULL.

ORA-01408: such column list already indexed

Cause: A CREATE INDEX statement specified a column that is already indexed. A single column may be indexed only once. Additional indexes may be created on the column if it is used as a portion of a concatenated index, that is, if the index consists of multiple columns.

Action: Do not attempt to re-index the column, as it is unnecessary. To create a concatenated key, specify one or more additional columns in the CREATE INDEX statement.

ORA-01409: NOSORT option may not be used; rows are not in ascending order

Cause: Creation of index with NOSORT option when rows were not ascending. The NOSORT option may only be used for indexes on groups of rows that already are in ascending order.

For non-unique indexes the ROWID is considered part of the index key. This means that two rows that appear to be stored in ascending order may not be. If you create an index NOSORT, and two of the rows in the table have the same index values, but get split across two extents, the data block address of the first block in the second extent can be less than the data block address of the last block in the first extent. If these addresses are not in ascending order, the ROWIDs are not either. Since these ROWIDs are considered part of the index key, the index key is not in ascending order, and the create index NOSORT fails.

Action: Create the index without the NOSORT option or ensure that the table is stored in one extent.

ORA-01410: invalid ROWID

Cause: A ROWID was entered incorrectly. ROWIDs must be entered as formatted hexadecimal strings using only numbers and the characters A through F. A typical ROWID format is '000001F8.0001.0006'.

Action: Check the format, then enter the ROWID using the correct format. ROWID format: block ID, row in block, file ID.

ORA-01411: cannot store the length of column in the indicator

Cause: Oracle tried to fetch a column more than 64K long and could not store the length of the column in the given indicator size of 2 bytes.

Action: Use the new bind type with callbacks to fetch the long column.

ORA-01412: zero length not allowed for this datatype

Cause: The length for datatype 97 is 0.

Action: Specify the correct length for the datatype.

ORA-01413: illegal value in packed decimal number buffer

Cause: The user buffer bound by the user as a packed decimal number contained an illegal value.

Action: Use a legal value.

ORA-01414: invalid array length when trying to bind array

Cause: An attempt was made to bind an array without either a current array length pointer or a zero maximum array length.

Action: Specify a valid length.

ORA-01416: two tables cannot be outer-joined to each other

Cause: Two tables in a join operation specified an outer join with respect to each other. If an outer join is specified on one of the tables in a join condition, it may not be specified on the other table.

Action: Remove the outer join specification (+) from one of the tables, then retry the operation.

ORA-01417: a table may be outer joined to at most one other table

Cause: A table in a join operation specified an outer join to more than one other table. A table may specify an outer join to only one other table.

Action: Specify only one outer join (+) to this table, then retry the operation.

ORA-01418: specified index does not exist

Cause: An ALTER INDEX, DROP INDEX, or VALIDATE INDEX statement specified the name of an index that does not exist. Only existing indexes can be altered, dropped, or validated. Existing indexes may be listed by querying the data dictionary.

Action: Specify the name of an existing index in the ALTER INDEX, DROP INDEX, or VALIDATE INDEX statement.

ORA-01419: datdts: illegal format code

Cause: An attempt was made to use an incorrect format.

Action: Inspect the format, correct it if necessary, then retry the operation.

ORA-01420: datstd: illegal format code

Cause: An attempt was made to use an invalid format.

Action: Inspect the format, correct it if necessary, then retry the operation.

ORA-01421: datrnd/dattrn: illegal precision specifier

Cause: An attempt was made to use an invalid precision specifier.

Action: Inspect the precision specifier, correct it if necessary, then retry the operation.

ORA-01422: exact fetch returns more than requested number of rows

Cause: More rows were returned from an exact fetch than specified.

Action: Rewrite the query to return fewer rows or specify more rows in the exact fetch.

ORA-01423: error encountered while checking for extra rows in exact fetch

Cause: An error was encountered during the execution of an exact fetch. This message will be followed by more descriptive messages.

Action: See the accompanying messages and take appropriate action.

ORA-01424: missing or illegal character following the escape character

Cause: The character following the escape character in LIKE pattern is missing or not one of the wildcard characters '%' or '_'.

Action: Remove the escape character or specify the missing character.

ORA-01425: escape character must be character string of length 1

Cause: Given escape character for LIKE is not a character string of length 1.

Action: Change it to a character string of length 1.

ORA-01426: numeric overflow

Cause: Evaluation of a value expression has caused an overflow or possibly an underflow.

Action: Rewrite the expression as a series of expressions with fewer operands than the "overloaded" expression.

ORA-01427: single-row subquery returns more than one row

Cause: The outer query must use one of the keywords ANY, ALL, IN, or NOT IN to specify values to compare because the subquery returned more than one row.

Action: Use ANY, ALL, IN, or NOT IN to specify which values to compare or reword the query so only one row is retrieved.

ORA-01428: argument num is out of range

Cause: An illegal value for a mathematical function argument was specified. For example

SELECT SQRT(-1) "Square Root" FROM DUAL; 

Action: See Oracle8 Server SQL Reference manual for valid input and ranges of the mathematical functions.

ORA-01429: Index-Organized Table: no data segment to store overflow row-pieces

Cause: A data segment to store the overflow has not been defined.

Action: Add an overflow segment and retry the operation.

ORA-01430: column being added already exists in table

Cause: An ALTER TABLE ADD statement specified the name of a column that is already in the table. All column names must be unique within a table.

Action: Specify a unique name for the new column, then re-execute the statement.

ORA-01431: internal inconsistency in GRANT command

Cause: An internal error occurred while attempting to execute a GRANT statement.

Action: Contact customer support.

ORA-01432: public synonym to be dropped does not exist

Cause: The synonym specified in DROP PUBLIC SYNONYM is not a valid public synonym. It may be a private synonym.

Action: Correct the synonym name or use DROP SYNONYM if the synonym is not public.

ORA-01433: synonym to be created is already defined

Cause: A CREATE SYNONYM statement specified a synonym name that is the same as an existing synonym, table, view, or cluster. Synonyms may not have the same name as any other synonym, table, view, or cluster available to the user creating the synonym.

Action: Specify a unique name for the synonym, then re-execute the statement.

ORA-01434: private synonym to be dropped does not exist

Cause: A DROP SYNONYM statement specified a synonym that does not exist. Existing synonym names may be listed by querying the data dictionary.

Action: Specify the name of an existing synonym in the DROP SYNONYM statement.

ORA-01435: user does not exist

Cause: This message is caused by any reference to a non-existent user. For example, it occurs if a SELECT, GRANT, or REVOKE statement specifies a username that does not exist. Only a GRANT CONNECT statement may specify a new username. All other GRANT and REVOKE statements must specify existing usernames. If specified in a SELECT statement, usernames must already exist.

Action: Specify only existing usernames in the SELECT, GRANT, or REVOKE statement or ask the database administrator to define the new username.

ORA-01436: CONNECT BY loop in user data

Cause: The condition specified in a CONNECT BY clause caused a loop in the query, where the next record to be selected is a descendent of itself. When this happens, there can be no end to the query.

Action: Check the CONNECT BY clause and remove the circular reference.

ORA-01437: cannot have join with CONNECT BY

Cause: A join operation was specified with a CONNECT BY clause. If a CONNECT BY clause is used in a SELECT statement for a tree-structured query, only one table may be referenced in the query.

Action: Remove either the CONNECT BY clause or the join operation from the SQL statement.

ORA-01438: value larger than specified precision allows for this column

Cause: When inserting or updating records, a numeric value was entered that exceeded the precision defined for the column.

Action: Enter a value that complies with the numeric column's precision, or use the MODIFY option with the ALTER TABLE command to expand the precision.

ORA-01439: column to be modified must be empty to change datatype

Cause: An ALTER TABLE MODIFY statement attempted to change the datatype of a column containing data. A column whose datatype is to be altered must contain only NULL values.

Action: To alter the datatype, first set all values in the column to NULL.

ORA-01440: column to be modified must be empty to decrease precision or scale

Cause: An ALTER TABLE MODIFY statement attempted to decrease the scale or precision of a numeric column containing data. In order to decrease either of these values, the column must contain only NULL values. An attempt to increase the scale without also increasing the precision will also cause this message.

Action: Set all values in the column to NULL before decreasing the numeric precision or scale. If attempting to increase the scale, increase the precision in accordance with the scale or set all values in the column to NULL first.

ORA-01441: column to be modified must be empty to decrease column length

Cause: An ALTER TABLE MODIFY statement attempted to decrease the size of a character field containing data. A column whose maximum size is to be decreased must contain only NULL values.

Action: Set all values in column to NULL before decreasing the maximum size.

ORA-01442: column to be modified to NOT NULL is already NOT NULL

Cause: An ALTER TABLE MODIFY statement attempted to change a column specification unnecessarily, from NOT NULL to NOT NULL.

Action: No action required.

ORA-01443: internal inconsistency; illegal datatype in resultant view column

Cause: An internal error occurred in referencing a view.

Action: Contact customer support.

ORA-01444: internal inconsistency; internal datatype maps to invalid external type

Cause: This is an internal error message not normally issued.

Action: Contact customer support.

ORA-01445: cannot select ROWID from a join view without a key-preserved table

Cause: A SELECT statement attempted to select ROWIDs from a view derived from a join operation. Because the rows selected in the view do not correspond to underlying physical records, no ROWIDs can be returned.

Action: Remove ROWID from the view selection clause, then re-execute the statement.

ORA-01446: cannot select ROWID from view with DISTINCT, GROUP BY, etc.

Cause: A SELECT statement attempted to select ROWIDs from a view containing columns derived from functions or expressions. Because the rows selected in the view do not correspond to underlying physical records, no ROWIDs can be returned.

Action: Remove ROWID from the view selection clause, then re-execute the statement.

ORA-01447: ALTER TABLE does not operate on clustered columns

Cause: An ALTER TABLE MODIFY statement specified a column used to cluster the table. Clustered columns may not be altered.

Action: To alter the column, first recreate the table in non-clustered form. The column's size can be increased at the same time.

ORA-01448: index must be dropped before changing to desired type

Cause: An ALTER TABLE MODIFY statement attempted to change an indexed character column to a LONG column. Columns with the datatype LONG may not be indexed, so the index must be dropped before the modification.

Action: Drop all indexes referencing the column before changing its datatype to LONG.

ORA-01449: column contains NULL values; cannot alter to NOT NULL

Cause: An ALTER TABLE MODIFY statement attempted to change the definition of a column containing NULL values to NOT NULL. The column may not currently contain any NULL values if it is to be altered to NOT NULL.

Action: Set all NULL values in the column to values other than NULL before ALTERING the column to NOT NULL.

ORA-01450: maximum key length exceeded

Cause: The combined length of all the columns specified in a CREATE INDEX statement exceeded the maximum index length. The maximum index length varies by operating system. The total index length is computed as the sum of the width of all indexed columns plus the number of indexed columns. Date fields have a length of 7, character fields have their defined length, and numeric fields have a length of 22. Numeric length = (precision/2) + 1. If negative, add +1.

Action: Select columns to be indexed so the total index length does not exceed the maximum index length for the operating system. See also your operating system-specific Oracle documentation.

ORA-01451: column to be modified to NULL cannot be modified to NULL

Cause: The column may already allow NULL values, the NOT NULL constraint is part of a primary key or check constraint, or an ALTER TABLE MODIFY statement attempted to change a column specification unnecessarily, from NULL to NULL.

Action: If a primary key or check constraint is enforcing the NOT NULL constraint, then drop that constraint.

ORA-01452: cannot CREATE UNIQUE INDEX; duplicate keys found

Cause: A CREATE UNIQUE INDEX statement specified one or more columns that currently contain duplicate values. All values in the indexed columns must be unique by row to create a UNIQUE INDEX.

Action: If the entries need not be unique, remove the keyword UNIQUE from the CREATE INDEX statement, then re-execute the statement. If the entries must be unique, as in a primary key, then remove duplicate values before creating the UNIQUE index.

ORA-01453: SET TRANSACTION must be first statement of transaction

Cause: A transaction was not processed properly because the SET TRANSACTION statement was not the first statement.

Action: Commit or roll back the current transaction before using the statement SET TRANSACTION.

ORA-01454: cannot convert column into numeric datatype

Cause: A non-numeric value could not be converted into a number value.

Action: Check the value to make sure it contains only numbers, a sign, a decimal point, and the character "E" or "e", then retry the operation.

ORA-01455: converting column overflows integer datatype

Cause: The converted form of the specified expression was too large for the specified datatype.

Action: Define a larger datatype or correct the data.

ORA-01456: may not perform insert/delete/update operation inside a READ ONLY transaction

Cause: A non-DDL INSERT/DELETE/UPDATE or SELECT FOR UPDATE operation was attempted.

Action: Commit or roll back the current transaction, then retry the operation.

ORA-01457: converting column overflows decimal datatype

Cause: The converted form of the specified expression was too large for the specified type. The problem also occurs in COBOL programs when using COMP-3 in the picture clause, which is acceptable to the Pro*COBOL Precompiler and to COBOL but results in this error.

Action: Define a larger datatype or correct the data.

ORA-01458: invalid length inside variable character string

Cause: An attempt was made to bind or define a variable character string with a buffer length less than the two-byte minimum requirement.

Action: Increase the buffer size or use a different type.

ORA-01459: invalid length for variable character string

Cause: The buffer length was less than the minimum required (two bytes) or greater than its length at bind time minus two bytes.

Action: None. Buffer length is set correctly by Oracle at fetch time.

ORA-01460: unimplemented or unreasonable conversion requested

Cause: The requested format conversion is not supported.

Action: Remove the requested conversion from the SQL statement. Check the syntax for the TO_CHAR, TO_DATE, and TO_NUMBER functions to see which conversions are supported.

ORA-01461: can bind a LONG value only for insert into a LONG column

Cause: An attempt was made to insert a value from a LONG datatype into another datatype. This is not allowed.

Action: Do not try to insert LONG datatypes into other types of columns.

ORA-01462: cannot insert string literals longer than 2000 characters

Cause: The longest literal supported by Oracle consists of 2000 characters.

Action: Reduce the number of characters in the literal to 2000 characters or fewer or use the VARCHAR2 or LONG datatype to insert strings exceeding 2000 characters.

ORA-01463: cannot modify column datatype with current constraints

Cause: An attempt was made to modify the datatype of a column that has referential constraints or that has check constraints that only allow changing the datatype from CHAR to VARCHAR or vice versa.

Action: Remove the constraint(s) or do not perform the offending operation.

ORA-01464: circular grant (granting to grant ancestor) of table or view

Cause: The user in the TO clause of the GRANT statement has already been GRANTed privileges on this table.

Action: Do not GRANT privileges on a table to the user who originally GRANTed privileges on that table. The statement in error is probably unnecessary.

ORA-01465: invalid hex number

Cause: In an UPDATE statement following a SELECT FOR UPDATE, part of the ROWID contains invalid characters. ROWID must be expressed in the proper and expected format for ROWID and within quotes.

Action: Enter the ROWID just as it was returned in the SELECT FOR UPDATE.

ORA-01465: invalid hex number

Cause: In an UPDATE statement following a SELECT FOR UPDATE, part of the ROWID contains invalid characters. ROWID must be expressed in the proper and expected format for ROWID and within quotes.

Action: Enter the ROWID just as it was returned in the SELECT FOR UPDATE.

ORA-01466: unable to read data -- object definition has changed

Cause: This is a time-based read consistency error for a database object, such as a table or index. Either of the following may have happened:

Action: If the cause is:

    If the object creation time-stamp is still greater than the system time, then export the object's data, drop the object, recreate the object so it has a new creation time-stamp, import the object's data, and resume work.

ORA-01467: sort key too long

Cause: A DISTINCT, GROUP BY, ORDER BY, or SET operation requires a sort key longer than that supported by Oracle. Either too many columns or too many group functions were specified in the SELECT statement.

Action: Reduce the number of columns or group functions involved in the operation.

ORA-01468: a predicate may reference only one outer-joined table

Cause: A predicate in the WHERE clause has two columns from different tables with "(+)".

Action: Change the WHERE clause so that each predicate has a maximum of one outer-join table.

ORA-01469: PRIOR can only be followed by a column name

Cause: An invalid column name was specified after the PRIOR keyword.

Action: Check syntax, spelling, use a valid column name, and try again.

ORA-01470: in-list iteration does not support mixed operators

Cause: Constants of different types are specified in an in-list.

Action: Use constants of same type for in-lists.

ORA-01471: cannot create a synonym with the same name as object

Cause: An attempt was made to create a private synonym with the same name as the object to which it refers. This error typically occurs when a user attempts to create a private synonym with the same name as one of their objects.

Action: Choose a different synonym name or create the synonym under a different username.

ORA-01472: cannot use CONNECT BY on view with DISTINCT, GROUP BY, etc.

Cause: CONNECT BY cannot be used on a view where there is not a correspondence between output rows and rows of the underlying table.

Action: Remove the DISTINCT or GROUP BY from the view or move the CONNECT BY clause into the view.

ORA-01473: cannot have subqueries in CONNECT BY clause

Cause: Subqueries cannot be used in a CONNECT BY clause.

Action: Remove the subquery or move it to the WHERE clause.

ORA-01474: cannot have START WITH or PRIOR without CONNECT BY

Cause: START WITH and PRIOR are meaningful only in connection with CONNECT BY.

Action: Check the syntax for the SQL statement and add a CONNECT BY clause, if necessary.

ORA-01475: must reparse cursor to change bind variable datatype

Cause: After executing a statement, an attempt was made to rebind a bind variable with a datatype different from that of the original bind.

Action: Reparse the cursor before rebinding with a different datatype.

ORA-01476: divisor is equal to zero

Cause: An expression attempted to divide by zero.

Action: Correct the expression, then retry the operation.

ORA-01477: user data area descriptor is too large

Cause: This is an internal error message not normally issued.

Action: Contact customer support.

ORA-01478: array bind may not include any LONG columns

Cause: An attempt was made to use array bind on a column whose maximum size is greater than 2000 bytes. This is not permitted.

Action: Do not use array bind for a LONG column. Use an ordinary bind instead.

ORA-01479: last character in the buffer is not Null

Cause: A bind variable of type 97 does not contain NULL at the last position.

Action: Make the last character a NULL.

ORA-01480: trailing null missing from STR bind value

Cause: A bind variable specified as type SQLT_STR is not terminated with an ASCII NULL (0) character.

Action: Check maximum lengths and contents of string bind variables.

ORA-01481: invalid number format model

Cause: An invalid format parameter was used with the TO_CHAR or TO_NUMBER function.

Action: Correct the syntax, then retry the operation.

ORA-01482: unsupported character set

Cause: The second or third parameter to the CONVERT function is not a supported character set.

Action: Use one of the supported character sets.

ORA-01483: invalid length for DATE or NUMBER bind variable

Cause: A bind variable of type DATE or NUMBER is too long.

Action: Check your Oracle operating system-specific documentation for the maximum allowable length.

ORA-01484: arrays can only be bound to PL/SQL statements

Cause: You tried to bind an array to a non-PL/SQL statement.

Action: Rewrite the offending code being careful to bind arrays only to PL/SQL statements.

ORA-01485: compile bind length different from execute bind length

Cause: You bound a buffer of type DTYVCS (VARCHAR with the two byte length in front) and at execute time the length in the first two bytes is more than the maximum buffer length, given in the bind call. The number of elements in the array and the current number of elements in the array cannot be more than the maximum size of the array.

Action: Ensure that the buffer size is sufficiently large to contain the array plus two bytes for the buffer length.

ORA-01486: size of array element is too large

Cause: An attempt was made to bind a data value that was either too large for the datatype, for example, NUMBER, or was greater than 2000 bytes, for example, VARCHAR or LONG.

Action: Find a way to convert or truncate the data value so that its length is acceptable.

ORA-01487: packed decimal number too large for supplied buffer

Cause: A conversion request cannot be performed because the buffer is too small to hold the result.

Action: Increase the size of the buffer.

ORA-01488: invalid nibble or byte in the input data

Cause: A conversion request cannot be performed because a digit was invalid.

Action: Fix the number and retry.

ORA-01489: result of string concatenation is too long

Cause: The result of a string concatenation was larger than the maximum length of a string (2000 characters).

Action: Reduce the size of one or both of the strings to be concatenated. Make certain the total length of the concatenation result is less than 2000 characters.

01490-01499: Miscellaneous, ANALYZE, SQL Parsing, Execution Messages

This section lists miscellaneous messages generated by secondary processes called by the current process, such as the ANALYZE command, the SQL parser, and during the execution of Oracle commands.

ORA-01490: invalid ANALYZE command

Cause: The syntax of the ANALYZE command was incorrect.

Action: Check the syntax and enter the command using the correct syntax.

ORA-01491: CASCADE option not valid

Cause: The CASCADE option should be used only for tables or clusters.

Action: Do not use the CASCADE option in this manner. Check the syntax of the statement and then retry.

ORA-01492: LIST option not valid

Cause: The LIST option can be used only for tables or clusters.

Action: Do not use the LIST option in this manner. Check the syntax of the statement and then retry.

ORA-01493: invalid SAMPLE size specified

Cause: The specified SAMPLE size is out of range.

Action: Specify a value within the proper range.

ORA-01494: invalid SIZE specified

Cause: The specified histogram SIZE value was out of range.

Action: Specify a value within the proper range.

For more information about histograms, see Oracle8 Server Tuning.

ORA-01495: specified chain row table not found

Cause: The specified table does not exist, or the user does not have the proper privileges to access it.

Action: Specify an existing table or obtain the privileges to access the desired table.

ORA-01496: specified chain row table form incorrect

Cause: The specified table does not have the proper field definitions.

Action: Check the spelling of the table name and specify the correct table to use.

ORA-01497: illegal option for ANALYZE CLUSTER

Cause: The FOR COLUMNS <column list> clause cannot be used with ANALYZE CLUSTER.

Action: Retry with a legal syntax.

For more information about ANALYZE CLUSTER, see the index entry on "ANALYZE CLUSTER" in Oracle8 Server SQL Reference.

ORA-01498: block Check Failure - see trace file

Cause: An error occurred while checking a block with the ANALYZE command.

Action: Check the trace file for more descriptive messages about the problem. Correct these errors. The name of the trace file is operating system-specific, for example, ORAxxxx.TRC. It is found in the directory specified by the initialization parameter USER_DUMP_DEST. If USER_DUMP_DEST is not set, trace files are not created. It may be necessary to recreate the object. See also your operating system-specific Oracle documentation.

ORA-01499: table/Index Cross Reference Failure - see trace file

Cause: An error occurred when validating an index or a table using them ANALYZE command. One or more entries does not point to the appropriate cross-reference.

Action: Check the trace file for more descriptive messages about the problem. Correct these errors. The name of the trace file is operating system-specific, for example, ORAxxxx.TRC. It is found in the directory specified by the initialization parameter USER_DUMP_DEST. If USER_DUMP_DEST is not set, trace files are not created. It may be necessary to recreate the object. See also your operating system-specific Oracle documentation.

01500-01699: Oracle Commands Messages

This section lists messages generated when entering Oracle commands.

If you are using Trusted Oracle, see the Trusted Oracle documentation for information about error messages in that environment.

ORA-01500: failure in getting date/time

Cause: In executing a CREATE DATABASE or ALTER TABLESPACE statement, there was a failure in getting the date and time.

Action: Contact customer support.

ORA-01501: CREATE DATABASE failed

Cause: An error occurred while executing the CREATE DATABASE statement.

Action: Refer to the diagnostic information in the accompanying message stack.

ORA-01502: index str.name is in direct load state

Cause: The specified index was marked invalid by a direct load.

Action: Drop the specified index.

ORA-01503: CREATE CONTROLFILE failed

Cause: An error occurred during CREATE CONTROLFILE.

Action: See accompanying messages.

ORA-01504: database name name does not match parameter DB_NAME str

Cause: The name in a CREATE DATABASE or START UP command does not match the name given in the initialization parameter DB_NAME.

Action: Determine which name is correct, then resubmit the command after correcting the name in the appropriate place.

ORA-01505: error in adding log files

Cause: In executing a CREATE DATABASE or ALTER DATABASE statement, an error occurred when adding new redo log files. The user issuing the command must CONNECT INTERNAL. The database must be mounted but closed in order to add redo log files.

Action: Check the accompanying message stack for detailed information and ensure that the session is connected as INTERNAL with the database mounted but closed.

ORA-01506: missing or illegal database name

Cause: No database name was specified in the ALTER DATABASE statement, nor was the initialization parameter DB_NAME specified.

Action: The database name must be given either in the ALTER DATABASE statement or as the value for the initialization parameter DB_NAME. Note that the SQL*DBA command START UP issues an ALTER DATABASE statement using the database name, if any, specified as part of START UP.

ORA-01507: database not mounted

Cause: An ALTER DATABASE statement specified the name of a database to alter, but no database is currently mounted.

Action: If issuing an ALTER DATABASE command via the SQL*DBA START UP command, specify the MOUNT option. If directly issuing an ALTER DATABASE DISMOUNT command, do nothing. Otherwise, reissue the ALTER DATABASE command specifying the MOUNT option.

ORA-01508: cannot create database; error in file name at line num

Cause: A CREATE DATABASE statement was unable to process the named file because an error occurred at the given line number.

Action: Check the offending line in the specified file, correct the error, then re-execute the CREATE DATABASE statement. If the error is in an Oracle-supplied file, contact customer support.

ORA-01509: specified name name does not match actual name

Cause: The database name specified in an ALTER DATABASE statement does not match the name of the currently mounted database.

Action: Correct the database name spelling or DISMOUNT the mounted database.

ORA-01510: error in deleting log files

Cause: In executing an ALTER DATABASE statement, an error occurred while dropping redo log files.

Action: Check the accompanying message stack for detailed information.

ORA-01511: error in renaming log/datafiles

Cause: In executing an ALTER DATABASE statement, an error occurred while renaming log or datafiles.

Action: Check the accompanying message stack for detailed information.

ORA-01512: error renaming log file name - new file name not found

Cause: An attempt to change a redo log file's name in the control file failed because no file was found with the new name.

Action: Check that the redo log file has been properly renamed by the operating system and retry.

ORA-01513: invalid current time returned by operating system

Cause: The operating system returned a time that was not between the years 1988 and 2121.

Action: Correct the time kept by the operating system.

ORA-01514: error in log specification; no such log

Cause: A redo log filename or list of member names did not correspond to an existing redo log file.

Action: Specify the name of an existing redo log file, check the spelling and capitalization of the names, and then re-execute the statement.

ORA-01515: error dropping log group num: no such log

Cause: An attempt was made to drop a redo log file that does not exist.

Action: Specify the name of an existing redo log file, then issue the statement again.

ORA-01516: nonexistent log/datafile name

Cause: An ALTER DATABASE statement is attempting to rename a log file or a datafile that is not known to the database control file.

Action: Specify the name of an existing redo log file, then re-execute the statement.

ORA-01517: log member: str

Cause: This message indicates the filename involved with other messages.

Action: See the accompanying messages and take appropriate action.

ORA-01518: CREATE DATABASE must specify more than one log file

Cause: Only one redo log file was specified in the CREATE DATABASE statement.

Action: Specify at least two redo log files, then re-execute the statement.

ORA-01519: error while processing file name near line num

Cause: A CREATE DATABASE statement encountered a problem while processing the named file, probably because of a system installation error.

Action: Try the system installation procedure again or contact customer support. See also your operating system-specific Oracle documentation.

ORA-01520: number of datafiles to add num exceeds limit of num

Cause: A CREATE TABLESPACE statement specifies more files than are permitted for this database.

Action: Use fewer files. To exceed the limit, recreate the database with a larger value of MAXDATAFILES.

ORA-01521: error in adding datafiles

Cause: During a CREATE or ALTER TABLESPACE, an error was detected while adding datafiles.

Action: Check the accompanying message stack for detailed information.

ORA-01522: file name to be renamed does not exist

Cause: During an ALTER TABLESPACE RENAME, a file to be renamed was not found in the database control file.

Action: Specify the correct filename, then re-execute the statement.

ORA-01523: cannot rename datafile to name - file already part of database

Cause: During an ALTER DATABASE RENAME or ALTER TABLESPACE RENAME, the new name of a file is already present in the control file.

Action: Rename the file to a name not already in use as part of the database.

ORA-01524: cannot create datafile as name - file already part of database

Cause: During an ALTER DATABASE CREATE DATAFILE, the new name of a file is already present in the control file.

Action: Use a name that is not already in use in the database.

ORA-01525: error in renaming datafiles

Cause: An error occurred when renaming files as part of ALTER TABLESPACE.

Action: Check the accompanying message stack for detailed information. All files were renamed except those mentioned in the message stack.

ORA-01526: error in opening file name

Cause: A CREATE DATABASE was not able to open the file identified in the message. This is probably due to a system installation error.

Action: Try the system installation procedure again or contact customer support. See also your operating system-specific Oracle documentation.

ORA-01527: error while reading file

Cause: A CREATE DATABASE statement was not able to read the specified file, probably because of a system installation error.

Action: Try the system installation procedure again or contact customer support. See also your operating system-specific Oracle documentation.

ORA-01528: EOF while processing SQL statement

Cause: A CREATE DATABASE statement unexpectedly encountered an end-of-file marker while reading the specified file, probably because of a system installation error.

Action: Try the system installation procedure again or contact customer support. See also your operating system-specific Oracle documentation.

ORA-01529: error closing file name

Cause: A CREATE DATABASE was not able to close the file identified in the message.

Action: Try the system installation procedure again or contact customer support. See also your operating system-specific Oracle documentation.

ORA-01530: a database already mounted by the instance

Cause: During an ALTER DATABASE MOUNT, an attempt was made to mount a database by an instance for which there is already a mounted database.

Action: To mount the database, shut down the instance, then start up the instance and try the operation again.

ORA-01531: a database already open by the instance

Cause: During an ALTER DATABASE, an attempt was made to open a database by an instance for which there was already an open database.

Action: To open a new database, shut down the instance, then start up the instance and try the operation again.

ORA-01532: cannot create database; instance being started elsewhere

Cause: During a CREATE DATABASE, another user appears to be simultaneously starting the instance.

Action: Retry the operation. If the error recurs, contact customer support.

ORA-01533: cannot rename file name; file does not belong to tablespace

Cause: During an ALTER TABLESPACE RENAME, a file to be renamed was not found in the named tablespace.

Action: Check syntax and spelling and correctly specify the filename and tablespace name.

ORA-01534: rollback segment name doesn't exist

Cause: During an ALTER or DROP ROLLBACK SEGMENT, the specified rollback segment name was not found.

Action: Correct syntax and spelling and correctly specify the rollback segment name or specify a different rollback segment.

ORA-01535: rollback segment name already exists

Cause: During a CREATE ROLLBACK SEGMENT, the specified rollback segment was found to exist already.

Action: Correct syntax and spelling and correctly specify the rollback segment name or specify a different rollback segment.

ORA-01536: space quota exceeded for tablespace "name"

Cause: The space quota in the tablespace is already used up and the operation attempted the creation of a new extent in the tablespace.

Action: Either

ORA-01537: cannot add datafile name - file already part of database

Cause: During a CREATE or ALTER TABLESPACE, a file being added is already part of the database.

Action: Correct spelling of the datafile name or use a different file.

ORA-01538: failed to acquire any rollback segment

Cause: An instance failed to acquire the SYSTEM rollback segment, or an instance failed to acquire one rollback segment in addition to the SYSTEM rollback segment during start up in parallel mode.

Action: Check that the SYSTEM rollback segment is available. Before starting an instance in parallel mode, either create one more public rollback segment or specify an available private rollback segment in the initialization parameter ROLLBACK_SEGMENTS.

ORA-01539: tablespace "name" is not online

Cause: An attempt was made to bring a tablespace off line normally, but it is not online.

Action: Check the status of the tablespace. Use IMMEDIATE or TEMPORARY options to force all files off line. Also, the database must be in ARCHIVELOG mode.

ORA-01540: tablespace "name" is not offline

Cause: A tablespace could not be brought online or made read-only because it is not offline.

Action: Check the status of the tablespace, then retry the operation. You can also use the options IMMEDIATE or TEMPORARY to force all files offline. If your intention is to make the file read-only, bring the tablespace online first.

ORA-01541: system tablespace cannot be brought offline; shut down if necessary

Cause: An attempt was made to bring tablespace SYSTEM offline.

Action: Do not attempt to take the tablespace SYSTEM offline because it must always be online. Shut down if necessary to do a recovery.

ORA-01542: tablespace "name" is offline, cannot allocate space in it

Cause: An attempt was made to allocate space in an offline tablespace.

Action: Bring the tablespace online or create the object in another tablespace.

ORA-01543: tablespace "name" already exists

Cause: An attempt was made to create a tablespace that already exists.

Action: Use a different name for the new tablespace.

ORA-01544: cannot drop system rollback segment

Cause: An attempt was made to drop the rollback segment SYSTEM.

Action: No action required.

ORA-01545: rollback segment "name" specified not available

Cause: Either:

Case 1: An attempt was made to bring a rollback segment online that is unavailable during startup. For example, the rollback segment is in an offline tablespace.

Case 2: An attempt was made to bring a rollback segment online that is already online. This is because the rollback segment is specified twice in the ROLLBACK_SEGMENTS parameter in the initialization parameter file, or the rollback segment is already online by another instance.

Case 3: An attempt was made to drop a rollback segment that is currently online.

Case 4: An attempt was made to drop a rollback segment that is currently online to use unlimited extents.

Action: Either:

If Case 1: Make the rollback segment available; for example, bring an offline tablespace online.

If Case 2: Remove the name from the ROLLBACK_SEGMENTS parameter if the name is a duplicate or if another instance has already acquired the rollback segment.

If Case 3: Bring the rollback segment offline, which may require waiting for the current transaction to finish, or, if the rollback segment needs recovery, discover which errors are holding up the rolling back of the transactions and take appropriate actions.

If Case 4: Same as for Case 3.

For more information about ALTER ROLLBACK SEGMENT, see the index entry on "ALTER ROLLBACK SEGMENT" in Oracle8 Server SQL Reference.

ORA-01546: tablespace contains active rollback segment "name"

Cause: You tried to bring offline or make read-only a tablespace that contains active rollback segments.

Action: Shut down the instances that use the active rollback segments in the tablespace. Then bring it offline or make it read-only.

ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below

Cause: Media recovery with one of the incomplete recovery options ended without error. However, if the ALTER DATABASE OPEN RESETLOGS command were attempted now, it would fail with the specified error. The most likely cause of this error is forgetting to restore one or more datafiles from a sufficiently old backup before executing the incomplete recovery.

Action: Rerun the incomplete media recovery using different datafile backups, a different controlfile, or different stop criteria.

ORA-01548: active rollback segment "name" found, terminate dropping tablespace

Cause: An attempt was made to drop a tablespace that contains active rollback segments.

Action: Shut down instances that use the active rollback segments in the tablespace and then drop the tablespace.

ORA-01549: tablespace not empty, use INCLUDING CONTENTS option

Cause: An attempt was made to drop a non-empty tablespace.

Action: To drop all the objects in the tablespace, use the INCLUDING CONTENTS option with DROP TABLESPACE.

ORA-01550: cannot drop system tablespace

Cause: An attempt was made to drop the tablespace SYSTEM.

Action: No action required.

ORA-01551: extended rollback segment, pinned blocks released

Cause: This is an internal error message not normally issued.

Action: Contact customer support.

ORA-01552: cannot use system rollback segment for non-system tablespace "name"

Cause: An attempt was made to use the SYSTEM rollback segment for operations involving a non-system tablespace.

Action: Create one or more rollback segments and then use ALTER ROLLBACK SEGMENT 'name' online. It may be necessary to modify the initialization parameter ROLLBACK_SEGMENTS to acquire one of the new private rollback segments. Before creating a rollback segment outside the SYSTEM tablespace, it is necessary to first create and activate a non-system rollback segment in the SYSTEM tablespace.

ORA-01553: MAXEXTENTS must be no smaller than the num extents currently allocated

Cause: The number of extents allocated is greater than the MAXEXTENTS specified.

Action: Specify a larger MAXEXTENTS value.

ORA-01554: out of transaction slots in transaction tables

Cause: There were too many concurrent transactions.

Action: Shut down Oracle, modify initialization parameters TRANSACTIONS and ROLLBACK_SEGMENTS, then restart Oracle. The TRANSACTIONS parameter must be high enough to handle any possible rollbacks.

ORA-01555: snapshot too old (rollback segment too small)

Cause: One of the following:

Insufficient Rollback Segments: A long running query may not be able to reconstruct the snapshot of the blocks it is reading because the rollback data is not available. This can happen when the database has many transactions that are changing data, then committing or rolling back. The rollback data can be overwritten if the rollback segments are too small for the number and size of the changes being made.

Precompiler - Insufficient Rollback Segments: A long running query may not be able to reconstruct the snapshot of the blocks it is reading because the rollback data is not available. This can happen if your program does not CLOSE a cursor after repeated FETCH or UPDATE statements. Alternatively, if a FETCH is executed after a COMMIT, the number of rollback records created since the last CLOSE of the current cursor will fill the available rollback segments and begin to overwrite earlier records.

Action: For the above causes:

Insufficient Rollback Segments; Make a larger number of bigger rollback segments available. This will allow the rollback data for completed transactions to be kept longer.

Precompiler - Insufficient Rollback Segments: If you are not using the fetch across commit feature, ensure that you have CLOSEd cursors appropriately. Otherwise, you must increase the number and the size of rollback segments. You can estimate the size of the rollback data that your program will produce with the V$ROLLSTAT view, which contains the number of bytes written for each rollback segment. Set the current transaction to a rollback segment in a single user mode and query V$ROLLSTAT before and after the transaction. The difference in V$ROLLSTAT gives the number of rollback data bytes written for the transaction. Estimate the total number of transactions done in the loop and, after considering other concurrent transactions, create rollback segments accordingly.

Note: Fetch across commit is not supported by the ANSI standard. According to the ANSI standard, a cursor is invalidated when a commit is performed and should be closed and reopened. With Oracle you can fetch across commit. However, you should be aware that you may get this error.

ORA-01556: MINEXTENTS for rollback segment must be greater than 1

Cause: A MINEXTENTS of less than two was specified for rollback segment.

Action: Specify a larger MINEXTENTS.

ORA-01557: rollback segment extents must be at least num blocks

Cause: An extent of less than num blocks was specified for the rollback segment.

Action: Specify extents of at least num blocks, then retry the operation.

For more information about rollback segments and the ROLLBACK_SEGMENTS parameter, see the index entries on "rollback segments" and "ROLLBACK_SEGMENTS parameter" in Oracle8 Server SQL Reference.

ORA-01558: out of transaction ID's in rollback segment num

Cause: All the available transaction IDs have been used.

Action: Shut down the instance, restart it using another rollback segment, then drop the rollback segment that has no more transaction IDs.

ORA-01559: MAXEXTENTS for rollback segment must be greater than 1

Cause: An invalid value for MAXEXTENTS was specified; the value must be greater than 1.

Action: Specify a MAXEXTENTS value of at least 2 and try again.

ORA-01560: global hash table size mismatch for GC_name (num != num)

Cause: This message is only relevant for systems running the Parallel Server and occurs at instance start up. The value of the GC_name initialization parameter does not match that of an instance already mounted.

Action: Ensure correct initialization parameter files are being used. If necessary, modify the GC_name parameter in the offending initialization files, then shut down and restart those instances with corrected initialization parameter files.

ORA-01561: failed to remove all objects in the tablespace specified

Cause: A user failed to remove all objects when dropping a tablespace.

Action: Repeat DROP TABLESPACE until all objects have been dropped.

ORA-01562: failed to extend rollback segment ID = num

Cause: A failure occurred while trying to extend the rollback segment. The problem is usually lack of space in the database to extend the rollback segment.

Action: This is usually followed by another message stating the cause of the failure. Shut down and take appropriate action for the error that caused the failure. If no other messages follow this message, the cause is probably lack of space in the database.

ORA-01563: rollback segment is PUBLIC, need to use the keyword PUBLIC

Cause: The keyword PUBLIC was not used to identify a public rollback segment.

Action: Use the keyword PUBLIC when identifying a public rollback segment.

ORA-01564: rollback segment is not PUBLIC

Cause: The identified rollback segment is not public.

Action: Do not use the keyword PUBLIC when identifying a private rollback segment.

ORA-01565: error in identifying file name

Cause: An error occurred while trying to identify a file.

Action: Check the accompanying message stack for detailed information.

ORA-01566: file specified more than once in DROP LOGFILE

Cause: For an ALTER DATABASE, the list of files for the DROP LOGFILE option contains at least one duplicate.

Action: Remove the duplicate file specification, then re-execute the statement.

ORA-01567: dropping log name would leave less than two log files in thread num

Cause: Dropping all the files specified would leave fewer than the required two redo log files. It may be possible to clear the log rather than drop it.

Action: Either drop fewer logs or disable the thread before deleting the logs.

ORA-01568: cannot set space quota on PUBLIC

Cause: An attempt was made to set a space quota for PUBLIC on a tablespace.

Action: To grant system-wide or tablespace-wide space privileges to all users, use the statement

 GRANT UNLIMITED TABLESPACE [ON tablespace] TO PUBLIC; 

ORA-01569: datafile too small for system dictionary tables

Cause: The datafile specified during creation of the database is too small to hold the system dictionary tables.

Action: Re-create the database specifying a larger file or more files.

ORA-01570: MINEXTENTS must be no larger than the num extents currently allocated

Cause: The number of extents already allocated is smaller than the MINEXTENTS specified in the command.

Action: Enter the command again specifying the number of extents given in the message as the value for MINEXTENTS.

ORA-01571: redo version num incompatible with Oracle Version num

Cause: This software version cannot read the current redo logs. Either crash recovery is required or there are offline database files that need media recovery. If a filename is listed then it needs media recovery.

Action: Shut down and start up using the compatible software. Do any required media recovery and open the database. Shut down and then start up using current software. If the file is going to be dropped, then take it offline with the DROP option to skip this check.

ORA-01572: global hash table size num for rollback segments is too small for rollback segment ID num

Cause: An operation requested a resource that was unavailable. On a Parallel Server system, the maximum number of system-wide rollback segments is specified by the GC_ROLLBACK_SEGMENTS parameter. When this maximum is reached, no more requests are processed.

Action: Use fewer rollback segments or increase the initialization parameter GC_ROLLBACK_SEGMENTS to a number greater than rollback segment ID num in every initialization parameter file of the Parallel Server. This change will not take effect until Oracle is shut down and restarted.

ORA-01573: shutting down instance, no further change allowed

Cause: A process attempted to make changes while the database was being shut down.

Action: No action required.

ORA-01574: maximum number of concurrent transactions exceeded

Cause: An operation requested a resource that was unavailable. The maximum number of concurrent transactions is specified by the TRANSACTIONS initialization parameter. When this maximum is reached, no more requests are processed.

Action: Try the request again later or increase the TRANSACTIONS parameter in the initialization parameter file. This change will not take effect until Oracle is shut down and restarted.

ORA-01575: time-out waiting for space management resource

Cause: The system timed out before it could acquire the necessary resources to do space management.

Action: Wait a few minutes, then retry the operation.

ORA-01576: instance locking protocol version num incompatible with Oracle Version num

Cause: The version of Oracle is incompatible with the given locking protocol version.

Action: Upgrade the version of Oracle used to start up instances so that they use a compatible locking protocol.

ORA-01577: cannot add log file name - file already part of database

Cause: While executing a CREATE or ALTER DATABASE statement, a file being added was found to already exist on the database.

Action: Check syntax and spelling, specify a valid filename, and try again.

ORA-01578: Oracle data block corrupted (file # num, block # num)

Cause: The given data block was corrupted, probably due to program errors.

Action: Try to restore the segment containing the given data block. This may involve dropping the segment and recreating it. If there is a trace file, report the messages recorded in it to customer support.

ORA-01579: write error occurred during recovery

Cause: A write error occurred during media recovery.

Action: Check the trace file for the type of the write error, then take appropriate action.

ORA-01580: error creating control backup file name

Cause: An operating system error occurred while attempting to create the referenced control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01581: attempt to use rollback segment name new extent name which is being allocated

Cause: Undo generated to extend a rollback segment run out of current undo block space and is attempting to write into the new extent, which has not been completely allocated.

Action: The rollback segment extending itself will be rolled back by the system. No more extension will be possible until the next extent is freed up by the rolling back or committing of other transactions.

ORA-01582: unable to open control file for backup

Cause: An operating system error occurred while attempting to open a control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01583: unable to get block size of control file to be backed up

Cause: An operating system error occurred while attempting to get the block size of a control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01584: unable to get file size of control file to be backed up

Cause: An operating system error occurred while attempting to get the file size of a control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01585: error identifying backup file name

Cause: An operating system error occurred when attempting to identify the referenced control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01586: unable to open destination file name for backup

Cause: An operating system error occurred while attempting to open a control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01587: error during control file backup file copy

Cause: An operating system error occurred while attempting to copy a control file for backup.

Action: Check the accompanying message stack for detailed information, then take appropriate action.

ORA-01588: must use RESETLOGS option for database open

Cause: An earlier attempt to open the database with the RESETLOGS option did not complete, or recovery was done with a control file backup.

Action: Retry the operation making sure to specify the RESETLOGS option.

ORA-01589: must use RESETLOGS or NORESETLOGS option for database open

Cause: Either cancel-based or time-based recovery has been performed. After these types of recovery, it is necessary to specify either the RESETLOGS or NORESETLOGS option to open the database.

Action: Specify the appropriate option.

ORA-01590: number of segment free list num exceeds maximum of num

Cause: The value of the storage clause FREELIST GROUPS is greater than the maximum allowed for the block size.

Action: Specify a number for FREELIST GROUPS less than or equal to the maximum when creating the table or index. The block size specified in the initialization parameter DB_BLOCK_SIZE cannot be changed after the database is created.

ORA-01591: lock held by in-doubt distributed transaction num

Cause: An attempt was made to access a resource locked by a dead two-phase commit transaction that is in prepared state.

Action: Match the transaction number in the message with the GLOBAL_TRAN_ID column of the DBA_2PC_PENDING table to determine the database link and the state of the transaction. Attempt to repair network connections to the coordinator and commit point, if necessary. If timely repair is not possible, contact the database administrator at the commit point, if known, to resolve the pending transaction.

ORA-01592: error converting Version 6 rollback segment "num" to Oracle7 format

Cause: Oracle encountered an error while converting a Version 6 rollback segment into the format used by Oracle7.

Action: Investigate the accompanying internal error message. The Version 6 database may not have shut down cleanly. It may be necessary to reload the Version 6 database from backup and shut it down, ensuring it shuts down cleanly.

ORA-01593: rollback segment optimal size num blocks is smaller than the computed initial size num blocks

Cause: The specified OPTIMAL size is smaller than the cumulative size of the initial extents during create rollback segment.

Action: Specify a larger OPTIMAL size.

ORA-01594: attempt to wrap into rollback segment name extent num which is being freed

Cause: Undo generated to free a rollback segment extent is attempting to write into the same extent due to small extents or too many extents to free.

Action: Increase the optimal size of the rollback segment. The rollback segment shrinking will be rolled back by the system.

ORA-01595: error freeing extent num of rollback segment name

Cause: An error occurred while freeing inactive rollback segment extents.

Action: Check the trace file and check for prior messages.

ORA-01596: cannot specify system in name parameter

Cause: The system rollback segment is specified in the INIT.ORA parameter referred to in the error message.

Action: Change the INIT.ORA parameter.

ORA-01597: cannot alter system rollback segment online or offline

Cause: An attempt was made to online or offline the SYSTEM rollback segment.

Action: No action required.

ORA-01598: rollback segment "name" is not online

Cause: The rollback segment was taken offline either manually or by SMON.

Action: Check the status of the rollback segment in DBA_ROLLBACK_SEGS.

ORA-01599: failed to acquire rollback segment "name", cache space is full (currently has num entries)

Cause: The amount of allocated space is not enough.

Action: Take the rollback segment offline.

ORA-01600: at most one str in clause str of GC_FILES_TO_LOCKS

Cause: The initialization parameter GC_FILES_TO_LOCKS was not specified properly.

Action: Refer to the proper specifications of the GC_FILES_TO_LOCKS parameter and specify it correctly in the initialization parameter file. If other instances are currently accessing the database, use the value that they are using.

ORA-01601: illegal bucket size in clause str of GC_FILES_TO_LOCKS

Cause: The number of locks specified in a clause of the initialization parameter GC_FILES_TO_LOCKS is not a positive integer.

Action: Refer to the proper specifications of the GC_FILES_TO_LOCKS parameter and specify it correctly in the initialization parameter file. If other instances are currently accessing the database, use the value that they are using.

ORA-01602: more locks in GC_FILES_TO_LOCKS than reserved in GC_DB_LOCKS

Cause: The total number of PCM locks specified to all database files in the initialization parameter GC_FILES_TO_LOCKS is greater than the number specified in GC_DB_BLOCKS.

Action: Correct the value of either the GC_FILES_TO_LOCKS parameter or the GC_DB_LOCKS parameter before starting the instance. If other instances are currently accessing the database, use the values that they are using.

ORA-01603: illegal grouping in clause str of GC_FILES_TO_LOCKS

Cause: The initialization parameter GC_FILES_TO_LOCKS is specified incorrectly; if a clause specifies more than one range of file numbers, each range must be separated with commas.

Action: Correct the value of the GC_FILES_TO_LOCKS parameter before starting the instance. If other instances are currently accessing the database, use the value they are using. Use the following syntax:

GC_FILES_TO_LOCKS = "{filenum[-filenum]  

   [,filenum[-filenum]]...=  num_of_locks[EACH]}[:]..."


where filenum is a file number, as listed in V$DBFILE, and num_of_locks is the number of PCM locks.

ORA-01604: illegal file number range in clause str of GC_FILES_TO_LOCKS

Cause: The range of file numbers specified in a clause of the initialization parameter GC_FILES_TO_LOCKS is invalid. The first file number must be smaller than the second file number, and a hyphen must separate the numbers. All numbers in the range must be valid file numbers.

Action: Correct the value of the GC_FILES_TO_LOCKS parameter before starting the instance. If other instances are currently accessing the database, use the value that they are using.




Prev

Next
Oracle
Copyright © 1997 Oracle Corporation.
All Rights Reserved.

Library

Product

Contents