Posted on August 25, 2011 by pandazen
Today I mess around with the Oracle database that can not start and open. I get some error messages from various places such as alert.log, sqlplus, rman. These errors are, I have do this step : 1. replace the current spfile with the old one 2. startup with pfile 3. restore and recover database using [...]
Filed under: Oracle | Tagged: Oracle, oracle error code | Leave a Comment »
Posted on May 6, 2010 by pandazen
When database startup, it send this message to the console, ORA-01122: database file 1 failed verification check ORA-01110: data file 1: ‘D:\ORACLE\PRODUCT\10.2.0\ORADATA\ITCAPPS2\SYSTEM01.DBF’ ORA-01207: file is more recent than control file – old control file To fix this, try alter database backup controlfile to trace; startup nomount; recover database using backup controlfile; alter database open; Hope [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on May 4, 2010 by pandazen
Cause A column was used in the definition of a level after it had already been used to define a level in a different dimension. Action Reorganize dimension levels and hierarchies into a single dimension such that no column is used to define levels in different dimensions. There is no limit on the number of [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on April 14, 2010 by pandazen
when i run DBMS_SHARED_POOL.KEEP, i got this error message ORA-06550: line 2, column 4: PLS-00201: identifier ‘DBMS_SHARED_POOL.KEEP’ must be declared after i search net, the solution is to run the script dbmspool.sql located in ORACLE_HOME\RDBMS\admin as sysdba
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on January 2, 2010 by pandazen
Cause: An attempt was made to insert a record into, a Range or Composite Range object, with a concatenated partition key that is beyond the concatenated partition bound list of the last partition -OR- An attempt was made to insert a record into a List object with a partition key that did not match the [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on December 22, 2009 by pandazen
The database is suddenly can not connect. I’ve tried using the command, shutdown immediate; startup mount; alter database open resetlogs; Then this error appears ERROR at line 1: ORA-01194: file 1 needs more recovery to be consistent ORA-01110: data file 1: ‘\SYSTEM01.DBF’ Second try, SQL> alter database recover datafile ‘\SYSTEM01.DBF’ ERROR at line 1: ORA-00283: [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on December 11, 2009 by pandazen
I got this error message, ORA-08102: index key not found, obj# 211154, file 21, block 1194413 (2) when i run DELETE FROM STATEMENTS WHERE ID = ’9646′ AND ORG_ID =’204′ AND TYPE NOT IN (‘PLA’, ‘TRK’, ‘RO’, ‘WO’, ‘CLM’); To fix this error, i rebuild all of the index.
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on August 19, 2009 by pandazen
Hey i got this error code when execute query on java form ORA-00600: internal error code, arguments: [kksfbc-reparse-infinite-loop], [0x290EB6C18], [], [], [], [], [], [] The solution is just simply re-compile source of the view that used.
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on March 13, 2009 by pandazen
Do anyone know how can this error means, how to prevent it ? This is the result if i search over internet, ORA-09314: sltln: error translating logical name Cause: Internal buffer may have overflowed Action: See OSD error accompanying this message After all, i restart oracle service to fix this. But that is not a [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on April 28, 2008 by pandazen
database couldn’t open because i got the error, ORA-00313: open failed for members of log group 1 of thread 1 ORA-00312: online log 1 thread 1: ‘E:\REDO\REDO01_01.ILG’ ORA-00312: online log 1 thread 1: ‘H:\REDO\REDO01_02.ILG’ i search some explanation about the error, ora-00312: online log %s thread %s: ‘%s’ *Cause: This message reports the filename for [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on February 17, 2008 by pandazen
CREATE OR REPLACE FUNCTION GET_BOOL RETURN BOOLEAN IS BEGIN RETURN TRUE; END; SELECT GET_BOOL() FROM DUAL; ORA-06552: PL/SQL: Statement ignored ORA-06553: PLS-382: expression is of wrong type Cause : There is BOOLEAN datatype is supported by PL/SQL and NOT supported by SQL So you cannot use this function in a straight select statement. However, this [...]
Filed under: Oracle | Tagged: oracle error code | 2 Comments »
Posted on January 19, 2008 by pandazen
ORA-00257: archiver error. Connect internal only, until freed. Cause: The archiver process received an error while trying to archive a redo log. If the problem is not resolved soon, the database will stop executing transactions. The most likely cause of this message is the destination device is out of space to store the redo log [...]
Filed under: Oracle | Tagged: oracle error code | Leave a Comment »
Posted on December 28, 2007 by pandazen
ORA-00600: internal error code, arguments: [string], [string], [string], [string], [string], [string], [string], [string] Cause: This is the generic internal error number for Oracle program exceptions. This indicates that a process has encountered an exceptional condition. Action: Report as a bug – the first argument is the internal error number ————————————————————————— ORA-00600 internal error code, arguments: [...]
Filed under: Oracle | Tagged: oracle error code | 7 Comments »
Posted on December 27, 2007 by pandazen
ORA-01034: ORACLE not available ORA-27101: shared memory realm does not exist ———————————————— Cause: Unable to locate shared memory realm Action: Verify that the realm is accessible Explanation: you could be receive ORA-27101 because you tried to modify the database parameters such as SGA_MAX_SIZE size. You can try to bring back the original parameters. C:\Documents and [...]
Filed under: Oracle | Tagged: Oracle, oracle error code, sga_max_size | 2 Comments »