Setup Streams failed

Hi,
I encountered the following error while trying to setup streams replication at the database level using dbms_streams_adm.maintain_global.
Can help please?
Thanks. Desmond
begin
ERROR at line 1:
ORA-23616: Failure in executing block 6 for script
E00C49DDDB27C899E040A8C04C0119DA with
ORA-06550: line 21, column 3:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 21, column 3:
PL/SQL: SQL Statement ignored
ORA-06550: line 23, column 3:
PL/SQL: ORA-00942: table or view
ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 659
ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 682
ORA-06512: at "SYS.DBMS_STREAMS_MT", line 2427
ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 3004
ORA-06512: at line 2
SQL> select forward_block
  from dba_recoverable_script_blocks
where script_id = 'E00C49DDDB27C899E040A8C04C0119DA'
   and block_num = 6;  2    3    4 
FORWARD_BLOCK
-- Datapump FULL MODE IMPORT
DECLARE
  h1                NUMBER := NULL;
SQL>
SQL> select * from dba_recoverable_script_errors;
SCRIPT_ID                         BLOCK_NUM ERROR_NUMBER
ERROR_MESSAGE
ERROR_CRE
E00C49DDDB27C899E040A8C04C0119DA          6        -6550
ORA-06550: line 21, column 3:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 21, column 3:
PL/SQL: SQL Statement ignored
ORA-06550: line 23, column 3:
PL/SQL: ORA-00942: table or view
SCRIPT_ID                         BLOCK_NUM ERROR_NUMBER
ERROR_MESSAGE
ERROR_CRE
26-JUN-13
E00C49DDDB27C899E040A8C04C0119DA          6        -6550
ORA-06550: line 21, column 3:
PL/SQL: ORA-00942: table or view does not exist
ORA-06550: line 21, column 3:
PL/SQL: SQL Statement ignored
SCRIPT_ID                         BLOCK_NUM ERROR_NUMBER
ERROR_MESSAGE
ERROR_CRE
ORA-06550: line 23, column 3:
PL/SQL: ORA-00942: table or view
26-JUN-13
E00C49DDDB27C899E040A8C04C0119DA          6        -6550
ORA-06550: line 21, column 3:
PL/SQL: ORA-00942: table or view does not exist
SCRIPT_ID                         BLOCK_NUM ERROR_NUMBER
ERROR_MESSAGE
ERROR_CRE
ORA-06550: line 21, column 3:
PL/SQL: SQL Statement ignored
ORA-06550: line 23, column 3:
PL/SQL: ORA-00942: table or view
26-JUN-13

The error indicated that it stopped in "datapump FULL MODE IMPORT".
Further check in the destination DB, found that the "database directory objects" is missing. This folder in the OS is required for the data pump export utility to work.
Solution:
Do this in downstream DB
1. create directory streams_dp_dir as '/u01/streams_dp_dir';
FORWARD_BLOCK
-- Datapump FULL MODE IMPORT
DECLARE
  h1                NUMBER := NULL;

Similar Messages

  • Setup Streams Fails ORA-23616

    Run the following to setup streams but it failing.
    BEGIN
    DBMS_STREAMS_ADM.maintain_schemas
    (schema_names => 'hr',
    source_directory_object => NULL,
    destination_directory_object => NULL,
    source_database => 'orcl1',
    destination_database => 'orcl2',
    perform_actions => TRUE,
    --script_name                  => 'stream_hr_schema.sql',
    --script_directory_object      => 'STREAM_SCRIPTS',
    capture_name => 'capture_hr,
    capture_queue_table => 'rep_capture_queue_table',
    capture_queue_name => 'rep_capture_queue',
    capture_queue_user => NULL,
    propagation_name => 'prop_hr',
    apply_name => 'apply_hr',
    apply_queue_table => 'rep_dest_queue_table',
    apply_queue_name => 'rep_dest_queue',
    apply_queue_user => NULL,
    --log_file                     => 'exp_hr.log',
    bi_directional => TRUE,
    include_ddl => TRUE,
    instantiation => DBMS_STREAMS_ADM.instantiation_schema_network
    END;
    ERROR:
    BEGIN
    ERROR at line 1:
    ORA-23616: Failure in executing block 177 for script
    2A2A7AFA67CB73C3E0440003BA5D101D
    ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 560
    ORA-06512: at "SYS.DBMS_RECOVERABLE_SCRIPT", line 583
    ORA-06512: at "SYS.DBMS_STREAMS_MT", line 2201
    ORA-06512: at "SYS.DBMS_STREAMS_MT", line 7486
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2624
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2685
    ORA-06512: at line 2

    strange error. what is wrong with this script..
    1 BEGIN
    2 DBMS_STREAMS_ADM.MAINTAIN_SCHEMAS(
    3 schema_names => 'TAX',
    4 SOURCE_DIRECTORY_OBJECT => null,
    5 DESTINATION_DIRECTORY_OBJECT => null,
    6 source_database => 'STRMSRC',
    7 destination_database => 'STRMTRGT',
    8 capture_name => 'A1_TAX_CAPTURE',
    9 capture_queue_table => 'A1_TAX_CAPTURE_QT',
    10 capture_queue_name => 'A1_TAX_CAPTURE_Q',
    11 capture_queue_user => null,
    12 apply_name => 'A2_TAX_APPLY',
    13 apply_queue_table => 'A2_TAX_APPLY_QT',
    14 apply_queue_name => 'A2_TAX_APPLY_Q',
    15 apply_queue_user => null,
    16 propagation_name => 'prop_tax',
    17 log_file => 'exp.log',
    18 bi_directional => false,
    19 include_ddl => true,
    20 instantiation => dbms_streams_adm.instantiation_schema_network,
    21 perform_actions => false,
    22 script_name => 'tax_schema_replication.sql',
    23 script_directory_object => 'admin' );
    24* END;
    SQL> /
    BEGIN
    ERROR at line 1:
    ORA-02019: connection description for remote database not found
    ORA-06512: at "SYS.DBMS_STREAMS_MT", line 903
    ORA-06512: at "SYS.DBMS_STREAMS_MT", line 7444
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2624
    ORA-06512: at "SYS.DBMS_STREAMS_ADM", line 2685
    ORA-06512: at line 2
    SQL> select * from global_name@STRMTRGT;
    GLOBAL_NAME
    TAXTEST.LITTON.C_BASS.COM

  • Trying to reinstall CS5.5 Master Collection from DVD media on Windows 7 64 bit - setup.exe fails due to msxml3.dll error PDApp message [FATAL] PIM - Failed to Create XML instance : DOMDocument40 ADXML::initWithXMLPath Error:80040154

    If anyone is able to solve this they are a genius (or I am doing something very stupid!)
    I am trying to reinstall CS5.5 Master Collection from DVD media on Windows 7 64 bit PC but setup.exe fails due to a msxml3.dll error.
    Following a big bundle of recent Windows 7 updates, I started getting 'bad image' msxml3.dll error messages when opening any CS5.5 master collection program (Eg Premiere / Photoshop / Illustrator / Dreamweaver). Following advice on some threads here I tried uninstalling and then using the Adobe CC Cleaner Tool to clean up install, then reinstalling from my original DVD media.
    Whenever I try using run setup.exe from installtion disc 1 the installing fails due to 'Missing files'. I have also tried dowloading trial versions and runing setup.exe fro mthe downloaded files but i still get the same message.
    I have searched the forum and others have experienced this error but none of the solutions I have found seem to be working for me - as many seem to relate to download installations whereas I am installing from original DVD media (which worked fine before on the same PC)
    These are the FATAL messages from the PDApp log
    12/11/2014 15:29:27 [FATAL] PIM - Failed to Create XML instance : DOMDocument40 ADXML::initWithXMLPath Error:80040154
    12/11/2014 15:29:27 [FATAL] Setup - Could not initialize ADXML object
    12/11/2014 15:29:27 [FATAL] Setup - Unable to initialize. Error parsing setup.xml file
    The PDApp troubleshooting seems to indicate that this is caused by error in downloads but I am getting it with both original media DVD and downloads.
    I have also tried using my logon (which has admin privileges) and under our main admin account - and I get the same errors.
    Is a clean install of Windows 7 + CS5.5 my only option?
    Any help / info / advice / solutions very much appreciated! I have spent the last 2 days trying to sort this out and seem to be getting nowhere.
    Thanks.

    Thanks for the reply kglad - much appreciated.
    I have already tried that option (along with downloading files) as it was one of the solutions mentioned on other threads, but that also failed.
    Any other ideas?

  • Error message when opening itunes, quicktime streaming failed to load...

    I downloaded itunes, installed it, and when I try to open I get the message "quicktime streaming failed to load because it was already loaded" Then it closes. Anyone know what's going on?
      Windows XP  

    okay ... let's try a careful standalone QT 7.1 reinstall.
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)
    love, b

  • "Quicktime Streaming failed to load because of an unknown error"

    iTunes and Quicktime will not load, install, or uninstall because of at some point the popup message "Quicktime Streaming failed to load because of an unknown error" appears. Succesive reboots and removal of SpyBot (which may have denied access to Quicktime because of a registry setting, which of course may still be the cause of the problem...) have not fixed the problem. Any ideas?

    I have struggled with the same problem for the last few years and could not find any adequate answers. Being a person who likes to run his PC clean and mean, I had stopped all those Apple Itunes / Quicktime applets and deleted Itunes application as I preferred other Media players & converters. Recently my Nokia 6300 phone suite would send me the same error every song I moved from PC to phone. The clue was that I had chosen Optimised AAC format instead of stock standard MP3. Working on this hunch, I re-activated Apple's Software Update from the Scheduled Tasks items of Control Panel to update Quicktime, Itunes and Safari. Now I have AppleMobileDeviceService.exe, iPodService.exe, iTunesHelper.exe all running and I do not get the error anymore. There is also the Bonjour (DNSResponder.exe) service to be considered. See:-
    http://www.tombraiderforums.com/showthread.php?t=122420
    http://digg.com/apple/iTunes5Disasters

  • Crystal Reports 2008 Setup Has Failed

    Post Author: MWheeler
    CA Forum: Upgrading and Licensing
    I get a setup error as soon as I hit "install" on the English upgrade to 2008 on my Windows Xp Sp2 machine.  I am running XI developer edition on this machine.  The Window title for the error message is "Crystal Reports 2008 Setup Error" and the text is "Crystal Reports 2008 Setup has failed.  If this continues contact http:
    support.businessobjects.com".  I tried to open a Support case on this, but the Create a Case screen didn't have anyplace to enter any data at all and ended up just timing out. 

    I have got the same error message.
    I was unable to uninstall the program from the control panel.
    Try to install Windows Installer CleanUp software, and uninstall with this program the previous version on Crystal Reports.
    http://download.microsoft.com/download/e/9/d/e9d80355-7ab4-45b8-80e8-983a48d5e1bd/msicuu2.exe

  • Security setup operations failed: creating system keys

    I have just downgraded my T60 laptop from Vista to windows xp using the lenovo CD's.
    Everything seems to be working well, except that each time I boot up the computer, the lenovo security setup software runs.  If I follow the menus all the way through, I get to the following error on the last screen:
    "your security settings have been configured however, one or more setup operations failed: creating system keys"
    There was also a message that previously briefly flashed during the bootup (on the "bios" screen?) which stated that the system was designed to use fingerprints to protect something or other, but this was not enabled.  However:  I then ran all updates for windows xp and for lenovo drivers etc.  This message has now gone away (and unfortunately I didn't write it down).
    I'm guessing the failure to "create system keys" results in the software running each time I boot up.
    Another possibility:  I have not yet enabled the symantec security, as I intend to uninstall it and use other virus protection software.  Could this be causing the"failure to create system keys"?
    (The fingerprint reader works fine, and reads my fingerprint at the windows logon screen.)
    **UPDATE**:  uninstalled symantec security software, and this had no effect.
    Message Edited by orson_m on 12-29-2008 02:47 PM

    I have just downgraded my T60 laptop from Vista to windows xp using the lenovo CD's.
    Everything seems to be working well, except that each time I boot up the computer, the lenovo security setup software runs.  If I follow the menus all the way through, I get to the following error on the last screen:
    "your security settings have been configured however, one or more setup operations failed: creating system keys"
    There was also a message that previously briefly flashed during the bootup (on the "bios" screen?) which stated that the system was designed to use fingerprints to protect something or other, but this was not enabled.  However:  I then ran all updates for windows xp and for lenovo drivers etc.  This message has now gone away (and unfortunately I didn't write it down).
    I'm guessing the failure to "create system keys" results in the software running each time I boot up.
    Another possibility:  I have not yet enabled the symantec security, as I intend to uninstall it and use other virus protection software.  Could this be causing the"failure to create system keys"?
    (The fingerprint reader works fine, and reads my fingerprint at the windows logon screen.)
    **UPDATE**:  uninstalled symantec security software, and this had no effect.
    Message Edited by orson_m on 12-29-2008 02:47 PM

  • SDK Setup Installation failed

    Hi Guys:
    We created an SDK Setup as we do for every Add-On using a separated solution to include, Customer Library, Setup & SDK Setup.
    We followed all the stesp we normally do, Change Add-On Name and Executable file, Include Customer Library Conpilation Output and files needed to run Add-On
    The Add-On Registration Starts, Goes thru the Setup Wizard and after the Setup Wizard finishes it waits with the hourglass until times out and shows you that SDK Setup Installation failed.
    So it does not finishes the Add-On Installation.
    I have Created a new VS Solution and create everything from scratch and samething happened.
    Does somebody has had the same problem, and found a solution for it.
    Thanks
    Edel

    Please post it on the SDK forum:
    SAP Business One SDK
    Thanks,
    Gordon

  • EM view setup is failing in secure agent step

    EM view setup is failing in secure agent step.
    Is it known issue ?
    Any WA available ?
    Thanks
    -Ashish

    Since you don't have had any reaction yet it may be time to a bit more specific. "EM view setup" does not ring a bell to me.
    What are you trying to do?
    OMS/Agent version? Platform?
    Eric

  • "QuickTime Streaming Failed to Load. . . . ." error pop up

    Hi all,
    I recently did the automatic upgrade for QuickTime after it asked if I wanted to download & install it. Ever since that time, whenever I load a program that requires QT, an error pop up comes on the screen that says "QuickTime Streaming failed to Load Because it was Already Loaded".
    This error pops up even though no other program is using QT and QT has not been started separately. Now if I click on the pop up's "Okay", the program will go ahead and start. It's just a pain to have that popping up all the time now.
    Any thoughts?
    Thanks,
    Jerry

    I have struggled with the same problem for the last few years and could not find any adequate answers. Being a person who likes to run his PC clean and mean, I had stopped all those Apple Itunes / Quicktime applets and deleted Itunes application as I preferred other Media players & converters. Recently my Nokia 6300 phone suite would send me the same error every song I moved from PC to phone. The clue was that I had chosen Optimised AAC format instead of stock standard MP3. Working on this hunch, I re-activated Apple's Software Update from the Scheduled Tasks items of Control Panel to update Quicktime, Itunes and Safari. Now I have AppleMobileDeviceService.exe, iPodService.exe, iTunesHelper.exe all running and I do not get the error anymore. There is also the Bonjour (DNSResponder.exe) service to be considered. See:-
    http://www.tombraiderforums.com/showthread.php?t=122420
    http://digg.com/apple/iTunes5Disasters

  • How to Uninstall SQL instance on active-passive SQL server , which failed during Cluster Setup (Error-Failed at Validate Active Directory Configuration)

    How to Uninstall SQL instance on active-passive SQL server , which failed during Cluster Setup (Error-Failed at Validate Active Directory Configuration)
    active-passive SQL server cluster setup failed due to some steps missed in initial cluster setup,
    now i have unistall sql instance from nodes,
    Your help will higly appriciated.
    Regards,
    Anish
    Asandeen

    Hello,
    Please refer to the following link about remove a node of  SQL Server Failover Cluster Instance:
    http://msdn.microsoft.com/en-us/library/ms191545.aspx#Remove
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

  • KB2879017 setup error - failed to migrate dependent packages

    Hi this error "KB2879017 setup error - failed to migrate dedpendent packages" during installation of Microsoft Security pacthes at Windows XP SP3 pc . I'm using IE7 (version 7.0.5730.13) . Below logs the error. Anyone can advice?
    275.407: Destination:C:\Program Files\internet explorer\iexplore.exe (7.0.6000.21357)
    275.407: UpdateSpUpdSvcInf: Source [ProcessesToRunAfterReboot] section is empty; nothing to do.
    275.407: MigrateHotfix: Migrating hotfix KB2586448-IE8
    275.407: QFE KB2586448-IE8 has no backup directory to migrate.
    275.407: Migrating QFE KB2586448-IE8 with command line: update.exe -Z -Q -B:sp3qfe
    289.797: Update.exe failed 1603.
    289.797: MigrateHotfixes: Migration of KB2586448-IE8 failed
    289.797: DoInstallation: Migration failed
    290.641: Failed to migrate dependent packages.
    351.032: Message displayed to the user: Failed to migrate dependent packages.
    351.032: User Input: OK
    351.032: Update.exe extended error code = 0xf0ea
    351.032: Update.exe return code was masked to 0x643 for MSI custom action compliance.

    This forum is for questions and issues with the MAP Toolkit. You will need to post this question in a forum that is related to the software you are having trouble with.
    Please remember to click "Mark as Answer" on the post that helps you, and to click
    "Unmark as Answer" if a marked post does not actually answer your question. Please
    VOTE as HELPFUL if the post helps you. This can be beneficial to other community members reading the thread.

  • [SOLVED]systemd-tmpfiles-setup.service fails

    Hi,
    I have installed arch on an old laptop (dell inspiron 6000). I haven't used arch linux for last 2 years. It seems system management style has changed drastically.
    Anyways, systemctl status systemd-tmpfiles-setup.service returns this;
    ● systemd-tmpfiles-setup.service - Create Volatile Files and Directories
    Loaded: loaded (/usr/lib/systemd/system/systemd-tmpfiles-setup.service; static; vendor preset: disabled)
    Active: failed (Result: exit-code) since Sal 2015-06-09 11:00:18 EEST; 38min ago
    Docs: man:tmpfiles.d(5)
    man:systemd-tmpfiles(8)
    Process: 228 ExecStart=/usr/bin/systemd-tmpfiles --create --remove --boot --exclude-prefix=/dev (code=exited, status=1/FAILURE)
    Main PID: 228 (code=exited, status=1/FAILURE)
    Haz 09 11:00:18 yasar-laptop systemd[1]: Starting Create Volatile Files and Directories...
    Haz 09 11:00:18 yasar-laptop systemd[1]: systemd-tmpfiles-setup.service: main process exited, code=exited, status=1/FAILURE
    Haz 09 11:00:18 yasar-laptop systemd[1]: Failed to start Create Volatile Files and Directories.
    Haz 09 11:00:18 yasar-laptop systemd[1]: Unit systemd-tmpfiles-setup.service entered failed state.
    Haz 09 11:00:18 yasar-laptop systemd[1]: systemd-tmpfiles-setup.service failed.
    Is this something that I should be concerned? I don't really know what this service supposed to do?
    If I should be concerned, how to troubleshoot it? Keep in mind that this is a fresh arch install.
    Last edited by yasar11732 (2015-06-09 16:31:04)

    Thanks,
    I have add acl option to fstab file, it works now. If anyone else has this problem, here is how my fstab file looks now;
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    UUID=936297ec-2bc3-45ef-bdb0-0a4ce7239204 / ext4 rw,relatime,data=ordered 0 1
    UUID=d1fd9d31-99b5-45ba-97f4-a4c20b96e48b /var reiserfs rw,relatime,acl 0 2
    UUID=6a9b3e39-8ea2-446f-9a71-79faab7cdafe /home xfs rw,relatime,attr2,inode64,noquota 0 2
    # UUID=eb0b40d3-43ac-4f1f-8b29-97cd16a534d4
    UUID=eb0b40d3-43ac-4f1f-8b29-97cd16a534d4 none swap defaults 0 0

  • Setup has failed to automatically login to the server ServerMachine

    Hello,
    This error appears when installing the sboclient in a WINXP machine.
    Setup has failed to automatically login to the server <ServerMachine>
    It asks for the userID and Password, and even if I type the correct user and password it doesn't do anything.
    I can access the machine from the windows explorer, it is in a vmware.
    Anyone with the same problem?
    thanks in advance.

    Dear All,
    I was facing the same problem and now it is resolved.
    You should try the same what I did:
    • Browse the SQL Server CD from a client machine.
    • From the Root installation DIR, (SQL2005 in my case) double click "SPLASH.HTA" file.
    • It will ask for Security Warning, click Run.
    • It will pop up a Windows 2005 Server window.
    • Under the Install heading click on "Run the SQL Native Client Installation Wizard"
    • It will again pop up a security warning message. Click "Run"
    • Follow the instructions for installation.
    • Select all the components including SDK if it asks.
    Once it installed, try installing your SAP B1 Client. It must work.
    Best wishes

  • Downloaded firefox 5.0.1. video streaming fails. get the wheel of death

    I downloaded firefox 5.0.1 and now the video stream fails, devolving into the wheel of death
    the eternal ring
    I use Mac OS10, snow leopard
    trying to watch tnt.tv
    also trying to listen to dead.net
    both failed
    tnt.tv also failed on safari, so maybe that's them
    deadnet works on safari

    http://theappledaily.com/2011/06/20/download-firefox-5-final-for-mac-os-x-windows-and-linux/

Maybe you are looking for