ORA-01194 encountered when cloning a database

Oracle 10.2.0.5
Attempted to clone a database from one linux server to another. Issued a SHUTDOWN IMMEDIATE then copied all datafiles, and log files. On the new server I place the files on diffierent mount points, modify the pfile so it is correct.
SQL> startup nomount;
SQL> CREATE CONTROLFILE REUSE DATABASE "UFMS044" RESETLOGS NOARCHIVELOG
2 MAXLOGFILES 16
3 MAXLOGMEMBERS 3
4 MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 584
5 6 7 LOGFILE
8 GROUP 1 '/a0902/d01/oradata/ufms044d/redo01.log' SIZE 150M,
9 GROUP 2 '/a0902/d01/oradata/ufms044d/redo02.log' SIZE 150M,
GROUP 3 '/a0902/d01/oradata/ufms044d/redo03.log' SIZE 150M,
10 11 GROUP 4 '/a0902/d01/oradata/ufms044d/redo04.log' SIZE 150M,
12 GROUP 5 '/a0902/d01/oradata/ufms044d/redo05.log' SIZE 150M
-- STANDBY LOGFILE
13 14 DATAFILE
'/a0902/d01/oradata/ufms044d/system01.dbf',
15 16 '/a0902/d01/oradata/ufms044d/undotbs01.dbf',
17 '/a0902/d01/oradata/ufms044d/sysaux01.dbf',
'/a0902/d01/oradata/ufms044d/momdata01.dbf',
18 19 '/a0902/d01/oradata/ufms044d/momindex01.dbf',
'/a0902/d01/oradata/ufms044d/users01.dbf',
20 21 '/a0902/d01/oradata/ufms044d/ccrdata01.dbf',
22 '/a0902/d01/oradata/ufms044d/ccrindex01.dbf',
'/a0902/d01/oradata/ufms044d/odsdata01.dbf',
23 24 '/a0902/d01/oradata/ufms044d/odsindex01.dbf',
25 '/a0902/d01/oradata/ufms044d/ufmdata01.dbf',
'/a0902/d01/oradata/ufms044d/ufmindex01.dbf',
26 27 '/a0902/d01/oradata/ufms044d/wmadata01.dbf',
28 '/a0902/d01/oradata/ufms044d/wmaindex01.dbf',
29 '/a0902/d01/oradata/ufms044d/iardata01.dbf',
'/a0902/d01/oradata/ufms044d/iarindex01.dbf',
'/a0902/d01/oradata/ufms044d/patdata01.dbf'
30 31 32 CHARACTER SET WE8ISO8859P1;
Control file created.
SQL> alter database open resetlogs;
alter database open resetlogs
ERROR at line 1:
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/a0902/d01/oradata/ufms044d/system01.dbf'
SQL> recover database until cancel using backup controlfile;
ORA-00279: change 17130207450 generated at 08/10/2011 10:02:53 needed for
thread 1
ORA-00289: suggestion :
/a0902/oracle/product/10.2.0/db_1/dbs/arch1_1_758800964.dbf
ORA-00280: change 17130207450 for thread 1 is in sequence #1
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/a0902/d01/oradata/ufms044d/system01.dbf'
Oracle 10.2.0.5 is on both boxes.
Would the shutdown immediate cause issues?
Thanks All

user13129655 wrote:
Oracle 10.2.0.5
Attempted to clone a database from one linux server to another. Issued a SHUTDOWN IMMEDIATE then copied all datafiles, and log files. On the new server I place the files on diffierent mount points, modify the pfile so it is correct.
SQL> startup nomount;
SQL> CREATE CONTROLFILE REUSE DATABASE "UFMS044" RESETLOGS NOARCHIVELOG
2 MAXLOGFILES 16
3 MAXLOGMEMBERS 3
4 MAXDATAFILES 100
MAXINSTANCES 8
MAXLOGHISTORY 584
5 6 7 LOGFILE
8 GROUP 1 '/a0902/d01/oradata/ufms044d/redo01.log' SIZE 150M,
9 GROUP 2 '/a0902/d01/oradata/ufms044d/redo02.log' SIZE 150M,
GROUP 3 '/a0902/d01/oradata/ufms044d/redo03.log' SIZE 150M,
10 11 GROUP 4 '/a0902/d01/oradata/ufms044d/redo04.log' SIZE 150M,
12 GROUP 5 '/a0902/d01/oradata/ufms044d/redo05.log' SIZE 150M
-- STANDBY LOGFILE
13 14 DATAFILE
'/a0902/d01/oradata/ufms044d/system01.dbf',
15 16 '/a0902/d01/oradata/ufms044d/undotbs01.dbf',
17 '/a0902/d01/oradata/ufms044d/sysaux01.dbf',
'/a0902/d01/oradata/ufms044d/momdata01.dbf',
18 19 '/a0902/d01/oradata/ufms044d/momindex01.dbf',
'/a0902/d01/oradata/ufms044d/users01.dbf',
20 21 '/a0902/d01/oradata/ufms044d/ccrdata01.dbf',
22 '/a0902/d01/oradata/ufms044d/ccrindex01.dbf',
'/a0902/d01/oradata/ufms044d/odsdata01.dbf',
23 24 '/a0902/d01/oradata/ufms044d/odsindex01.dbf',
25 '/a0902/d01/oradata/ufms044d/ufmdata01.dbf',
'/a0902/d01/oradata/ufms044d/ufmindex01.dbf',
26 27 '/a0902/d01/oradata/ufms044d/wmadata01.dbf',
28 '/a0902/d01/oradata/ufms044d/wmaindex01.dbf',
29 '/a0902/d01/oradata/ufms044d/iardata01.dbf',
'/a0902/d01/oradata/ufms044d/iarindex01.dbf',
'/a0902/d01/oradata/ufms044d/patdata01.dbf'
30 31 32 CHARACTER SET WE8ISO8859P1;
Control file created.
SQL> alter database open resetlogs;
alter database open resetlogs
ERROR at line 1:
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/a0902/d01/oradata/ufms044d/system01.dbf'
SQL> recover database until cancel using backup controlfile;
ORA-00279: change 17130207450 generated at 08/10/2011 10:02:53 needed for
thread 1
ORA-00289: suggestion :
/a0902/oracle/product/10.2.0/db_1/dbs/arch1_1_758800964.dbf
ORA-00280: change 17130207450 for thread 1 is in sequence #1
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
cancel
ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
ORA-01194: file 1 needs more recovery to be consistent
ORA-01110: data file 1: '/a0902/d01/oradata/ufms044d/system01.dbf'
Oracle 10.2.0.5 is on both boxes.
Would the shutdown immediate cause issues?
SHUTDOWN IMMEDIATE
This mode is typically the fastest next to SHUTDOWN ABORT. Oracle Database terminates any executing SQL statements and disconnects users. Active transactions are terminated and uncommitted changes are rolled back.
Edited by: sb92075 on Aug 11, 2011 6:45 AM

Similar Messages

  • ORA-1403 encountered when generating server alert SMG-4120

    Hi Gurus,
    Kindly help what's the following error:
    ORA-1403 encountered when generating server alert SMG-4120
    I'm using Oracle Database 10.2.0.1.0
    Thanks,
    BTF
    Edited by: Benj Flores on Oct 9, 2008 1:50 AM

    There isn't much information available about this error. So I would suggest you get in touch with Oracle support.

  • ORA-1461 encountered when generating server alert SMG-3500 ?

    Hi,
    i hv use oracle database 10g with two nodes n1 and n2
    today in n1 node ORA-1461 encountered when generating server alert SMG-3500 this error is occured , i hv try serch this error but i hv't answer is given also in udump no trace file genrated
    how can findout the solution.

    I also had this problem this morning and can't find anything on the web...
    Same cfg: 10.2.0.3 RAC std edition
    At the moment the server generated this error there was a scheduled job running...if this helps...
    Do you have similar experiences? Solutions? Hints?
    Roberto

  • ORA-24010 encountered when generating server alert

    Every Times I startup my Database I have the following messages
    Error 0 in kwqmnpartition(), aborting txn
    Error 0 in kwqmnpartition-update_aqs_instance, aborting txn
    Completed: ALTER DATABASE OPEN
    Thu May 24 14:48:10 2007
    ORA-24010 encountered when generating server alert SMG-4120
    ORA-24010 encountered when generating server alert SMG-4121
    ORA-24010 encountered when generating server alert SMG-4121
    What does that means ?
    regards,

    This problem comes in a newly installed database following is the discussion in metalink:
    Applies to:
    Oracle Server - Enterprise Edition - Version: 10.2.0.1.0
    This problem can occur on any platform.
    Symptoms
    1. The alert.log reports the following sequence of errors several times:
    Thu Mar 16 13:49:15 2006
    Completed: ALTER DATABASE OPEN
    Thu Mar 16 13:49:16 2006
    ORA-24010 encountered when generating server alert SMG-4120
    ORA-24010 encountered when generating server alert SMG-4121
    ORA-24010 encountered when generating server alert SMG-4121
    Thu Mar 16 14:14:16 2006
    ORA-24010 encountered when generating server alert SMG-4121
    ORA-24010 encountered when generating server alert SMG-4121
    Thu Mar 16 14:19:17 2006
    Errors in file /u01/app/oracle/admin/IRTPRO/bdump/irtpro_ora_3000.trc:
    ORA-00600: internal error code, arguments: [kdappurgeostat1], [365002], [], [], [], [], [], []
    2. A local SQLPLUS connection reports "Connected to an idle instance".
    3. The trace file does not report current cursor or current SQL information.
    Changes
    This may be a new database.
    Cause
    Error: ORA-24010
    Cause: The specified queue does not exist.
    Action: Specify a valid queue. Query USER_QUEUES for all the valid queues.
    QUEUE tables were not properly created. On a 10.2.0.3 database, the following standard queues exist:
    SQL> SELECT NAME FROM USER_QUEUES;
    NAME
    AQ$_KUPC$DATAPUMP_QUETAB_E
    AQ$_SYS$SERVICE_METRICS_TAB_E
    SYS$SERVICE_METRICS
    AQ$_ALERT_QT_E
    ALERT_QUE
    AQ$_AQ$_MEM_MC_E
    SRVQUEUE
    AQ$_SCHEDULER$_EVENT_QTAB_E
    SCHEDULER$_EVENT_QUEUE
    AQ$_SCHEDULER$_JOBQTAB_E
    SCHEDULER$_JOBQ
    AQ$_AQ_SRVNTFN_TABLE_E
    AQ_SRVNTFN_TABLE_Q
    AQ$_AQ_EVENT_TABLE_E
    AQ_EVENT_TABLE_Q
    15 rows selected.
    Since this is a new installation with a new database, the proper QUEUE tables should have been created at database creation during execution of catalog and catproc.
    Solution
    To resolve the problem:
    1. SQL> spool output.txt
    2. SQL> @?/rdbms/admin/catalog.sql
    3. SQL> @?/rdbms/admin/catproc.sql
    4. SQL> utlrp.sql
    5. SQL> select comp_name, status from dba_registry;
    (to verify VALID components)
    6. SQL> select owner, object_name, object_type from dba_objects where status = 'INVALID';
    (to verify VALID objects)
    Let us know the status after this fix.
    Senthil

  • ORA-1578 encountered when generating server alert SMG-3503

    In my system, the oracle version is 10.2.0.1.0
    In the alert file I found below errors:
    Mon Sep 12 18:48:33 2011
    ORA-1578 encountered when generating server alert SMG-3503
    ORA-1578 encountered when generating server alert SMG-4121
    ORA-1578 encountered when generating server alert SMG-4121
    Mon Sep 12 18:53:44 2011
    ORA-1578 encountered when generating server alert SMG-4121
    ORA-1578 encountered when generating server alert SMG-4121
    Mon Sep 12 18:58:40 2011
    ORA-1578 encountered when generating server alert SMG-3503
    ORA-1578 encountered when generating server alert SMG-4121
    ORA-1578 encountered when generating server alert SMG-4121
    Mon Sep 12 19:03:47 2011
    ORA-1578 encountered when generating server alert SMG-4121
    ORA-1578 encountered when generating server alert SMG-4121
    Is the error will impact the database or application system?
    What is the cause and solution of this error?

    Hi,
    please post the output of
    select * from V$DATABASE_BLOCK_CORRUPTION; Do you have a standby for this database?
    Edited by: Rodriguez on 02.02.2012 23:08

  • ORA-376 encountered when generating server alert SMG-3506

    Hi Team,
    I have a undo tablespace with 9Gb, I think to create a new and delete a old
    for decreasing size.
    I do this steps:
    shutdown immediate;
    startup restrict;
    CREATE UNDO TABLESPACE "UNDOTBS02" ;
    alter system set undo_tablespace=undotbs02;
    shutdown;
    startup;
    Now I want delete the old tablespace undo
    alter tablespace undotbs1 offline;
    and have this msg in alert.log
    Completed: ALTER TABLESPACE "UNDOTBS1" OFFLINE NORMAL
    Wed Mar 25 23:15:54 2009
    ORA-376 encountered when generating server alert SMG-3506
    Is correct my process ?
    I use this version
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 64-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    thans
    Edited by: mauro brn on Mar 26, 2009 12:36 AM

    a question:
    before drop I put on line tablespace ?
    and then
    DROP TABLESPACE <tablespace_name> INCLUDING CONTENTS;
    I do a query
    select segment_name,tablespace_name,status from dba_rollback_segs;
    and have this result
    SEGMENT_NAME TABLESPACE_NAME STATUS
    SYSTEM SYSTEM ONLINE
    _SYSSMU1$                      UNDOTBS1                       OFFLINE         
    _SYSSMU2$                      UNDOTBS1                       OFFLINE         
    _SYSSMU3$                      UNDOTBS1                       OFFLINE         
    _SYSSMU4$                      UNDOTBS1                       OFFLINE         
    _SYSSMU5$                      UNDOTBS1                       OFFLINE         
    _SYSSMU6$                      UNDOTBS1                       OFFLINE         
    _SYSSMU7$                      UNDOTBS1                       OFFLINE         
    _SYSSMU8$                      UNDOTBS1                       OFFLINE         
    _SYSSMU9$                      UNDOTBS1                       OFFLINE         
    _SYSSMU10$                     UNDOTBS1                       OFFLINE         
    _SYSSMU11$                     UNDOTBS02                      ONLINE          
    _SYSSMU12$                     UNDOTBS02                      ONLINE          
    _SYSSMU13$                     UNDOTBS02                      ONLINE          
    _SYSSMU14$                     UNDOTBS02                      ONLINE          
    _SYSSMU15$                     UNDOTBS02                      ONLINE          
    _SYSSMU16$                     UNDOTBS02                      ONLINE          
    _SYSSMU17$                     UNDOTBS02                      ONLINE          
    _SYSSMU18$                     UNDOTBS02                      ONLINE          
    _SYSSMU19$                     UNDOTBS02                      ONLINE          
    _SYSSMU20$                     UNDOTBS02                      ONLINE                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • ORA-24010 encountered when generating server alert SMG-3000

    Hi,
    When i startup my database, database opened successfully but alert log shows that,
    QMNC started with pid=16, OS id=19647
    Mon Dec 6 00:34:17 2010
    ORA-24010 encountered when generating server alert SMG-3000
    ORA-24010 encountered when generating server alert SMG-4120
    ORA-24010 encountered when generating server alert SMG-4121
    ORA-24010 encountered when generating server alert SMG-4121
    Mon Dec 6 00:34:18 2010
    Completed: ALTER DATABASE OPEN
    How to resolve the error..???
    Thakns in advance

    Hi,
    looking at document ID 432503.1 on Oracle Support; it looks like there are some bad queues. Have a look at this document to solve your problem.
    Herald ten Dam
    http://htendam.wordpress.com

  • ORA-0 encountered when generating server alert SMG-3000

    Hi All,
    Does anyone has an idea on the following error.
    ORA-0 encountered when generating server alert SMG-3000
    ORA-0 encountered when generating server alert SMG-3000
    ORA-0 encountered when generating server alert SMG-3000
    ORA-0 encountered when generating server alert SMG-3000
    I'm getting this error in my alert file for my database running on 10.2.0.4.
    Thanks,
    Raja.

    Hello Mr. Raja,
    Can you tell me how do you recreate alert_que? Am facing exactly the same problem. Whats worse is that am getting out of memory exception within a couple of minutes as shown in my alert log below. Am not getting out of memory even if i run several programs in parallel, which consumes all of server CPU and considerable amount of RAM. But getting it once this exception occurs. Is there any relation between these two errors.?
    Sun Jun 19 18:49:52 2011
    ORA-0 encountered when generating server alert SMG-3503
    Sun Jun 19 18:51:23 2011
    Process startup failed, error stack:
    Sun Jun 19 18:51:23 2011
    Errors in file e:\oracle\product\10.2.0\admin\<dbname>\bdump\kpcldb_q000_12268.trc:
    ORA-04030: out of process memory when trying to allocate 8148 bytes (kxs-heap-w,qesaQBInit:buffer)
    If Mr.Raja is unavailable, can anybody else kindly answer this?
    Edited by: user13333704 on Jun 19, 2011 11:09 PM

  • ORA-29516 encountered when using LoadJava

    I get ORA-29516 when trying to use the LoadJava command on Linux and Oracle 8.1.6.
    I also have trouble running the initjvm.sql, it seems to always run with errors. Do I need to alter some values in my .ora file? or is there something else that I may try?
    I am trying to run initjvm.sql as sys.
    null

    Actually I have found that I get a ora-3113 error when I try to run the initjvm.sql script. I am trying to run it as SYS, however it hangs after a 20 or so statements and then after a long time, I get the ora-3113 error (i am guessing that oracle is terminating its session).

  • OIM 9.1.0.2 ORA-0936 encountered when provisioning roles

    I've configured an Access Policy that provisions users without requiring approval to a DB through the DB connector. It also provisions them with roles: CONNECT and DBA.
    The latter was achieved by making Role provisioning dependent upon User creation completion in the Access Policy. The Access Policy is also where the roles are specified.
    The user is created and role provisioning fires OK, but gets rejected.
    The relevant section in the log looks like this:
    ERROR RMICallHandler-266 XELLERATE.DATABASE - select UD_DB_ORA_P_PRIVILEGE from UD_DB_ORA_P where UD_DB_ORA_P_KEY =
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
    <snip>
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    ERROR RMICallHandler-266 XELLERATE.DATABASE - Class/Method: tcDataBase/readPartialStatement encounter some problems: ORA-00936: missing expression
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:113)
         <snip>
         at com.evermind.server.rmi.RmiMethodCall.run(RmiMethodCall.java:53)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    DEBUG RMICallHandler-266 XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateSchItem entered.
    DEBUG RMICallHandler-266 XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateSchItem - Data: event - Value: adpDBADDPRIVILEGE
    DEBUG RMICallHandler-266 XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateSchItem - Data: New Status - Value: R
    DEBUG RMICallHandler-266 XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateSchItem - Data: SchData - Value: Data Access Error
    DEBUG RMICallHandler-266 XELLERATE.ADAPTERS - Class/Method: tcAdpEvent/updateSchItem - Data: Reason - Value: Exception com.thortech.xl.dataaccess.tcDataSetException: Data Access Error was thrown in adapter "DB Add Privilege". The Adapter Response was "Data Access Error"
    There is an article about this on Oracle support, which I think is relevant, it states:
    CAUSE
    The error is caused by the fact that the rule is based on the values of the process form which are not yet commited to the database.
    The usage of the process form will be avoided when creating rules for prepopulate adapters.
    SOLUTION
    Create a rule based on the "Request Target Information" which is reffering attributes of the OIM target user which has to be provisioned.
    Suppose an access policy is used and this is based on a specific autogroup membership, the same rule can be used when creating the rule for the prepopulate adapter.
    Unfortunately, this is greek to me.
    Can anyone explain how I can resolve this problem with the role provisioning?
    Many thanks,
    2Hugh
    Edited by: 2hughg on 08-Mar-2011 09:19

    I had a privilege provisioning task set up as well, when I removed that, the error condition went away.
    2hugh

  • ORA-02231 error when issue ALTER DATABASE FORCE LOGGING

    Hi,
    Does everybody know why I faced ORA-02231 when issue below command in oracle,
    SQL> ALTER DATABASE FORCE LOGGING;
    ALTER DATABASE FORCE LOGGING
    ERROR at line 1:
    ORA-02231: missing or invalid option to ALTER DATABASE
    SQL> ALTER DATABASE FORCE LOGGING ;
    ALTER DATABASE FORCE LOGGING
    ERROR at line 1:
    ORA-02231: missing or invalid option to ALTER DATABASE
    SQL> ALTER DATABASE FORCE LOGGING
    2
    SQL> ALTER TABLESPACE BIIS FORCE LOGGING
    2 ;
    ALTER TABLESPACE BIIS FORCE LOGGING
    ERROR at line 1:
    ORA-02142: missing or invalid ALTER TABLESPACE option
    I use this oracle version:
    Oracle9i Enterprise Edition Release 9.0.1.1.1 - Production
    PL/SQL Release 9.0.1.1.1 - Production
    CORE 9.0.1.1.1 Production
    TNS for 32-bit Windows: Version 9.0.1.1.0 - Production
    NLSRTL Version 9.0.1.1.1 - Production
    Thanks.

    Hi Jaffar,
    After I checked that you are correct.
    I can issue the command without problem in oracle 9i Rel.2.
    Thanks for your information.
    Tarman.

  • Error in DBCA when cloning a database from template

    After answering all the questions in Database Configuration Assistant, I am getting ORA-03114 Not connected to Oracle. The cloning actually starts but stops after about 40% of the progress. I am using a template generated by the DBCA on another machine. I guess that there are some constraints about the compatibility with the target machine. Both are Windows servers, the original database is 10.2.0.4.0 and the target is 10.2.0.3.0. The log file doesn't say anything more than ORA-01092: ORACLE instance terminated. Disconnection forced, and ERROR: ORA-03114: not connected to ORACLE.

    You should better ask this question in the Database - General forum ( General Database Discussions )
    Here in this Migration forum we are pleased to answer questions about migrations from foreign databases to Oracle.
    Regards
    Wolfgang

  • Ora 600 error when cloning a remote pdb

    I have two container database cdb2 (Oracle 12.1.0.2) and cdb1 (Oracle 12.1.0.1). I am creating  a PDB in cdb2 which connects to to a PDB in cdb1 using
    database link.
    I am using following instructions:
    ORACLE-BASE - Multitenant : Clone a Remote PDB or Non-CDB in Oracle Database 12c (12.1
    1  CREATE PLUGGABLE DATABASE PDB4REMOTE from PDB4@clone_link
      2  FILE_NAME_CONVERT= ('/u01/app/oracle/oradata/cdb1/pdb4',
      3* '/u03/app/oracle/oradata/cdb2/pdb4remote')
    SQL> /
    CREATE PLUGGABLE DATABASE PDB4REMOTE from PDB4@clone_link
    ERROR at line 1:
    ORA-17627: ORA-00600: internal error code, arguments: [ksrpcsexec_1], [158],
    [20], [], [], [], [], [], [], [], [], []
    ORA-17627: ORA-00600: internal error code, arguments: [ksrpcsexec_1], [158],
    [20], [], [], [], [], [], [], [], [], []

    user12021554 wrote:
    ERROR at line 1:
    ORA-17627: ORA-00600: internal error code, arguments: [ksrpcsexec_1], [158],
    [20], [], [], [], [], [], [], [], [], []
    ORA-00600 exceptions should be reported Oracle. Open an SR and provide the particulars of the problem to support.

  • Ora-01194 when trying to open a database

    Hi folks,
    I am trying to move a database from one production server(oracle 9.2 using RAC) to a test server(Oracle 9.2 stand alone server), but some error is occurring..
    What I done was
    1 - shutted down production server
    2 - copied dbf files to test server
    3 - started production server
    4 - created a test db on other server with same physical structure that prodution server has. It means that I maintained tablespaces and datafiles names.
    5 - shutted down test db
    6 - copied production dbf files to oradata directories
    7 - recreated controlfile. until now, everything worked fine, but on next step I got error message ORA-01194
    8 -
    SQL> ALTER DATABASE OPEN RESETLOGS;
    ALTER DATABASE OPEN RESETLOGS
    ERROR at line 1:
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: 'O:\CDCHOM\ORADATA\SYSTEM01.DBF'
    could anyone help me with that?
    Thank you
    Alex

    I guess that I have to copy just datafiles, not including undo and tempfiles.
    Redo files and control files are recreated with CREATE CONTROLFILE statement.
    temp and undo tablespaces are recreated after control file is recreated.
    For this process works file, does oracle releases must be the same for both servers?
    My configurations are:
    PRODUTION SERVER (using Oracle RAC)
    OS : windows 2003, sp1
    ORACLE :
    SQL> SELECT * FROM V$VERSION;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
    PL/SQL Release 9.2.0.5.0 - Production
    CORE 9.2.0.6.0 Production
    TNS for 32-bit Windows: Version 9.2.0.5.0 - Production
    NLSRTL Version 9.2.0.5.0 - Production
    TEST SERVER
    OS : windows 2003, sp1
    ORACLE :
    SQL> SELECT * FROM V$VERSION;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    PL/SQL Release 9.2.0.1.0 - Production
    CORE 9.2.0.1.0 Production
    TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
    NLSRTL Version 9.2.0.1.0 - Production

  • Error in Recover Database -  ORA-01547 , ORA-01194 and ORA-01110

    Hello folks,
    I am facing a problem when recovering a database..
    I made each tablespace in backup mode, then copied the datafile. I revert back the tablespace status to normal status.Once all datafiles are copied to target location, i created the control file from the source db.
    I started the target db by
    sqlplus "/ as sysdba"
    then i executed the control file
    SQL>@ctrlfile.sql
    Control file got created.
    SQL>recover database until cancel using backup controlfile;
    it asked for archives. I gave the path one by one until everything was done.Now i gave 'cancel' as below.
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    cancel
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01194: file 377 needs more recovery to be consistent
    ORA-01110: data file 377: '<path>/xxfndx01.dbf'
    ORA-01112: media recovery not started
    Could anyone please tell me where I went wrong and how can I move ahead from this stage???
    Later on, when I gave open resetlogs, it gave the same error(as below)
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-01194: file 377 needs more recovery to be consistent
    ORA-01110: data file 377: '<path>/xxfndx01.dbf'
    Please let me know the mistake I made, how to avoid that and how to proceed now ???
    Thanks,
    Cherrish Vaidiyan
    [email protected]

    Hello Cherrish,
    A very good question you have asked. I hope you realize that you're doing an incomplete recovery. There is some amount of information that is still there in the online redo-log, that would not be applied on your target db. Moreover when you're using backup controlfile, you do not know till which point you need to apply archive logs.
    For incomplete recovery, Oracle for some reason has been very strict about the recover database command. i.e.
    recover database using backup controlfile
    recover database using backup controlfile until cancel
    Is not same. It also applies to the command that you had given. By giving the command 'recover database using backup controlfile until cancel', you're telling Oracle that incomplete recovery is in process, and you would do resetelogs, to make sure all files are in sync. This is required when you have lost the redo-logs
    In case you have just lost the control file. All latest redo-logs, archive-logs and datafiles are okay (or have been restored), then recover database using backup controlfile; would work perfectly okay. and resetlogs would not be required.. and that would be a complete recovery
    I hope this all makes sense to you
    Regards
    Sudhanshu

Maybe you are looking for

  • Alteração dos layout's de impressão padrão do SAP B1

    Pessoal, bom dia. Gostaria de saber como faço para incluir um novo dado em um layout padrão do SAP B1, por exemplo: Fluxo de Caixa. Toda vez que tento incluir ou alterar qualquer campo o layout traz informações que não tem nada a ver ou repete em tod

  • Disable row highlighting in details view in file explorer

    Cannot extract files from archive to existing folder using drag and drop operation. screenshot here http ://imgur. com/lmERkkw (it doesn't let me attach images or links until "verify my account", but no such option I am offered) or a simply file drag

  • Adobe Photoshop Serial Number Problem

    One of my friend has lost his Adobe Photoshop serial number. What to do? There is any way to recover it.

  • 64-bit or 32-bit

    how to know if i am using 64-bit or 32-bit CPU?????? any command or a GUI way!!!!!!!!!!!!\ Thanks.

  • How can i unlock my iPhoto library?

    it says caution and that my library is locked and on a locked disk. How do I get these pictures uploaded from my compactflash?