Dequeue a message, wait 30 second, then dequeue second message and so forth

Hi,
I am using Oracle 9i AQ. What configuration i need to achieve this:
Suppose there are 3 messages in queue.
1) Dequeue 1st message.
2) wait 30 seconds
3) Dequeue 2nd message.
4) wait 30 seconds
5) dequeue 3rd message.
there is the 30 seconds that i want to implement. How do i configure the queue to have this effect?
I have try to configure latency to 30 seconds, the result is:
1) wait 30 seconds
2) dequeue 1st, 2nd and 3rd message.
Which is the undesirable result.
Thanks in advance.

do the dequeue within a dbms-job with the interval of
30 seconds ?!?How to check if my configuration have this setting? If my configuration have not this setting, how to change it?

Similar Messages

  • HT5622 I just got a new iPhone, how do I set up my iMessage? Keeps telling me waiting for activation, then it comes up and says an error has occurred.

    HHow do I activate iMessage? Keeps saying waiting for activation, and then I do my Apple ID and password then it says an error has occurred.?

    Is your phone activated with your carrier?  Can you make a phone call and send a text message?
    Which country/ carrier?

  • I updated my 4s, and now the text messaging is so slow its almost unusable (type then wait 20  seconds to see characters)

    I updated my 4s, and now the text messaging is so slow its almost unusable (type then wait 20 seconds or more to see characters on the screen).  Help Please!

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the sessionstore.js [2] file and possible sessionstore-##.js [3] files with a number and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js
    * [3] http://kb.mozillazine.org/Multiple_profile_files_created

  • I AM A CREATIVE CLOUD MEMBER FOR SOMETIME BUT NOW WHEN I LOGIN WITH THE CORRECT PASSWORD I STILL GET SIGNED OUT MESSAGE AND THEN WHEN TRIED THE SOLUTION GIVEN BY HELP THAT IS TO DELETE OPM.DB FILE OR SECOND SOLUTION INSTALL A FRESH CREATIVE CLOUD FOR DESK

    I AM A CREATIVE CLOUD MEMBER FOR SOMETIME BUT NOW WHEN I LOGIN WITH THE CORRECT PASSWORD I STILL GET SIGNED OUT MESSAGE AND THEN WHEN TRIED THE SOLUTION GIVEN BY HELP THAT IS TO DELETE OPM.DB FILE OR SECOND SOLUTION INSTALL A FRESH CREATIVE CLOUD FOR DESKTOP APP OR EVEN SOLUTION OF RUN OF IMSLIBREPLACER  IM STIILL NOT ABLE TO LOGIN TO MY CREATIVE CLOUD FOR DEKTOP APP . PLEASE HELP ME AS I NEED TO GET IN AND EXPLORE MORE OF MY DOWNLOADED S/W
    I HAVE TRIED ALL POSSIBLE SOLUTION BUT AM AMAZED HOW THIS IS HAPPENING TO ME.
    PLEASE PLEASE HELP ME .Creative Cloud Connection

    Hi Alfred,
    I would like to know the exact error message when you sign in, in the meanwhile please try the following steps assuming its Windows, let me know if its a MAC:
    1) Go to Start button>> Control panel>> Uninstall a program.
    2) Check if you see Browser safeguard there, if yes then uninstall it.
    3) Open Internet explorer>> Tools>> Internet options>> Connections>> Lan Settings>> and it should be like this.
    -Ankit

  • When I am waiting for a txt message and i go to click my home screen then i will receieve my message its like my screen is not alerting me??? HELP

    when i am waiting for a message i am waiting for ever then i check to see if i have gotten it and i click the home button and then i recieve it  i dont have the moon on and i have even wiped my phone clean thinking its something wrong with my back up and it still continues to do it. also i have taken the phone back thinking it was smething with the phone and got a new one still did it  i made a new apple id and everything . please HELP

    I could be corrupted backup.
    You can check the notification settings for message.
    Settings>Notification Center>Messages>Alert Style
    It should be on Banners or Alerts.
    Settings>Messages> Turn on Imessage and send as SMS and below that "Blocked" to check if you have any numbers block might be blocking the message.
    You can also do a hard reset by holding power and home till it restarts and release after seeing the apple logo.
    Still doesn't work? Settings>General>Reset>Reset all settings

  • Why can't I message on my Mac. I open up my messages and it stays up there for a second or two. Then it will close out by itself. Help!

    Why can't I message on my Mac. I open up my messages and it stays up there for a second or two. Then it will close out by itself. Help!

    For some reason, the error box photo didn't appear in my post. Here it is:

  • I downloaded an album and one single song just fine and then bought a second song and I keep getting an error message that says, You don't have enough access priviledges.  What can I do to download this song?

    I downloaded an album and one single that I purchased just fine and then purchases another single and I keep getting an error message that says, You don't have enough access priviledges.  What can I do to get this song?  I am just going to have to ask for a refund and forget it?

    What version of iPhoto do you have installed?  Is if one of the versions shown as not compatible in this screenshot?
    If it is then go to the App Store and download iPhoto 9.5.  It will be free if you have an iPhoto 9 or later verson currently.
    OT

  • How can I make a while loop wait 10 seconds before iterations​?

    I am using labview to for an osmosis system that measures the amout of water lost from the reading on a scale.  
    I currently have the program displaying the data from 3 scales every second.
    I also need to calculate the flux through the membrane over time.
    I do this with a function that takes a change in the scale reading over time (with a shift register) followed by a series of mathematical conversions.
    The readings from the scale display OK every second, but I need to have at least 10 seconds between flux calculations.
    So my question is, how do I make a the shift register take one value from the scale, then wait 10 seconds before taking the second value?  That way I have the mass of water lost over a 10 msecond period.  
    Below is my current while loop for Flux using shift registers from data from 3 scales.  
    Any helkp would be great!
    Also, I'm new at LabVIEW...

    Bob_Schor wrote:
    Do you understand how Dataflow (a key idea behind LabVIEW) works?  If you put a Wait (ms) function (on the Timing Palette) with 10000 (10,000 milliseconds = 10 seconds) inside your While Loop, the principles of Data Flow will require all of the functions inside the While (specifically the Wait function) to finish their execution before the loop can run again.  As everything else in the loop takes approximately 0 seconds, this will make your loop run once every 10 seconds.
    Bob Schor
    I do not think that is a good idea. 
    The inner loop should be in sync with the outer loop, not run independent on it's own timer.
    If the inner loop is running independently you run the risk of using stale data.
    Actually  altenbach is right the inner loop does not need to be a for loop at all, but rather just a case like my suggestion (without the for loop) and the shift registers should be out on the main loop.
    My suggestion was a quick solution going by what little bit of the block diagram I could see, but if the entire code was posted I am sure we would see where more improvements could be made and possibly even a better solution.

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • After updating to 10.10.3, now my Macbook Pro will not stay logged in. I log in after restarting, and it will stay logged in for 3-5 seconds then immediately log off and go back to the login screen. Any help?

    After updating to 10.10.3, now my Macbook Pro 15" (mid-2014) will not stay logged in. I log in after restarting, and it will stay logged in for 3-5 seconds then immediately log off and go back to the login screen. Any help?
    By the way, I also updated my Macbook Pro 17" (mid-2009) and it seems to be running fine, though I haven't tried to restart it and log in. I'm afraid I won't be able to get this one to work either if I do.

    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 the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login 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, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • [SOLVED] Waiting 10 seconds for device...

    I'm getting a "waiting 10 seconds for device..." on boot, and then it waits 10 seconds and boots me to a recoverely shell.
    I do realise a lot of people have had this problem, but the solutions all imply the Fallback. When I boot to fallback, I get the exact same error, so I can't use those solutions.
    It seems that I have to run "mkinitcpio -p linux", can I do that from a livecd. If yes, how?
    Any ideas? Thank you.
    Last edited by ephan (2012-11-09 17:02:52)

    I'm glad you fixed it. But you don't have to reinstall packages, just run mkinitcpio -p linux and you'll be fine (reinstallation also works because mkinitcpio -p linux is invoked during the process).

  • System time: Cannot go back ( 3 sec.). Wait 1 second(s)

    Hi, Ever since upgrading to Enhancement pack 6 which upgrades to Netweaver 7.4 also, we get messages from client 000 in the system log that say:
    System time: Cannot go back (< 3 sec.). Wait 1 second(s)
    System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    We get it on all Ehp6 systems, and some have different domain controllers than others so it is not a problem with one dc.  We have many other SAP systems on the same network, but only ehp6 systems report this issue.  stzac shows same time zone for all clients.  rsdbtime shows in sync, or no more than 1 second off.
    Warm Regards, CM

    It is Windows 2008 R2 Enterprise on vmware.  We have a lot of SAP servers on vmware and it is only the EHP6 systems that give these messages.  There is nothing else related in the event viewer except for system time messages.  We still get the messages several times per day per server.
    SPO 029 000 SAPSYS A24 System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    SPO 029 000 SAPSYS A14 > in program RSPOWP00 , line ???, event ??
    DIA 002 000 SAPSYS A24 System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    DIA 002 000 SAPSYS A14 > in program SAPMSSY2 , line ???, event ??
    DIA 003 000 SAPSYS A24 System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    DIA 003 000 SAPSYS A14 > in program RSBTCTRC , line 0128, event GET_CNTL_VALUES
    DIA 011 000 SAPSYS A24 System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    DIA 011 000 SAPSYS A14 > in program LBTCHF12 ,line 2065, event CHECK_SERVER_GR
    DIA 012 000 SAPSYS A24 System time: Cannot go back (< 3 sec.). Wait 2 second(s)
    DIA 012 000 SAPSYS A14 > in program SAPMSSY2 , line ???, event ??
    The suggestions from 2046718 - Time Synchronization on Windows of setting MaxNegPhaseCorrection = 0 and SpecialPollInterval = 300 did not help.

  • After my windows 7 computer did automatic updates, everytime I click on a link I get a not responding message and have to wait almost a minute for the program to continue.

    Last night, my computer running Windows 7 premium home edition downloaded some automatic updates. I came in this morning to find that it had done a restart after adding these updates.
    Now, anytime I click a link or do something which requires a redirect to another web page, my program gives me the not responding message and I have to wait 30-55 seconds for the program to continue.
    I have Firefox 4 and it was running smoothly up until this morning, so I can only assume that whatever the automatic updates were, there is something in them that is causing this error. I do not know what updates were installed.

    I don't have that problem in Firefox 29 when I read Gmail or AOL (aim''.''com) webmail. When I click on a webpage link in an email I'm reading (example: http://www.tworivertheater.org/ ) the link opens in a separate Firefox tab.
    Are you saying this doesn't happen in outlook''.''com webmail and the link opens in the same Firefox tab as the email itself? I don't use outlook''.''com webmail myself. Hopefully someone will be along who does, or see [[Problems with email and how to find help]].
    It might help if you would confirm the type of link that is opening in the same tab as the email you are reading in your outlook webmail. If I misunderstood your problem, please explain it better.
    It might also help if you could furhish more troubleshooting information. Please do the following:
    *'''For Firefox 29.0 and above''': Click the menu button [[Image:New Fx Menu]], click help [[Image:Help-29]] and select ''Troubleshooting Information''.
    Now, a new tab containing your troubleshooting information should open.
    *At the top of the page, you should see a button that says "Copy text to clipboard". Click it.
    *Now, go back to your forum post and click inside the reply box. Press Ctrl+V to paste all the information you copied into the forum post.
    If you need further information about the Troubleshooting information page, please read the article [[Use the Troubleshooting Information page to help fix Firefox issues]].

  • HT1349 For some reason part of the apps on my IPad just say waiting; they were working fine and then just turned dark and say waiting but didn't update when I updated all the apps.  Any suggestions?

    For some reason some of my apps suddenly went dark and say waiting.  I tried syncing with the computer and updating all the apps but they stayed dark.  The individual apps in question say they are updated when I looked at them.  Any ideas?  Do I need to just delete them off the IPad and start over?

    Hi you guys,four days ago my FT and iMessage worked well on my iPhone 5 IOS6.1.3,but my phone Number did not in the caller ID loop,so I turned both of them off,when I wanted to turn it on again,but failed,I tried so many times,but make no difference,It shows me"waiting for activation".Then I found the solution on internet,and you know there are many possible solutions,just like:
    1.change the wifi DNS to 8.8.8.8,8.8.4.4.and you must turn your cellular ON.
    2.restore the phone setting.Settings>>General>>reset>>all the phone setting.
    3.restore the network setting.Setting>>General>>reset>>the network setting.
    3.reset the network.
    4.reset your Date&time.Setting>>Date&Time>>set automaticlly>>ON.
    5.change another network to activate.
    6.take out the sim card to activate.
    I did everything,but nothing happend,it still"waiting for activation"
    And today afternoon,i try to activate again,when i turn iMessage on,it activate successfully.OMG,it is really amazing.and the same to my Facetime.
    I am so exciting and strange how it happen...
    I followed all the setting above 1.2.3.4.5.6,the only difference is i turned the "enable 3G" OFF(Settings>>General>>Cellular Data>>Enable 3G>>OFF),but it keep ON before now.
    seriously,i am not sure if the "enable 3G"causes this problem,but it really happened to me,so you guys can try if you have the same problem,
    hope my answer is helpful for you.
    Message was edited by: housing Alex

  • APP-6: Waiting 10 seconds to connect to peer.

    Does anyone know what this error means?
    "APP-6: Waiting 10 seconds to connect to peer."
    I see hundreds of them in my sys.log. I am running a 11506 that we have recently migrated to from a 11503.

    Hi,
    The message you mentioned is an indication that the APP session running on the CSS will
    connect to the remote peer running app in 10 seconds. This is just an indication and this message is normal. To avoid seeing this message, you need to reduce the logging of APP messages to 5 or lower. To do this, use the command "logging subsystem app level 5"
    Regards
    Pete..

Maybe you are looking for

  • QuickTime takes forever to open larger movie files and files over network

    Quicktime 7.2 used to open files immediately, but now it stops responding for a couple minutes or more before finally opening movie files. Any one else having this problem?

  • Why can I no longer open IBooks?

    Why can I no longer open IBooks?

  • Docking container in a subscreeen

    hy gurus, got an issue on the putting a docking container in a subscreen. the subscreen doesn't display. I've created a dynpro 202 as subscreen , i've  created a custom container( GO_CONTAINER_OBJECT)  in the dynpro 202. in the main dynpro (200) i ha

  • JPG blurring in FCP

    I know there have been a lot of posts on this topic, but i still havent found the answer i'm looking for. Whever i import PSD,PDF or JPG files into FCP I have the same problem. When I open a picture in the viewer it looks exactly as it should, it kee

  • Object Type (OBJTYPE ) for Service Order & Billing

    Hi, I am developing a report for billed service orders . I wanted to know what is the OBJTYPE for billing. In the CRM_ORDER_READ function module we can see OBJTYPE = BUS2000117 ( For Service Confirmation) OBJTYPE = BUS2000116 ( For Service Order) How