Impdp with error ORA-39083,ORA-00942,ORA-00959,ORA-39112,help!!!

Hi,Friends,
I did import a dump file, should be a schema by data pump.Got these errors:
ORA-39083: Object type TABLE failed to create with error
followed error:
ORA-00942: table or view does not exist
or
ORA-00959: tablespace 'USERS2' does not exist
ORA-39112: Dependent object type %s skipped, base object type %s creation failed ORA-39082: Object type created with compilation warnings
Would anybody here can help me out?Thanks!

Either pre-create the users2 tablespace in the target database, or use remap_tablespace parameter to specify the target tablespace instead of users2.
As usual, complete syntax is in the doc - http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_import.htm#sthref342

Similar Messages

  • I have windows 64 and trying to download itunes 10.5, it start downloading but then after it`s almos finish i have a window pup up with error Microsoft ft VC80.CRT,type="win32" etc.Please help.I have windows 7 64

    I have windows 64 and trying to download itunes 10.5, it start downloading but then after it`s almos finish i have a window pup up with error Microsoft ft VC80.CRT,type="win32" etc.Please help.I have windows 7 64

    same here.

  • Archive file with errors in sender file adapter not working! please help!

    Hi Experts,
       I have a file to RFC scenario. the input is a XML file. I have setup the flag in sender file adapter channel for archiving the input files with errors. But it is not working.
    For testing I have used an invalid xML file for example without the main XML tag. I have also tested with a MSWORD file saved with.xml extension. But in both the cases the files are not getting archived.
    My archive location permissions are fine and in fact normal archive operation is happening. That is, if I select the processing mode as "Archive" and gave the Archive directory then files are getting archived. The problem is only with the "Archive faulty source files" option.
    What am I missing? DO I need to do some more configurations?
    What are the prerequisites if any for this option?
    How to test this?
    Please help me! I will be greatfull to you all!
    Thanks & Regards
    Gopal

    and go thru this links
    Creating a Single Archive of the Version Files
    http://help.sap.com/saphelp_nw04/helpdata/en/79/1e7aecc315004fb4966d1548447675/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/31/8aed3ea86d3d67e10000000a114084/frameset.htm
    Note: reward points if solution found helpfull
    Regards
    Chandrakanth.k

  • HT203200 When I try to sync my iphone to my imac it deletes any apps that I have added on my computer and wont install on my iphone and visa versa. Itunes wont let me authorise from the imac with errors of -54 and -50. Can you pls help??

    When I try and sync my iphone (backup) with my imac any apps that I have put on the imac OR my iphone will not sync to eachother, so I lose some of my apps. WHen itunes (on the imac) tells me to authorise the changes/apps and I put my details in, it comes up with an itunes error code of -54 and -50. I cannot sync my iphone correctly to back up on the imac and I need to do this as I use my phone for work. I have an iphone 4GS and run Mac OS X 10.6.8.
    Can anyone help me please?

    Thank you Carolyn, I understand that and do use the same P/w for both the iphone and the computer and the apps were origionally for the iphone anyway, they just used to back on the computer and now they wont and the imac even cancels them off my iphone when I sync. And it says "Itunes" has made an error, try again...with the coes -54 and -50. This means I canot ack up my iphone properly. 

  • TS1369 My iphone 4 showed itunes with connector, tried to restore came back with error.  Now shows the apple & will not do anything else.  Please help!

    My iphone 4 did a update this morning. Ever since it has showed itunes with connector.  Connected to itunes tried to restore.  Came back with error now only shows the apple sign.  Please help!

    iPhone is in recovery mode.
    http://support.apple.com/kb/HT1808

  • ORA-39083: Object type TRIGGER failed to create with error:

    i m getting these two error when i import data using impdp.
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-00942: table or view does not exist
    i have exported (expdp) data from production db, when i importing (impdp) the dump file to the test db i m geting the above two errors.
    example:
    ORA-39083: Object type TRIGGER failed to create with error:
    ORA-00942: table or view does not exist
    Failing sql is:
    CREATE TRIGGER "NEEDLE"."CC_BCK_TRG" BEFORE INSERT OR UPDATE
    ON NIIL.cc_bck_mgmt REFERENCING NEW AS NEW OLD AS OLD FOR EACH ROW
    DECLARE
    w_date DATE;
    w_user VARCHAR2(10);
    BEGIN
    SELECT USER,SYSDATE INTO w_user,w_date FROM DUAL;
    IF INSERTING THEN
    :NEW.cretuser :=w_user;
    :NEW.cretdate :=w_date;
    END IF;
    IF UPDATING THEN
    :NEW.modiuser :=w_user;
    :NEW.modidate :=w_date;
    END IF;
    END;
    status of the above trigger in pro db is valid. and source table also exist even though i m getting error when i import
    please suggest me...

    perhaps you don't have table... (impdp created trigger before create table)
    check about "NIIL.cc_bck_mgmt" table.
    and then create it (trigger) manual ;)
    Good Luck.

  • IMPDP  Errors  ORA-39083  ORA-01918

    Oracle Database 10.2
    OS IBM AIX
    Hi
    I have to do one datapump import into one database. The source database is different.
    The dumpfile contains 3 different schemas. And I need to import into one schema with a different name.
    For example, Export dump contains AB, CD and EF.
    I need to import only EF user into new database and it should become MN.
    I have used remap_schema=EF:MN
    The following is the import parfile.
    userid='/ as sysdba'
    directory=DF_DUMP
    dumpfile=AMRC%U.dmp
    remap_schema=EF:MN
    remap_tablespace=RM100:TS100
    remap_tablespace=DATA100:DATA300
    job_name=MNIMPORT
    logfile=MNIMPORT.log
    parallel=4
    I have started the import. But I see the below errors
    ORA-39083: Object type TABLE failed to create with error:
    ORA-01918: user 'AB' does not exist
    Failing sql is:
    CREATE TABLE
    After this, import of MN has begun.
    How to resolve the below error ? What is the reason for this error ? What changes are needed in parfile ?

    Three errors
    - You didn't look up the error messages in the online documentation.
    - impdp by default imports the entire file (Full=y). You need the SCHEMAS= clause
    - expdp and impdp shouldn't be run as SYS
    All in all you could have found the answer very easily in the online documentation.
    Please avoid asking redundant questions in the future.
    Sybrand Bakker
    Senior Oracle DBA

  • ORA-39083 - During Impdp

    Hi all,
    My db is in 10.1.0.5
    I took export of an table in my prod db and tried to import the table in preprod db.
    But It threw the following error.
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'LFOPRODSELECT' does not exist
    Failing sql is:
    GRANT SELECT ON "LFO_UAT"."QUESTION" TO "LFOPRODSELECT"
    Because of this error few of the constraints are not getting created.
    Please help....
    Thanks in advance

    Hello,
    Here is a test case using expdp/impdp option you posted here. So my recommendation create a role without any grants in UAT schema before importing your table, hope this helps
    create role LFOPRODSELECT;
    EXPORT*
    1. created a table in "prd" schema: my_objects
    2. bitmap index on my_objects.owner (just for test purpose)
    3. A role "myrole" with grant select on my_objects
    grant select on prd.my_objects to myrole;
    C:\expdp prd/prd directory=TEST_DIR dumpfile=myobjects.dmp logfile=myobjects.log tables=prd.my_objects
    Export: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 22:19:10
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Starting "PRD"."SYS_EXPORT_TABLE_01": prd/******** directory=TEST_DIR dumpfile=myobjects.dmp logfile=myobjects.log tables=prd.my_objects
    Estimate in progress using BLOCKS method...
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    Total estimation using BLOCKS method: 184 MB
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    . . exported "PRD"."MY_OBJECTS" 141.6 MB 1516176 rows
    Master table "PRD"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded
    Dump file set for KLONDIKE.SYS_EXPORT_TABLE_01 is:
    E:\U01\ORADATA\DSS\LOG\MYOBJECTS.DMP
    Job "KLONDIKE"."SYS_EXPORT_TABLE_01" successfully completed at 22:19:34
    Import test case 1: Without ROLE to recreate error at import_
    C:>impdp uat/uat directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Import: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 23:09:30
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Master table "UAT"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "UAT"."SYS_IMPORT_FULL_01": uat/******** directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "UAT"."MY_OBJECTS" 141.6 MB 1516176 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'MYROLE' does not exist
    Failing sql is:
    GRANT SELECT ON "UAT"."MY_OBJECTS" TO "MYROLE"
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Job "UAT"."SYS_IMPORT_FULL_01" completed with 1 error(s) at 23:10:16
    Test Case 2: With role_
    SQL> create role myrole;
    C:\>impdp uat/uat directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=klondike:testme remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Import: Release 10.2.0.1.0 - Production on Friday, 26 December, 2008 23:12:55
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, Oracle Label Security, OLAP and Data Mining Scoring Engine options
    Master table "UAT"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "UAT"."SYS_IMPORT_FULL_01": uat/******** directory=TEST_DIR dumpfile=myobjects.dmp remap_schema=prd:uat remap_tablespace=orion_data_ts:ama_data logfile=myimport.log table_exists_action=replace
    Processing object type TABLE_EXPORT/TABLE/TABLE
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "UAT"."MY_OBJECTS" 141.6 MB 1516176 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    Job "UAT"."SYS_IMPORT_FULL_01" successfully completed at 23:13:43Regards
    Edited by: OrionNet on Dec 26, 2008 11:32 PM
    Edited by: OrionNet on Dec 26, 2008 11:33 PM
    Edited by: OrionNet on Dec 26, 2008 11:33 PM

  • IMPDP  ORA-39083:  ORA-06564

    Hi all,
    Doing EXPDP & IMPDP again.
    How do I avoid this error at running impdp time? When doing the expdp process?
    ORA-39083: Object type TABLE:"SPRODADM"."ET$0A9D022D0001" failed to create with error:
    ORA-06564: object CCB_MIG_DIR does not exist
    Failing sql is:
    CREATE TABLE "SPRODADM"."ET$0A9D022D0001" ("ADJ_ID" CHAR(12 BYTE), "SEQNO" NUMBER(5,0), "TOU_CD" CHAR(8 BYTE), "UOM_CD" CHAR(4 BYTE),
    "SQI_CD" CHAR(8 BYTE), "RS_CD" CHAR(8 BYTE), "EFFDT" DATE, "RC_SEQ" NUMBER(4,0), "DST_ID" CHAR(10 BYTE), "CURRENCY_CD" CHAR(3 BYTE),
    "CHAR_TYPE_CD" CHAR(8 BYTE), "CHAR_VAL" CHAR(16 BYTE), "PRT_SW" CHAR(1 BYTE), "APP_IN_SUMM_SW"
    ORA-39083: Object type TABLE:"SPRODADM"."ET$099803190001" failed to create with error:
    ORA-06564: object CCB_MIG_DIR does not existThe client just give us this dump and when I impdp it I encountered this error. What will I tell them to include things in the expdp so that
    I will not encounter this?
    Thanks a lot,
    Kinz

    How do you create directories? It is the same format at creating data_pump_dir? yes
    How about the data in the external tables? How do I migrate it? Or what will I tell the client to send to me?external table doesn't hold any data but just a pointer of files which are located under this directory.
    http://docs.oracle.com/cd/B19306_01/server.102/b14215/et_concepts.htm
    Or what will I tell the client to send to me?create table script and files if these are required to read from external table.better check the use of this table and whether they really need this table.

  • IMPDP Help needed please...ORA-39083: Object type PROCOBJ failed to create

    OS=Win2003
    DB=10gR2
    Version = 102.0.4
    Hi,
    I am running a impdp on a 30gb file and well it seems to have gone fine (much faster then it normally does to be honest), but towards the end it fails, and when researching this error, it seems to be very vague and I was wondering if someone can help me. Below is the log, but I have taken parts out of it that are not relevant.
    Import: Release 10.2.0.4.0 - Production on Wednesday, 16 April, 2008 15:22:18
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Master table "SYSTEM"."IMPGEMDEV041608" successfully loaded/unloaded
    Starting "SYSTEM"."IMPGEMDEV041608": system/********@iworksdb directory=DATA_PUMP_DIR dumpfile=expdpgemdev.dmp job_name=impgemdev041608 TABLE_EXISTS_ACTION=APPEND SCHEMAS=GEMDEV LOGFILE=IMPIWORKS_BOON.log REMAP_SCHEMA=GEMDEV:IWORKS REMAP_TABLESPACE=IWORKS_INDEX:IWORKS_IDX REMAP_TABLESPACE=IWORKS_IOT:IWORKS_IDX REMAP_TABLESPACE=IWORKS_TABLES:IWORKS_TABLES EXCLUDE=GRANT exclude=statistics STREAMS_CONFIGURATION=N
    Processing object type SCHEMA_EXPORT/USER
    ORA-31684: Object type USER:"IWORKS" already exists
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TYPE/TYPE_SPEC
    ORA-31684: Object type TYPE:"IWORKS"."T_NUMBER_TAB" already exists
    ORA-31684: Object type TYPE:"IWORKS"."T_VARCHAR2_TAB" already exists
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39152: Table "IWORKS"."SYS_TOKENTYPE" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append
    ORA-31684: Object type PACKAGE:"IWORKS"."CONT_FEE_DEF_UC" already exists
    ORA-31684: Object type PACKAGE:"IWORKS"."COPAYCALCFLAG" already exists
    ORA-31684: Object type VIEW:"IWORKS"."VWTREE" already exists
    ORA-31684: Object type VIEW:"IWORKS"."V_ROUTE_DTL_GROUP" already exists
    Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    Processing object type SCHEMA_EXPORT/TABLE/TRIGGER
    Processing object type SCHEMA_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    Processing object type SCHEMA_EXPORT/POST_SCHEMA/PROCOBJ
    ORA-39083: Object type PROCOBJ failed to create with error:
    ORA-06550: line 2, column 11:
    PLS-00103: Encountered the symbol "VARCHAR2" when expecting one of the following:
    := . ( @ % ;
    The symbol ":=" was substituted for "VARCHAR2" to continue.
    ORA-06550: line 3, column 12:
    PLS-00103: Encountered the symbol "VARCHAR2" when expecting one of the following:
    := . ( @ % ;
    The symbol ":=" was substituted for "VARCHAR2" to continue.
    ORA-06550: line 4, column 19:
    PLS-00103: Encountered the symbol "VARCHAR
    ORA-39083: Object type PROCOBJ failed to create with error:
    ORA-06550: line 6, column 16:
    PLS-00103: Encountered the symbol "RAYSQLACCESS9889405" when expecting one of the following:
    * & = - + ; < / > at in is mod remainder not rem
    <an exponent (**)> <> or != or ~= >= <= <> and or like LIKE2_
    LIKE4_ LIKEC_ between || multiset member SUBMULTISET_
    The symbol "* was inserted before "RAYSQLACCESS9889405" to continue.
    ORA-06550: line 7, column 17:
    PLS-00103: Encountered the symbol "SQL" when expectin
    Job "SYSTEM"."IMPGEMDEV041608" completed with 2831 error(s) at 15:30:37
    Any help will be much appreciated

    I can not seem to find any object named PROCOBJ.
    As for the object called RAYSQLACCESS9889405...no idea what this is.
    I checked the source for any invalid objects and none.

  • Propagation disabled with error ORA-25315

    Hi,
    I setup a stream replication for one schema in my db, but the propagation process suddenly disable with error message "ORA-25315 unsupported configuration for propagation of buffered messages", the schema only use some normal datatypes and I have no clue what could be the cause of it..
    Is there anyone can help?
    Thanks
    Vincent

    Is the destination database a RAC cluster? This error indicates that the database link is connecting to an instance that is not the owner of the destination queue. The Best Practices for Streams Replication section of the Streams Replication Administrator's Guide discusses the configuration for propagation to RAC

  • PROPAGATION STALLED WITH ERROR ORA-01405

    version 10.2.03
    this is a single source single destination replication.
    Has been moving along fine then get error:
    ORA-12012: error on auto execute of job 4686
    ORA-01405: fetched column value is NULL
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 7224
    ORA-06512: at "SYS.DBMS_AQADM_SYS", line 7502
    ORA-06512: at "SYS.DBMS_AQADM", line 978
    ORA-06512: at line 1
    in propagation.
    Unable to stop propagation even with force => TRUE
    restarting capture and apply had no effect.
    finally dropped propagation and recreated it
    This did not help either.
    each time capture restarted it proceeded from checkpoint to a particular SCN that should be replicated and stopped when it tried to enqueue this change with the above error. The change was a part of a multi-row insert. Nothing unusual about the change that I could see by looking at the capture process trace_level 127 output.
    any thoughts. other things to look for or to try to get things moving again.

    Corrupt log is a scary thought.
    Another piece of info for this problem. I dumped the current contents of the persistent capture queue AQ$_CT_captureQueue_P. There are 25 messages sitting in there. One of the messages in the middle of the list is the last one that capture reads from redo before getting this error. From what I see wen I restart capture. It finds a multi-row insert and starts building LCRs and realizing that it has already processed them. The first one it decides to enqueue is already in the persistent queue along with several others after this one. This doesn't seem right. I'm contemplating deleting the rows from the queue to see if that gets by the problem.
    While looking around I also found 6 rows in the persistent apply queue. No relation to the ones in the capture queue. why are messages being left in the apply queue? Someone removed all the error messages so I don't know if there were any there relating to these.

  • How to deal with error ORA-06531 for collection

    All,
    Can anybody see anything wrong with my code below. As far as I can see everything is in order but I am getting the ORA-06531 error.
    Thanks in advance
    CREATE OR REPLACE
    Type T_PREO_PRIV is Object
    PRIVILEGE_ID NUMBER(10),
    PRIVILEGE_NAME VARCHAR2(20),
    PRIVILEGE_TYPE CHAR(1))
    CREATE OR REPLACE
    TYPE T_PRIVInfo IS TABLE OF PREORDER.
    T_PREO_PRIV
    SQL> CREATE OR REPLACE Procedure PREORDER.P_GetUserPrivlegetest(Userid in number, UserPriv out T_PRI
    VInfo, status out number)
    2 as
    3 V_UserPriv T_PRIVInfo;
    4 begin
    5 select T_PREO_PRIV(preo_priv.privilege_id, PRIVILEGE_NAME, PRIVILEGE_TYPE)
    6 BULK COLLECT INTO V_UserPriv
    7 from preo_user_role, preo_role_priv, preo_priv
    8 where preo_user_role.role_id = preo_role_priv.role_id
    9 and preo_role_priv.privilege_id = preo_priv.privilege_id
    10 and user_id = Userid;
    11
    12 V_UserPriv := UserPriv;
    13
    14 status := 0;
    15
    16 EXCEPTION
    17 WHEN OTHERS THEN
    18
    19 Status := -1;
    20 end;
    21 /
    Procedure created.
    SQL>
    SQL> DECLARE
    2 profile_info T_PRIVInfo;
    3 Status smallint;
    4 BEGIN
    5
    6 --preo_security.P_GetUserPrivlege(42, profile_info, status);
    7 P_GetUserPrivlegeTest(42, profile_info, status);
    8 dbms_output.put_line('P_GetUserPrivlege '||Status);
    9 For i in profile_info.FIRST..profile_info.LAST loop
    10
    11 dbms_output.put_line('******************************* ');
    12 -- dbms_output.put_line('privilege_id '||UserPriv(i).privilege_id);
    13 -- dbms_output.put_line('privilege_name '||UserPriv(i).privilege_name);
    14 -- dbms_output.put_line('privilege_type '||UserPriv(i).privilege_type);
    15 end loop;
    16
    17 END;
    18 /
    P_GetUserPrivlege -1
    DECLARE
    ERROR at line 1:
    ORA-06531: Reference to uninitialized collection
    ORA-06512: at line 9

    As in your other post, you have these reversed. The line that says
    V_UserPriv := UserPriv;
    should be
    UserPriv := V_UserPriv;
    There may also be other errors; I didn't check.

  • ORA-00472: PMON  process terminated with error

    Hi,
    I got this error in alert log.But the clients didn't complain they had a downtime.But in alert log I see the following.Why the db got restarted and why the clients could not notice it.Can somebody please reply why this has happened.
    Mon Jul 18 12:28:02 2011
    ARC1: terminating instance due to error 472
    Mon Jul 18 12:28:03 2011
    Errors in file /backups/p01/app/oracle/admin/plsprod/bdump/plsprod_lns1_3772752.trc:
    ORA-00472: PMON process terminated with error
    Instance terminated by ARC1, pid = 2306362
    Mon Jul 18 12:28:52 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =242
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.3.0.
    System parameters with non-default values:
    processes = 2000
    shared_pool_size = 536870912
    large_pool_size = 54525952
    java_pool_size = 75497472
    streams_pool_size = 54525952
    control_files = /data/plsprod/p02/control01.ctl, /data/plsprod/p03/control02.ctl, /data/plsprod/p04/control03.ctl
    db_block_size = 8192
    db_cache_size = 104857600
    compatible = 10.2.0.3
    log_archive_dest_1 = location=/data/plsprod/archredo MANDATORY REOPEN
    log_archive_dest_2 = SERVICE=talon_plsprod.travimp.com LGWR ASYNC NOAFFIRM REOPEN=60 NODELAY
    log_archive_dest_state_1 = enable
    log_archive_dest_state_2 = enable
    standby_archive_dest = /data/plsprod/archredo
    log_archive_format = redo_plsprod_%r_%t_%s.arc
    log_buffer = 6120448
    fast_start_mttr_target = 30
    undo_management = AUTO
    undo_tablespace = plsprod_undo
    undo_retention = 1500
    remote_login_passwordfile= EXCLUSIVE
    db_domain = travimp.com
    instance_name = plsprod
    service_names = plsprod.travimp.com
    local_listener = (ADDRESS=(PROTOCOL=TCP)(HOST=catalina)(PORT=1521))
    background_dump_dest = /backups/p01/app/oracle/admin/plsprod/bdump
    user_dump_dest = /backups/p01/app/oracle/admin/plsprod/udump
    core_dump_dest = /backups/p01/app/oracle/admin/plsprod/cdump
    session_max_open_files = 60
    sort_area_size = 1048576
    sort_area_retained_size = 1048576
    db_name = plsprod
    open_cursors = 100
    os_authent_prefix =
    pga_aggregate_target = 26214400
    aq_tm_processes = 0
    PMON started with pid=2, OS id=5623926
    PSP0 started with pid=3, OS id=5566632
    MMAN started with pid=4, OS id=5328992
    DBW0 started with pid=5, OS id=4362640
    DBW1 started with pid=6, OS id=4808940
    LGWR started with pid=7, OS id=4358468
    CKPT started with pid=8, OS id=4784160
    SMON started with pid=9, OS id=4354538
    RECO started with pid=10, OS id=4313420
    MMON started with pid=11, OS id=4771908
    MMNL started with pid=12, OS id=4743272
    Mon Jul 18 12:28:53 2011
    ALTER DATABASE MOUNT
    Mon Jul 18 12:28:57 2011
    Setting recovery target incarnation to 1
    Mon Jul 18 12:28:57 2011
    Successful mount of redo thread 1, with mount id 2894903685
    Mon Jul 18 12:28:57 2011
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Mon Jul 18 12:28:58 2011
    ALTER DATABASE OPEN
    Mon Jul 18 12:28:58 2011
    Beginning crash recovery of 1 threads
    parallel recovery started with 15 processes
    Mon Jul 18 12:28:58 2011
    Started redo scan
    Mon Jul 18 12:28:58 2011
    Completed redo scan
    1696 redo blocks read, 56 data blocks need recovery
    Mon Jul 18 12:28:58 2011
    Started redo application at
    Thread 1: logseq 17759, block 26354
    Mon Jul 18 12:28:58 2011
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 17759 Reading mem 0
    Mem# 0: /data/plsprod/p01/redo_t1_g1_f1.log
    Mem# 1: /data/plsprod/p02/redo_t1_g1_f2.log
    Mon Jul 18 12:28:58 2011
    Completed redo application
    Mon Jul 18 12:28:58 2011
    Completed crash recovery at
    Thread 1: logseq 17759, block 28050, scn 35195499598
    56 data blocks read, 56 data blocks written, 1696 redo blocks read
    Mon Jul 18 12:28:58 2011
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=29, OS id=4338022
    Mon Jul 18 12:28:58 2011
    ARC0: Archival started
    ARC1: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    ARC1 started with pid=30, OS id=1081522
    LNS1 started with pid=31, OS id=5537854
    Mon Jul 18 12:29:01 2011
    Thread 1 advanced to log sequence 17760
    Thread 1 opened at log sequence 17760
    Current log# 2 seq# 17760 mem# 0: /data/plsprod/p01/redo_t1_g2_f1.log
    Current log# 2 seq# 17760 mem# 1: /data/plsprod/p02/redo_t1_g2_f2.log
    Successful open of redo thread 1
    Mon Jul 18 12:29:01 2011
    ARC0: STARTING ARCH PROCESSES
    Mon Jul 18 12:29:01 2011
    ARC1: Becoming the 'no FAL' ARCH
    ARC1: Becoming the 'no SRL' ARCH
    Mon Jul 18 12:29:01 2011
    SMON: enabling cache recovery
    Mon Jul 18 12:29:02 2011
    ARC2: Archival started
    ARC0: STARTING ARCH PROCESSES COMPLETE
    ARC0: Becoming the heartbeat ARCH
    ARC2 started with pid=32, OS id=5644370
    Mon Jul 18 12:29:02 2011
    ARC0: Standby redo logfile selected for thread 1 sequence 17759 for destination LOG_ARCHIVE_DEST_2
    Mon Jul 18 12:29:02 2011
    LGWR: Setting 'active' archival for destination LOG_ARCHIVE_DEST_2
    Mon Jul 18 12:29:03 2011
    Successfully onlined Undo Tablespace 16.
    Mon Jul 18 12:29:03 2011
    SMON: enabling tx recovery
    Mon Jul 18 12:29:03 2011
    Database Characterset is US7ASCII
    replication_dependency_tracking turned off (no async multimaster replication found)
    WARNING: AQ_TM_PROCESSES is set to 0. System operation might be adversely affected.
    Completed: ALTER DATABASE OPEN
    Mon Jul 18 12:29:58 2011
    Shutting down archive processes
    Mon Jul 18 12:30:03 2011
    ARCH shutting down
    ARC2: Archival stopped

    Hi CKPT,
    Please find the output of the trace file as below.I deleted the repetitive output "Attempting to send buffer 0x111441d30 start block 91942 block count 84
    total size to send 43008 blocksize 512" as it exceeds maximum length of 30000 characters in this post.
    CATALINA_mardiprd>cat /backups/p01/app/oracle/admin/plsprod/bdump/plsprod_lns1_3772752.trc
    /backups/p01/app/oracle/admin/plsprod/bdump/plsprod_lns1_3772752.trc
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    ORACLE_HOME = /p01/app/oracle10g/product/10.2.0.3
    System name: AIX
    Node name: catalina
    Release: 3
    Version: 5
    Machine: 00044C5FD600
    Instance name: plsprod
    Redo thread mounted by this instance: 1
    Oracle process number: 16
    Unix process pid: 3772752, image: oracle@catalina (LNS1)
    *** SERVICE NAME:() 2011-07-18 09:42:11.573
    *** SESSION ID:(2189.1) 2011-07-18 09:42:11.573
    *** 2011-07-18 09:42:11.573 57516 kcrr.c
    LNS1: initializing for LGWR communication
    LNS1: connecting to KSR channel
    Success
    LNS1: subscribing to KSR channel
    Success
    *** 2011-07-18 09:42:11.574 57569 kcrr.c
    LNS1: initialized successfully ASYNC=1
    Destination is specified with ASYNC=61440
    *** 2011-07-18 09:42:12.577 71560 kcrr.c
    Sending online log thread 1 seq 17731 [logfile 3] to standby
    Opening logfile [logno 3]
    Redo shipping client performing standby login
    *** 2011-07-18 09:42:12.693 65194 kcrr.c
    Logged on to standby successfully
    Client logon and security negotiation successful!
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Allocate ASYNC blocks: Previous blocks=0 New blocks=20480
    Log file opened [logno 3]
    Attempting to send buffer 0x111441d30 start block 2 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 3 block count 35
    total size to send 17920 blocksize 512
    *** 2011-07-18 09:42:27.009
    Attempting to send buffer 0x111441d30 start block 38 block count 2914
    total size to send 1491968 blocksize 512
    *** 2011-07-18 09:42:50.007
    Attempting to send buffer 0x111441d30 start block 2952 block count 2
    total size to send 1024 blocksize 512
    *** 2011-07-18 09:43:01.441
    Attempting to send buffer 0x111441d30 start block 2954 block count 19286
    total size to send 9874432 blocksize 512
    Attempting to send buffer 0x111441d30 start block 22240 block count 19657
    total size to send 10064384 blocksize 512
    Attempting to send buffer 0x111441d30 start block 41897 block count 1687
    total size to send 863744 blocksize 512
    *** 2011-07-18 09:43:13.007
    Attempting to send buffer 0x111441d30 start block 43584 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 43585 block count 13
    total size to send 6656 blocksize 512
    Attempting to send buffer 0x111441d30 start block 43598 block count 19008
    total size to send 9732096 blocksize 512
    *** 2011-07-18 09:43:24.265
    Attempting to send buffer 0x111441d30 start block 62606 block count 19349
    total size to send 9906688 blocksize 512
    *** 2011-07-18 09:43:25.524 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:43:25.524 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 81955 block count 10066
    total size to send 5153792 blocksize 512
    Online entry still exists for log 3 thr 1 seq 17731. Using it
    Closing thread 1 sequence 17731 logno 3 nab 92021 los 35193489640 nxs 35193490559
    *** 2011-07-18 09:43:26.686 71560 kcrr.c
    Sending online log thread 1 seq 17732 [logfile 1] to standby
    Opening logfile [logno 1]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 1]
    Attempting to send buffer 0x111441d30 start block 2 block count 20407
    total size to send 10448384 blocksize 512
    Attempting to send buffer 0x111441d30 start block 20409 block count 20349
    total size to send 10418688 blocksize 512
    Attempting to send buffer 0x111441d30 start block 40758 block count 19751
    total size to send 10112512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 60509 block count 20260
    total size to send 10373120 blocksize 512
    *** 2011-07-18 09:43:33.262 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:43:33.262 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 80769 block count 11251
    total size to send 5760512 blocksize 512
    Online entry still exists for log 1 thr 1 seq 17732. Using it
    Closing thread 1 sequence 17732 logno 1 nab 92020 los 35193490559 nxs 35193490735
    *** 2011-07-18 09:43:33.541 71560 kcrr.c
    Sending online log thread 1 seq 17733 [logfile 2] to standby
    Opening logfile [logno 2]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    *** 2011-07-18 09:43:34.387
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 2]
    Attempting to send buffer 0x111441d30 start block 2 block count 19192
    total size to send 9826304 blocksize 512
    Attempting to send buffer 0x111441d30 start block 19194 block count 18876
    total size to send 9664512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 38070 block count 19565
    total size to send 10017280 blocksize 512
    Attempting to send buffer 0x111441d30 start block 57635 block count 19765
    total size to send 10119680 blocksize 512
    *** 2011-07-18 09:43:41.660 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:43:41.660 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 77400 block count 14627
    total size to send 7489024 blocksize 512
    Online entry still exists for log 2 thr 1 seq 17733. Using it
    Closing thread 1 sequence 17733 logno 2 nab 92027 los 35193490735 nxs 35193490800
    *** 2011-07-18 09:43:41.928 71560 kcrr.c
    Sending online log thread 1 seq 17734 [logfile 3] to standby
    Opening logfile [logno 3]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 3]
    Attempting to send buffer 0x111441d30 start block 59038 block count 18758
    total size to send 9604096 blocksize 512
    *** 2011-07-18 09:44:42.141
    *** 2011-07-18 09:44:42.141 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:44:42.142 72204 kcrr.c
    Detected physical end of file
    total size to send 586240 blocksize 512
    Online entry still exists for log 1 thr 1 seq 17744. Using it
    Closing thread 1 sequence 17744 logno 1 nab 92029 los 35193494218 nxs 35193494529
    *** 2011-07-18 09:45:58.974 71560 kcrr.c
    Sending online log thread 1 seq 17745 [logfile 2] to standby
    Opening logfile [logno 2]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 2]
    Attempting to send buffer 0x111441d30 start block 2 block count 9013
    total size to send 4614656 blocksize 512
    Attempting to send buffer 0x111441d30 start block 9015 block count 20176
    total size to send 10330112 blocksize 512
    Attempting to send buffer 0x111441d30 start block 29191 block count 19808
    total size to send 10141696 blocksize 512
    Attempting to send buffer 0x111441d30 start block 48999 block count 18939
    total size to send 9696768 blocksize 512
    *** 2011-07-18 09:46:10.146
    Attempting to send buffer 0x111441d30 start block 67938 block count 19124
    total size to send 9791488 blocksize 512
    Attempting to send buffer 0x111441d30 start block 87062 block count 3690
    total size to send 1889280 blocksize 512
    *** 2011-07-18 09:46:12.644 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:46:12.644 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 90752 block count 1267
    total size to send 648704 blocksize 512
    Online entry still exists for log 2 thr 1 seq 17745. Using it
    Closing thread 1 sequence 17745 logno 2 nab 92019 los 35193494529 nxs 35193494940
    *** 2011-07-18 09:46:13.690 71560 kcrr.c
    Sending online log thread 1 seq 17746 [logfile 3] to standby
    Opening logfile [logno 3]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 3]
    Attempting to send buffer 0x111441d30 start block 2 block count 19533
    total size to send 10000896 blocksize 512
    Attempting to send buffer 0x111441d30 start block 19535 block count 11151
    total size to send 5709312 blocksize 512
    Attempting to send buffer 0x111441d30 start block 30686 block count 20154
    total size to send 10318848 blocksize 512
    *** 2011-07-18 09:46:20.822
    Attempting to send buffer 0x111441d30 start block 50840 block count 19083
    total size to send 9770496 blocksize 512
    Attempting to send buffer 0x111441d30 start block 69923 block count 19167
    total size to send 9813504 blocksize 512
    *** 2011-07-18 09:46:22.573 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:46:22.573 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 89090 block count 2933
    total size to send 1501696 blocksize 512
    Online entry still exists for log 3 thr 1 seq 17746. Using it
    Closing thread 1 sequence 17746 logno 3 nab 92023 los 35193494940 nxs 35193495191
    *** 2011-07-18 09:46:23.637 71560 kcrr.c
    Sending online log thread 1 seq 17747 [logfile 1] to standby
    Opening logfile [logno 1]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 1]
    Attempting to send buffer 0x111441d30 start block 2 block count 8093
    total size to send 4143616 blocksize 512
    Attempting to send buffer 0x111441d30 start block 8095 block count 20288
    total size to send 10387456 blocksize 512
    Attempting to send buffer 0x111441d30 start block 28383 block count 18967
    total size to send 9711104 blocksize 512
    *** 2011-07-18 09:46:31.007
    Attempting to send buffer 0x111441d30 start block 47350 block count 5237
    total size to send 2681344 blocksize 512
    Attempting to send buffer 0x111441d30 start block 52587 block count 20188
    total size to send 10336256 blocksize 512
    Attempting to send buffer 0x111441d30 start block 72775 block count 19167
    total size to send 9813504 blocksize 512
    *** 2011-07-18 09:46:37.430 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:46:37.430 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 91942 block count 84
    total size to send 43008 blocksize 512
    Online entry still exists for log 1 thr 1 seq 17747. Using it
    Closing thread 1 sequence 17747 logno 1 nab 92026 los 35193495191 nxs 35193495503
    *** 2011-07-18 09:46:37.501 71560 kcrr.c
    Sending online log thread 1 seq 17748 [logfile 2] to standby
    Opening logfile [logno 2]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 2]
    Attempting to send buffer 0x111441d30 start block 2 block count 2052
    total size to send 1050624 blocksize 512
    *** 2011-07-18 09:46:43.059
    total size to send 8164352 blocksize 512
    *** 2011-07-18 09:48:18.781
    *** 2011-07-18 09:48:18.781 72367 kcrr.c
    Detected proper completion of online log
    **** 2011-07-18 09:48:18.781 72204 kcrr.c*
    Detected physical end of file
    Attempting to send buffer 0x111441d30  start block 90604  block count 1416
    total size to send 724992  blocksize 512
    Online entry still exists for log 2 thr 1 seq 17754. Using it
    Closing thread 1 sequence 17754 logno 2 nab 92020 los 35193496751 nxs 35193496934
    **** 2011-07-18 09:48:19.891 71560 kcrr.c*
    *Sending online log thread 1 seq 17755 [logfile 3] to standby*
    *Opening logfile [logno 3]*
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    *Log file opened [logno 3]*
    Attempting to send buffer 0x111441d30 start block 2 block count 19248
    total size to send 9854976 blocksize 512
    Attempting to send buffer 0x111441d30 start block 19250 block count 20166
    total size to send 10324992 blocksize 512
    Attempting to send buffer 0x111441d30 start block 39416 block count 4955
    total size to send 2536960 blocksize 512
    Attempting to send buffer 0x111441d30 start block 44371 block count 19903
    total size to send 10190336 blocksize 512
    *** 2011-07-18 09:48:30.215
    Attempting to send buffer 0x111441d30 start block 64274 block count 19991
    total size to send 10235392 blocksize 512
    *** 2011-07-18 09:48:32.370 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:48:32.370 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 84265 block count 7754
    total size to send 3970048 blocksize 512
    Online entry still exists for log 3 thr 1 seq 17755. Using it
    Closing thread 1 sequence 17755 logno 3 nab 92019 los 35193496934 nxs 35193498387
    *** 2011-07-18 09:48:32.472 71560 kcrr.c
    Sending online log thread 1 seq 17756 [logfile 1] to standby
    Opening logfile [logno 1]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 1]
    Attempting to send buffer 0x111441d30 start block 2 block count 19214
    total size to send 9837568 blocksize 512
    *** 2011-07-18 09:48:40.267
    Attempting to send buffer 0x111441d30 start block 19216 block count 19981
    total size to send 10230272 blocksize 512
    Attempting to send buffer 0x111441d30 start block 39197 block count 19586
    total size to send 10028032 blocksize 512
    Attempting to send buffer 0x111441d30 start block 58783 block count 6569
    total size to send 3363328 blocksize 512
    Attempting to send buffer 0x111441d30 start block 65352 block count 19894
    total size to send 10185728 blocksize 512
    *** 2011-07-18 09:48:47.133 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:48:47.133 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 85246 block count 6772
    total size to send 3467264 blocksize 512
    Online entry still exists for log 1 thr 1 seq 17756. Using it
    Closing thread 1 sequence 17756 logno 1 nab 92018 los 35193498387 nxs 35193500455
    *** 2011-07-18 09:48:47.344 71560 kcrr.c
    Sending online log thread 1 seq 17757 [logfile 2] to standby
    Opening logfile [logno 2]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 2]
    *** 2011-07-18 09:48:50.302
    Attempting to send buffer 0x111441d30 start block 2 block count 18546
    total size to send 9495552 blocksize 512
    Attempting to send buffer 0x111441d30 start block 18548 block count 19821
    total size to send 10148352 blocksize 512
    Attempting to send buffer 0x111441d30 start block 38369 block count 20457
    total size to send 10473984 blocksize 512
    *** 2011-07-18 09:49:02.194
    Attempting to send buffer 0x111441d30 start block 58826 block count 20477
    total size to send 10484224 blocksize 512
    Attempting to send buffer 0x111441d30 start block 79303 block count 12397
    total size to send 6347264 blocksize 512
    *** 2011-07-18 09:49:08.443 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 09:49:08.443 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 91700 block count 333
    total size to send 170496 blocksize 512
    Online entry still exists for log 2 thr 1 seq 17757. Using it
    Closing thread 1 sequence 17757 logno 2 nab 92033 los 35193500455 nxs 35193504614
    *** 2011-07-18 09:49:08.549 71560 kcrr.c
    Sending online log thread 1 seq 17758 [logfile 3] to standby
    Opening logfile [logno 3]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 3]
    Attempting to send buffer 0x111441d30 start block 2 block count 19640
    total size to send 10055680 blocksize 512
    *** 2011-07-18 09:49:15.005
    Attempting to send buffer 0x111441d30 start block 19642 block count 12646
    total size to send 6474752 blocksize 512
    Attempting to send buffer 0x111441d30 start block 92000 block count 23
    total size to send 11776 blocksize 512
    *** 2011-07-18 11:30:19.515 72367 kcrr.c
    Detected proper completion of online log
    *** 2011-07-18 11:30:19.515 72204 kcrr.c
    Detected physical end of file
    Attempting to send buffer 0x111441d30 start block 92023 block count 11
    total size to send 5632 blocksize 512
    Online entry still exists for log 3 thr 1 seq 17758. Using it
    Closing thread 1 sequence 17758 logno 3 nab 92034 los 35193504614 nxs 35194291751
    *** 2011-07-18 11:30:21.546 71560 kcrr.c
    Sending online log thread 1 seq 17759 [logfile 1] to standby
    Opening logfile [logno 1]
    Destination LOG_ARCHIVE_DEST_2 is in MAXIMUM PERFORMANCE mode
    Archiving to destination talon_plsprod.travimp.com ASYNC blocks=20480
    Log file opened [logno 1]
    Attempting to send buffer 0x111441d30 start block 2 block count 24
    total size to send 12288 blocksize 512
    *** 2011-07-18 11:30:27.006
    Attempting to send buffer 0x111441d30 start block 26 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27 block count 34
    total size to send 17408 blocksize 512
    Attempting to send buffer 0x111441d30 start block 61 block count 31
    total size to send 15872 blocksize 512
    *** 2011-07-18 11:30:39.003
    Attempting to send buffer 0x111441d30 start block 92 block count 32
    total size to send 16384 blocksize 512
    Attempting to send buffer 0x111441d30 start block 124 block count 2
    total size to send 1024 blocksize 512
    Attempting to send buffer 0x111441d30 start block 126 block count 1
    total size to send 512 blocksize 512
    *** 2011-07-18 11:30:51.000
    Attempting to send buffer 0x111441d30 start block 127 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 128 block count 30
    total size to send 15360 blocksize 512
    Attempting to send buffer 0x111441d30 start block 158 block count 88
    total size to send 45056 blocksize 512
    Attempting to send buffer 0x111441d30 start block 246 block count 3
    total size to send 1536 blocksize 512
    *** 2011-07-18 11:31:03.002
    Attempting to send buffer 0x111441d30 start block 249 block count 32
    total size to send 16384 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27416 block count 4
    total size to send 2048 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27420 block count 14
    total size to send 7168 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27434 block count 54
    total size to send 27648 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27488 block count 10
    total size to send 5120 blocksize 512
    *** 2011-07-18 12:27:01.000
    Attempting to send buffer 0x111441d30 start block 27498 block count 78
    total size to send 39936 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27576 block count 2
    total size to send 1024 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27578 block count 56
    total size to send 28672 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27634 block count 60
    total size to send 30720 blocksize 512
    *** 2011-07-18 12:27:14.006
    Attempting to send buffer 0x111441d30 start block 27694 block count 7
    total size to send 3584 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27701 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27702 block count 106
    total size to send 54272 blocksize 512
    *** 2011-07-18 12:27:28.001
    Attempting to send buffer 0x111441d30 start block 27808 block count 2
    total size to send 1024 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27810 block count 37
    total size to send 18944 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27847 block count 2
    total size to send 1024 blocksize 512
    *** 2011-07-18 12:27:42.002
    Attempting to send buffer 0x111441d30 start block 27849 block count 78
    total size to send 39936 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27927 block count 43
    total size to send 22016 blocksize 512
    *** 2011-07-18 12:27:52.001
    Attempting to send buffer 0x111441d30 start block 27970 block count 1
    total size to send 512 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27971 block count 2
    total size to send 1024 blocksize 512
    Attempting to send buffer 0x111441d30 start block 27973 block count 38
    total size to send 19456 blocksize 512
    *** 2011-07-18 12:28:03.007
    ORA-00472: PMON  process terminated with error
    Closing Redo Read Context
    Redo Push Server: Freeing ASYNC PGA buffer
    LNS1: Doing a channel reset for next time around...
    Please help me out.

  • Standard Data Collection Failing with Error ORA-04054: database link  does not exist.

    Hi Gurus,
    When I am running Standard Data Collection in ASCP(APS) instance R12.1.3, its failing with error : ORA-04054: database link  does not exist.
    There is no such Database link exits which is showing in above error.
    Also the database link name in the above error is not profile values in the database.
    I think, concurrent might be fetching this database link name  from some tables related to plan.
    I am not having much knowledge about how this ASCP/APS works.
    Need your help to resolve this issue.
    Thanks,

    Hi,
    ASCP Collections looks at the dblink from instances definitions from.
    1. Responsibility: Advanced Planning Administrator
    2. Navigation: Admin > Instances
    You may review the note in support.oracle.com - Understanding DB Links Setup for APS Applications - ASCP and ATP Functionality (Doc ID 813231.1)

Maybe you are looking for