Temp average for the m1264n processor?

I just bought a used HP Media Center m1264n desktop PC.

I would like to know what I would expect the average temperature for the CPU.

I have rebooted, F1 selected to enter the "BIOS Setup Utility", selected "Advanced", select "Hardware Monitor" and showed the following:

CPU temperature: 58/136F

I installed several programs of different monitors:

CPUID

SpeedFan

Core Temp

Core Temp says:

This Intel processor is not supported.

CPUID and SpeedFan both show the temperature is the same as in Settings/Advanced/Hardware Monitor.

My question is what is the acceptable operating (high and low) for CPU temperature?

Can someone tell me?

Thank you

According to this page: http://www.cpu-world.com/CPUs/Pentium_4/Intel-Pentium%204%20530-530J%203.0%20GHz%20-%20JM80547PG0801M%20-%20HH80547PG0801M%20%28BX80547PG3000E%29.html

The CPU max 67C temperature, which is typical.  Anything less than 60 c should be OK.

Minimum/maximum temperature (° C) 5-67, 7

Tags: HP Desktops

Similar Questions

  • How to calculate daily, hourly average for the very large data set?

    Some_Timestamp

    "Parameter1" Parameter2
    1 JANUARY 2015 02:00. 00:000000 AM - 07:002341.4534676341.4534
    1 JANUARY 2015 02:00. 01:000000 AM - 07:002341.4533676341.3
    1 JANUARY 2015 03:04. 01:000000 PM - 07:005332.3533676341.53
    1 JANUARY 2015 03:00. 01:000046 PM - 07:0023.3436434.4345
    JANUARY 2, 2015 05:06.01:000236 AM - 07:00352.3343543.4353
    JANUARY 2, 2015 09:00. 01:000026 AM - 07:00234.453453.54
    3 FEBRUARY 2015 10:00. 01:000026 PM - 07:003423.3534634.45
    FEBRUARY 4, 2015 11:08. 01:000026 AM - 07:00324.3532534534.53

    We have data as above a table and we want to calculate all the days, the hourly average for large data set (almost 100 million).  Is it possible to use the sql functions of analysis for better performance instead of the ordinary average and group of?  Or any other way better performance?

    Don't know if that works better, but instead of using to_char, you could use trunc. Try something like this:

    select
        trunc(some_timestamp,'DD'),
        avg(parameter1)
    from
       bigtable
    where
       some_timestamp between systimestamp-180 and systimestamp
    group by
       trunc(some_timestamp,'DD');
    

    Hope that helps,

    dhalek

  • Show counts and averages for the 3 categories of side by side

    The following query was initially developed for the calculation of GPAs (the 920965 thread id). I changed to perform the same type of summary on partitions.
    The problem is that there are 3 types of partitions as opposed to a single type of GPA. When I run the query for the partition type, the results for
    that the partition type come out well, however, when I tried to add in other partition types (they have been commented out in the query below), results
    come not good when was 01:20 more in the query. This query can be modified to handle several types of partition, or will I
    need to separate runs for each type?

    Here the result should look like. The numbers in the pass are the number of students who have a score within each range
    and the overall average rating for each category is at the bottom.

    EXAMPLE OF SUMMARY:
      Score Range     Read     Math     Write
                   
     001 - 299     18     12     25
     300 - 349     60     50     50
     350 - 399     235     150     207
     400 - 449     523     400     463
     450 - 499     840     870     857
     500 - 549     1300     1189     1314
     550 - 599     1321     1400     1425
     600 - 649     1298     1280     1262
     650 - 699     605     940     737
     700 - 749     200     265     330
     750 - 800     109     119     102
     NO SCORES     1450     1284     1187
                   
     TOTAL     7959     7959     7959
                   
     AVERAGE     553     563     559
    Details of the sample:
    ID     READ     MATH     WRITE
    121212     570     520     550
    112121     650     570     600
    121121     
    111221     
    111122     600     625     610
    The way that the query runs now, if I run only during playback, playback numbers doing well, if I run it only for mathematics, Math numbers
    Come in fine, etc. When I typed in the query, the numbers came out badly.


    -This part creates the table in the range.  Usually just create once
    CREATE TABLE    Score_Range
    AS
    SELECT  000 AS low_score, 300 AS high_score, '001 - 299' AS display_txt, 1  AS range_sort    FROM dual    UNION ALL
    SELECT  300 AS low_score, 350 AS high_score, '300 - 349' AS display_txt, 2  AS range_sort    FROM dual    UNION ALL
    SELECT  350 AS low_score, 400 AS high_score, '350 - 399' AS display_txt, 3  AS range_sort    FROM dual    UNION ALL
    SELECT  400 AS low_score, 450 AS high_score, '400 - 449' AS display_txt, 4  AS range_sort    FROM dual    UNION ALL
    SELECT  450 AS low_score, 500 AS high_score, '450 - 499' AS display_txt, 5  AS range_sort    FROM dual    UNION ALL
    SELECT  500 AS low_score, 550 AS high_score, '500 - 549' AS display_txt, 6  AS range_sort    FROM dual    UNION ALL
    SELECT  550 AS low_score, 600 AS high_score, '550 - 599' AS display_txt, 7  AS range_sort    FROM dual    UNION ALL
    SELECT  600 AS low_score, 650 AS high_score, '600 - 649' AS display_txt, 8  AS range_sort    FROM dual    UNION ALL
    SELECT  650 AS low_score, 700 AS high_score, '650 - 699' AS display_txt, 9  AS range_sort    FROM dual    UNION ALL
    SELECT  700 AS low_score, 750 AS high_score, '700 - 749' AS display_txt, 10 AS range_sort    FROM dual    UNION ALL
    SELECT  750 AS low_score, 999 AS high_score, '750 - 800' AS display_txt, 11 AS range_sort    FROM dual    UNION ALL
    SELECT  NULL,          NULL,           'No Scores',                      13           FROM dual;
    ------------------------------------------------------------------------------------------------------------------------

    -This part is the actual query to use to see the summary
    WITH interesting_score_stat AS
    (
        SELECT stu_population, '1Applied' Status, college,
               sat_read, sat_math, sat_write
        FROM   gpa_stat
        WHERE  stu_population  in ('F','T')
        AND    academic_period = '200940'
    UNION ALL
        SELECT stu_population, '2Accepted' Status, college,
               sat_read, sat_math, sat_write
        FROM   gpa_stat
        WHERE  stu_population  in ('F','T')
        AND    academic_period = '200940'
        AND    accepted = 1
    UNION ALL
        SELECT stu_population, '3Deposit' Status, college,
               sat_read, sat_math, sat_write
        FROM   gpa_stat
        WHERE  stu_population  in ('F','T')
        AND    academic_period = '200940'
        AND    accepted = 1
        AND    deposit  = 1
    ),       all_colleges      AS
    (
        SELECT DISTINCT stu_population, Status, college
        FROM   interesting_score_stat
        
    )
    SELECT c.stu_population, 
           c.Status,
           c.college,
           r.display_txt           AS scorerange,
           COUNT (s.college)       AS count,
           round(NVL(AVG(s.sat_read),0),0)  AS avgRead
    --       round(NVL(AVG(s.sat_math),0),0)  AS avgMath,
    --       round(NVL(AVG(s.sat_write),0),0) AS avgWrite
    FROM  all_colleges           c
    CROSS JOIN score_range         r
    LEFT OUTER JOIN interesting_score_stat s    
      ON ( c.stu_population   = s.stu_population
     AND   c.status    = s.status
     AND   c.college   = s.college
     AND   r.low_score  <= s.sat_read
     --AND   r.low_score  <= s.sat_math
     --AND   r.low_score  <= s.sat_write
     AND   r.high_score  > s.sat_read
    -- AND   r.high_score  > s.sat_math
    -- AND   r.high_score  > s.sat_write
         )
      OR ( c.stu_population  =  s.stu_population 
     AND   c.status   =  s.status
     AND   c.college  =  s.college
     AND   r.low_score     IS NULL
     AND   s.sat_read      IS NULL
    -- AND   s.sat_math      IS NULL
    -- AND   s.sat_write     IS NULL
         )
    GROUP BY c.stu_population, 
             c.status, 
             cube ( c.college, 
                    r.display_txt
                  )
    ORDER BY c.stu_population, 
             c.status, 
             c.college, 
             r.display_txt
     
    ;

    Hello

    To make the sample data easier to manage, I cut socre_range up to four lines:

    SELECT  450 AS low_score, 500 AS high_score, '450 - 499' AS display_txt, 5  AS range_sort    FROM dual    UNION ALL
    SELECT  500 AS low_score, 550 AS high_score, '500 - 549' AS display_txt, 6  AS range_sort    FROM dual    UNION ALL
    SELECT  550 AS low_score, 600 AS high_score, '550 - 599' AS display_txt, 7  AS range_sort    FROM dual    UNION ALL
    SELECT  NULL,          NULL,           'No Scores',                      13           FROM dual;
    

    and use these data in gpa_stat:

    select '12345678' ID, '200940' Academic_period, 'Freshmen' Stu_Pop, 'F' Stu_population, 'LA' College, 1 Applied, 1 Accepted, 1 Deposit, 560 SAT_READ, 590 SAT_MATH, 510 SAT_WRITE from dual union all
    select '23456789',     '200940',    'Transfer',    'T',     'LA',    1,    1,    0,  null, null, null    from dual union all
    select '34567890',    '200940',    'Freshmen',    'F',    'BN',    1,    1,    1,    500,    510,    540 from dual union all
    select '45678901',    '200940',    'Freshmen',    'F',    'BN',    1,    1,    1,    530,    520,    630 from dual union all
    select '56789012',    '200940',    'Freshmen',    'F',    'BN',    1,    1,    1,    550,    520,    540 from dual union all
    select '67890123',    '200940',    'Freshmen',    'F',    'LA',    1,    1,    1,    null,    null,  null from dual 
    

    This query:

    WITH   cntr        AS
    (
         SELECT     LEVEL     test_code
         FROM     dual
         CONNECT BY     LEVEL <= 3     -- # of measure columns (sat_read, sat_math and sat_write)
    )
    ,     unpivoted_data         AS
    (
         SELECT     s.stu_population
         ,     CASE
                   WHEN  accepted = 1
                   AND   deposit  = 1
                               THEN     3
                   WHEN  accepted = 1
                               THEN     2
                               ELSE     1
              END     AS status_lvl
         ,     s.college
         ,     c.test_code
         ,     CASE     c.test_code
                   WHEN  1          THEN  sat_read
                   WHEN  2          THEN  sat_math
                   WHEN  3          THEN  sat_write
              END     AS score
         FROM          gpa_stat     s
         CROSS JOIN     cntr          c
         WHERE   stu_population          IN ('F', 'T')     -- Do all filtering here
         AND     academic_period          = '200940'
    )
    ,     all_colleges     AS
    (
         SELECT DISTINCT     college
         FROM             unpivoted_data
    )
    ,     all_populations     AS
    (     SELECT DISTINCT     stu_population
         FROM             unpivoted_data
    )
    SELECT       p.stu_population
    ,       a.display_txt                              AS status
    ,       c.college
    ,       NVL ( r.display_txt
               , ' (Total)'
               )                                   AS scorerange
    ,       COUNT     (CASE WHEN u.test_code = 1 THEN 1     END)     AS read
    ,       AVG      (CASE WHEN u.test_code = 1 THEN score END)     AS avgread
    ,       COUNT (CASE WHEN u.test_code = 2 THEN 1     END)     AS math
    ,       AVG      (CASE WHEN u.test_code = 2 THEN score END)     AS avgmath
    ,       COUNT (CASE WHEN u.test_code = 3 THEN 1     END)     AS write
    ,       AVG      (CASE WHEN u.test_code = 3 THEN score END)     AS avgwrite
    FROM                    all_populations p
    CROSS JOIN         all_status         a
    CROSS JOIN         all_colleges    c
    CROSS JOIN         score_range     r
    LEFT OUTER JOIN     unpivoted_data  u     ON       u.stu_population  =  p.stu_population
                                             AND     u.status_lvl       >= a.lvl_id
                                             AND      (     (       u.score      >=  r.low_score
                                                          AND       u.score      <   r.high_score
                                          )
                                  OR     (       u.score      IS NULL
                                          AND       r.low_score  IS NULL
                                          )
                                      )
                             AND     u.college       =  c.college
    GROUP BY  p.stu_population
    ,            a.display_txt
    ,       c.college
    ,       ROLLUP ((r.display_txt))
    ORDER BY  p.stu_population
    ,            a.display_txt
    ,         c.college
    ,       GROUPING (r.display_txt)
    ,            MIN (r.range_sort)
    ;
    

    produces this output:

    STU STATUS    CO SCORERANG READ READ MATH MATH WRITE WRITE
    --- --------- -- --------- ---- ---- ---- ---- ----- -----
    F   1Applied  BN 450 - 499    0         0          0
    F   1Applied  BN 500 - 549    2  515    3  517     2   540
    F   1Applied  BN 550 - 599    1  550    0          0
    F   1Applied  BN No Scores    0         0          0
    F   1Applied  BN  (Total)     3  527    3  517     2   540
    F   1Applied  LA 450 - 499    0         0          0
    F   1Applied  LA 500 - 549    0         0          1   510
    F   1Applied  LA 550 - 599    1  560    1  590     0
    F   1Applied  LA No Scores    1         1          1
    F   1Applied  LA  (Total)     2  560    2  590     2   510
    F   2Accepted BN 450 - 499    0         0          0
    F   2Accepted BN 500 - 549    2  515    3  517     2   540
    F   2Accepted BN 550 - 599    1  550    0          0
    F   2Accepted BN No Scores    0         0          0
    F   2Accepted BN  (Total)     3  527    3  517     2   540
    F   2Accepted LA 450 - 499    0         0          0
    F   2Accepted LA 500 - 549    0         0          1   510
    F   2Accepted LA 550 - 599    1  560    1  590     0
    F   2Accepted LA No Scores    1         1          1
    F   2Accepted LA  (Total)     2  560    2  590     2   510
    F   3Deposit  BN 450 - 499    0         0          0
    F   3Deposit  BN 500 - 549    2  515    3  517     2   540
    F   3Deposit  BN 550 - 599    1  550    0          0
    F   3Deposit  BN No Scores    0         0          0
    F   3Deposit  BN  (Total)     3  527    3  517     2   540
    F   3Deposit  LA 450 - 499    0         0          0
    F   3Deposit  LA 500 - 549    0         0          1   510
    F   3Deposit  LA 550 - 599    1  560    1  590     0
    F   3Deposit  LA No Scores    1         1          1
    F   3Deposit  LA  (Total)     2  560    2  590     2   510
    
                                     AVG       AVG         AVG
    STU STATUS    CO SCORERANG READ READ MATH MATH WRITE WRITE
    --- --------- -- --------- ---- ---- ---- ---- ----- -----
    T   1Applied  BN 450 - 499    0         0          0
    T   1Applied  BN 500 - 549    0         0          0
    T   1Applied  BN 550 - 599    0         0          0
    T   1Applied  BN No Scores    0         0          0
    T   1Applied  BN  (Total)     0         0          0
    T   1Applied  LA 450 - 499    0         0          0
    T   1Applied  LA 500 - 549    0         0          0
    T   1Applied  LA 550 - 599    0         0          0
    T   1Applied  LA No Scores    1         1          1
    T   1Applied  LA  (Total)     1         1          1
    T   2Accepted BN 450 - 499    0         0          0
    T   2Accepted BN 500 - 549    0         0          0
    T   2Accepted BN 550 - 599    0         0          0
    T   2Accepted BN No Scores    0         0          0
    T   2Accepted BN  (Total)     0         0          0
    T   2Accepted LA 450 - 499    0         0          0
    T   2Accepted LA 500 - 549    0         0          0
    T   2Accepted LA 550 - 599    0         0          0
    T   2Accepted LA No Scores    1         1          1
    T   2Accepted LA  (Total)     1         1          1
    T   3Deposit  BN 450 - 499    0         0          0
    T   3Deposit  BN 500 - 549    0         0          0
    T   3Deposit  BN 550 - 599    0         0          0
    T   3Deposit  BN No Scores    0         0          0
    T   3Deposit  BN  (Total)     0         0          0
    T   3Deposit  LA 450 - 499    0         0          0
    T   3Deposit  LA 500 - 549    0         0          0
    T   3Deposit  LA 550 - 599    0         0          0
    T   3Deposit  LA No Scores    0         0          0
    T   3Deposit  LA  (Total)     0         0          0
    
    60 rows selected.
    

    Among the assumptions I made were some of status.
    The different status of the status values seem to be subsets of each other. Otherwise said, any line that is qualified as "3Deposit" is also considered to be '2Accepted' and any line which is recorded as "2Accepted" is also considered to be '1Applied.
    For the same reason that you should have a table of scre_range, you must also have a table for the statutes of the thesis, like this:

    CREATE TABLE  all_status
    AS
    SELECT     1 as lvl_id, '1Applied' AS display_txt     FROM dual     UNION ALL
    SELECT     2,             '2Accepted'             FROM dual     UNION ALL
    SELECT     3,          '3Deposit'               FROM dual;
    

    where the highest lvl_ids are supposed to include lower levels (for example, lvl_id 1 is a subset of the 2 and 3).

    When there is no line in a group, the Middle columns in the output above remains NULL.
    0 in these places, use "NVL (AVG (...), 0) ' instead of «AVG (...)»

  • Color for the image processor problem

    Hello! I tend to work with dozens to hundreds of batch files and often use the Image Processor to save my changes to PSD files to TIFF.
    But I noticed that when I run image processor to save PSD in uncompressed TIFF format, there is a change in the color of the original file in the created file. But... If I manually record a version of the same PSD TIFF (file > save as > etc.), there is no change in color. So... the question is in the processor.

    Y at - it a setting or preference to avoid this to happen? My computer CPU is insufficient? What Miss me?

    "Include icc profile" is checked (at the bottom of the dialog box).

  • The problem with the calculation of the average for the recurring value

    My task is to perform analysis, where in the table have ID to which she is assigned 10 measures (1-10) and each has its own value. I have to average of this what I take AVG (as) and I want to say. However, as prompcie Will I choose the second ID and I have two measures 1-10 time what I means account for 20 photos and I want to separate Average (two - each for 10 measures). Is there any possibility of Smash it? The use of a function or collection of rehearsals ?


    It looks like this:


    column 1 | column 2 | column 3 | AVG |


    ID |  Nr.  result | AVG?

    x | 1. 200 | AVG x?

    | 2. 210 |

    | 3. 210 |

    There | 1. 210 | is AVG?

    | 2. 208

    | 3. 200


    In column 4, I want to be avarage but another for id x and another for id y?

    is the result you are looking for:

    If Yes... then avg column formula is AVG (result BY id)

  • Replace the faulty processor on a Pavilion Ultimate d4995t

    Need to know if this quad-core processor on the link below to qualify as a replacement for the defective processor in my HP Pavilion Ultimate d4995t CTO desktop PC: http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=2983971

    Thank you very much.  I appreciate the timely response.

    Paul

  • Pavilion g6-2213sa for the games?

    Hi, I just bought a laptop HP 'Pavilion g6-2213saHi. I wanted a general purpose shared around the House, but after reading a few reviews and see what I tlhought that was a good deal I went to Pavillion G6 she was supposed to be above average for the games.

    Actually, I only one game which was a present "FarCry3", so I assume that I would be able to load and play on the laptop. After installing the game I tried the FC3 "Map Editor", but it is 'very' slow and "lag" much like a desktop computer would not without a graphics card driver. I have not tried but I guess that online gambling would be substantially the same.

    If there is any who can educated me on the parameters for this machine I tried to change a few things with no improvement. If you think you can help please be specific, thanks.

    Pavilion g6-2213sa for the games?  N ° with the exception of no itensive graphics simple games.

    Cry3 far is a bit too intense for something other than a plu end laptop graphics.

    I have an Envy17-3002ea that was provided for me my intended to answer the questions on the forum. I own a licensed copy of far Cry3. The desire runs the game without any problems as long as I have the high performace selected GPU. If I have the GPU (Intel HD 3000) selected economy, then the game is slow and jerky. The Envy17 is a laptop switchable graphics.

  • How to get the average between the lines are null?

    I need to get the average between the 2 positive numbers.

    Then update the table with the average for the rows that have NULL value between 2 positive numbers.

    The average will come (78 + 89) / 2 = 83.5. Round up to 84.

    Then it will be:

    04/06/13 84

    05/06/13 84

    06/06/13 84

    Regarding the 13/06/09 and 10/06/13, these values will always be NULL.

    {code}

    create the dummy (date of tmestmp of the table

    (, maxtemp number (4,0));

    insert into dummy (tmestmp, maxtemp) values (to_date('20130601','YYYYMMDD'), 70);

    insert into dummy (tmestmp, maxtemp) values (to_date('20130602','YYYYMMDD'), 81);

    insert into dummy (tmestmp, maxtemp) values (to_date('20130603','YYYYMMDD'), 78);

    insert into dummy (tmestmp) values (to_date('20130604','YYYYMMDD'));

    insert into dummy (tmestmp) values (to_date('20130605','YYYYMMDD'));

    insert into dummy (tmestmp) values (to_date('20130606','YYYYMMDD'));

    insert into dummy (tmestmp, maxtemp) values (to_date('20130607','YYYYMMDD'), 89);

    insert into dummy (tmestmp, maxtemp) values (to_date('20130608','YYYYMMDD'), 91);

    insert into dummy (tmestmp) values (to_date('20130609','YYYYMMDD'));

    insert into dummy (tmestmp) values (to_date('20130610','YYYYMMDD'));

    {/ code}

    I need the output to look like this:

    Header 1 Header 2

    1 JUNE 13

    2 JUNE 13

    JUNE 3, 13

    JUNE 4, 13

    5 JUNE 13

    JUNE 6, 13

    JUNE 7, 13

    JUNE 8, 13

    JUNE 9, 13

    JUNE 10, 13

    70
    81
    78
    84
    84
    84
    89
    91

    null

    null

    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - production

    PL/SQL Release 10.2.0.4.0 - Production

    "CORE 10.2.0.4.0 Production."

    AMT for 32-bit Windows: release 10.2.0.4.0 - Production

    NLSRTL Version 10.2.0.4.0 - Production

    Suggestions?

    TIA.

    Steve42

    Select tmestmp,

    NVL)

    maxtemp,

    round)

    (

    LAST_VALUE (maxtemp Ignore Nulls)

    (order tmestmp).

    FIRST_VALUE (maxtemp Ignore Nulls)

    (tmestmp order

    lines between the 1 suite and unlimited

    )

    ) / 2

    )

    ) maxtemp

    modeling

    /

    TMESTMP MAXTEMP
    ------------------- ----------
    01/06/2013 00:00:00 70
    02/06/2013 00:00:00 81
    03/06/2013 00:00:00 78
    04/06/2013 00:00:00 84
    05/06/2013 00:00:00 84
    06/06/2013 00:00:00 84
    07/06/2013 00:00:00 89
    08/06/2013 00:00:00 91

    TMESTMP MAXTEMP
    ------------------- ----------
    09/06/2013 00:00:00
    10/06/2013 00:00:00

    10 selected lines.

    SQL >

    SY.

  • Time of CPU system (%) for the basic multi system

    Hello

    couple of questions about sub settings, measure processor or avg unique all the processorss and the processors use?
    for example I will receive alert time system CPU over 95% for the unique processors? or not

    Idle time (%) of the CPU
    Time CPU system (%)
    Time CPU user (%)

    couple of questions about sub settings, measure processor or avg unique all the processorss and the processors use?

    CPU utilization (%)
    For UNIX platforms, this measure represents the amount of CPU utilization in percentage of total CPU available processing power.

    http://docs.Oracle.com/CD/B28359_01/server.111/b28282/monitor.htm#CFAECIDG

  • Simultaneous Manager timed out waiting for the output postprocessor

    Hello

    I am facing this error for the first time:

    After processing the request failed with the error message:
    Simultaneous Manager timed out waiting for the post-processor of output at the end of this request.

    I went through the log of the OPP and that:

    [05/08/09 16:00:19] [UNEXPECTED] [49106:RT4628739] java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:624)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:421)
    at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:233)
    at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
    at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
    at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1657)
    at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
    at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
    at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
    at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: java.lang.ThreadDeath
    at java.lang.Thread.stop(Thread.java:630)
    at oracle.apps.fnd.cp.opp.OPPRequestThreadManager.terminateThread(OPPRequestThreadManager.java:207)
    at oracle.apps.fnd.cp.opp.OPPTerminateCommand.execute(OPPTerminateCommand.java:45)
    at oracle.apps.fnd.cp.opp.OPPServiceThread.processMessage(OPPServiceThread.java:240)
    at oracle.apps.fnd.cp.opp.OPPServiceThread.waitForMessages(OPPServiceThread.java:227)
    at oracle.apps.fnd.cp.opp.OPPServiceThread.mainLoop(OPPServiceThread.java:128)
    at oracle.apps.fnd.cp.gsf.BaseServiceThread.run(BaseServiceThread.java:135)

    I went through the various articles and notes in the metalink:

    I tried increasing the values in the following profile options to their default values in 700 900

    Simultaneous response time: OPP

    Waiting period of concurrent processes: OPP

    but no change, can someone tell me how to decide how many seconds must be used for the profiles that is to say based on parameters, etc.

    Strangley than what was going on when the data is over and for this combination of setting:

    The total number of records in the output is approximately 5000

    Please guide if I missed something.

    Best regards
    Mahi

    You had a bad code.

    changed and he sent.

    can you check and let me know?

  • WAIT % - % IDLE, what is the average for a virtual machine?

    I did some research on performance of VM problems and worked with the media to see that there is maybe a bottle neck IO that occur with a virtual VMware machine I have performance problems on. The technician found that the WAITING % - % IDLE on average for this virtual machine is around 200%. The tech said it was abnormally high. I forgot to ask her what was normal but wanted to put a post to see if some people out there know what they are on average. What is an average number of see? I have the system done nothing right now and I see 579% waiting and 372% IDLE. The technology has been able to confirm that no IO queue was occurring in the VMkernel or on the HBA controller.

    Some average % positions would be useful. Thank you.

    gdewulf18480 wrote:

    Supposibly the amount of time in a State of waiting for I/O is the WAIT - IDLE % difference. I was wondering if anyone had the numbers for this feeling. Is there anyone with some of them?

    Q: How will I know the VCPU world waiting for I/O events?

    A: WAIT - % IDLE % can give you an estimate on how much time processor is spent waiting for I/O events. It is an estimate only, because the world wait perhaps for other than the i/o resources. Note that we should do it only for the worlds of the WWW, not the other kind of worlds. Because the VMM worlds represent the best guest behavior. For the disk i/o, another alternative is to read the disk latency stats that we explain in the drive section.

    WAIT % by itself cannot be used, you must develop and examine the individual vCPU % EXPECTATION values and subtract their idle time.  You can't do it on the initial view of a single line by VM CPU in esxtop.  If technology that you mentioned did not explain it, he doesn't know what it takes.

    I have lots of virtual machines that are never less than 300% when I wait - % idle and I have no problems.

    It is an example, I caught NimSoft server:

    DHSNMS1 100 100 5 192.63 193,80 0.24 0.03 291,44 1.04

    %EST USED (s) 192 - in other words, almost two processors are used 100%

    The %Idle is 1.04% WAIT 291.44 - according to the calculation of waiting idle, I have a super serious problems of e/s past  But this isn't the case, and expanding, I can see that.

    5665 vmware-vmx 100 1 0.09 0.11 100.00 0.00 0.00 0.01

    5667 100 vmassistant.566 1 0.62 0.65 99,63 0.00 0.00 0.00

    5703 100 mks:DHSNMS1 1 0.01 0.01-100.00 0.00 0.00 0.00

    5704 vcpu 100 - 0:DHSNMS1 1 32,35 32.88 67,28 0.28 0.11 67,14

    5705 vcpu 100 - 1:DHSNMS1 1 31,58 32.05 68.11 0.00 67.85 0.12

    So the changed values unfortunately because of ESXTOP bike when you develop... which is annoying, but anyway.  In this you see % waiting is 67 and 68 with another respectively being 3 to 100% (which is normal) and the idle being %, 0, 0, 0, 67 and 67.8.  Doing the calculation on the processors shows a wait - slowed virtually 0 - or very little IO wait past with processors.  But if you add up all the expectations of % and % is idling, you have 434ish, and the 134ish and do the calculation is the difference of 300 - which is the 3 who are always 100%.

    So there is no way we can answer your question, we can only help you to understand how the values should be interpreted.

    Waiting for i/o States almost always go on the disc anyway, it is unlikely, therefore, the network or the user entered, looking at the stats of disc ESXTOP is a much better way to determine if there is a problem of e/s.

  • CPU, RAM and disk, file system information for the data, logs, temp, Archive for database

    Hello gurus,

    How can we see what size of CPU and RAM for the database? According to the previous steps of this great site, I could able to do
    SQL> show parameter sga_max_size
    
    NAME                                 TYPE        VALUE
    ------------------------------------ ----------- ------------------------------
    sga_max_size                         big integer 800M
    SQL> exit
    Therefore, the size of the RAM for the database to which I have connected
    rootd2n3v5# ioscan -kfn |grep -i processor
    processor    0  13/120         processor CLAIMED     PROCESSOR    Processor
    processor    1  13/121         processor CLAIMED     PROCESSOR    Processor
    processor    2  13/122         processor CLAIMED     PROCESSOR    Processor
    processor    3  13/123         processor CLAIMED     PROCESSOR    Processor
    rootd2n3v5#
    The one above was the command give the OS level that I don't know what information he gives and what database, since there are 12 databases on this server.

    How can I get the CPU information?

    And where can I find information for information of system data files, logs, temp, Archive?
    <div class="jive-quote">select * from v$version</div>
    BANNER                                                           
    ---------------------------------------------------------------- 
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi 
    PL/SQL Release 10.2.0.5.0 - Production                           
    CORE     10.2.0.5.0     Production                                         
    TNS for HPUX: Version 10.2.0.5.0 - Production                    
    NLSRTL Version 10.2.0.5.0 - Production

    Ask the system administrator if the database server is a physical machine, if it is hardware partitioned or created under a virtual machine Manager? Check the operating system utilities. On AIX uname to identify if you are on an LPAR.

    In Oracle, you can query the parameter $ v to cpu_count to see how many cpu Oracle says he sees.

    HTH - Mark D Powell.

  • 7720SE of the INSPIRON 17R - what notebook adapter is required for the 3940XM (Extreme Edition CPU) processor

    Would need a laptop 130W power adapter or the 150W? I prefer the 130W if it will work without problem, because I guess it would be smaller.

    It works, and an adapter 130W, it seems very well... and no external cooling fan seems necessary, but I'm not a gamer... I tried a few tests of stress, including the cpu and gpu together at the same time and the only that it becomes hot enough to worry is the prime95, but apparently the newer versions of this software use fpu too and very hot processors. Older versions don't you almost as hot. However, it's winter. In the summer a cooling package may be necessary. Right now the laptop is just flat on the desk with the lid closed.

    Basically kernel time run low average of years 40 to 80 years. 80 that I only ever really during the stress tests. I got 90 using this last premium 95... but it's the only thing that was always close to 90.

    I'm so happy. The adapter of 150W (generic) in the store wouldn't run with the i5 processor (before upgrade - do not test after upgrade)... but I think the 130W is fine, even if I play games. Most of the apps I don't use the GPU dedicated anyway. I recommend this upgrade for those who really don't mind completely dismantle their computer and putting it back together. There is a good video how to replace the motherboard (in line - but I don't know if it's on youtube... but is it on google)

  • create an exception in avast for the nsemail.html file in the temp folder

    I was pulling out my hair trying to find if there could be anything in the temporary files that I have to keep the last few weeks. Then I came across this: "the release of Avast 10.3.2223 (we think it's this version) has resulted in questions with avasts prevention of Thunderbird.
    to function properly. The solution seems to be to create an exception in avast for the nsemail.html file in your
    computers temp folder. "So now I'm completely confused. Why would I put something I need all the time in a temporary file to have remove for cleaning ccleaner?

    Matt, thanks. I read your blog post. I need to replace my HD and I've been fretting over if I have to loose important data from the temporary files. Apparently not. When I talked about ccleaner, it was in the generic sense. I avoided ccleaner because I thought it was a big hammer and some data that he brags about getting rid of I really want to continue. I know that I can choose what remains and what is happening, I'll have to give him another look. Once again thank you.

  • I don't get updates for the retina of my macbook pro 15 mid 2015 2.5 processors 16 g ram, last updated, I got was garage to April 8, may be there is no more updates at this time, but what made me think twice this app a player have updated when trigger

    I don't get updates for the retina of my macbook pro 15 mid 2015 2.5 processors 16 g ram, last updated, I got was garage to April 8, may be there is no more updates at this time, but what made me think twice as more than one reader app have update to search for the app store When news, nothing happened and onedrive will not be updated, and this dose of update does not appear in the section updates in the app store app

    any body can help?

    That's what I have in the last few weeks

    Make sure you have a good WiFi connection and are signed in iCloud / App Store

Maybe you are looking for