Dbms_aqadm hang while calling add_subscriber can i make a asynchronous call

Hi ,
I call dbms_aqadm.add_subscriber but it hangs ( most probbably for the reason that some process has the lock on the queue - my guess ,correct me if wrong).
Can i make the call add_subscriber asynchronous which is returning some error code or something specifying that unable to add subscribe due to the following reason.
Please reply immeaditely.
Thanks
Saurabh

Hi line123,
Sorry about all the issues you've had getting this installed. I've alerted your local area market about what's going on. They will get in contact with you about coming out to get this resolved. 
Thank You

Similar Messages

  • My ipad2 hanged while lock, i can't reset or turn it off. What will i do!

    My ipad2 hanged while lock, i can't reset or turn it off. What will i do?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    Finally, if the Restore doesn't work, let the battery drain completely.  Then recharge for at least an hour and Restore again.

  • Berkeley  DB JE is getting hanged while calling environment sync method.

    Hi,
    I am developing an application in Java and I am using JE edition of Berkeley. I am facing an issue, during shutdown operation I am calling syn method of EntityStore class and Environment class.
    The EntityStore.sync() is getting completed but during executing of Environment.sync() the control is not coming out of this statement. Below is the code that I am using to perform sync operation.
    if (myEnv != null) {
    try {
    entityStore.sync(); //Calling sync method of Entity Store Class.
    log.error("Finished Syncing of Entity Store");
    myEnv.sync(); // Calling Sync method of Environment Class. Control is not coming out of this sync call.
    log.error("Finished Syncing of Environment");
    } catch (DatabaseException dbe) {
    log.error("DataBase exception duing close operation ",dbe);
    } catch (IllegalStateException ie) {
    logger.fatal("Cursor not closed: ", ie);
    During my unit testing I was changing system date and perfoming some db operation. While I during down the application the the above code gets executed but the system is getting hanged and control is not coming out of Environment sync method call. Can some one tell why the sync is causing the system to hang.
    Thanks in advance.

    Hello,
    You did not mention the version of BDB JE. In any case for BDB JE questions the correct forum is at:
    Berkeley DB Java Edition
    Thanks,
    Sandra

  • System Display hangs while call waiting

    Hi
     I have a black berry 8520 smart phone brought from Airtel and still under warranty. Since past few days, I am encountering an issue while I try to answer a call which is on wait.During this time, the display of the system hangs! The display will show the calling person's details and stand still.
    After this, I can see phone ringing if I try to call my number from a different phone. But I wont be able answer the call, I cannot power off/on. The only option left with me is to remove the battery and give a cold boot which take at least 20 mins to come up.
    I am looking forward for a help on this issue

    Hey philu,
    Welcome to the BlackBerry Support Community Forums.
    I would highly suggest you perform a clean application load.  Since this issue seems to be a software related issue.
    Here is a link on how to perform the clean application load: http://www.blackberry.com/btsc/KB11320
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Crystal Report XI R2 cause IIS to hang while calling ReportDocument.Close()

    Dear Concern,
    We are using Visual Studio 2008 (.Net framework 3.5) to develop ERP Web portal for our company. Crystal Report XI R2 has been used here for generating customized report.
    I have written a CrystalReport utility to do all type of logon, parameter pass stuffs with the report. The utility itself implements IDisposable and following is my code at the Dispose method:
    public override void Dispose()
    _crReportDocument.Close();
    _crReportDocument.Dispose();
    But when my code reaches _crReportDocument.Close() then the IIS/ W3C hangs. I have waited for long time to the process to be finished but it never.
    I also tried to move the code from my utility and directly close the report object from caller form but failed.
    Can anyone please give me any suggestions regarding this issue? Is there anything wrong with this?
    N.B. I have succeeded with Crystal Report X by using the same procedure.
    Thank You.

    Dear Adam,
    Thanks.
    The problem resolved after I have installed CR XI R2 Service Pack 4. Crystal Report 2008 of course is a better solution but I have to wait a bit for procurement.
    Warm Regards,
    Sultan

  • Oracle session Hangs while calling one package function

    Hi all,
    We are a facing a interesting scenario in our code. Consider that you have 2 pakcages(A,B). Ecah packages is having more than 5 functions in it.
    1. A.function1() makes a call to B.function1() - is working fine
    2 .B.function1() calls B.function2() - is working fine
    3. B.function2() calls A.function2() - oracle session hangs in this call.
    If I copy the scropt code from A.function2() and inline (put) it in B.function1() , the execution gets completed without an issue.
    If i run the A.function2() seperatly it works fine. Only calling from B package it is failing.
    If anyone knows the rooot cause of the issue, please let me know.
    Thanks and regards,
    Vijayaraja

    Do you have/use global variables?
    Moving code from one package to another doesn’t necessarily result in logically equivalent programs. In the version of your program which “hangs” you may have crafted an infinite loop. Instrument your code and see if you really stall or just keep going on forever.
    With this kind of cross-dependencies in your libraries you almost ask for trouble.

  • Form hangs while calling Report

    Hi, I am converting some Forms/reports from 6i to 10g.
    The form I am testing is calling a report repeatedly using the following code:
    rep_id := Find_Report_Object('FILE_RECORD_DESCRIPTION');
    <<open_files>>
    OPEN files;
    <<get_next_file>>
    FETCH files INTO file_name;
    IF files%NOTFOUND
         THEN
         CLOSE files;
         RETURN;
    END IF;
    :FILE_RECORD_DESC_STATUS := 'Doing file' || file_name;
    SYNCHRONIZE;
    IF :TYPE = 'PDF'
         THEN
         SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_DESNAME,'C:\DOC\PDF\' || file_name || '.pdf');
         SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_OTHER, 'P05_FILES="' || file_name || '"');
    END IF;
    IF :TYPE = 'HTML'
         THEN
         SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_DESNAME,'C:\DOC\' || file_name || '.htm');
         SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_DESFORMAT,'HTML');
    SET_REPORT_OBJECT_PROPERTY (rep_id,REPORT_OTHER, 'P05_FILES="' || file_name || '"');
    END IF;
    report := Run_Report_Object(rep_id);
    GOTO get_next_file;
    When REPORT_DESFORMAT is set to ‘HTML’, everything works well. Around 40 .htm documents are created on C:\DOC. But when REPORT_DESFORMAT is set to ‘PDF’ the form hang after creating 10 or 11 .pdf documents!!!
    Any idea what I am doing wrong? Do I have to free up some sort of buffer/memory/other things when creating .pdf document?
    Regards
    Yves

    I tried different things and it seams that the amount of data (i.e the size of the .pdf) determine how many times the report can be called before the form hangs. Form did hang after only 2 call for big report (around 20 pages each) but hangs after several calls for smaller ones???
    Yves

  • IPhone hangs while syncing, iPhoto can't detect iPhone

    Hello,
    I am a first time poster (be gentle
    My iPhone has worked perfectly since August. Last week i plug in to sync. It appears in the sidebar of iTunes. I press sync. Starts with "backing up iPhone" dialogue then progress bar in iTunes stops. Same time iphone lets out a tone. Spinning wheel starts on screen of iPhone. Another tone. The freezes.
    If I disconnect from USB cable, the screen goes blank, then Apple symbol comes up. After a few minutes I am back to normal operation.
    Additional info:
    This also occurs if I just plug into a USB cable connected to another Mac to charge battery (rather than sync).
    Also, I have iPhoto set as default app for pics and movies on iPhone. iPhoto does not recognize the iPhone when I plug it in via USB.
    I would be keen to:
    a) know if anybody else is having this problem.
    b) get any suggestions as to what might be going on inside my iPhone to make it behave like this.
    c) get any suggestions as to what steps I should take to fix this.
    Any help much appreciated in advance,
    ned
    Sydney
    Australia

    AMAZING !!!!!
    Thank you Wjosten. Thank you, thank you.
    I have been to a Genius Bar with this....their suggestion, full reformat, reset, start again.
    Never had such a quick response that works, and something so simple. Truly amazing and you are a real life saver.
    Can you give details on why exactly photos downloaded from Safari would create this effect?
    Mine are all gone now and I will avoid that practice until I know more
    Again, many thanks. Very much appreciated!
    Ned

  • My MacBook Pro switches automatically from a program to finder while working.  Can anyone make suggestions on how to stop this?

    My MacBook Pro will automatically jump from a program (Safari, Excel, etc.) to the Finder window.  Can anyone tell me how to stop this?

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of certain system caches. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • HT201406 IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even powe

    IOS7 installed OK to my iPhone 4S and worked OK for a while but I have somehow managed to completely jam my iPhone 4s. The touch screen won't work except for up and down gestures (some of the time). I can't make or answer calls, I can't even power if off. I can't access the hardward ID which Apple support seems to require for Chat.
    It might have happened when I was accessing my camera bypassing the lock screen!
    All I know is that the thing is now useless and it looks like I will have to wait for the battery to run down to see if powering it back up afterwards will solve the problem.

    I have since discovered the "hold down home key and power button" together for a few seconds and this seems to have worked .... phew!

  • IOS5.0.1 constant error "iPhone can not make or receive calls.  Restore from iTunes":  I get this message and the phone will no longer work (happend once while on airplain mode and now once while in wifi only area, out of cell range).  help!

    All- I get this message ("iPhone can not make or receive calls. Restore from iTunes" (happend once while on airplain mode and now once while in wifi only area, out of cell range)). iPhone 4.  Newest OS.  Never happened with old OS! Cycling phone on/off does not help.  Ignoring message causes phone to cycle off then on.  After first time this happened, I restored.  Six days later...same problem!  Clearly a new fix is necessary.  Suggestions? 

    I have not tried that...I will look up the process so that I can do it correctly (and still transfer all of my files, contacts, etc).  Any suggestions?  What is the advantage of restoring as a new device..is this more akin to a complete wipe of a hard drive?

  • Small person's picture while calling. How can I make it full screen?

    Small person's picture while calling. How can I make it full screen?

    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • HT201401 can i make calls while the phone is locked???

    can i make a call while the home screen is locked?

    And that is only if you set it up for Siri to work under the lock screen. In Settings, if you have a Passcode lock on and have Siri turned off for use when the phone is locked, you cannot use it. Just an observation.

  • Blackberry 9320 gets hang while receiving the call

    Hello Team,
    I have took th Blackberry just 4 days back and i am facing a problem already and it was my dream to buy the blackberry but after buying just after 4 days my cell hangs while recieving the call, only trackpad works and i cannot unlock the phone as well and i have to remove battery and restart the phone to make it work please suggest me what has to be done to make my phone to work properly do i have to take it servise centre or any suggestion which i can do to solvethis issue.... Blackberry is my dream phone and this bug has dissapointed me a lot just after 4 days after purchasing i am facing the issue.. Please help me....
    Thank you,
    Lohith

    Hey lohithkavali,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would suggest reloading the software and then test the issue prior to restoring any data.  Follow the steps in this KB article: www.blackberry.com/btsc/KB11320
    Let me know if you have any more questions.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Verizon - Iphone 6 plus - phone app getting hanged while doing 3 way conference call

    I am using VOLTE in IPHONE 6 Plus with IOS 8.1 and when I am trying to do 3 way conference: I called person A and then I add person B, then I see the following issues:
    I press Merge calls and calls are merged but still merge calls & Swap icon is enabled.
    When person A/B hangsup, the phone app is hanged and call is ended but it still shows that phone is ending.
    If I end the call, still the phone app is hanged and it shows it is ending.
    I cannot do any dialing in the phone when phone app is hanged and literally, I have to restart the phone only.
    Any other person cannot call me and it goes to voicemail.
    All the above issues were happening in IOS 8 and IOS 8.0.2 also. I did reset network settings too but it did not help.
    Can someone give an idea for any solution.

        mehulkothari,
    Thank you so much for those details. I want to make sure that you are able to use the feature without any issues. One thing that we might want to check out is that all the people that are a part of the 3 way calling is in the Verizon 4G LTE network. This could cause some issues if they are not. Have you been able to power the device off all the way and also remove the sim card for a good 10-15 seconds? http://vz.to/1EdNNMe  Please keep us posted.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for