Oracle Streaming not working, -- PLEASE IGNORE

Hello All
I am trying to setup streaming between two databases:
Source database = Oracle 10g 10.1.0.5
Destination = Oracel 10g 10.2.
I did following steps:
1- User 'strmadmin' created on both databases granted GRANT_ADMIN_PRIVILEGE,
2- Both have JOB_QUEUE_PROCESSES > 2
3- At both databased db_link with name 'sttream' pointing to each other databased has been setup and working fine.
4- executed on both: EXEC DBMS_STREAMS_ADM.SET_UP_QUEUE();
5- At source db, supplemental log added on the desired table.
6- At source db, following rule executed:
BEGIN
DBMS_STREAMS_ADM.ADD_TABLE_RULES(
table_name => 'dba_st.sayeed_streaming',
streams_type => 'capture',
streams_name => 'capture_stream',
queue_name =>
'strmadmin.streams_queue',
include_dml => true,
include_ddl => true,
inclusion_rule => true);
END;
7- At source db, following propogation rule done:
BEGIN
DBMS_STREAMS_ADM.ADD_TABLE_PROPAGATION_RULES(
table_name      => 'dwhstream.sayeed_streaming',
streams_name      => 'st4_to_dwh',
source_queue_name      => 'strmadmin.streams_queue',
destination_queue_name      => 'strmadmin.streams_queue@dwh',
include_dml      => true,
include_ddl      => true,
source_database      => 'dba_st',
inclusion_rule      => true);
END;
8- At destination db, table created with same name and attributes.
9- instantiation SCN at source db as:
DECLARE
source_scn NUMBER;
BEGIN
source_scn := DBMS_FLASHBACK.GET_SYSTEM_CHANGE_NUMBER();
DBMS_APPLY_ADM.SET_TABLE_INSTANTIATION_SCN@dwhstream(
source_object_name      => 'dba_st.sayeed_streaming',
source_database_name      => 'dba_st',
instantiation_scn      => source_scn);
END;
10- At destination db:
     BEGIN
     DBMS_STREAMS_ADM.ADD_TABLE_RULES(
     table_name => 'dba_st.sayeed_streaming',
     streams_type => 'apply',
     streams_name => 'apply_stream',
     queue_name =>
     'strmadmin.streams_queue',
     include_dml => true,
     include_ddl => true,
     source_database => 'dba_st',
     inclusion_rule => true);
     END;
11- At source db:
     BEGIN
     DBMS_CAPTURE_ADM.START_CAPTURE(
     capture_name =>
     'capture_stream');
     END;
12- At destination DB:
BEGIN
DBMS_APPLY_ADM.START_APPLY(
apply_name => 'apply_stream');
END;
So all this i did but when i change, insert or delet in source table, nothing comes at destination.
Please guide me what steps i had missed or where to look errors step by step.
Thanks in advance
Sayeed
Edited by: user9206270 on Mar 1, 2010 9:38 PM

this is a duplicate post. Please change the subject to "Please ignore" Thank you.
Your initial post was in the correct group and multiple posts is considered very bad form by most here that try to help.
Again thank you for cleaning it up and removing this.

Similar Messages

  • Oracle stream not working as Logminer is down

    Hi,
    Oracle streams capture process is not capturing any updates made on table for which capture & apply process are configured.
    Capture process & apply process are running fine showing enabled as status & no error. But, No new records are captured in ‘streams_queue_table’ when I update record in table, which is configured for capturing changes.
    This setup was working till I got ‘ORA-01341: LogMiner out-of-memory’ error in alert.log file. I guess logminer is not capturing the updates from redo log.
    Current Alert log is showing following lines for logminer init process
    LOGMINER: Parameters summary for session# = 1
    LOGMINER: Number of processes = 3, Transaction Chunk Size = 1
    LOGMINER: Memory Size = 10M, Checkpoint interval = 10M
    But same log was like this before
    LOGMINER: Parameters summary for session# = 1
    LOGMINER: Number of processes = 3, Transaction Chunk Size = 1
    LOGMINER: Memory Size = 10M, Checkpoint interval = 10M
    LOGMINER: session# = 1, reader process P002 started with pid=18 OS id=5812
    LOGMINER: session# = 1, builder process P003 started with pid=36 OS id=3304
    LOGMINER: session# = 1, preparer process P004 started with pid=37 OS id=1496We can clearly see reader, builder & preparer process are not starting after I got Out of memory exception in log miner.
    To allocate more space to logminer, I tried to setup tablespace to logminer I got 2 exception which was contradicting each other error.
    SQL> exec DBMS_LOGMNR.END_LOGMNR();
    BEGIN DBMS_LOGMNR.END_LOGMNR(); END;
    *ERROR at line 1:
    ORA-01307: no LogMiner session is currently activeORA-06512: at "SYS.DBMS_LOGMNR", line 76
    ORA-06512: at line 1
    SQL> EXECUTE DBMS_LOGMNR_D.SET_TABLESPACE('logmnrts');
    BEGIN DBMS_LOGMNR_D.SET_TABLESPACE('logmnrts'); END;
    *ERROR at line 1:
    ORA-01356: active logminer sessions foundORA-06512: at "SYS.DBMS_LOGMNR_D", line 232
    ORA-06512: at line 1
    When I tried stopping logminer exception was ‘no logminer session is active’, But when I tried to setup tablespace exception was ‘active logminer sessions found’. I am not sure how to resolve this issue.
    Please let me know how to resolve this issue.
    Thanks
    siva

    The Logminer session associated with a capture process is a special kind of session which is called a "persistent session". You will not be able to stop it using DBMS_LOGMNR. This package controls only non-persistent sessions.
    To stop the persistent LogMiner session you must stop the capture process.
    However, I think your problem is more related to a lack of RAM space instead of tablespace (i. e, disk) space. Try to increase the size of the SGA allocated to LogMiner, by setting capture parameter SGASIZE. I can see you are using the default of 10M, which may be not enough for your case. Of course, you will have to increase the values of init parameters streams_pool_size, sga_target/sga_max_size accordingly, to avoid other memory problems.
    To set the SGASIZE parameter, use the PL/SQL procedure DBMS_CAPTURE_ADM.SET_PARAMETER. The example below would set it to 100Megs:
    begin
    DBMS_CAPTURE_ADM.set_parameter('<name of capture process','_SGA_SIZE','100');
    end;
    I hope this helps.
    Ilidio.

  • Oracle Streams not working after database restart

    Hi,
    I am new at this so hope that somebody out there can give me some guidance.. I have managed to setup the streams properly on both my 10g database as per the scripts given in StreamsAdminConfig.sql and StreamsSetup.sql.. It worked beautifully on both direction.
    However when i restarted DB1.. suddenly the replication become just one directional only, namely from DB1 -> DB2. I have tried to do DBMS_STREAMS_ADM.STOP_APPLY, STOP_CAPTURE, START_APPLY, START_CAPTURE many times on both DB1 and DB2 but still it works only in one direction.
    Later I tried to restart both databases and not it does not work at all (both direction).. Tried restarting the apply and capture process many times too but get no success. Any idea what I could check or try to find out what when wrong. Thanks.
    regards,
    thamch

    trying viewing the status and error messages in views
    dba_apply, dba_apply_error, dba_capture and dba_propagation at both databases.

  • Photo stream not working after upgrading to maverick please help?

    have upgraded to Maverick from osx lion
    sooo much trouble ......memory low
    photo stream not working
    everything slow
    any ideas?

    On your Mac disable Photo Stream in the System/iCloud preference pane
    and in iPhoto's Photo Share preference pane.
    Reboot and reenable both respectively. That should jump start Photo Stream.
    OT

  • Hi, when the itunes finished the downloading for ios 6 , the iphone turned of and shows that i have to connect it with the itunes , i already did but still not working . please appreciate your help

    Hi, when the itunes finished the downloading for ios 6 , the iphone turned of and shows that i have to connect it with the itunes , i already did but still not working . please appreciate your help

    First make sue you are installing the 64 bit version of iTunes.
    Second make sure it is iTunes 10.7 or later.
    I would download a fresh copy of the 64 bit version of iTunes 11. After installation reboot your computer.
    Before connecting your phone reset your device. Press and hold the Home and Sleep buttons simultaneously ignoring the red slider should one appear until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Oracle Alert not working on Oracle e-Business Suite 11.5.10

    Dear All,
    Oracle Alert was working on Oracle e-Business Suite 11.5.10 with Postfix server. But now
    we changed to MS exchange server instead of postfix server then onwards the alert is not working. I done the configuration according to MS Exchange server, inbound/outbound Server Name/reply-to-Address/added relay host.
    Test Notification Mailer is working fine, but the alert is not working.
    please anyone help me on this.
    regards,
    sva

    Hi Hussien,
    I done the diagnostic test got this warning
    WARNING - The profile option 'RESP_ID' does not exist
    ACTION - Set the 'RESP_ID' profile option. Consult Oracle Alert user guide for more details on this profile option.
    WARNING - The profile option 'EMAIL_ADDRESS' does not exist
    ACTION - To use the 'EMAIL_ADDRESS' profile option value as the :MAILID value, it must be created and set as the 'EMAIL_ADDRESS' profile option and perform some additional setup steps. Please consult Oracle Alert user guide for more details. If the 'EMAIL_ADDRESS' profile option has not been created, or if its value is null, Oracle Alert uses the operating system userid or the application username of the user who triggered the event, depending on the value set for the 'Default User Mail Account' option in the Oracle Alert Options form.
    When I done the oracle alert test it completed with normal. but not sending the mail.
    in the view output ->>
    ************************************************************************* (ROUTINE=alepaa) (FILE=alr/src/except/alepea.c) (LINE=1058)
    Performing alert "aaTest" (ROUTINE=alepaa) (FILE=alr/src/except/alepea.c) (LINE=1060)
    Connecting to "APPS" (ROUTINE=alepaa) (FILE=alr/src/except/alepea.c) (LINE=1114)
    Performing action set "aaPrintActionSet" (ROUTINE=alepea) (FILE=alr/src/except/alepea.c) (LINE=277)
    Performing action "aaPrint" (ROUTINE=alsasm) (FILE=alr/src/sendmail/alspma.c) (LINE=560)
    I don't know whether the configuration is correct in Alert Manager -> System -> options
    Oracle application 11.5.10 is running on HP Unix(DB,conc. server,reports ..) and Redhat linux 4 ( forms,web server)
    please help me on this.
    regards,
    sva

  • Why does photo stream not work on 4g

    Hi, I have a iPhone and a Mac and an iCloud account, but why does photo stream not work on 4g, but as soon as I connect to wifi, it send photos to photo stream, can please tell why it does not send photos to photo stream when on 4g, thanks.

    The data requirements for sending potentially many photos can be too taxing/costly on a carrier's data plan.

  • IPhone 6 pin or fingerprint not working please help me asap

    i phone 6 pin and finger print not working please help

    Howdy Karan sood,
    Welcome to Apple Support Communities.
    It sounds like you’re running into an issue unlocking your iPhone because Touch ID and passcode aren’t being accepted.
    Take a look at the article linked below, it provides troubleshooting suggestions that’ll resolve most Touch ID issues.
    Use Touch ID on iPhone and iPad - Apple Support
    Get help with Touch ID
    Make sure that you're using the latest version of iOS.
    Make sure that your fingers and the Home button are clean and dry.*
    Cover the Home button completely. Don't tap too quickly, don't press down hard, and don't move your finger while Touch ID is scanning. Make sure that your finger touches the metal ring around the Home button.
    If you're using a case or screen protector, make sure it doesn't cover the Home button or the surrounding ring. If it does, remove the case or screen protector and try again.
    Tap Settings > Touch ID & Passcode and make sure that iPhone Unlock or iTunes & App Store is on. Also make sure that you've enrolled one or more fingerprints.
    Try enrolling a different finger.
    If you can't enroll any of your fingers, take your device to an Apple Retail Store, Apple Authorized Service Provider, or contact AppleCare for help.
    * Moisture, lotions, sweat, oils, cuts, or dry skin might affect fingerprint recognition. Certain activities can also temporarily affect fingerprint recognition, including exercising, showering, swimming, cooking, or other conditions or changes that affect your fingerprint.
    And, this article provides tips that’ll help resolve passcode issues.
    iOS passcodes - Apple Support
    Forget your passcode?
    If you or someone else enters the wrong passcode too many times, your device will disable itself temporarily. Get help if you forgot your passcode or your device is disabled.
    Learn what to do if you forgot your Restrictions passcode.
    I hope this helps,
    -Jason

  • HT201412 my iphone 4s does not start by power switch, it starts when i connect to pc. the proximity sensor is not working. please help

    my iphone 4s does not start by power switch, it starts when i connect to pc. the proximity sensor is not working. please help.

    Sounds like it may be a hardware issue.
    Please contact Apple Support in your country.
    Here is a list of numbers: http://support.apple.com/kb/HE57
    Regards
    J

  • I have installed adobe flash player on my computer and this is not working please help

    I have installed adobe flash player on my computer and this is not working please help

    What is your operating system & version?
    What is your web browser?
    What means "not working"; what do you see instead of the expected Flash content?

  • I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

    I have unabled 5 fingure gesture now not able to perform any task,also my power button is not working,please help me in removing this gesture,using I phone 4

  • I have 4s iPhone , I download the iOS 7. Now the front receiver microphone is not working , please help me that how to fix the problem.

    I have 4s iPhone , I download the iOS 7. Now the front receiver microphone is not working , please help me that how to fix the problem.

    I live in South Africa, and I had the same problem with my iPhone 4.
    After weeks of frustration and swearing, I was in the process of restoring my phone to a previous iOS. To do that you need to turn the "Find my iPhone" option off, since i turned it off, my problem was solved. No need to repair anything or revert back to old iOS.
    ***** that i cant use Find my iPhone, but atleast i can use my phone.

  • I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.

    I installed windows 7 on my macbook pro. all is working but lan adaptor and sound od laptop is not working. please help me or send the link where i can download the these drivers.I have lost my resource cd .

    If you are running Lion or Mountain Lion, the drivers are downloaded from within Bootcamp Assistant. If you are running Snow Leopard the drivers are on your Snow Leopard install disk.
    Read the Bootcamp Install Guide for your version of OSx. http://www.apple.com/support/bootcamp/
    Bootcamp questions should be asked in the Bootcamp forum where the Bootcamp gurus hang out https://discussions.apple.com/community/windows_software/boot_camp

  • HT4623 iOS 6.1 no longer available because you are no longer connected to the internet- this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.

    this is what my iphone 4 shows. iv tried switching off again and again, closing apps by double tapping the home button but still not working. please help.
    is there any other method to download ios 6.1.2.
    my phone is not being recognized by itunes on my new windows 8. neither its working on touch copy.
    kindly help.
    thanks

    well in thatcase, i need another help .
    thanks for your instant reply.
    i have currently bought a new laptop (windows 8) and my iphone is not being recognized by itunes.
    because i have no backup on my previous laptop, i downloaded touchcopy but even touch copy is not recognizing my iphone.

  • Updated my iphone 3gs, lost my music and apps, they are backed up on itunes, how do I move them back to my phone, tried to sync but not working, please help

    Updated my iphone 3gs, lost my music and apps, they are backed up on my computer but i cannot move them over to my phone, tried to sync but not working, please help

    well first make sure that when you click on the name of your iphone on the left hand side of itunes that you go to the app and music tab and check mark the sync apps and sync music. then try clicking apply in the bottom right hand corner. then if not try doing it again after going to prefrences in the top menu and going to devices tab and click reset sync history if that doesnt work with music try and drop and drag to the name of your iphone, lastly if that doesnt work you can try restoring from a backup from before you updated. it will keep the new software but put everything that was on your phone when you created the backup back onto your phone.
    http://support.apple.com/kb/HT1351 for syncing music

Maybe you are looking for

  • Issue with XML report printing on R12 instance

    Hi, I'm facing issue with printing xml reports on R12 instance and followed the note (How To Print XML Publisher PDF Reports Via The Concurrent Manager:metalink id:338990.1) and configured the pasta printer,still printer output is showing the junk ch

  • I'm setting up my new ipad air and it's asking for id and password, but not accepting it. help me

    i'm setting up my new ipad air and it's asking for id and password, but not accepting it. help me

  • Inprocess inspection mapping

    Hi, I am working on inprocess inspection. Requirement is like this. Material is having 6 operations. During the 3rd operation two inspection characteristics need to be checked at regular intervals. So I have activated inspection type 03 in the materi

  • SLD problem while creating JCO

    Hi all,            I am creating JCO from WebDynpro Content Administration for a RFC model but when I go to JCO connections it don't allow me to create. The link is disabled and when I "check SLD" it gives error "Connection to System Landscape Direct

  • Shared calendar items in multi-user calendar view

    Hi! I have another question: The new multi-user Calendar-view is great - but we have one thing, which is confusing to our users: User A has a shared calendar (the owner of this shared calendar is User B). It is clear, that User A can see appointments