the Max version data

Hello

need your help in obtaining data from max version and I have two 10g (10.2.0.4) and 11 GR 2

DB version: 10g and 11 g 2

Table:
=========
 

user_charachters 
========== 
user_id number 
u_version number 
charachters number 


user_id and u_version has indexes and table has about million rows and  growing 
examples of data
===========
 

user_id version characters 
2345 1 25 
2345 2 30 
456789 1 78 
33333 1 45 
33333 2 67 
33333 3 23 
I'm trying to get the characters in the max version of each user.here is the output example
 


user_id version characters 
2345 2 30 
456789 1 78 
33333 3 23 
I have the following query and its taking forever, I was wondering is there a different approach / idea I should try
 


select a.*                                                 
from    user_charachters a                                    
where      a.user_id || a.version = (select b.user_id|| max(b.version)    
                                         from   user_charachters b   
                                         where  b.user_id = a.user_id 
                                         group by b.user_id); 
Please notify

Published by: nydba on August 1, 2011 10:57
with user_characters as (
                         select 2345 user_id,1 version,25 characters from dual union all
                         select 2345,2,30 from dual union all
                         select 456789,1,78 from dual union all
                         select 33333,1,45 from dual union all
                         select 33333,2,67 from dual union all
                         select 33333,3,23 from dual
                        )
-- end of on-the-fly data sample
select  user_id,
        max(version) version,
        max(characters) keep(dense_rank last order by version) characters
  from  user_characters
  group by user_id
/

   USER_ID    VERSION CHARACTERS
---------- ---------- ----------
      2345          2         30
     33333          3         23
    456789          1         78

SQL> 

SY.

Tags: Database

Similar Questions

  • get the max value date in plsql

    My data in the table are like that

    Date Col1, Col2
    01/01/2012 A01 100
    01/01/2012 B01 200
    01/01/2012 C01 200

    01/02/2012 C01 100

    01/03/2012 B01 100


    I want to show the result of the query with carry on data like this

    01/01/2012 A01 100
    01/01/2012 B01 200
    01/01/2012 C01 200

    01/02/2012 A01 100
    01/02/2012 B01 200
    01/02/2012 C01 100

    01/03/2012 A01 200
    01/03/2012 B01 100
    01/03/2012 C01 100

    Please help me.

    Hello

    Welcome to the forum!

    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the results desired from these data.
    Explain, using specific examples, how you get these results from these data.
    Always say what version of Oracle you are using (for example, 11.2.0.2.0).
    See the FAQ forum {message identifier: = 9360002}

    I think you want an outer join partitioned (to make sure that all dates are represented for all values in col1) and the analytical LAST_VALUE function, like this:

    WITH     all_dates     AS
    (
         SELECT DISTINCT  dt     -- DATE is not a good column name
         FROM              table_x
    )
    SELECT       a.dt
    ,       x.col1
    ,       LAST_VALUE (col2 IGNORE NULLS) OVER ( PARTITION BY  x.col1
                                                    ORDER BY      a.dt
                                   )           AS col2_shown
    FROM             all_dates  a
    LEFT OUTER JOIN      table_x    x  PARTITION BY  (x.col1)
                                   ON  x.dt = a.dt
    ;
    

    If you would care to post CREATE TABLE and INSERT statements for your sample data, and then I could test this.

  • Stuck with trying to get the max of the table version number

    We have a custom table that contains information on the work packages installed.

    Whenever a package is updated, a new entry is added to the table, with an incremented version number.

    Some examples of data:
    GET sampledata
    WITH sampledata AS
         (SELECT 'TEST0003' NAME
               , '1.1' VERSION
               , 'Installed Work Packet TEST 111' description
               , '18-Jul-2003' install_date
            FROM DUAL
          UNION ALL
          SELECT 'TEST0003'
               , '1.2'
               , 'Installed Work Packet TEST 111'
               , '18-Aug-2003'
            FROM DUAL
          UNION ALL
          SELECT 'TEST0003'
               , '1.3'
               , 'Installed Work Packet TEST 111'
               , '18-Sep-2003'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.1'
               , 'Something Else'
               , '01-Jul-2009'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.2'
               , 'Something Else'
               , '10-Aug-2009'
            FROM DUAL
          UNION ALL
          SELECT 'THIS2003'
               , '2.3'
               , 'Something Else'
               , '15-Nov-2009'
            FROM DUAL)
    SELECT *
      FROM sampledata;
    I would like to know how to return only the most recent version of each package of the table, but I can't get out.

    For example, the sample data above, I would like to only include:
    NAME               VERSION                DESCRIPTION                            INSTALL_DATE
    ---------------------------------------------------------------------------------------------------
    TEST0003           1.3                    Installed Work Packet TEST 111         18-Sep-2003
    THIS2003           2.3                    Something Else                         15-Nov-2009
    I see she has to somehow select MAX (version) for each different "NAME", but can't get my head around the syntax. What I have to GROUP BY "NAME" and then select the MAX (VERSION) of that?

    Any advice much appreciated.

    Thank you

    Thanks for the sample date!
    Yet another version:

    SQL>WITH sampledata AS
      2       (
      3          SELECT 'TEST0003' NAME, '1.1' VERSION, 'Installed Work Packet TEST 111' description,
      4                 '18-Jul-2003' install_date
      5            FROM DUAL
      6          UNION ALL
      7          SELECT 'TEST0003', '1.2', 'Installed Work Packet TEST 111', '18-Aug-2003'
      8            FROM DUAL
      9          UNION ALL
     10          SELECT 'TEST0003', '1.3', 'Installed Work Packet TEST 111', '18-Sep-2003'
     11            FROM DUAL
     12          UNION ALL
     13          SELECT 'THIS2003', '2.1', 'Something Else', '01-Jul-2009'
     14            FROM DUAL
     15          UNION ALL
     16          SELECT 'THIS2003', '2.2', 'Something Else', '10-Aug-2009'
     17            FROM DUAL
     18          UNION ALL
     19          SELECT 'THIS2003', '2.3', 'Something Else', '15-Nov-2009'
     20            FROM DUAL)
     21  SELECT   NAME, MAX(VERSION), MAX(description)KEEP (DENSE_RANK FIRST ORDER BY VERSION) AS description,
     22           MAX(install_date)KEEP (DENSE_RANK FIRST ORDER BY VERSION) AS install_date
     23      FROM sampledata
     24  GROUP BY NAME;
    
    NAME     MAX DESCRIPTION                    INSTALL_DAT
    -------- --- ------------------------------ -----------
    TEST0003 1.3 Installed Work Packet TEST 111 18-Jul-2003
    THIS2003 2.3 Something Else                 01-Jul-2009
    

    URS

  • using the max function

    I'm trying to shoot 1 row for each document_id, it should be the max version, but im getting lines in double for some reason any.

    ----------
    create the table max_test

    (
    'PROJECT' VARCHAR2 (50 BYTE),
    "DOCUMENT_ID" VARCHAR2 (50 BYTE),
    VARCHAR2 (5 BYTE) 'VERSION',
    "CREATE_DATE' VARCHAR2 (DATE),
    VARCHAR2 (DATE) 'UPDATE_DATE ',.
    VARCAHR2 (100 BYTE) "MANAGER_NAME".

    )


    --------------

    INSERT ALL
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 500,1, 18, March 1, 12 ', March 1, 12 ', ' BOB JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 500,2, 6, March 1, 12 ', March 1, 12 ', ' STEVE JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 500,3, 2, March 1, 12 ', March 1, 12 ', ' MIKE JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 501,4, 5, March 1, 12 ', March 1, 12 ', ' MARK JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 501,5, 1, March 1, 12 ', March 1, 12 ', ' TOM JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 502,6, 20, March 1, 12 ', March 1, 12 ', ' EVE JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 502,7, 3, March 1, 12 ', March 1, 12 ', "CHRIS JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 503,8, 1, March 1, 12 ', March 1, 12 ', ' LARRY JONES)
    IN max_test (PROJECT, DOCUMENT_ID VERSION, CREATE_DATE, UDPATE_DATE, MANAGER_NAME) VALUES (' 503,9, 2, March 1, 12 ', March 1, 12 ', ' JOE JONES)
    ;



    Select distinct (project), max (version), document_id update_date, create_date, manager_name
    of max_test
    Project group, document_id, create_date, update_date, manager_name


    I get several lines for each project and want to only 1 row by project, 1 line which is the max version

    And continuing my previous post, if you want to have lines only for the maybe max version that you want to write a query like this:

    SELECT project, version, document_id, create_date
         , update_date, manager_name
      FROM max_test
     WHERE (project, version) IN (  SELECT project, MAX (version)
                                      FROM max_test
                                  GROUP BY project);
    
    PROJECT  VERSION DOCUMENT_ID  CREATE_DATE UPDATE_DATE MANAGER_NAME
    -------- ------- ------------ ----------- ----------- -------------
    500      6       2            01-MAR-12   01-MAR-12   STEVE JONES
    501      5       4            01-MAR-12   01-MAR-12   MARK JONES
    502      3       7            01-MAR-12   01-MAR-12   CHRIS JONES
    503      2       9            01-MAR-12   01-MAR-12   JOE JONES    
    
    4 rows selected.
    

    Kind regards.
    Al

  • Get the max of a field in a query of County

    Hi, I work with the following SQL query:
    WITH ORDERED_QUERY AS
    (
    SELECT COUNT(SHRTRIT_SBGI_CODE) AS "COUNT OF I",
                SHRTRIT_SBGI_CODE AS "SBGI CODE",
                SHRTRIT_SBGI_DESC AS "INSTITUTION"
    FROM SHRTRIT
    WHERE (SHRTRIT_SBGI_CODE LIKE 'I%'
    GROUP BY SHRTRIT_SBGI_CODE,SHRTRIT_SBGI_DESC
    ORDER BY "COUNT OF I" DESC
    )
    SELECT "COUNT OF I","SBGI CODE","INSTITUTION" 
    FROM ORDERED_QUERY
    WHERE ROWNUM <= 20
    What follows is the table mark code to get a test table:
    create table SHRTRIT
    (
    SBGI_CODE     VARCHAR2(6)     NOT NULL
    SBGI_DESC     VARCHAR2(10)
    ACTIVITY_DATE     DATE
    )
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I08883,MING-CHUAN COLL,10/6/2007 1:47:01 PM)
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I08883,MING-CHUAN COLL,2/10/2009 3:00:14 AM)
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I08883,MING-CHUAN COLL,10/6/2007 12:11:56 PM)
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I08883,MING-CHUAN COLL,2/10/2009 3:00:15 AM)
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I07979,RIYADH TECHNICAL COLLEGE,9/11/2008 3:01:26 AM)
    /
    INSERT INTO SHRTRIT
    (SBGI_CODE,SBGI_DESC,ACTIVITY_DATE)
    VALUES
    (I07979,RIYADH TECHNICAL COLLEGE,7/6/2010 9:00:02 PM)
    /
    {CODE}
    
    What I'm trying to do is get the max ACTIVITY_DATE for the institution when it's listed. For example, the max ACTIVITY_DATE for MING-CHUAN COLL is 2/10/2009 3:00:15 AM. The desired output is one record for MING-CHUAN, with a count of 4, the SBGI code, the Institution Name, and the max activity date of 2/10/2009 3:00:15 AM. However, when I just insert MAX(SHRTRIT_ACTIVITY_DATE) as part of the in-line query, it doesn't work like you'd think. It makes separate records for each date, such that here, there would be one record for 2/10/2009 with a count of 2 and one record for 10/6/2007 with a count of 2 for MING-CHUAN. 
    
    It might actually work with this small amount of data, I don't know because I can't make a test table with these few records to find out. It certainly isn't working with the actual table. I know it has something to do with the aggregation, but I'm not quite sure how to get around this problem. I've tried some different things, but none of them have gotten the desired results.
    
    Any help that you might be able to provide would be greatly appreciated!
    
    Thanks so much,
    Michelle Craig
    Data Coordinator
    Admissions operations and transfer services
    Kent State University                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        

    Not exactly what you're trying to do, but:

    SQL> SELECT  *
      2    FROM  SHRTRIT
      3  /
    
    SBGI_C SBGI_DESC                      ACTIVITY_DATE
    ------ ------------------------------ ----------------------
    I08883 MING-CHUAN COLL                10/06/2007 01:47:01 pm
    I08883 MING-CHUAN COLL                02/10/2009 03:00:14 am
    I08883 MING-CHUAN COLL                10/06/2007 12:11:56 pm
    I08883 MING-CHUAN COLL                02/10/2009 03:00:15 am
    I07979 RIYADH TECHNICAL COLLEGE       09/11/2008 03:01:26 am
    I07979 RIYADH TECHNICAL COLLEGE       07/06/2010 09:00:02 pm
    
    6 rows selected.
    
    SQL> WITH ORDERED_QUERY AS (
      2                         SELECT  COUNT(SBGI_CODE) AS "COUNT OF I",
      3                                 SBGI_CODE AS "SBGI CODE",
      4                                 SBGI_DESC AS "INSTITUTION",
      5                                 MAX(ACTIVITY_DATE) LAST_ACTIVITY_DATE
      6                           FROM  SHRTRIT
      7                           WHERE SBGI_CODE LIKE 'I%'
      8                           GROUP BY SBGI_CODE,SBGI_DESC
      9                           ORDER BY "COUNT OF I" DESC
     10                        )
     11  SELECT  "COUNT OF I",
     12          "SBGI CODE",
     13          "INSTITUTION",
     14          LAST_ACTIVITY_DATE
     15    FROM  ORDERED_QUERY
     16    WHERE ROWNUM <= 20
     17  /
    
    COUNT OF I SBGI C INSTITUTION                    LAST_ACTIVITY_DATE
    ---------- ------ ------------------------------ ----------------------
             4 I08883 MING-CHUAN COLL                02/10/2009 03:00:15 am
             2 I07979 RIYADH TECHNICAL COLLEGE       07/06/2010 09:00:02 pm
    
    SQL> 
    

    SY.

  • I get a message saying "you have exceeded your profile storage space. Yet all the files listed th are actually my docs and application data. How to delete my profile, but not from my pc? increase the max profile size

    I get a message saying "you have exceeded your profile storage space. Yet all the files listed th are actually my docs and application data. How to delete my profile, but not from my pc? increase the max profile size

    1. the first thing to do is to make sure that the computer is completely virus/malware-free. Googling around this error produced quite a few links where the posters were or had been infected with Spyware Protect 2009 rogue.

    http://www.elephantboycomputers.com/page2.html#Removing_Malware

    Once the scanning is complete (do not skip the preparatory stages no more), if the problem persists:

    2. double-click on my computer, right-click the icon for your hard drive, click left to get its properties. If you see options to set Quota management make sure that they are disabled.

    3. in the case - BUT ONLY AFTER YOU ARE sure THAT THE MACHINE IS MALWARE/VIRUS-FREE - copy the lines between asterisks (not including the asterisks) below and paste it into Notepad. Save as undopolicy.reg somewhere, you will find. And then double-click the .reg file, that you have just made to melt in your registry. I hope that this will take care of the issue.

    *****
    Windows Registry Editor Version 5.00

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System]
    'EnableProfileQuota ' = -.
    'ProfileQuotaMessage ' = -.
    "MaxProfileSize" = -.
    'IncludeRegInProQuota ' = -.
    'WarnUser ' = -.
    'WarnUserTimeout ' = -.
    *****

    MS - MVP - Elephant Boy computers - don't panic!

  • WHEN WILL LAUNCH THE NEW VERSION OF MUSE WHO MADE SITES SUCH AS A DEMO AT MAX CONFERENCE

    Hello


    I just saw that muse will fully sensitive - what will be the official version launched - some information on the calendar are important so that I apply the new technologies to work for best results. Any member of the staff would like to comment on the timing of the release?


    Jay

    The update will happen later this year, as announced at Adobe MAX Release Dates are announced by management before a release date of an update. We will announce it here as soon as the public announcement will live. If you are found out at CC, you will get information by e-mail, as well.

  • iPhone 7 will not connect to iTunes - request for the new version, but everything is up-to-date

    My new phone will not connect to iTunes on my computer windows laptop. It is said that it requires a newer version of iTunes but the latest version is all ready to date

    Is your "new version" iTunes 12.5.1.21? If this is not the case, your 'windows' laptop running Windows XP or Vista?

  • On the OWN website of mozilla, I get the message "Your Firefox is out of date and may contain a security risk!' but I just download and install the latest version?

    I have the latest version of firefox to date (15/10/2014 v32) and I still get messages while on various sites Internet (Youtube, Google, Gmail), telling me that your Firefox is out of date and may contain a security risk.

    I have not even this message on the support pages of mozilla.org?

    I tried the subject: config reset the useragent (s) fix, but it does not work.
    I tried browsing in safe mode and still get the error.

    Why this false/positive happening?

    Thank you

    Hello your useragent (information, the browser sends to websites to identify its version) - apparently by mistake - shows this:

    Mozilla/5.0 (Windows NT 6.1; WOW64; rv:2.0.1) Gecko/20140923 Firefox/4.0.0; xs-A30GTmfXR3o;CkHZPf;
    

    probably some kind of unwanted software has crashed it. Please refer to this article in order to reset the user agent settings in firefox:
    Sites Internet says that Firefox is obsolete or incompatible, even if it's the latest version

    in case this is not enough, please try to reset the whole browser:
    Firefox - modules to reset and refresh settings

  • As of the 31 version, why is there still no option of Thunderbird to insert the date and time in the message that you write?

    As of the 31 version, why is there still no option of Thunderbird to QUICKLY insert the date and time in the message that you write?

    Literally, saw this option very well needed - and opportunity-"promise" for three years now, and even if there are only one or two formats that could be used, at least the option is there.

    It seems that only is to bind a Macro, and the tool to Thunderbird and do it this way.

    Joe Rotello
    [email protected]
    Skype: joerotello

    If the installation of the add-on of TimeStamp is unacceptable for see you if there is a related add-on that you that you already might have managed to convince author to add your function. The Add on more for example has many variables that can enter the body of the message that get automatically replaced with the appropriate data when you merge a message.

  • Whenever I have to connect on Firefox I get message saying that I am not on the current version, but I am. -Version 30.0 'up-to-date' what's the deal?

    Whenever I have to connect on Firefox I get message saying that I am not on the current version, but I am. -Version 30.0 'up-to-date' what's the deal?

    What is your homepage in Firefox that it may seem like the old start page for Firefox by Google because it has the message "you are not on the latest version of Firefox. Update today to get the best of the Web! "under the search field.

    http://www.Google.com/Firefox

    Google did not maintain this homepage from Firefox 4.0 came out as it was on: House since.

  • I am suddenly unable to burn playlists to CD on my MacBook Air. Error message says "Disc burner or software not found" iTunes software is up to date: the current version is 12.4.1

    I am suddenly unable to burn playlists to CD on my MacBook Air. I burned a CD only 2 days ago.

    Error message says "Disc burner or software not found" iTunes software is up to date: the current version is 12.4.1

    Hi BVBigelow,

    I understand that you are not able to burn playlists in iTunes on your MacBook Air. Fortunately, we have an article (link below) which details a number of steps that can help to restore your ability to burn CDs of troubleshooting.

    12 iTunes for Mac: If you have trouble burning a disc

    Take care!

  • Firefox Version 27 Action Menu error in Reporting Services. An error has occurred with the extraction of data.

    Hello, since I've updated for Firefox 27.0.1 on Windows 7, I have a problem with Reporting Services on a Sharepoint site. It is a site of Sharepoint 2010 with SQL Server Reporting Services 2012 Sharepoint integrated mode. I was already on Firefox version 26 and didn't meet with this problem.

    When a report is opened and you use the Actions link on the Reporting Services toolbar, I get the following error messages.

    An error has occurred with the extraction of data. Please, refresh the page and try again.

    I tried updating to the beta version of Firefox 28 but the same error occurs. I see that someone else is having the same problem here. http://SharePoint-community.NET/forum/topics/reporting-service-and-Firefox-27

    Any help would be appreciated. Thank you!

    Ryan

    Firefox version 28.0 has corrected this problem. Thank you!

  • I try to uninstall firefox 20 and install the latest version of firefox, but it won't uninstall. He remembers all my data if I install again.

    I'm trying to uninstall Firefox 20 and get the latest version which I think is version 21? He won't let me unistall it when I go to menu start and hit on uninstall a program and choose Firefox. It shows 'Please wait while firefox is unistalling', but it never uninstall. The bar moves ever green. I tried to uninstall manually and then install firefox 21 but then firefox 20 returned to the top (after I installed the new version) with all my saved data. It seemed that he did until I uninstalled manually, or thought I did.
    I don't want any of my data. Just a sweet page!

    I don't want just the homepage firefox, no google, yahoo, etc... I can't understand this. Apparently, I'm technically challenged thought!

    If anyone can help, please let me now. I run Windows 7 pavilion laptop.

    Personal data are stored in the profile, not in the program directory. If you uninstall, you can remove all the data with an extra parameter.

  • I have a problem. Update of Flash Player required you must download and install the latest version of Adobe Flash Player to view this content. but my Flash player is up-to-date. I use ubuntu10.4, firefox 8.0

    I have a problem. Update of Flash Player required you must download and install the latest version of Adobe Flash Player to view this content. but my Flash player is up-to-date. I use ubuntu10.4, firefox 8.0

    You are welcome

Maybe you are looking for

  • Pavilion DV7: upgrading RAM dv7

    Hello I have a Pavilion dv7, 2230sa (CNF9491PVP) with 4 GB of RAM. I would like to upgrade to 8 GB (2 x 4 GB).  But, I don't know what type of RAM to buy. There are several specifications (667 800... MHz or PC2-5300, 6400...). You might it sort my pr

  • HP Support Assistant will not download updates to date, or all the 'health check '.

    Recently, I noticed that my HP Support Assistant continued to inform me of new updates available. In addition, every time I try and do a manual check for updates through the app, the 'health check' will fail. I have a HP Envy 14, edition Audio Beats.

  • MOTU Audio Express plays don't no multitrack

    10.11 FCPX 10.2.2 with a MOTU Audio Express of the test. Probably a bug in the driver, but I'm having a problem where only FCPX only plays stereo return even if the project shows it will output surround.  Audio multitrack works in Quicktime Player, h

  • What is a wpa password?

    I have a HP Photosmart C6380 all-in-One printer. It's wireless and I can't print from my laptop wireless provided with Windows 7. The printer has printed in the past without problem. The computer sends the document to the printer, but I get the messa

  • Auto adjustment in progress

    I installed Windows 7 upgraded from XP and now my computor primer not in normal mode, only in safe mode with my original HP monitor.  It starts with another brand of HP no. The point where it stops is when the screen flashes this member of sentence,