RMAN Active cloning successful, but spfile found to be missing

Environment:
O.S Version :     HP-UX B.11.31 U ia64
Oracle DB Version :     11.2.0.3.0
     Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
Database files on : +ASM managed Diskgroups
RMAN Active cloning command below is used to clone the database from one host "A" to another host "B".
duplicate target database to testDB from active database nofilenamecheck ; Cloning completed successfully. But when i checked on the spfile existance the spfile found missing.
SQL> show parameter spfile
NAME                                 TYPE        VALUE
spfile                               string      /app/oracle/product/11.2.0.3/db/dbs/spfiletestDB.oraWhat could be the cause for the spfile missing?
I have been advised below as workaround;
1. Create spfile or pfile from memory and bounce the db to fix this issue.
2. RMAN Active clone script specified with the the pfile clause.
For example.
duplicate target database to testDB  from active database file=/app/oracle/product/11.2.0.3/db/dbs/inittestDB.ora;  Would appreciate the advise on this.
Edited by: Sivaprasad S on Jan 31, 2013 5:13 PM

Hello;
What could be the cause for the spfile missing?
This :
duplicate target database to testDB from active database nofilenamecheckInstead of this :
duplicate target database to testDB from active database spfile nofilenamecheckSee :
http://docs.oracle.com/cd/B28359_01/backup.111/b28270/rcmdupdb.htm
Example 23-3
Please consider closing some of your old questions
Best Regards
mseberg

Similar Messages

  • RMAN Active Cloning: how to include SPFILE on ASM

    O.S Version     HP-UX B.11.31 U ia64
    Oracle DB Version     11.2.0.3.0
         Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Storage : ASM Diskgroups
    On RMAN active cloning of databases, how to include the SPFILE to be cloned on the ASM Storage?

    Hello;
    Check out the example here :
    http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmdupad.htm
    Under "Example 25-4 Duplicating from a File System to ASM (Active)"
    or
    Example 25-5 Duplicating from ASM to ASM (Active)
    Best Regards
    mseberg
    Edited by: mseberg on May 15, 2013 10:34 AM

  • Rman active cloning is getting failed

    Hi Team,
    when i am doing rman active cloning it is getting failed
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00406 name=/u01/oradata/ebstest/a_txn_ind05.dbf
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 02/24/2013 19:38:35
    ORA-17627: ORA-12577: Message 12577 not found; product=RDBMS; facility=ORA
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    Please help

    user10721329 wrote:
    Hi Hussien,
    Thanks for the valuable reply,
    I have gone through that doc but i am trying to do cloning on the same machine not on the different machine
    My Linux version and database both are 32 bit i am trying to create a duplicate instance on the same 32 machine(side by side)Please see the solution in this link -- http://dbadailytelegraph.blogspot.ca/2009/06/duplicate-target-database-from-active.html
    Thanks,
    Hussein

  • RMAN Active Cloning fails with RMAN-06054: missing log file

    Version Details:
    O.S Version     HP-UX B.11.31 U ia64
    Oracle DB Version     11.2.0.3.0
         Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Scenario :
    Using RMAN Active cloning to duplicate a RAC database from Production to Development environment.
    Problem:
    At the end of the cloning the below errors are reported;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 05/14/2013 07:03:43
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 24751 and starting SCN of 89285945274
    RMAN Script used for Active cloning:
    #!/bin/ksh
    . setdb entDBu
    start_dt=`date +%Y%m%d_%H%M`
    job=`basename $0 ".sh"`
    rman  >> ${job}_${start_dt}.log  2>&1 <<eof
    set echo on;
    connect target sys/@DCC&(_O@entDBp1
    connect auxiliary sys/@DCC&(_O@entDBuu
    run {
    allocate channel prmy1 type disk;
    allocate auxiliary channel stby1 type disk;
    duplicate target database
    to entDBu
    from active database pfile=/app/oracle/product/11.2.0.3/db/dbs/initentDBu.ora;
    show all;
    exit
    eof
    end_dt=`date +%Y%m%d_%H%M`
    mailx -s "DR RMAN Job: $job done" "[email protected]" <<eof2
    started: ${start_dt}
    finish: ${end_dt}
    eof2How to prevent the error of RMAN-06054: media recovery requesting unknown archived log for thread  with sequence   and starting SCN of  while performing the RMAN Active Cloning? I do NOT want to use UNTIL clause.

    Sivaprasad S wrote:
    Version Details:
    O.S Version     HP-UX B.11.31 U ia64
    Oracle DB Version     11.2.0.3.0
         Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Scenario :
    Using RMAN Active cloning to duplicate a RAC database from Production to Development environment.
    Problem:
    At the end of the cloning the below errors are reported;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 05/14/2013 07:03:43
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 24751 and starting SCN of 89285945274RMAN Script used for Active cloning:
    #!/bin/ksh
    . setdb entDBu
    start_dt=`date +%Y%m%d_%H%M`
    job=`basename $0 ".sh"`
    rman  >> ${job}_${start_dt}.log  2>&1 <<eof
    set echo on;
    connect target sys/@DCC&(_O@entDBp1
    connect auxiliary sys/@DCC&(_O@entDBuu
    run {
    allocate channel prmy1 type disk;
    allocate auxiliary channel stby1 type disk;
    duplicate target database
    to entDBu
    from active database pfile=/app/oracle/product/11.2.0.3/db/dbs/initentDBu.ora;
    show all;
    exit
    eof
    end_dt=`date +%Y%m%d_%H%M`
    mailx -s "DR RMAN Job: $job done" "[email protected]" <<eof2
    started: ${start_dt}
    finish: ${end_dt}
    eof2How to prevent the error of RMAN-06054: media recovery requesting unknown archived log for thread  with sequence   and starting SCN of  while performing the RMAN Active Cloning? I do NOT want to use UNTIL clause.Where UNTIL clause in your script I didn't saw.
    Please try following RMAN script
    DUPLICATE TARGET DATABASE FOR STANDBY
      FROM ACTIVE DATABASE
    SPFILE
       SET "control_files"="/u01/app/oracle/oradata/stbdbcontrol01.ctl"
       SET "db_name"="prmdb"
       SET "db_unique_name"="stbdb"
       SET "db_file_name_convert"="/u01/app/oracle/oradata/prmdb","/u01/app/oracle/oradata/stbdb"
       SET "log_file_name_convert"="/u01/app/oracle/oradata/prmdb","/u01/app/oracle/oradata/stbdb"
       SET "db_recovery_file_dest"="/u01/app/oracle/fra"
       SET "diagnostic_dest"=/u01/app/oracle"
       SET "audit_file_dest"="/u01/app/oracle/admin/stbdb/adump"
    PASSWORD FILE
    NOFILENAMECHECK;
    {code}
    Please change parameters for your environment.
    Regards
    Mahir M. Quluzade                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • I updated my Iphone which is successful but it is not activating.

    I updated my Iphone which is successful but it is not activating.

    Okay.. I guess you can't tell us the complete message.
    This is normally part of a message that indicates the Iphone was jailbroken or unlocked by someone other than the carrier.
    If so, we cannot help you here and you need to work with your carrier.
    We are just users, not Apple support.

  • HT201365 i used find my iphone, and now my phone is disabled, but i found it, i dunno my activation lock but i know my apple id and password, so how do i unlock it?

    i used find my iphone, and now my phone is disabled, but i found it, i dunno my activation lock but i know my apple id and password, so how do i unlock it?

    maybe this will help
    http://support.apple.com/kb/TS4515

  • With installation of 10.1 I lost finder search function. The finder window appears, but no matter what I put in the search window, nothing is found. I re-installed it with initial success, but it failed again very soon.

    With installation of 10.1 I lost finder search function. The finder window appears, but no matter what I put in the search window, nothing is found. I re-installed it with initial success, but it failed again very soon.
    MacBook Pro (15-inch, Mid 2010)
    OS X 10.10.1

    Hey Reoh, 
    Thank you for contributing to the Apple Support Communities. 
    If searching for files in Finder doesn't return any results, try using the steps in this article to reindex the Spotlight search index of your MacBook Pro hard drive:
    Spotlight: How to re-index folders or volumes - Apple Support
    Sincerely,
    Jeremy

  • Creation of Logical Standby Database Using RMAN ACTIVE DATABASE COMMAND

    Hi All,
    I am in confusion how to create logical standby database from primary database using rman active database command.
    What i did:-
    Create primary database on machine 1 on RHEL 5 with Oracle 11gR2
    Create standby database on machine 2 on RHEL 5 With Oracle 11gR2 from primary using RMAN active database command
    Trying to create logical standby database on machine 3 on RHEL 5 with Oracle 11gR2 using RMAN active database command from primary.
    The point which confuse me is to start the logical standby in nomount mode on machine 3 with which pfile like i create the pfile for standby database do i need to create the pfile for logical standby db.
    I done the creation of logical standby database by converting physical standby to logical standby database
    I am following the below mentioned doc for the same:
    Creating a physical and a logical standby database in a DR environment | Chen Guang&amp;#039;s Blog
    Kindly guide me how to work over the same or please provide me the steps of the same.
    Thanks in advance.

    Thanks for your reply
    I already started the logical standby database with pfile in nomount mode. And successfully completed the duplication of database. by mentioning the DB_FILE_NAME_CONVERT and LOG_FILE_NAME_CONVERT parameter.
    But i am not able to receive the logs on the above mentioned blog i run the sql command to check the logs but getting "no rows selected"
    My primary database pfile is:
    pc01prmy.__db_cache_size=83886080
    pc01prmy.__java_pool_size=12582912
    pc01prmy.__large_pool_size=4194304
    pc01prmy.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
    pc01prmy.__pga_aggregate_target=79691776
    pc01prmy.__sga_target=239075328
    pc01prmy.__shared_io_pool_size=0
    pc01prmy.__shared_pool_size=134217728
    pc01prmy.__streams_pool_size=0
    *.audit_file_dest='/u01/app/oracle/admin/pc01prmy/adump'
    *.audit_trail='db'
    *.compatible='11.1.0.0.0'
    *.control_files='/u01/app/oracle/oradata/PC01PRMY/controlfile/o1_mf_91g3mdtr_.ctl','/u01/app/oracle/flash_recovery_area/PC01PRMY/controlfile/o1_mf_91g3mf6v_.ctl'
    *.db_block_size=8192
    *.db_create_file_dest='/u01/app/oracle/oradata'
    *.db_domain=''
    *.db_file_name_convert='/u01/app/oracle/oradata/PC01SBY/datafile','/u01/app/oracle/oradata/PC01PRMY/datafile'
    *.db_name='pc01prmy'
    *.db_recovery_file_dest='/u01/app/oracle/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.diagnostic_dest='/u01/app/oracle'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=pc01prmyXDB)'
    *.fal_client='PC01PRMY'
    *.fal_server='PC01SBY'
    *.log_archive_config='DG_CONFIG=(pc01prmy,pc01sby,pc01ls)'
    *.log_archive_dest_1='LOCATION=/u01/app/oracle/flash_recovery_area/PC01PRMY/ VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=pc01prmy'
    *.log_archive_dest_2='SERVICE=pc01sby LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES,PRIMARY_ROLE) DB_UNIQUE_NAME=pc01sby'
    *.log_archive_dest_3='SERVICE=pc01ls LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME=pc01ls'
    *.log_archive_dest_state_1='ENABLE'
    *.log_archive_dest_state_2='DEFER'
    *.log_archive_dest_state_3='DEFER'
    *.log_archive_max_processes=30
    *.log_file_name_convert='/u01/app/oracle/oradata/PC01SBY/onlinelog','/u01/app/oracle/oradata/PC01PRMY/onlinelog'
    *.open_cursors=300
    *.pga_aggregate_target=78643200
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=236978176
    *.undo_tablespace='UNDOTBS1'
    My logical standby pfile is:-
    pc01ls.__db_cache_size=92274688
    pc01ls.__java_pool_size=12582912
    pc01ls.__large_pool_size=4194304
    pc01ls.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
    pc01ls.__pga_aggregate_target=79691776
    pc01ls.__sga_target=239075328
    pc01ls.__shared_io_pool_size=0
    pc01ls.__shared_pool_size=125829120
    pc01ls.__streams_pool_size=0
    *.audit_file_dest='/u01/app/oracle/admin/pc01ls/adump'
    *.audit_trail='db'
    *.compatible='11.1.0.0.0'
    *.control_files='/u01/app/oracle/oradata/PC01LS/controlfile/o1_mf_91g3mdtr_.ctl','/u01/app/oracle/flash_recovery_area/PC01LS/controlfile/o1_mf_91g3mf6v_.ctl'
    *.db_block_size=8192
    *.db_create_file_dest='/u01/app/oracle/oradata'
    *.db_domain=''
    *.db_file_name_convert='/u01/app/oracle/oradata/PC01SBY/datafile','/u01/app/oracle/oradata/PC01PRMY/datafile'
    *.db_name='pc01prmy'
    *.db_unique_name='pc01ls'
    *.db_recovery_file_dest='/u01/app/oracle/flash_recovery_area'
    *.db_recovery_file_dest_size=2147483648
    *.diagnostic_dest='/u01/app/oracle'
    *.dispatchers='(PROTOCOL=TCP) (SERVICE=pc01prmyXDB)'
    *.log_archive_config='DG_CONFIG=(pc01prmy,pc01sby,pc01ls)'
    *.log_archive_dest_1='LOCATION=/u01/app/oracle/flash_recovery_area/PC01PRMY/ VALID_FOR=(ONLINE_LOGFILES,ALL_ROLES) DB_UNIQUE_NAME=pc01prmy'
    *.log_archive_dest_2='LOCATION=/u01/app/oracle/flash_recovery_area/PC01LS/ VALID_FOR=(STANDBY_LOGFILES,STANDBY_ROLE) DB_UNIQUE_NAME=pc01ls'
    *.log_archive_dest_3='SERVICE=pc01ls LGWR ASYNC VALID_FOR=(ONLINE_LOGFILES, PRIMARY_ROLE) DB_UNIQUE_NAME=pc01ls'
    *.log_archive_dest_state_1='ENABLE'
    *.log_archive_dest_state_2='ENABLE'
    *.log_archive_max_processes=30
    *.log_file_name_convert='/u01/app/oracle/oradata/PC01SBY/onlinelog','/u01/app/oracle/oradata/PC01PRMY/onlinelog'
    *.open_cursors=300
    *.pga_aggregate_target=78643200
    *.processes=150
    *.remote_login_passwordfile='EXCLUSIVE'
    *.sga_target=236978176
    *.undo_tablespace='UNDOTBS1'
    Kindly advice over the same

  • Active cloning is getting failed

    Hi
    I am trying to do active cloning.I have copied oracle binarires after that issued adcfgclone.pl dbTechStack,listener is up and running,create password file and added log_file_name_convert,db_file_name_convert in the target machine pfile.
    I could able to connect to the rman by using the following command
    rman target / sys/welcome@EBSDEV
    after that i have fired
    rman>duplicate target database to EBSDEV from active database nofilenamecheck;
    It is getting failed
    ora-17627 ora-01017 invalid username/password logon denied rman
    ORA-17629: Cannot connect to the remote database server
    ORA-17628: Oracle error 17629 returned by remote Oracle server
    DID i miss any of the steps

    user10721329 wrote:
    I am getting this error
    I have cross verified the log_file_name_convert and db_file_name_convert
    db_file_name_convert='/u01/oradata/ebstest/data','/u01/oradata/oradev/data/'
    log_file_name_convert='/u01/oradata/ebstest/data','/u01/oradata/oradev/data/'
    # END OF CBO PARAMETERS SECTION
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00401 name=/u01/oradata/ebstest/a_txn_data02.dbf
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 02/18/2013 15:16:17
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copy
    input datafile file number=00406 name=/u01/oradata/ebstest/a_txn_ind05.dbf
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 02/18/2013 15:16:18
    ORA-17628: Oracle error 19505 returned by remote Oracle server
    continuing other job steps, job failed will not be re-run
    channel ORA_DISK_1: starting datafile copyDid you check if you are using spfile ?
    also see
    How to Perform 11G Rman Duplicate From Active database on Same Server [ID 1359333.1]
    Duplicate from Active Database Failing with: RMAN-03009, ORA-17628, and ORA-19505 [ID 1439632.1]
    Known issues on ORA-17628: Oracle error 19505 returned by remote Oracle server Reported in Rman Active Duplicate [ID 1401333.1]
    ORA-17628, ORA-19505 during RMAN DUPLICATE FROM ACTIVE [ID 1331986.1]
    Thanks

  • Installed but not found on computer

    I've successfully installed the latest 10.1 for my 64-bit laptop with Windows 7.  A check by Adobe confirms that it was properly installed, and that I have the correct version for my computer.
    AND YET, there is no icon for it anywhere, it doesn't come up on my list of Programs, when I enter "Adobe Flash Player" in the search bar it shows no such program, and when I try to play a FLV file, it won't give me Flash Player as an option. So..... I have it on my computer, but I apparently am not allowed to see it or access it?
    I've uninstalled and re-installed several times, and cannot for the life of me figure out what the problem is.  Any help for this maddening situation?

    Hi,
      Yes, I read his comments and I made sure Shockwave Flash Object was enabled in IE as he suggested. I am trying to make a flip book. One of the posts here in the forum said to make a SWF file, which I did. But now I can't figure out how to do anything with it. I thought Flash Reader was the right program to look at it, but maybe I'm wrong? Maybe I need Flash itself? The flip book thing has me pretty frustrated and confused. All the sites and software I've tried are poor quality. I was hoping I could figure out how to do it through Adobe to get better quality.
    1. Oct 17, 2010 1:30 PM in response to: jonstrebler
    Re: Installed but not found on computer
    Hi, Flash Player is a browser plugin, not a stand alone Player. You should have Shockwave Flash Object in add ons in IE and make sure it is enabled.
    Your Flash files are in C:\Windows\SysWOW64\Macromed\Flash 
    You may want the Adobe Media Player:http://www.adobe.com/products/mediaplayer/   
    Hope that helps,
    eidnolb

  • I installed Lightroom CC successfully but cannot open the program. What can I do?

    Dear colleagues,
    I installed Lightroom CC successfully but cannot open the program. What can I do?
    Thanks for you help.

    Puttetorpa
    The situation with Premiere Elements 8.0/8.0.1 and version earlier than it (in particular 3.0/3.0.2) is disturbing with regard to MPEG2 Activation.
    Adobe document says that it no longer supports MPEG2 Activation for versions 8.0/8.0.1 and earlier and points the users of this group of products to a version later than 8.0/8.0.1, the current latest version 12.
    But, I am not sure of the real answer. The doubts are cast by the findings of some who have claimed to have solved the problem using a uninstall/ccleaner/reinstall scheme when they have been met by the MPEG2 Activation issue.
    But, I would ask....Do you have the latest version of QuickTime installed on your Windows 7 64 bit computer? And, are you working with version 3.0 as the 3.0.2 Update?
    Is it still possible to run your Premiere Elements 3.0/3.0.2 on the prior computer on which it was installed?
    Also, does your Windows 7 64 bit come with Windows XP Mode
    Install and use Windows XP Mode in Windows 7
    which is essentially a virtual Windows XP Professional SP3 32 bit.
    As last resort, and highly experimental, but would you have time to experiment by replacing your latest version of QuickTime with the QuickTime Alternative 1.8.1 and then determining what happens with your Premiere Elements 3.0/3.0.2  Windows 7 64 bit situation? Do not bother with the MPEG Streamclip program download, just the QuickTime Alternative 1.8.1.
    http://www.squared5.com/
    Please review, consider, and do what you feel comfortable with. We will be watching for your progress.
    Thank you.
    ATR

  • Data source was activated and replicated but not showing up in RSA7.

    Hello,
    Data source was activated and replicated but not showing up in RSA7.  At what point does the data source appear in the Delta Queue?
    Thanks

    Hi,
    for LO,LIS,generic,FI data sources, delta records come from delta queue.
    if u run the INIT in BW whether it may be success or not delta queue will be maintained in RSA7. and u can check the records in RSA7 or smq2.
    when the init request goes to R/3 then it will maintains delta queue in RSA7.
    assign points if it helps,
    thanks,
    pavan.

  • My used postpaid moto g was accidentally activated on verizon while I was trying to activate it on the tracfone boyp program. The phone was activated on tracfone  but I could not dial the number *22890 to finish the activation. The setup wizard on the mot

    My used postpaid moto g was accidentally activated on verizon while I was trying to activate it on the tracfone boyp program. The phone was activated on tracfone  but I could not dial the number *22890 to finish the activation. The setup wizard on the moto g will only let you activate the phone on verizon. Had tracfone cs rep on my landline phone and was waiting for verizon rep on the moto g. Waited 20 minutes but verizon rep never answered.
    How and where do I get help from verizon to deactivate the account and release my meid number. Also how do I bypass the setup wizard so that I can activate my phone on TRACFONE?  Thank you.

    There's no other way to track it other than Find My iPhone.  All you can do is wait to see if it ever goes back online.  The serial number will only help to identify it as yours if it is ever found, and the IMEI number would only allow your carrier to blacklist the phone so it couldn't be reactivated on their network, if the carrier offers this service.

  • Flat file created ,external table created, deployed successfully but...

    hi everyone,
    I have a problems :
    I have created a flat file through flat file module from a text file.
    i've done it successfully,
    then i create an external table through external table module for the same
    flat file , went successfully,
    then velidation went successfull,
    and i carried out deployement for the same, that also done successfully.
    but when i tried to check the database through SQL-Plus :
    i came across with the following error :
    SQL> CONNECT TARGET_SCHEMA/TARGET_SCHEMA
    Connected.
    SQL> SELECT * FROM CUMMINS_EXT;
    SELECT * FROM CUMMINS_EXT
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Cumminsparts.txt in TARGET_LOC_CUMMINS_LOC not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    ORA-06512: at line 1
    Please someone guide me to resolve this prob.
    Thanking you,

    Thanks to you all,
    I had created a new file location in OWB to create
    a flat file module but I dont know somewhere
    i missed something while creating the new file location
    that is why it was not loading data inspite of deploy successed ,
    but when i put the same file to one of existing file location
    and i deployed it and i got the data.
    now i am exploring the existing file location for what was that
    i missed during creation of new location.
    Guys i am new to OWB so i dont know how to go about , if you have any
    easy way to get hands on OWB, please let me know
    Once again thanks everybody.

  • Bootstrap success but Synchronization not worked yet

    bootstrap success but Synchronization not worked yet
    this is i got in ActiveChgImp.trc
    Trace Log Started at Wed Jul 19 12:59:34 EEST 2006
    Initialized debug!!
    Set retry Count!!
    Set Scheduling Interval!!
    Initialised src connector
    Initialized Src Connector.
    TAG FOUND:(INTERFACEDETAILS)
    LINE,11:(Package: gsi)
    key:(Package)
    Value Continuation Not Present
    Putting Key into Hash :PACKAGE
    LINE,22:(Reader: ActiveChgReader)
    key:(Reader)
    Value Continuation Not Present
    Putting Key into Hash :READER
    LINE,31:(SkipErrorToSyncNextChange: false)
    key:(SkipErrorToSyncNextChange)
    Value Continuation Not Present
    Putting Key into Hash :SKIPERRORTOSYNCNEXTCHANGE
    LINE,19:(SearchDeltaSize: 500)
    key:(SearchDeltaSize)
    Value Continuation Not Present
    Putting Key into Hash :SEARCHDELTASIZE
    SkipErrorToSyncNextchange is set to: false
    Search Delta Size set to: 500
    Initialized Config Info.
    Initialized Provisioning Related Details
    Initialized Sync Mode.
    Mapping init successful
    Initialized Mapping Info.
    Initialized Filter Info.
    Initialized Execution Cmd.
    Initialized Status Attrs.
    LDAP URL : (tampro.Twa.com:389 [email protected]
    Specifying binary attributes: mpegvideo objectguid objectsid guid usercertificate orclodipcondirlastappliedchgnum
    LDAP Connection success
    Applied ChangeNum : 1295771Available chg num = 700
    Applied ChangeNum : 1295771Available chg num = 1295813
    and then run the server but Synchronization not worked yet

    hi,
    I used ldapmodify to modify "SkipErrorToSyncNextChange=true",but show errors,following:
    LDAP URL : (davidliu:11712 cn=Directory Manager
    Specifying binary attributes: mpegvideo objectguid objectsid guid usercertificate orclodipcondirlastappliedchgnum
    LDAP Connection success
    testsunone:Error in Mapping EngineODIException: DIP_GEN_INITIALIZATION_EXCEPTION
    ODIException: DIP_GEN_INITIALIZATION_EXCEPTION
         at oracle.ldap.odip.util.DirUtils.getLastChgNum(DirUtils.java:48)
         at oracle.ldap.odip.gsi.LDAPReader.initAvailableChgKey(LDAPReader.java:751)
         at oracle.ldap.odip.gsi.LDAPReader.initialise(LDAPReader.java:235)
         at oracle.ldap.odip.engine.AgentThread.mapInitialise(AgentThread.java:351)
         at oracle.ldap.odip.engine.AgentThread.execMapping(AgentThread.java:277)
         at oracle.ldap.odip.engine.AgentThread.run(AgentThread.java:165)
    testsunone:about to Update exec status
    Error in proxy connection : java.lang.NullPointerException
    so,according to the Solution of way, I used ldapmodify to fix the following one entrie:
    dn: orclODIPAgentName=testsunone,cn=subscriber profile, cn=changelog subscriber, cn=oracle internet directory
    changetype: modify
    replace: orclaci
    orclaci: access to attr = (*) by group="cn=odisgroup,cn=odi,cn=oracle
    internet directory" (read,write,search,compare)
    orclaci: access to entry by group="cn=odisgroup,cn=odi,cn=oracle
    internet directory" (browse,proxy)
    but it's looks like not success,also show "DIP_GEN_INITIALIZATION_EXCEPTION" error.
    why? anybody can help me,please! thank advance.
    I used the oracle portal_wireless_101200 and the SunONE Directory Server 5.2.
    Regards.
    david

Maybe you are looking for