AQ: message_properties_t.attempts is not working!

Quote from Oracle documentation: "attempts - Returns the number of attempts that have been made to dequeue this message." This doesn't work, attempts is always 0! I tried this that way: dequeue the message with dequeue_mode := dbms_aq.REMOVE, and then do ROLLBACK. The message remains in the queue, but why doesn't attempts increase?

Hi
Sounds like GPU issue.
But try the graphic card driver update.
Use the latest available driver for your graphic card.
Furthermore clean the notebooks ventilators.
Dust and debris could prevent the cooling fans from rotating with best speed and this could lead to higher temperature which would lead to overheating.
Use a compressed air spray. I use it too and it helps to get rid of dust and debris.
If this does not help, then a graphic chip issue might be possible.

Similar Messages

  • Database querry & attempted update not working as expected????

    Hi All,
    I am posting my question here because it is related to a web application that I am developing. However as this question is database related I may not be posting in the correct location, please forgive me if this is the case.
    I recently developed a web application that uses JSP on the front end, servlets for processing, and a mysql database on the back end.
    I am using the Tomcat 5 software container, and instead of developing complex database pooling classes I am using the "DataSource" aspect of Tomcat. A relevant section of web.xml follows;
    <!-- Database Connection Pool Resources Defined -->
    <resource-ref>
          <res-ref-name>jdbc/craftstampindexes</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
    </resource-ref>
    <resource-ref>
          <res-ref-name>jdbc/stampData</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
    </resource-ref>
    <resource-ref>
          <res-ref-name>jdbc/craftsurvey</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
    </resource-ref>
    <resource-ref>
          <res-ref-name>jdbc/currencyconversion</res-ref-name>
          <res-type>javax.sql.DataSource</res-type>
          <res-auth>Container</res-auth>
    </resource-ref>I then access the contents of the databases defined above through a servlet, and then use the results (saved into JavaBeans from the Servlet) to build a JSP.
    I have had this code fully functional before. However recently I changed development computers and now the code does not appear to be functional.
    When I last had the code functioning information was correctly read from database tables and the tables were also successfully updated (where required).
    However now that I have changed development computers, tables are not updating. Strangely enough I am able to querry database tables, however I am not able to update them. Even though my servlet code tries to update the database tables I am not seeing any error messages, all I am seeing is the old contents of the database table, which are not being updated. I thought that I would have seen an error through Tomcat itself if Servlet code failed to update a table, however this is not happening.
    The only thing that I can think of which could be contributing to this error is the fact that on my old computer I had mysql installed onto a data patition called "D:\" drive, now I have installed mysql onto the standard Windows root directory "C:\" drive. This doesn't make it any easier for me to understand why tables are being read but not updated!!!
    Any help with this will be greatly appreciated, as I am truly at a loss. If I can provide further information which could be of assistance please don't hesitate to let me know.
    Thanks for your time.
    Kind Regards
    David Dartnell

    Hi Everyone,
    Thanks again for all of your assistance. I have not yet invested the time required to learn Log4j, however I did "lace" my code with println() statements to see what was going on through the console. This is my code as it looks now..
    package craftsurvey;
    import java.io.*;
    import java.sql.*;
    import javax.naming.*;
    import javax.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class CraftSurveyServlet extends HttpServlet
         private DataSource dataSource;
         public void init(ServletConfig config) throws ServletException
              super.init(config);
              try{
                   Context init = new InitialContext();
                   Context ctx = (Context) init.lookup("java:comp/env");
                   dataSource = (DataSource) ctx.lookup("jdbc/craftsurvey");
                   System.out.println("Finished looking up DataSource.");
              }catch (NamingException ex){
                   throw new ServletException("Cannot retrieve java:comp/env/jdbc/craftsurvey",ex);
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              doPost(request, response);
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              String surveyVote = request.getParameter("surveybutton");
              System.out.println("Entered doPost() method.");
              String[] finalSurveyResults = new String[5];
              String[] initialSurveyResults = new String[5];
              String newTableValue = "";
              int noOfBears = 0;
              int noOfCountry = 0;
              int noOfFloral = 0;
              int noOfHearts = 0;
              int noOfWording = 0;
              int totalVotes = 0;
              /* Printwriter included for testing purposes */
              response.setContentType("text/html");
              PrintWriter out = response.getWriter();
              Connection con = null;
              Statement stmt = null;
              ResultSet rs1 = null;
              ResultSet rs2 = null; 
              System.out.println("Database access code should be accessed now.");
              /* Database Query performed */
              try {
                   synchronized (dataSource) {
                       con = dataSource.getConnection();
                   String initialFetch = "SELECT bears, country, floral, hearts, wording FROM survey";           
                   stmt = con.createStatement();
                   System.out.println("Database Statement created.");
                   rs1 = stmt.executeQuery(initialFetch);
                   System.out.println("First Database querry performed.");
                   while(rs1.next())
                        initialSurveyResults[0] = rs1.getString("bears");
                        initialSurveyResults[1] = rs1.getString("country");
                        initialSurveyResults[2] = rs1.getString("floral");
                        initialSurveyResults[3] = rs1.getString("hearts");
                        initialSurveyResults[4] = rs1.getString("wording");
                   noOfBears = Integer.parseInt(initialSurveyResults[0]);
                   noOfCountry = Integer.parseInt(initialSurveyResults[1]);
                   noOfFloral = Integer.parseInt(initialSurveyResults[2]);
                   noOfHearts = Integer.parseInt(initialSurveyResults[3]);
                   noOfWording = Integer.parseInt(initialSurveyResults[4]);
                   if(surveyVote.equals("bears"))
                        noOfBears++;
                        Integer noOfBearsInt = new Integer(noOfBears);
                        newTableValue = noOfBearsInt.toString();
                   else
                   if(surveyVote.equals("country"))
                        noOfCountry++;
                        Integer noOfCountryInt = new Integer(noOfCountry);
                        newTableValue = noOfCountryInt.toString();
                   else
                   if(surveyVote.equals("floral"))
                        noOfFloral++;
                        Integer noOfFloralInt = new Integer(noOfFloral);
                        newTableValue = noOfFloralInt.toString();
                   else
                   if(surveyVote.equals("hearts"))
                        noOfHearts++;
                        Integer noOfHeartsInt = new Integer(noOfHearts);
                        newTableValue = noOfHeartsInt.toString();
                   else
                   if(surveyVote.equals("wording"))
                        noOfWording++;
                        Integer noOfWordingInt = new Integer(noOfWording);
                        newTableValue = noOfWordingInt.toString();
                   System.out.println("Survey table update about to be attempted.");
                   String updateSurvey = "UPDATE survey SET " + surveyVote + "= " + newTableValue;
                   stmt.executeUpdate(updateSurvey);
                   System.out.println("Survey table updated.");
                   String finalFetch = "SELECT bears, country, floral, hearts, wording FROM survey";
                   rs2 = stmt.executeQuery(finalFetch);
                   System.out.println("Final querry performed.");
                   while(rs2.next())
                        finalSurveyResults[0] = rs2.getString("bears");
                        finalSurveyResults[1] = rs2.getString("country");
                        finalSurveyResults[2] = rs2.getString("floral");
                        finalSurveyResults[3] = rs2.getString("hearts");
                        finalSurveyResults[4] = rs2.getString("wording");
                 catch(Exception ex)
                     out.println("<H2>Exception Occurred</H2>");
                     out.println(ex);
                   if (ex instanceof SQLException)
                        SQLException sqlex = (SQLException) ex;
                        out.println("SQL state: "+sqlex.getSQLState()+"<BR>");
                        out.println("Error code: "+sqlex.getErrorCode()+"<BR>");
                 finally{
                   try{
                        rs1.close();
                        rs2.close();
                   }catch(Exception ex){}                
                   try{
                        stmt.close();
                   }catch(Exception ex){}
                   try{
                        con.close();
                   }catch(Exception ex){}
              System.out.println("All table querries should have been performed now.");
              totalVotes = noOfBears + noOfCountry + noOfFloral + noOfHearts + noOfWording;
              SurveyBean surveyResultsBean = new SurveyBean();
              surveyResultsBean.setBearVotes(noOfBears);
              surveyResultsBean.setCountryVotes(noOfCountry);
              surveyResultsBean.setFloralVotes(noOfFloral);
              surveyResultsBean.setHeartVotes(noOfHearts);
              surveyResultsBean.setWordingVotes(noOfWording);
              surveyResultsBean.setTotalVotes(totalVotes);          
              request.setAttribute("surveyResults", surveyResultsBean);
              /* Control forwarded to JSP for display */
              String url = "/ferngully/surveyResults";
              ServletContext servCont = getServletContext();
              RequestDispatcher reqDispatch = servCont.getRequestDispatcher(url);
              System.out.println("Request dispatched to surveyResults.jsp.");
              reqDispatch.forward(request, response);          
    }The output I receive at the console as a result of running this code is the following:
    Finished looking up DataSource
    Entered doPost() method
    Database access code should be accessed now
    All table querries should have been performed now
    Request dispatched to surveyResult.jsp
    It looks as though the entire synchronized block of code is being completely skipped!
    If anybody could offer further assistance it will be greatly appreciated.
    Thanks for your time.
    Kind Regards
    David

  • Trial attempt did not work

    on the PDF I tried to convert to Word, the file was corrupted and could not be opened. If this is a typical experience I cetainly will not be upgrading

    Allenreesor1,
    I'm sorry for the issue you're having. No, this is not a typical experience. We would love to take a look at your PDF file and evaluate why this may be happening. If you're able, please complete our File Conversion Issue form and include a copy of the PDF. Please also include a link to this forum conversation, so we can link the two conversations. We'll be happy to take a look at this further for you.
    Dave

  • EditCellAt() with mouseclick is not working for first row of the jtable

    Hi All,
    I have extended JTable.changeSelection() & editCellAt() methods to force the text to select when focus is brought to the cell.
    I have a page which has both editable and non-editable columns. when I do a mouse click on FIRST ROW of the editable cell and type the value, The value is not displayed in the cell. when I click on any other editable field in the page, The typed value is displayed in the cell. In the first row of the cell, only the first attempt is not working. When I remove the editCellAt() call in changeSelection(), it works as expected.
    But, If I reach the FIRST ROW editable cell using TAB key instead of Mouse click and type the value, its working fine.
    Kindly suggest me what could be the problem in my code. I think something wrong in editcellat() or mouseclicked/released or focusgained in our versions of JTable or jtextfield.
    Kindly let me know if you need any more functions of my version of implementation.
    Thanks In advance.
    My JTable Version of editCellAt:
         public boolean editCellAt(int row, int column, EventObject e) {
              try {
                   if (getCellEditor() != null && !getCellEditor().stopCellEditing()) {
                        return false;
                   if (!isCellEditable(row, column)) {
                        return false;
                   if (isShowStarRow() /*&& !starRowAdded*/) {
                        VSDataControl ds = getDataSource();
                        if (ds != null) {
                             VSResultSet rs = ds.getResultSet();
                             if (rs != null) {
                                  if (row == rs.getRowCount()) { // This is the star row
                                       // Go to the last record
                                       if (row > 0) {
                                            try {
                                                 rs.getRowAt(row + 1, true);
                                                 rs.last();
                                            } catch (Exception ex) {
                                                 return false;
                                       if (ds.insert() == null) {
                                            return false;
                                       currentRow = row + 1;
                                       starRowAdded = true;
                   TableCellEditor editor = getCellEditor(row, column);
                   if (editor != null && editor.isCellEditable(e)) {
                        editorComp = prepareEditor(editor, row, column);
                        if ( editorComp instanceof VSGridChoice && lastKeyEvent != null ) {
                             VSGridChoice choice = (VSGridChoice) editorComp;
                             choice.handleMissingCharEvent( lastKeyEvent );
                        if (editorComp instanceof VSChoiceBase && lastKeyEvent != null ) {
                             VSChoiceBase hack = (VSChoiceBase)editorComp;
                             hack.addMissingChar(lastKeyEvent);
                        lastKeyEvent = null;
                        if (editorComp == null) {
                             removeEditor();
                             return false;
                        editorComp.setBounds(getCellRect(row, column, false));
                        add(editorComp);
                        editorComp.validate();
                        editorComp.requestFocus();
                        setCellEditor(editor);
                        setEditingRow(row);
                        setEditingColumn(column);
                        editor.addCellEditorListener(this);
                        return true;
                   return false;
              } catch (Exception ex) {
                   showValidationError(e, ex);
                   return false;
         public void changeSelection(int rowIndex, int columnIndex, boolean toggle, boolean extend)
              super.changeSelection(rowIndex, columnIndex, toggle, extend);
                    editCellAt(rowIndex, columnIndex);
                           if (getEditorComponent() != null)
                   if (getEditorComponent() instanceof CustomJTextField)
                        ((CustomJTextField)getEditorComponent()).selectAll();
          }

    i will suggest you to override your requetFocus()
    like.
    public void requestFocus()
            super.requestFocus(); // may be panel or container.
            textPane.setSelectionStart(0); // textpane is the editor for the cell.
            textPane.setSelectionEnd(textPane.getText().length());
        } Gud luck.

  • I am on windows 7 and I upgraded to 10.0.2 and now it will not open. I have removed firefox completely and uploaded it again and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version and once again nothing.

    I am on windows 7 and I upgraded to the newest verison of firefox and now it will not open. I have removed firefox completely and uploaded it again and that did not work. I then made sure it could get through my firewall and that did not work. So my latest attempt I removed firefox 10 again and uploaded the beta version hoping that would do it and once again nothing. It will not open at all. Please help - is there a live chat or a number to talk to someone at Firefox?

    I think when uninstalling you may also have to choose (tick) to delete the preferences and other personal data like the bookmarks, stored passwords etc. to erase completely. If you are installing afresh, please try right-clicking on the file and '''Run as administrator''' to install. And when uninstalling, please also make sure choose to delete all data and also manually delete any '''Mozilla''', '''Mozilla Firefox''' or '''Firefox''' from %appdata%, %localappdata% and %programfiles%. You can open a location by typing for eg. %appdata% in the '''Run''' box (Windows key + R). You may also have to check the '''VirtualStore''' folder in %localappdata%. Files in the VirtualStore can be problematic. I think a clean installation may help.
    [https://www.mozilla.org/en-US/firefox/new/ Firefox]
    [http://kb.mozillazine.org/Installation_directory Installation Folder]
    [http://kb.mozillazine.org/Profile_folder Profile Folder]
    Please note that using system restore would usually damage the Firefox installation.

  • ITunes RADIO is not working.  "iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again." Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so -  iTu

    iTunes RADIO is not working.
    “iTunes could not connect to the iTunes Store. Make sure your internet connection is active and try again.” Try as I may, as many as ten attempts, trying to connect after restart, after shutdown, nothing works. Just so …
    iTunes STORE not “connectable” with my otherwise perfectly-working internet connection, viable, up and running for all other uses.
    Simply put, firstly, I can't connect to the internet when I click on Radio.  People are quite suspicious that this is Apple incompetence or your company's famous arrogance for this commonly-suffered problem that you won't or “can’t” fix.
    Read the many web comments and you won’t be pleased with yourselves: the suspicion is that if you ruin internet radio on iTunes, Apple will somehow make more money on music downloads, etc. Bull.
    Also, thirdly, my old playlist of 20 or so internet radio stations in the Ambient category STILL PLAYS !
    Then fourth, I installed the latest available version of QuickTime Player 7.app Version 7.6.6 but it didn’t solve the problem either. I had QuickTime Player.app Version 10.2, but substituted what Apple website said was the latest, LOWER NUMBERED QuickTime Player version of 7.6.6
    Fifth, I can't connect to iTunes store no matter what I do or what user group's advice I try. So I can’t buy or download anything from iTunes. Bad for business.
    Sixth, I updated to the latest version of iTunes but this weird problem remains. All suggested Apple fixes or user group fixes are useless. Where is Apple’s famous technical competency, vaunted customer support?, and user-friendly product reputation? Get it back, please.
    Solve this problem of yours ASAP for us, your numerous disgruntled, dissatisfied customers of iTunes. You can do better, should, and really –in all fairness- must.
    ===============================================================
    NOTE:  no password for iTunes exists in my Keychain. Is this a problem?
    Apple ACCOUNT ID, and iTunes ID password, works but not to access iTunes with my healthy internet connection.
    Apple store id It works via direct internet connetion but not through iTunes.  Very strange.
    ===============================================================
    FYI, Hardware Overview:
      Model Name:                       MacBook Pro
      Model Identifier:                 MacBookPro8,2
      Processor Name:               Intel Core i7
      Processor Speed:               2 GHz
      Number of Processors:    1
      Total Number of Cores:    4
      L2 Cache (per Core):         256 KB
      L3 Cache:                            6 MB
      Memory:                              16 GB
      Boot ROM Version:            MBP81.0047.B27
      SMC Version (system):      1.69f4
      Serial Number (system):   C0*******F8V
      Sudden Motion Sensor:
      State:   Disabled
    Intel 6 Series Chipset:
      Vendor: Intel
      Product:            6 Series Chipset
      Link Speed:       6 Gigabit
      Negotiated Link Speed:           6 Gigabit
      Description:      AHCI Version 1.30 Supported
    M4-CT512M4SSD2:
      Capacity:           512.11 GB (512,110,190,592 bytes)
      Model: M4-CT512M4SSD2                         
      Revision:           040H   
      Serial Number: 0000000012330912E75A
      Native Command Queuing:    Yes
      Queue Depth:   32
      Removable Media:        No
      Detachable Drive:        No
      BSD Name:         disk0
      Medium Type:      Solid State
      TRIM Support:     Yes
      Partition Map Type:     GPT (GUID Partition Table)
      S.M.A.R.T. status:         Verified
      Volumes:
    disk0s1:
      Capacity:           209.7 MB (209,715,200 bytes)
      BSD Name:         disk0s1
      Content:            EFI
    disk0s2:
      Capacity:           511.25 GB (511,250,432,000 bytes)
      BSD Name:         disk0s2
      Content:            Apple_CoreStorage
    Recovery HD:
      Capacity:           650 MB (650,002,432 bytes)
      BSD Name:         disk0s3
      Content:            Apple_Boot
      Volume UUID:   600737FB-7A29-3BAE-859E-CBFE2E90C39A
    <Edited by Host>

    This my sound too simple, but I just kept clikning on the arrow next to the selected music and it finally "Kicked" in.
    I live in Europe ,So Be persistent and don't give up !  Aug. 2013

  • I am attempting to upload multiple photos on a macpro from a cd.  I am used to a pc.  I tried using the command button to select multiples but it does not work.  Please advise

    I am attempting to upload multiple photos on a mac pro from a cd.  I have tried holding the "command"button down to select multiple photos but it does not work.  Please advise.  Thanks,John

    why not sort by (name, date, etc) and Click on 1st and Shift-Click on last.
    Might work better to copy or import to a project folder.
    https://discussions.apple.com/community/ilife/iphoto
    http://www.apple.com/support/iphoto

  • When I attempt to updates apps on my ipad my password does not work. I tried updating them one at a time and it still doesn't work. I've reset my password and I can use the new password and update apps on my PC but not on my ipad. Why?

    When I attempt to update apps on my ipad my password does not work, even when I attempt to update each app separately. When I change the password it works on my PC but not on my ipad.  Why?

    Try logging out of your account on the iPad by tapping on your id in Settings > Store and then log back in and see if it then works.

  • I attempted to perform the itunes update on two different PCs and itunes will no longer open and I received a message to reinstall itunes. The reinstall did not work and I now receive a Runtime error message (R6034) re: library loading incorrectly. Help?

    I attempted to perform the itunes update on two different PCs. Itunes will no longer open and prompted me to reinstall itunes.  The reinstall did not work after several attempts and I received an error: "Runtime error R6034. An application has made an attempt to load the C Runtime library incorrectly. Please contact the application's support team for more information."  Has anyone else had this issue? How can I resolve it?

    I've been having the same exact problem this morning, and from the looks of it a lot of other people are posting about this issue, so I don't know if it's maybe something wrong with the download but I'm just relieved that it seems to be that instead of a corruption issue with my windows installation.  I'm just wondering how long this will take to be resolved.

  • ITunes Artwork Screen Saver Not Working. Empty black screen. Garbage collection, memory leak issue? ... malloc: auto malloc[]: attempted to remove unregistered weak referrer 0x ...

    Hey Smart Apples,
    My iTunes Artwork screen saver is not working. After reboot, then selecting iTunes Artwork in System Preferences, just a black screen appears in the preview, as well as when pressing Test, and when allowing the screen saver to start on it's own. The error message in Console says...
    11-10-13 2:13:18.304 AM [0x0-0x4f04f].com.apple.systempreferences: System Preferences(540,0x7fff77286960) malloc: auto malloc[540]: attempted to remove unregistered weak referrer 0x102021a10
    11-10-13 2:13:18.305 AM [0x0-0x4f04f].com.apple.systempreferences: System Preferences(540,0x7fff77286960) malloc: auto malloc[540]: attempted to remove unregistered weak referrer 0x102021a60
    also...
    11-10-13 3:31:38.722 AM [0x0-0x65065].com.apple.ScreenSaver.Engine: ScreenSaverEngine(727,0x7fff77286960) malloc: auto malloc[727]: attempted to remove unregistered weak referrer 0x109eac410
    11-10-13 3:31:38.723 AM [0x0-0x65065].com.apple.ScreenSaver.Engine: ScreenSaverEngine(727,0x7fff77286960) malloc: auto malloc[727]: attempted to remove unregistered weak referrer 0x109eac460
    The memory address location at the end of each line is different everytime I preview the screen saver.
    I've tried...
        deleting ~/Library/Preferences/ByHost/com.apple.screensaver.* files
        making sure each album has a cover in iTunes
        running Get Album Artwork in iTunes
        recreating symbolic link ~/Music/iTunes/iTunes Music -> ~/Public/iTunes Music/
    ... but doesn't help.
    All other screen savers work... my usual is Flurry, and it works too, but gives invalid framebuffer operation under Console.
    Nothing running/checked under Sharing.
    Activity Monitor:
    0     kernel_task    root    1.5    66    355.9 MB    Intel (64 bit)    124.7 MB   
    1     launchd    root    0.0    3    1.6 MB    Intel (64 bit)    38.7 MB   
    41     mds    root    0.0    4    104.4 MB    Intel (64 bit)    260.8 MB   
    93     WindowServer    _windowserver    9.0    5    81.5 MB    Intel (64 bit)    31.6 MB   
    26     coreservicesd    root    0.0    4    26.8 MB    Intel (64 bit)    37.3 MB   
    44     loginwindow    [userhandle]    0.0    2    22.7 MB    Intel (64 bit)    19.2 MB   
    152     com.apple.dock.extra    [userhandle]    0.0    2    12.0 MB    Intel (64 bit)    32.2 MB   
    19     opendirectoryd    root    0.0    8    8.3 MB    Intel (64 bit)    25.3 MB   
    192     applepushserviced    root    0.0    4    7.1 MB    Intel (64 bit)    29.9 MB   
    11     UserEventAgent    root    0.0    4    6.8 MB    Intel (64 bit)    41.7 MB   
    23     securityd    root    0.0    4    6.6 MB    Intel (64 bit)    32.9 MB   
    57     socketfilterfw    root    0.0    3    6.3 MB    Intel (64 bit)    31.7 MB   
    60     lsd    root    0.0    3    5.9 MB    Intel    32.8 MB   
    15     fseventsd    root    0.0    29    5.3 MB    Intel (64 bit)    45.9 MB   
    14     configd    root    0.0    7    5.2 MB    Intel (64 bit)    27.1 MB   
    144     coreaudiod    _coreaudiod    0.0    3    5.2 MB    Intel (64 bit)    32.6 MB   
    239     aosnotifyd    root    0.0    2    4.6 MB    Intel (64 bit)    28.2 MB   
    552     VDCAssistant    root    0.0    4    4.6 MB    Intel (64 bit)    30.2 MB   
    607     xpchelper    [userhandle]    0.0    2    4.4 MB    Intel (64 bit)    29.6 MB   
    37     revisiond    root    0.0    4    3.5 MB    Intel (64 bit)    27.9 MB   
    10     kextd    root    0.0    3    3.5 MB    Intel (64 bit)    15.0 MB   
    42     mDNSResponder    _mdnsresponder    0.0    3    3.4 MB    Intel (64 bit)    40.9 MB   
    30     warmd    nobody    0.0    3    3.2 MB    Intel (64 bit)    23.2 MB   
    71     netbiosd    _netbios    0.0    2    2.9 MB    Intel (64 bit)    40.8 MB   
    594     cupsd    root    0.0    3    2.9 MB    Intel (64 bit)    41.4 MB   
    600     taskgated    root    0.0    3    2.7 MB    Intel (64 bit)    28.6 MB   
    31     usbmuxd    _usbmuxd    0.0    3    2.6 MB    Intel (64 bit)    40.6 MB   
    591     writeconfig    root    0.0    2    2.5 MB    Intel (64 bit)    29.3 MB   
    33     special_file_handler    root    0.0    3    2.3 MB    Intel (64 bit)    21.1 MB   
    28     ntpd    root    0.0    1    2.0 MB    Intel (64 bit)    18.6 MB   
    204     filecoordinationd    root    0.0    2    1.9 MB    Intel (64 bit)    21.7 MB   
    20     powerd    root    0.0    3    1.8 MB    Intel (64 bit)    29.6 MB   
    48     hidd    root    1.0    5    1.8 MB    Intel (64 bit)    22.7 MB   
    55     autofsd    root    0.0    2    1.7 MB    Intel (64 bit)    21.6 MB   
    106     logind    root    0.0    2    1.6 MB    Intel (64 bit)    21.1 MB   
    94     CVMServer    root    0.0    1    1.6 MB    Intel (64 bit)    21.8 MB   
    17     distnoted    root    0.0    2    1.6 MB    Intel (64 bit)    21.1 MB   
    13     diskarbitrationd    root    0.0    3    1.6 MB    Intel (64 bit)    21.7 MB   
    608     activitymonitord    root    2.5    1    1.4 MB    Intel (64 bit)    28.6 MB   
    109     launchd    [userhandle]    0.0    2    1.3 MB    Intel (64 bit)    38.1 MB   
    546     Firefox    [userhandle]    1.5    21    389.6 MB    Intel (64 bit)    321.6 MB   
    551     Firefox Plugin Process (Shockwave Flash)    [userhandle]    0.0    5    22.4 MB    Intel (64 bit)    37.1 MB   
    540     System Preferences    [userhandle]    2.1    8    82.5 MB    Intel (64 bit)    321.8 MB   
    143     Finder    [userhandle]    0.2    8    61.8 MB    Intel (64 bit)    171.6 MB   
    328     mdworker    [userhandle]    0.0    4    48.0 MB    Intel (64 bit)    69.6 MB   
    140     Dock    [userhandle]    0.0    3    40.6 MB    Intel (64 bit)    35.5 MB   
    520     Console    [userhandle]    0.0    3    35.2 MB    Intel (64 bit)    41.5 MB   
    605     Activity Monitor    [userhandle]    12.1    3    23.6 MB    Intel (64 bit)    35.2 MB   
    142     SystemUIServer    [userhandle]    0.0    2    21.3 MB    Intel (64 bit)    50.5 MB   
    389     GrowlHelperApp    [userhandle]    0.0    3    18.2 MB    Intel (64 bit)    37.5 MB   
    207     AppleSpell.service    [userhandle]    0.0    2    13.0 MB    Intel (64 bit)    36.6 MB   
    155     ubd    [userhandle]    0.0    7    11.2 MB    Intel (64 bit)    26.8 MB   
    593     Image Capture Extension    [userhandle]    0.0    2    10.8 MB    Intel (64 bit)    33.0 MB   
    150     fontd    [userhandle]    0.0    2    10.6 MB    Intel (64 bit)    28.4 MB   
    166     Little Snitch UIAgent    [userhandle]    0.0    3    9.0 MB    Intel    30.8 MB   
    167     Little Snitch Network Monitor    [userhandle]    2.3    4    8.6 MB    Intel    31.9 MB   
    131     UserEventAgent    [userhandle]    0.0    3    8.4 MB    Intel (64 bit)    41.3 MB   
    141     talagent    [userhandle]    0.0    2    7.0 MB    Intel (64 bit)    30.5 MB   
    160     imagent    [userhandle]    0.0    4    5.4 MB    Intel (64 bit)    15.5 MB   
    290     iTunes Helper    [userhandle]    0.0    3    3.6 MB    Intel (64 bit)    29.7 MB   
    115     distnoted    [userhandle]    0.0    4    3.3 MB    Intel (64 bit)    25.3 MB   
    559     lsboxd    [userhandle]    0.0    2    2.7 MB    Intel (64 bit)    30.8 MB   
    304     cookied    [userhandle]    0.0    2    1.9 MB    Intel (64 bit)    30.3 MB   
    165     AirPort Base Station Agent    [userhandle]    0.0    4    1.9 MB    Intel (64 bit)    22.8 MB   
    154     warmd_agent    [userhandle]    0.0    2    1.7 MB    Intel (64 bit)    22.8 MB   
    146     pboard    [userhandle]    0.0    1    1.5 MB    Intel (64 bit)    19.7 MB   
    35     stackshot    root    0.0    3    1.1 MB    Intel (64 bit)    21.6 MB   
    12     notifyd    root    0.0    3    1.0 MB    Intel (64 bit)    25.3 MB   
    46     KernelEventAgent    root    0.0    3    988 KB    Intel (64 bit)    29.2 MB   
    584     launchd    _spotlight    0.0    2    784 KB    Intel (64 bit)    38.1 MB   
    586     mdworker    _spotlight    0.0    3    5.6 MB    Intel (64 bit)    22.9 MB   
    587     distnoted    _spotlight    0.0    2    1,008 KB    Intel (64 bit)    30.3 MB   
    16     syslogd    root    0.0    4    764 KB    Intel (64 bit)    39.2 MB   
    50     dynamic_pager    root    0.0    1    740 KB    Intel (64 bit)    9.4 MB   
    173     appleprofilepolicyd    root    0.0    1    724 KB    Intel (64 bit)    9.4 MB    
    59     memcached    daemon    0.0    6    640 KB    Intel (64 bit)    29.0 MB   
    Does anyone have a solution?
    Environment: Mac OS X (10.7.2), Macbook Pro (late 2008)

    So it turned out that the cause of the problem wasn't as complicated as I thought...
    I had a few songs that were not added to the iTunes library, instead referenced from other locations on my hard drive.
    Specifically, if you bring up the Get Info window of a song, under Summary > Where, it may show a different path than your usual iTunes Media folder location, set under Preferences.
    E.g. Where: ~/Desktop/downloaded_song.mp3
    I guess, this happens when you drag a song into your iTunes instead of adding it to the library, and apparently, causes problems with the Artwork Screen Saver.
    Solution:
    To correct it,
    For those songs, go to File > Add to Library...
    Then find and select the song file.
    That's all I had to do to get the screen saver working... All your songs have to be added to your iTunes Library.
    I think my brother was messing around with my playlist... I hope Apple nails a better way to lock-unlock/secure OS X soon (proximity sensor, biometric 3D face recognition, unique voice recognition, soul recognition, etc.).
    That malloc error message still shows up; that must be an unrelated issue with the screen saver.
    I hope this helps out all those suffering through the same issue with their iTunes Artwork Screen Saver.

  • My Yahoo Mail is not Working on any of my Apple devices,  It attempts to download new email but then stops.  Any ideas?

    My Yahoo Mail is not Working on any of my Apple devices,  It attempts to download new email but then stops.  Any ideas?

    I, too, am having a problem with my Yahoo email account on my first generation IPad. I can't download my emails to my IPad from the server. The IPad looks like it's trying to download them but can't do it. I am able to send emails from my IPad with my Yahoo account.
    This problem started yesterday, Aug., 25th, the day after I uploaded the last update from Apple. I am able to set up another email account through Sbcglobal that will download my emails to my IPad but it is not sync'ed with my desktop mail which creates a mess when I move or delete emails.
    I've tried deleting my Yahoo account and then adding it back. Also I've reset my IPad and I've done a full restore.
    I think it has something to do with the last update, which I believe was a security update, which may have reset the firewall. That's just a guess.
    Has anyone figures out anything else?

  • I am able to login to the Web, but when attempt to run the installer, it ask for a password and it does not work the password I used to login in the web.

    I am new to Adobe Cloud, received the invitation from Adobe, create my account and I am able to login to the web. When Attempted to download Photoshop desktop, I was asked for Name and Password, the name was populated but I have to enter the password. I am using the password I entered at registration but it does not work and the Installer does not run.
    I have a MacBook Pro with OS version 10.9.3.
    Thanks,
    Carlos

    I figured out, the Installer need the username and password for the computer OS.

  • Adobe Flash Player 11 NOT working after several attempts to download, uninstall, & reinstall

    I have problems with Adobe Flash Player 11 NOT working after several attempts to download, then uninstall, & re-install. 
    I uninstalled the previous versions of Adobe Flash Player from my computer PRIOR to attempting to install the new 11 version, so now I'm unable to view videos, etc., 
    I'm using Windows Vista 32 bit, Internet Explorer 9.0 (which I closed when I got error messages during Adobe Flash Player 11 Installation.  I've  disabled my AVG -Virus also during the installation of Flash Player 11.   
    FYI, I'm not computer savvy so the YouTube video by Adobe Tech was too complicated to follow AND I'm unable to view  (DUH!) it since I have no Flash Player program installed (doesn't make sense!) .
    Thanks for keeping it simple (KISS for me).

    I've tried uninstalling and reinstalling some 30 times now ..rebooting, you name it.
    I haven't been able to use flash since Adobe kindly shoved that latest update down my computer's throat.
    Right after getting the 'successful' installation message I restart IE9 ..go to my channel on youtube and immediately get the message:
    The Adobe Flash Player is required for video playback.
    Get the latest Flash Player
    I tried Chrome and on two or three it worked but then even after closing out of them ..Chrome slowed down to a crawl and finally informed me that Flash had stopped working.
    This has entirely wasted 3 nights of my time. It is 2:30 am and I should have had at least 2hours sleep already to rise at 6:30 but no, thanks this I'm still up and no doubt millions of other computer users are having just as much fun.. Everyone I know that allowed the updates to install ..is having the same problem ..Chrome/IE9/Firefox ...you can truly call it Adobe's Universal Cluster ...
    I live with Adobe. At work we have 6 fully Adobied LR4/CS5 & 6/InDesign workstations. I'm a photographer using nothing but Adobe products and quite frankly I feel this is the worst treatment you have ever given your customers.
    Please stop the CYA and just fix the damm thing! I realize you didn't write it Chris but surely you can get Adobe management to address this instead of just trying to get their users to try and debug it for the airheads that released it. Has anyone stopped to consider the financial damage being done due to videos not playing the ads that support the sites and no doubt stream revenue to Adobe? These guys have rolled the online experience back 5 years minimum and Adobe will probably pay the price for it. Re-issue a working version and go back to the drawing board!

  • Hi pls help me my iphone is forest i update but  after my iphone is  devices open is not working i click but sim card installed , attempting to activate this one coming pls help me answer me

    hi pls help me my iphone is forest i update but  after my iphone is  devices open is not working i click but sim card installed , attempting to activate this one coming pls help me answer me

    Sounds like your phone was hacked to use with your carrier.  Updating it has relocked the phone to it's original carrier.  You will not get the phone working again without a SIM from the original carrier.

  • When I started my PC this morning I got a pop-up message stating that CC has damaged files and required downloading. Indeed, CC did NOT work and subsequent attempts to download CC never got beyond the initial installer box. I am at my wits end here. Have

    When I started my PC this morning I got a pop-up message stating that CC has damaged files and required downloading from www.adobe.com/go/adobecreativecloudapp. Indeed, CC did NOT work and subsequent attempts to download CC never got beyond the initial installer box. The posted link also appears to be bogus I am at my wits end here. Have other users experiences this issue? Is this a clever intrusion?

    Please ensure you have the latest version of the Creative Cloud app installed
    http://helpx.adobe.com/creative-cloud/release-note/cc-release-notes.html
    We also have this solution for the having to sign in on every product launch
    http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html
    You can also try uninstalling & re-installing the CC.
    Regards
    Rajshree

Maybe you are looking for