DBSM_AQ SORT_LIST problem, timestamp is ignored.

Hello,
I am using dbms_aq to enqueue and dequeue data. The sort list on the queue table is 'PRIORITY,ENQ_TIME'
I am seeing that the ENQ_TIME is ignored when two records are enqueued in the same second but with different timestamp. I am not using any dequeue_condition
            PRIORITY    ENQUEUE_TIME                         DEQUEUE_TIME
Record1     1003        12/11/2014 1:43:35.084026000 PM      12/11/2014 1:43:36.656810000 PM
Record2     1003        12/11/2014 1:43:35.801906000 PM      12/11/2014 1:43:36.509805000 PM  <--- Dequeued first
I have checked the documentation, but could not find any information that this will be ignored. This is randomly happening some times.
Here is my code, And thanks in advance,
BEGIN
   DBMS_AQADM.CREATE_QUEUE_TABLE (queue_table          => 'mpi_aqadm.qtab_message',
                                  queue_payload_type   => 'mpi_aqadm.typ_message',
                                  sort_list            => 'PRIORITY,ENQ_TIME',
                                  COMMENT              => 'Queue table for message Sync');
END;
BEGIN
   DBMS_AQADM.CREATE_QUEUE (queue_name    => 'mpi_aqadm.aq_message',
                            queue_table   => 'mpi_aqadm.qtab_message',
                            max_retries   => 0,
                            retry_delay   => 60,
                            COMMENT       => 'Advanced queue for message Sync');
END;
BEGIN
   DBMS_AQADM.START_QUEUE (queue_name => 'mpi_aqadm.aq_message');
END;
--Enqueue Code
PROCEDURE prcenqueue (pinPriorityKey IN NUMBER, pinmessagekey IN NUMBER)
IS
   lvModuleId     CONSTANT VARCHAR2 (20) := 'PDR 1.01';
   ltypPdrSync             mpi_aqadm.typ_message;
   ltypEnqueueOptions      DBMS_AQ.ENQUEUE_OPTIONS_T;
   ltypMessageProperties   DBMS_AQ.MESSAGE_PROPERTIES_T;
   lrMsgID                 RAW (16);
   lvYrMonthDay            NUMBER (6) := TO_NUMBER (TO_CHAR (SYSDATE, 'YYMMDD'));
BEGIN
   ltypPdrSync := mpi_aqadm.typ_message(pinmessagekey);
   ltypMessageProperties.priority := lvYrMonthDay || pinPriorityKey;
   DBMS_AQ.ENQUEUE (queue_name           => 'mpi_aqadm.aq_message',
                    enqueue_options      => ltypEnqueueOptions,
                    message_properties   => ltypMessageProperties,
                    payload              => ltypPdrSync,
                    msgid                => lrMsgID);
END;
-- Dequeue Data
/* Formatted on 3/2/2015 5:49:13 PM (QP5 v5.252.13127.32847) */
PROCEDURE prcdequeue
IS
   dopt            DBMS_AQ.DEQUEUE_OPTIONS_T;
   mprop           DBMS_AQ.MESSAGE_PROPERTIES_T;
   msg             RAW (16);
   no_message      EXCEPTION;
   fetch_timeout   EXCEPTION;
   PRAGMA EXCEPTION_INIT (NO_MESSAGE, -25254);
   PRAGMA EXCEPTION_INIT (FETCH_TIMEOUT, -25228);
   get_data        mpi_aqadm.typ_message;
BEGIN
   dopt.WAIT := DBMS_AQ.NO_WAIT;
   dopt.navigation := DBMS_AQ.FIRST_MESSAGE;
   dopt.dequeue_mode := DBMS_AQ.REMOVE;
   DBMS_AQ.DEQUEUE (queue_name           => 'MPI_AQADM.aq_message',
                    dequeue_options      => dopt,
                    message_properties   => mprop,
                    payload              => get_data,
                    msgid                => msg);
   prcprocessmessage (get_data.pinmessagekey);
END;
Thanks,
G.

I also see this in documentation
If several messages are enqueued in the same second, then they all have the same enq_time. In this case the order in which messages are dequeued depends on step_no, a variable that is monotonically increasing for each message that has the same enq_time. There is no situation when both enq_timeand step_no are the same for two messages enqueued in the same session.
Do you think there is an issue around this?

Similar Messages

  • Performance problem because of ignored index

    Hi,
    We have a performance problem with kodo ignoring indexes in Oracle:
    Our baseclass of all our persistent classes (LogasPoImpl) has a subclass
    CODEZOLLMASSNAHMENIMPL.
    We use vertical mapping for all subclasses and have 400.000 instances of
    CODEZOLLMASSNAHMENIMPL.
    We defined an additional index on an attribute of CODEZOLLMASSNAHMENIMPL.
    A query with a filter like "myIndexedAttribute = 'DE'" takes about 15
    seconds on Oracle 8.1.7.
    Kodo logs something like the following:
    [14903 ms] executing prepstmnt 6156689 SELECT (...)
    FROM CODEZOLLMASSNAHMENIMPL t0, LOGASPOIMPL t1
    WHERE (t0.myIndexedAttribute = ?)
    AND t1.JDOCLASS = ?
    AND t0.JDOID = t1.JDOID
    [params=(String) DE, (String)
    de.logas.zoll.eztneu.CodeZollMassnahmenImpl] [reused=0]
    When I execute the same statement from a SQL-prompt, it takes that long as
    well, but when I swap the tablenames in the from part
    (to "FROM LOGASPOIMPL t1, CODEZOLLMASSNAHMENIMPL t0") the result comes
    immediately.
    I've had a look at the query plans, oracle creates for the two statements
    and found, that our index on myIndexedAttribute is not used
    by the first statement, but it is by the second.
    How can I make Kodo use the faster statement?
    I've tried to use the "jdbc-indexed" tag, but without success so far.
    Thanks,
    Wolfgang

    Thank you very much, Stefan & Alex.
    After computing statistics the index is used and the performance is fine
    now.
    - Wolfgang
    Alex Roytman wrote:
    ANALYZE TABLE MY_TABLE COMPUTE STATISTICS;
    "Stefan" <[email protected]> wrote in message
    news:btlqsj$f18$[email protected]..
    When I execute the same statement from a SQL-prompt, it takes that longas
    well, but when I swap the tablenames in the from part
    (to "FROM LOGASPOIMPL t1, CODEZOLLMASSNAHMENIMPL t0") the result comes
    immediately.
    I've had a look at the query plans, oracle creates for the twostatements
    and found, that our index on myIndexedAttribute is not used
    by the first statement, but it is by the second.
    How can I make Kodo use the faster statement?
    I've tried to use the "jdbc-indexed" tag, but without success so far.I know that in DB2 there is a function called "Run Statistics" which you
    can (and should do) on all tables involved in a query (at least once a
    month, when there are heavy changes in the tables).
    On information gathered by this statistics DB2 can optimize your queries
    and execution path's
    Since I was once involved in query performance optimizing on DB/2 I can
    say you can get improvements of 80% on big tables on which statistics are
    run and not. (Since the execution plans created by the optimizer differ
    heavily)
    Since I'm working now with Oracle as well, at least I can say, that Oracle
    has a featere like statistics as well. (go into the manager enterprise
    Console and click on a table, you will find a row "statisitics last run")
    I don't know how to trigger these statistics nor whether they would
    influence the query execution path on oracle (thus "swapping" tablenames
    by itself), since I didn't have time to do further research on thatmatter.
    But it's worth a try to find out and maybe it helps on you problem ?

  • ValidationTextField in IE6 IE7 problem, 1st keystroke ignored

    hi,
    i have a very interesting problem with "ValidationTextField"
    in IE6 and IE7.
    the validation on textfiels starts at 2nd keystroke, the
    first keystroke in the field is ignored,
    if iset the values by javascript like
    $('theMovieTitle1').value = $('theNewText1').innerHTML;
    $('theMovieTitle2').value = 'Hallo ';
    $('theMovieTitle3').value = 'Hallo ÖÄÜ';
    $('movieDescription').value = 'Austria Österreich
    Fräulein ';
    hmm??
    you can see/test it here:
    http://www.startup-service.com/Spry/demos/formsvalidation/testvalidate.html
    thanks
    herbert

    I don't see that behaviour on your example in IE7 or Firefox.
    If i highlight the text in the field and then begin typing the
    validation occurs immediately
    Can you explain how you are seeing it so i can try to
    recreate?

  • X6 Problem with Search ignoring Internet connectio...

    When using the search facility, even if my  priority internet connection is configured as WLAN,clicking on a link in the search engine result page instigates a packet based session instead of the default (WLAN) internet connection even though the WLAN was used to bring up the search engine results page!
    Seems search is ignoring the internet connection priority and establishing a packet data link and refuses to use WLAN.
    Anyone have this too or is it provider specific (orange uk)?
    Nokia X6 (16gb) firmware is v20.0.005.

    @rattyp:
    Settings>connectivity>destinations>internet>Delete all access points.
    And;
    Settings>connectivity>destinations>wap>Delete all access points.
    Previous Phones: 6600, 7610, 6230, 6230i, 1100, 1112, N70, N73, N95, N95 8GB, 5800XM, 5230, C5, iPhone 3GS, SE Xperia X10, N900, N8, SE Xperia Arc
    Current Phones: Nokia N9, iPhone 4

  • Compressor 2 problems. real and ignored by apple

    So my included support for the fcp studio is expired. I am interested in what Apple support tells people about the quality issues relating to compressor 2. I have done a dozen tests with the new software and can't get results close to ver 1. Do the apple customer support reps try to fix this when you call in and pay $800 for pro support. Why is it taking so long for this to be addressed? My ver 2 encodes have horrible halos around subjects , motion and contrast edges of difference produce the mosaic squares/ blockiness . I have been using 1.2 on another machine. Anybody happy with ver 2 encodes for dv to dvd. I have done multiple clean installs, tried many combinatins of presets and custom. It just doesnt look as good as ver 1.

    Yep, same here. Tried to mpeg2 encode a feature.
    Doing the same procedure as always but now with the
    new updates, FCP 5.03 and QT 7.03 I keep getting
    "Quicktime error 0". When I retry the compression I
    get the error at different times/points in the movie.
    One time I got it after 7 minutes and another time
    after 1 hour. Using the same source! I tried scanning
    through the Console logs but didn't see anything
    regarding "QT and error 0".
    Anyone else???
    Erik
    Hi there,
    Your problems are dead on with mine. I'm running FCP 4.1.1 and Comp 1.2.1 and QT 7.0.3 and I'm getting the compressor failed: quicktime error: 0 in Batch Monitor. So far, it has only let me encode a 19 sec. test piece successfully. However, it doesn't mind the audio encode part at all. But I've only done .aif jobs. And I always do those separately. That works fine. And yes, it has failed at various points on the same movie like yours. 30 min in to it the 1st attempt, then within 2 min. the second, and about that, so on. I thought it might have something to do with different saved versions of QT on my backup drive that was daisy chained at the time, but no difference when disconnected.
    OTH, I have a G4 Powerbook 1.33Ghz that has exact same versions of everything involved and it always works, but very slow of course. 132 min. .m2v only 2Pass VBR best encode took just over 24 hrs! However, the G5 (D2.0) did show the initial time estimate to be app. 12 hrs on a 98 min. 2 Pass VBR encode...before it failed. FWIW, an iDVD 5 job of 108 min completed in a little over 2 hrs start to finish with this machine. So Apple has some explaining to do.
    I might look into other encoders that may be out there for the Mac as I've talked with a pro here in town today that uses both hardware and software mpeg2 encoders and I told him the 24 hr thing above and he was shocked, "It shouldn't take near that long, that's crazy!" The best encoders (either type) out there he said take 1-2 times the length. He does not tool with Macs.
    So for now, I'm still at wicks' end.
    Darin

  • Hey guys apple need to sort this issue people are buying new phones here and the sound not playing from there phones like alot of people are having the same problem apple are ignoring it. I went to an apple shop for them to want 150 pounds of me

    Hey guys apple need to sort this volume problem out soon like there is guys who have just bought new phones and it is happening to there's.i went to an apple shop for them to tell me I had to pay £150 to get it replaced I don't want a replacement so clearly they know what the problem is apple need to review this site and act fast before they loose alot of customers.

    If you just purchased your iPhone, it will still be under warranty and Apple will replace it at no charge assuming that there hasn't been any damage due to abuse. So anyone with a new iPhone will be taken care of. If your iPhone is out of warranty and it has a hardware problem, then you have to pay the replacement charge regardless of what the problem is. Apple does not repair individual iPhones, they replace them. If you want the iPhone repared rather than replaced, you'll need to send the iPhone to an independent repair shop.
    Since you don't say what "volume problem" you're referring to, though, we can't say whether or not this is indeed a hardware problem. Perhaps if you'll detail the problem and what steps you've taken to try and correct it, someone can offer advice.
    Regards.

  • EWA problem - Session   is ignored due to unknown type EWALERT SolMan

    Hi All,
    We have newly defined early watch report for few systems and report is getting generated successfully in solution manager system for all except one system. The RFCs from solman to satellite system and vice versa are working fine; both connection and authorization tests are successful. SDCCN is active and refresh session job is also running. In job log; there are no errors; but when we check in task log in SDCCN; there is one warning "Session   is ignored due to unknown type EWALERT SolMan"
    Could you please advise how to resolve this error and generate EWA report for missing SCM system. Solution manager is on EHP1 basis package level 6 and the satellite system is SCM system SCM 7.0.
    I have tried deleting all sessions in satellite system and recreated; but no help.
    Thanks,
    Varun

    Hello
    Strange that you have applied the note 727998 and still the error persists.
    I would say let's re-check the note 727998 and try to re-implement it. In satellite system, sdccn rfc to the solman should be the 'Master'. In solman, the service definition rfc should be sdcc_oss. I hope all RFC connections are already working fine.
    Also go through the Note 216952 - Service Data Control Center (SDCC) - FAQ
    Thanks

  • Selectively ignore Problem Tags Dialog  while importing Tagged Text in CS5.5

    Hi
    My script imports tagged text and places it in selected frames. Due to the tag creation process used, I occasionally get a "Ignoring character level attribute termination tag "<cTracking:>" found without the corresponding character level attribute application tag "<cTracking:value>"
    Since it's not a problem I can ignore this specific error -- but I don't want to turn off ALL problem tag error checking because occasionally there are serious errors that I DO want to see.
    Is there a way to tell ID to ignore this specific error?
    Thanks
    Akiva

    UNfortunately the original ascii files uses a <D> code to return to the default settings -- and since that occasionally includes resetting the tracking to 0 I need to include the "<cTracking:>" tag.
    I could obviously fix it by adding a "<cTracking:0>" to all the codes -- but that seems like it could cause more problems.
    I can preprocess the ascii code to eliminate the excess codes -- but that increases processing time for something which happens only occasionally and is non-problematis in practice.
    Akiva

  • T500 Problems and experiences with Lenovo's technical support / EZServ

    After some issues and numerous calls to Lenovo's Technical Support, I just thought I would share my experiences here.
    First off, I currently own a ThinkPad T500, which was designed to be a replacement for my older ASUS laptop.
    While the ASUS laptop is still running okay, I have had a hard time trying to get the company to properly warranty the laptop. (they would make falsified claims that nothing is wrong with the laptop, so that they would not have to replace any parts - and when they do replace parts, they would simply create another problem and totally ignore the described problem.) The experiences were so stressful and disgusting such that I am sick of arguing with the company any further. My decision on the ThinkPad was based on that IBM/Lenovo is designed to serve business class customers and theoretically should have "business-class support". For this very reason, I have added the best warranty service they was offered to me at the time (3yr onsite + accidental). I am just guessing at that time I just wanted to get away from small companies and go to a company that would back their customers' laptops.
    As soon as I got my hands on a T500, however, I have noticed that something is wrong with the card reader. Apparently the reader on the machine would not read SDHC cards (it does read SD cards, however.) This is a problem because I only use SDHC cards and the machine was not able to read any of them. As the card reader controller is manufactured by the same manufacturer (Ricoh) and my older ASUS laptop was able to read SDHC cards, I thought something odd was going on with my machine. This was also based on the evidence that other T500 owners were able to read SDHC just fine.
    In addition to the card reader, I was also having troubles in which the machine would freeze whenever Nero Burning ROM (a CD/DVD authoring software) is used.
    My first support call to Lenovo was not that pleasant, given that I was placed on hold for 20 minutes when the rep was looking up specs for SHDC compatibility. The rep also said that they would not troubleshoot 3rd party software and would not help me on the issue. I was also told that I should also call back during "regular business hours (apparently until 5pm EST, or 2pm PST (my time)" (despite that the technical support hotline is open 24/7) so that a supervisor can handle my case. This makes it very difficult for me to get to someone with any authority as I am usually busy throughout the day until late afternoons (~4pm PST -> 7pm EST).
    Nevertheless, my second call to Lenovo was much more pleasant. The rep handled my case in a timely fashion and promptly provided replacement parts indicated by my problem. (Onsite motherboard replacement for the card reader, and a separate shipment for the DVD-RW drive). Turns out that the motherboard replacement did fix the SDHC issue, although the freezing problem was not caused by hardware failures, but rather a faulty driver that was corrected after Lenovo released an update months later on the Intel SATA controller drivers.
    Five months later, after having to use a broadband WWAN card for my work, I also started to notice there is something wrong with the broadband WWAN card. The card used is the Ericsson F3507g card (or the AT&T broadband WWAN option). Not only would the connection be very flaky, it would also drop connections fairly frequently. It seems that a SIM card pull to another card would result in a perfect connection and ever since I have been using an addon card instead to use the Internet. When I confronted Lemovo with the problem, the experience was worse than the first one. I have made at least six service calls to Lenovo and everytime the reps will waste my time with basic troubleshooting which I told them repeatedly that I have already done (I have even reinstalled the OS but it seems that it does not matter to the reps). Here are some things that are repeated over and over:
    1) Can you uninstall the Power Manager Driver and the Wireless WAN drivers and reinstall them?
    2) Can you go on to our website and download the WWAN drivers (document ID: MIGR-70000 - I even remembered this number since it was repeated so many times) - and the Power Manager Driver and reinstall it?
    3) Can you go to Device Manager (the rep would go step by step to it even though I told him I already know how to get there), and see if there are any "bangs" (exclamation marks) on any of the devices?
    4) Since you were able to connect to the AT&T network, then from the hardware standpoint there is nothing wrong with your card. This indicates there is a software configuration or a driver problem. (I have been trying to acquire the latest drivers but what I have was already the latest)
    5) Since your card could connect to the network, you should contact your provider for help. (AT&T blames it on the card)
    6) I'm sorry but there is nothing I can do to help you. You should contact your provider about the card (despite that I acquired the card from Lenovo and not from them)
    7) Are you sure that your card is activated properly? It doesn't show in our systems that the card has been activated properly. You will need to call both AT&T and the Lenovo activation hotline (whatever this is) to have your card work properly. (I have never heard of this before)
    Despite telling these reps I have an addon card that works perfectly and that I have done all the basic troubleshooting already, none of them are really willing to give me a replacement card. They would either request that I send my computer back to the depot (which I do not want to do since I use this laptop everyday and that's why I have onsite warranty), fail to help me, or transfer me to someone else that makes me do all the troubleshooting all over again. (Every call I made to Lenovo can be said to be composed of at least 20 minutes of basic troubleshootings with the end result of not being able to help)
    After having the case escalated to a team leader, I was told that someone would give me a call within a few hours since their team leader is with another customer. Result? No callbacks. Not within a day, nor two.
    Called Lenovo again, they apologized, but samething happened - supervisor on the line - promised another callback by a supervisor - but nothing, nada!
    Called Lenovo a third time - was again told the same thing, but I am not falling for that anymore - the rep finally agreed to give me a replacement, as well as as to send out a technician that would fix the LCD cover that is starting to get loose on one side.
    At that time, I was so frustrated and this reminds me of the pain I have went through with my old ASUS laptop and their grumpy customer service. It just seems to me that it has to be that difficult to have anything resolved or fixed. (What is especially frustrating is that the basic reps do not have any authority to make any decisions, 90% of the time I will need to be transferred to a supervisor of some sort before my case can be handled successfully - which is hard at times given that I only have until 2pm PST to call them)
    Received replacement, but did not fix issue. I have noticed that the GPS (which was part of the WWAN card) also has problems getting adequate signals for a 3D Fix. I have once again called Lenovo, this time raising the concerns with the GPS and seeking for help. Along with the basic troubleshooting, here is what Lenovo has to say about the GPS issue which frustrates me even more:
    1) uh, G..P..S? what GPS? (most reps I call say this, shows me that they either don't know what a GPS is or know that there is a dedicated GPS builtin on the Ericsson module. Perhaps they don't even know that ThinkVantage GPS existed)
    2) You will need to have active service in order to use GPS (I do have active service, but nevertheless that statement is false since a 3D fix can be successfully acquired with a dummy card - I guess the rep has no idea what he/she was talking about)
    3) That's a software issue - you need to call AT&T and tell them about the problem (Again, I guess the rep has no idea that the GPS is not linked to AT&T's networks - there is a dedicated GPS on the card that allows the ThinkVantage GPS tool to acquire proper GPS signals) (Also, why would AT&T troubleshoot a tool that Lenovo made called ThinkVantage GPS? - I don't get it)
    4) You need to uninstall, and then reinstall the Power Manager driver and also the latest WWAN drivers. (I did that, did not work - I have told them I even reinstalled the OS from scratch)
    5) You need to go uninstall, and then reinstall the Wireless LAN drivers (although I am talking about wireless WAN, not LAN)
    6) There are two wireless adapters in your laptop? Are you sure about this?
    7) LAN, or WAN? What are you referring to? (I guess some reps are not aware what WWAN means)
    After dealing with the numerous reps that have no idea what I was talking about, I have decided that I would just take the machine into depot, which would give me a chance to explain the other issues I have with the machine as well.
    Here are some of the issues I am having with my T500 right now (please comment if you have the same issues or perhaps have a possible solution/workaround for it)
    1. The left side of the LCD cover has a pressure point, which causes the cover to dislodge from the rest of the panel slightly when pressure is applied from the back side of the cover. (Could be caused by closing the lid, for example) - IBM technician applied some adhesive to the inside, which helped it from dislodging, although the left side is still a little filmsy compared to the right.
    2. This error randomly pops up at infrequent intervals: "Display driver igfx stopped responding and has successfully recovered."
    The latest GFX driver is installed and all updates have been installed. OS has been reinstalled but problems still occurs infrequently.
    3. This error also pops up at infrequent intervals: "Active protection is not functioning as system detected the abnormal sensor status. To diagnose the sensor device, run PC DOCTOR DOS - HDD Active Protection Test and if it still shows, contact Help and Service for repair." The only problem is, my laptop only came installed with PC Doctor 5 for Windows and when I run it"
    I ran a sensor check in DOS using the diagnostic CD and the sensor checked out okay. This error seems to happen mostly after I changed a setting in the Active Protection System software. (ex. changing the suspend time, etc)
    4. By default, the internal microphone does not work. In order for the internal microphone to work, the Advanced multi-stream mode must be enabled in the SmartAudio control panel. If both redirection options are enabled, the internal microphones and the speakers would then work normally. However, the hotkey controls on the ThinkPad would not control the right device when headphones are plugged in (since headphones are classified as its own device when the Advanced stream mode is enabled) - Mute and volume controls thus only controls the internal speakers' volume, and have no control whatsoever when headphones are plugged in.
    5. The brightness on the T500 is rather dim. I am not sure if that's how the monitor is, but I can hardly see anything unless the display brightness is close to the max setting. I have the 1680x1050 matte screen.
    6. The WWAN card does not make a stable connection to the network and ThinkVantage GPS does not acquire a 3D Fix even when under direct sky for >20 minutes. What is interesting though is that if I turn off the monitor screen (Fn+F3) or close to lid, the WWAN connection will be very stable and GPS will function normally (acquire fix usually within 2-3 minutes). If the monitor/screen is turned back on after a GPS Fix is acquied, the signals will quickly deteriorate and the updates will either become delayed/inaccurate or a fix will be lost. The brighter the screen, the harder it is to get a fix or a stable connection. (At the max setting it is almost impossible to get a fix while at the lowest brightness a very weak fix can be acquired - this is the case even many sattelites have been detected) Perhaps something with power consumption? Or the LCD drawing too much power?
    7. Although it does not happen very frequently, pressing Fn+F3 to turn off the display might cause the LCD to flicker on and off non-stop.
    8. This used to happen more with the older version of the Lenovo Fingerprint Software - but sometimes the software tends to get stuck at the welcome screen after returning from sleep/suspend/standby mode. The screen will remain at Please Wait forever and a hard restart will be required to get back into Windows.
    9. At frequent intervals the sound from the internal speakers would stop working and only the headphones would work. The sound might, however, come back if I leave the headphones plugged in long enough and unplug them. Restarting the Windows Audio service will temporarily restore audio but the same issue tends to happen again soon after that. Driver issue? (I am not sure if it's relevant, but I tend to put my computer to sleep instead of shutting it down)
    I have explained all of these issues on a piece of paper that I have included in my shipment to Flextronics. I have also included in big letters to make sure that they do not send the laptop to the address where they originally sent the "box" to. This is because I am only at that address a few days during the year and I don't plan to be there most days during the year.
    On the first day, it seemed that the status changed from "Machine being repaired" to "Hold for customer information".
    Apparently I missed a call from a number with an area code of 901 (which is Memphis, TN - I assume this is Lenovo's support center, since this is where the package was sent to). No messages were left on the voicemail. Called the number back, but was however told that I dialed the wrong number and no one has ever called me on this number (the lady on the phone was quite rude too) I then called the 800 EZServ number instead, turns out that they wanted one of my passwords which I gave them.
    The evening after I saw that the machine was successfully repaired and that it is being shipped back to me. However, no tracking number was provided. (There still isn't a tracking number on the EZServ status page)
    Hoping that my machine was repaired in good condition, I took a day off so I would be able to wait for UPS to deliver my laptop.
    Such that I have something to work with, I called the EZServ # and see if they had a tracking number for my shipment. At the same time, I asked what components were replaced and/or what components were installed to the system. To my surprise, they reimaged the whole system and I was not even informed about this at all! (I do understand I checked the Yes box in the problem description page, but I felt that it was important that the repair center let their customers know before their data will be destroyed - luckily I imaged my laptop right before I shipped it out so I have a copy of my data) In addition, it also seemed that they did not read any of the pages I enclosed in the shipment since nothing about the WWAN card was ever mentioned, despite special emphasis placed on this when I called Lenovo to have my computer sent back. It seemed that the rep only recorded one of the problems I listed above, which was unsatisfactory.
    The repair process was disappointing, as I have included in my problem description that I have previously tried reinstalling the whole OS from scratch and the problems did not go away. Reimaging the system will also probably have no effect on the problems I have described in the problem description.
    What is more surprising to me though was that they totally skipped the notation I put on to have the notebook shipped to an alternate address relative to the box address. To make this impossible to miss, I miss drew a big * and circled it many times so that anyone would see it if they were reading the sheet. I found out shortly after checking on the UPS website that the city the package was being shipped to was that of the wrong address, and not the city of that of the alternate address. I was horrified after knowing that the package would not arrive today but yet I still took a day off work. (How disappointing?!)
    Again and again, I called EZServ to see if I can have the package intercepted so it can be delivered to the right address. An intercept was placed on the package, although I received a call 30 minutes later from UPS saying that the intercept failed since the package has already been delivered. UPS also told me there is no way the people living there can simply return it and continue on with the intercept. Not happy with what I am hearing, I called EZServ and see if they can set up a pickup request to have the package delivered to my address. The first rep hanged up on me shortly she answered. The second rep called UPS, placed me on hold for more than 20 minutes, then hanged up on me. The third rep called UPS, and told me that they have esculated the case and that "UPS will handle everything", whatever that means. (she refused to disclose any more details). She told me that I would be receiving a call from her shortly on the details on the upcomings and promised that I would be receiving my laptop back. As with Lenovo, I didn't receive any callbacks. I called EZServ once more, and all they would say is tell me to wait. Sick and tired of waiting and calling and not getting anywhere, I drove 100 miles to where they shipped my laptop and picked it up there. I just don't know whether to trust the EZServ people anymore....
    As far as the laptop goes, I didn't have time to open the box or to test it yet. But I will let you all know once I have taken a look at the results.
    While the past experiences have been painful, I haven't lost all hope in Lenovo yet - although I really think that the customer service can really improve on certain levels.
    Please give me advices on what to do next!
    Thanks for reading this!
    Message Edited by swg0101 on 04-04-2009 11:02 AM

    Swg0101
    Thanks for sharing your details - it seems like we should focus on recovery of your system at this point.
    I've sent you a PM - I'll look for your private message response with your contact information and case details so we can look into this and get you some help.
    Best regards,
    Mark
    ThinkPads: S30, T43, X60t, X1, W700ds, IdeaPad Y710, IdeaCentre: A300, IdeaPad K1
    Mark Hopkins
    Program Manager, Lenovo Social Media (Services)
    twitter @lenovoforums
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Only 1 USB drive can be used at a time - others are ignored.

    This is a weird one - I can plug either of my 2 USB 3 external HD drives, or a USB 2 pen drive, but only one of them will be recognised (the first).
    E.g. if I plug in the WD Ellements USB3 HD first, then plug in a second USB 3 HD, or even a USB 2.0 pen drive, neither is recognised.  Only the first drive shows up.  Additional drives dont appear in "Disk Management", and no message pops up saying "installing drivers" or similar.  Only the first drive appears in the "safely remove hardware".
    I have never seen anything like this before.  I have tried rebooting etc.
    It could have been like this since I got the machine - this is the first time I have connected 2 drives.
    This makes copying from one drive to another impossible, and as I have completely run out of space on my internal HD, I am a bit buggered. I did buy an HD Bay adapter from Ebay, but it doesnt fit (it was cheap). 
    Any Windows experts who know where to start fixing such a problem?
    The ignored second drive does recieve power - it spins up and the light comes on - just nothing happens in Windows.

    My suggestion is that you go into Device Manager and uninstall all of the USB hubs/controllers, shutdown completely, and reboot with nothing attached to the USB ports. Windows will rediscover all of the controllers and reinstall the correct drivers. It sounds like there's been corruption in the cache that Windows uses.
    See how that works and let us know the outcome.
    W520, i7-2820QM, BIOS 1.42, 1920x1080 FHD, 32 GB RAM, 2000M NVIDIA GPU, Samsung 850 Pro 1TB SSD, Crucial M550 mSata 512GB, WD 2TB USB 3.0, eSata Plextor PX-LB950UE BluRay
    W520, i7-2760QM, BIOS 1.42 1920x1080 FHD, 32 GB RAM, 1000M NVIDIA GPU, Crucial M500 480GB mSata SSD, Hitachi 500GB HDD, WD 2TB USB 3.0

  • Printing problem with Pages and iWork

    This problem has been troubling me for months. I have an HP OfficeJet Pro K5400 colour inkjet printer. I have installed the latest s/w drivers so it's all up to date as far as I'm aware. The problem is that when printing from Pages - or indeed any iWork application, I select 'normal' print quality and 'plain' paper, but the printer refuses to print in anything other than 'high quality'. Even if I choose 'draft' quality, the printer prints high quality. I print lots of reports and never need 'high quality' besides which it takes 4 times longer to print and uses twice as much ink (and looks dreadful on the paper I use).
    Now here is the even odder thing, the printer prints as directed to Office 08, Mail, Safari and Text Edit. But I have the same problem of it ignoring my printing options in iPhoto and iCal. It also works fine from my wife's PC.
    HP has been truly hopeless in trying to sort out the problem. I have reinstalled the drivers many times and cleared out all kinds of files as directed by them. The problem originated in November last year when I upgraded to Leopard.
    I have installed the following drivers as directed by HP: HPInstaller_OJPK5400v9.7.1, HP v9.7Inkjet OS X 10.5 Update.
    Hope someone out there can help.

    Perhaps I should invest in another inkjet printer. Are you saying I should avoid HP and Epson? In which case how about Canon? Would that work or are there others you could recommend.
    Good question. IMHO there is no reason to reject any particular make and model of inkjet, but there is also no reason to suppose that the supplier will support that make and model beyond its short lifetime which is sort of supposed to be the lifetime of the version of the operating system for which the 'dumb' raster driver was developed. It's just the way it is, unfortunately.
    One should purchase the type of printer product that suits one's purpose. For proofing of copy a black and (single colourant) grayscale laser is superior to an inkjet. For proofing of photographs a colour inkjet which is correctly calibrated, correctly characterised, and for which colourants are correctly converted in the colour correction software and pagination software can hit within 1-2 dE of the print on a press operated with automatic colour control.
    Sorry to be so unhelpful, but there are four printers and shelves of software here, and it's not simple, unfortunately.
    hh

  • Recently, when I "check-in" using the Yelp app, it says it had a problem sharing with Facebook. Has anyone else experienced this?

    I am using the following versions:
    iOS 4.3.3
    Yelp 5.2.0
    Facebook 3400
    It used to work perfectly fine.  I would check in on Yelp and simultaneously it would post my check-in on Facebook.  But, for some reason, a few days ago it stopped working.
    I've tried the following:
    - Shutdown and booted up the phone.
    - Uninstalled and reinstalled both Yelp and Facebook apps.
    - Changed the email address and passwords I use on both Yelp and Facebook.
    - Removed the Yelp application from Facebook and added it again.
    In any case, none of my efforts have been successful.  When I attempt to check in, it checks in on Yelp, but then a message pops up stating "Facebook - Sorry, we had a problem sharing. Ignore or Retry".
    Any suggestions would be much appreciated!  Thanks!

    Since you've already done a good job of troubleshooting, try Yelp support here > http://www.yelp.com/contact?topic=support&subtopic=iphone
    Make sure and tell them what you have tried that didn't work.

  • "no sim" problem fixed

    I thought I'd share the fix to my problem for others that may be getting the same "no sim" message on their original iPhone.
    I purchased a second hand iPhone on ebay in the UK and ordered a pay as you go sim from O2 (the 'official' iPhone carrier here in the UK). The phone arrived last weekend, the sim on Tuesday.
    I put the sim in the phone (using the obligatory paper clip) and turned it on, to be met with a "no sim installed" message. I tried re-seating the sim, a sim from an Orange phone, restoring the iPhone from DFU mode, just about everything from this and other forums but no joy.
    I contacted O2 who told me to go to a shop. The shop was useless, they followed a script which involved them ringing the same help desk that had advised me to go to the shop, then suggested I contact Apple.
    I called Apple (in Ireland) and spoke to a very helpful guy who checked that I had done all of the things that I could. He eventually suggested that I go to the nearest genius bar as it sounded like a hardware problem.
    Yesterday I had a meeting in London so stopped in the Regent Street Apple store. I was seen within 10 minutes (even though I had not made an appointment). The genius diagnosed a hardware problem and changed the phone within 5 minutes, got me to activate it using my O2 sim and confirmed that I had data and voice connectivity.
    I now have a new, working iPhone. My advice to anyone with the same problem is to ignore the carrier support lines (who initially try to send you a new sim without actually understanding the problem) but go to an Apple store (but make an appointment first).

    See here:
    http://discussions.apple.com/thread.jspa?threadID=2477751&start=0&tstart=60

  • ADF BC Attribute with VC of CONTAINS Ignores Choice List on the LOV

    JDev 11g PS 1.
    Objects:
    - A view criteria with attribute defined as CONTAINS (literal)
    - An LOV on that attribute with a default list type UI hint of Choice List
    - ADF Faces query-table based in the VC
    Problem: query-table ignores the Choice List and renders an Input Text.
    Clue: Changing the operator to EQUALS causes the expected Choice List to be rendered in ADF BC.
    If this is documented in the online help or in this forum, it is escaping me.
    Anyone know the best workaround? Set the VC using EQUALS and switch it to CONTAINS in buildWhereClause() maybe?
    Thanks,
    Peter

    Frank,
    Thanks for the fast reply and for the bug entry. Unfortunately stopping work is not an option. We've come up with a solution using a query listener that replaces EQUALS with CONTAINS before the query and resets it to EQUALS after the query (otherwise the component draws the text item after the query).
    Maybe you can think of another solution to our requirement: display a single master record in the results table for a master-detail database view. For example, in an altered Oracle HR world, each DEPARTMENTS record is associated with multiple LOCATIONS records (through a DEPT_LOC table). A database view, DEPT_LOC_VW, based on that table also contains the location description and department description.
    Users want to select and then edit (on another page) a department by querying by location. If we represent DEPT_LOC_VW in the query-table component, we see multiple result rows for a single department and that is unnecessary confusion for the purpose of editing a single department.
    So we have created an alternative database view, DEPT_VW, based on DEPARTMENTS only, with an additional column -- LOC_LIST -- based on a function that returns a delimited list of all location codes for that department. This way, the user sees only one department record in the results table (although we lose the location description in the results -- not an issue) and is still able to query based on location.
    A LOCATIONS_VW view contains the location code surrounded with the delimiiter. The DeptVw view attribute LocList contains an LOV based on that database view.
    We want the view criteria to create a query condition:
    WHERE loc_list LIKE '%'||<selected location code>||'%'We thought about some kind of clever use of a subquery using a bind variable:
    SELECT...
    FROM  departments -- not DEPT_VW or DEPT_LOC_VW
    WHERE department_id IN (
       SELECT department_id
       FROM   dept_loc
       WHERE  location_id = NVL(:userSelectedLocationId, location_id);But that bind variable does not show in the view criteria selection list so it will not appear in the query component.
    Thanks again,
    Peter

  • Scared to get a Neo2 Plat with all the problems here!

    I plan on getting a Neo2 Plat, but scared from all these problems that people are asking about...I dont want problems :(

    Quote
    kweckstrom I'm still a little confused you claim to have been building computers since computers were practically invented but you coulden't figure out how to get a new 939 board up and running reliably?? It's really not that hard.. not like the P90 (the pentium that didn't run)
    1 you check for compatability,
    2 you buy your parts,
    3 you put it together..
    4 it runs.
    First of all, you should read an entire post before replying. You must not have read it, because I obviously DID figure it out.
    If you look at the compatibility list for the MSI board, it's abysmal. They test VERY few modules, and they haven't tested anything newer. Newer modules (like the newer Corsair XL's or Micron Ballistix) remain untested, and aren't likely to BE tested "officially". The Corsair 3200LLPT's worked fine in my P4 rig. They worked fine on the Gigabyte 939 NF3 board. One can reasonably expect that they would have worked fine on the MSI, after all it's the same chipset.
    But no, they didn't.  Not even after upgrading my power supply. Yet if I slap all this stuff together on the gigabyte board, all was fine and dandy, even on a PS that only delivered 18A on +12v.
    When I tried out the ballistix, I ran into even worse problems, even after ignoring SPD and upping voltage to it's rated 2.8v. But after upgrading my Power Supply, those problems went away and the system is now rock solid and stable.
    I'm an older guy with a wife and 2 kids, not to mention a full-time career as a network engineer. I don't have tons of nights and weekends to work through nagging compatibility or stability issues. That's why I say I wouldn't put myself through that mess again.
    Quote
    If your buying enthousiast grade parts expect to do a little research first because it's a fact there are more untested parts and there will be some incompatabilities but it's absolutely no different than any intel platform of the same age..
    Maybe you should have had someone with a little more time and skill build a system for you??
    Then you may have been able to aviod these PEBCAK errors lol
    Taking the high road, I see
    You should actually read my post next time. I solved the problem long ago. I'm simply saying that this platform is an annoying one because there are tons of incompatibilities that lead to stability issues. That's fact, and you aren't much of an engineer if you dispute it.
    What you say about intel systems of the same age is completely untrue. You'd have a hard time finding an intel board that's incompatible with DDR2 by any specific vendor. You'd also have a hard time finding any intel boards that have quirks with PCI Express cards. You'll also have a hard time finding any Power Supply compatibilities with LGA775, because a specific type of power supply is required (dual-rail with PCI-E headers). Sorry, you're wrong here.
    On the Athlon64-939, out of the gate you'll have problems with certain hardware.
    Take the Geforce 6800's.... The 6800's don't require 2D and 3D clock speeds to be identical on a P4 system. The bios by default doesn't normalize clock speeds for 2d and 3d, because a 425mhz 2D core value uses power needlessly and doesn't make much sense. But if you're on the Nforce3 platform, you're FORCED to set them identically or your 3d games will stutter and eventually freeze.
    There's people with issues on Nforce3 using Fast Writes. Some people have to disable them. You simply don't need to do this on intel.
    There's people with issues using Audigy cards (the original Audigy 1). They cause BSOD's. This doesn't happen on Intel systems. They work fine there. (Audigy 2 is unaffected).
    If someone's doing research into problems regarding the Athlon64 platform, i'm not going to blow sunshine up everyone's butt. I'm going to tell it like it is. I'm not married to any specific vendor, and i'm not someone who's going to insult someone's system building or research skills because he ran into problems with his latest build.
    These problems are VERY real, and if you read this board it's LOADED with people who are having issues with stability. You shouldn't be quick to blame their research or skill with a screwdriver.

Maybe you are looking for

  • Interface tables in HRMS (R12 Application)

    pl tell me Are there any interface tables in HRMS like payables, GL.  Please let me know

  • Did something change for laptop-mode-tools last time?

    Hi, when I start laptop-mode daemon, I always get the following errors in my everything.log Jul 8 14:45:46 archbox laptop-mode: Considering /dev/sda. Jul 8 14:45:46 archbox laptop-mode: /dev/sda5 not found in PARTITIONS. Jul 8 14:45:46 archbox laptop

  • Photos (thumbnails) in iPod Classic got "corrupted"

    I have no idea of how to describe with words, this is a shot of what's going on with my iPod. http://bdweb.no-ip.com/Images/iPodClassicPhotos.jpg It happens on some photos in my iPod, they can be viewed as normal pictures by clicking the centre butto

  • Need help getting app onto ipod touch

    my computer recently died on me so i've got a lend of my friends laptop at the moment. i authorised the computer to my ipod and then purchased a few apps but it wont let me put the apps i downloaded on my friends laptop (using my account of course) o

  • Using concatenate function to write report comments

    Hi am a high school teacher and have just got my first iPad - lovinging it!!! and am using Numbers and Pages on both my Mac at home and my iPad, but have hit a bit of a snage with using the concatenate funtion in my report generating spreadsheet. We