AWR show this sql as more CPU consuming sql. Is - this need for sql tunning?

Hello

Awr showing this sql as the consumer of CPU above reports

Please consider me as a newbie and help me understand this.

Thanking you...
SQL ordered by CPU Time            DB/Inst:  Snaps:  
-> Resources reported for PL/SQL code includes the resources used by all SQL
   statements called by the code.
-> % Total DB Time is the Elapsed Time of the SQL statement divided
   into the Total Database Time multiplied by 100

    CPU      Elapsed                  CPU per  % Total
  Time (s)   Time (s)  Executions     Exec (s) DB Time    SQL Id
---------- ---------- ------------ ----------- ------- -------------
     2,658      2,665            1     2658.18     5.7 5aawbyzqjk8by
select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, ta
s_site ts where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp
.site_id and (tti.max_install != trp.pushed_rsn and ((tti.max_install = 0 and
(trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1) or (tti.max_install
SQL full = >
select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
ts 
where 
trp.tsa_id = tti.tsa_id 
and tti.status = 1 
and ts.site_id = trp.site_id  
and
(
tti.max_install != trp.pushed_rsn 
and  (
       (tti.max_install = 0 and 
           (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :1
       ) or  
       (tti.max_install > 0 and 
           (trp.pushed_rsn - trp.curr_rsn) < ts.workahead_count * :2
       ) or   
       (tti.max_install = trp.pushed_rsn and
       tti.max_install <> 0 
       ) 
     )
) or 
(trp.pushed_time != 
(
to_date(tti.created_date,'dd-MON-yyhh24:mi:ss') + (1/24/60) * ts.workahead_time
) and  
(
  (
to_date(sysdate,'dd-MON-yyhh24:mi:ss') + (1/24/60) * :3
  ) > trp.pushed_time
)
)
get the plan of the explain for the above sql command = >
QL> SELECT plan_table_output FROM TABLE(DBMS_XPLAN.DISPLAY_CURSOR('g6c8y31xr06vp',0,'ALL'));

PLAN_TABLE_OUTPUT
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
SQL_ID  g6c8y31xr06vp, child number 0
-------------------------------------
select distinct trp.site_id from tas_receipts_process trp , tas_tsa_info tti, tas_site
ts  where trp.tsa_id = tti.tsa_id and tti.status = 1 and ts.site_id = trp.site_id  and
(tti.max_install != trp.pushed_rsn and  ((tti.max_install = 0 and (trp.pushed_rsn -
trp.curr_rsn) < ts.workahead_count * :1) or  (tti.max_install > 0 and (trp.pushed_rsn -
trp.curr_rsn) < ts.workahead_count * :2) or   (tti.max_install = trp.pushed_rsn and
tti.max_install <> 0 )  )) or (trp.pushed_time != (to_date(tti.created_date,'dd-MON-yy
hh24:mi:ss') + (1/24/60) * ts.workahead_time) and  ((to_date(sysdate,'dd-MON-yy
hh24:mi:ss') + (1/24/60) * :3) > trp.pushed_time))

Plan hash value: 2862358316

------------------------------------------------------------------------------------------------
| Id  | Operation               | Name                 | Rows  | Bytes | Cost (%CPU)| Time     |
------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT        |                      |       |       |   601K(100)|          |
|   1 |  HASH UNIQUE            |                      |     4 |   216 |   601K (10)| 02:00:14 |
|   2 |   CONCATENATION         |                      |       |       |            |          |
|   3 |    NESTED LOOPS         |                      |   200M|    10G|   579K  (6)| 01:55:52 |
|   4 |     MERGE JOIN CARTESIAN|                      |  2849 | 99715 |    12   (0)| 00:00:01 |
|   5 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
|   6 |      BUFFER SORT        |                      |   407 | 10175 |     9   (0)| 00:00:01 |
|*  7 |       TABLE ACCESS FULL | TAS_RECEIPTS_PROCESS |   407 | 10175 |     1   (0)| 00:00:01 |
|*  8 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 70411 |  1306K|   203   (6)| 00:00:03 |
|*  9 |    HASH JOIN            |                      |     2 |   108 |   203   (2)| 00:00:03 |
|* 10 |     HASH JOIN           |                      |   407 | 14245 |     7  (15)| 00:00:01 |
|  11 |      TABLE ACCESS FULL  | TAS_SITE             |     7 |    70 |     3   (0)| 00:00:01 |
|  12 |      TABLE ACCESS FULL  | TAS_RECEIPTS_PROCESS |   407 | 10175 |     3   (0)| 00:00:01 |
|* 13 |     TABLE ACCESS FULL   | TAS_TSA_INFO         | 21474 |   398K|   196   (2)| 00:00:03 |
------------------------------------------------------------------------------------------------

Query Block Name / Object Alias (identified by operation id):
-------------------------------------------------------------

   1 - SEL$1
   5 - SEL$1_1 / TS@SEL$1
   7 - SEL$1_1 / TRP@SEL$1
   8 - SEL$1_1 / TTI@SEL$1
  11 - SEL$1_2 / TS@SEL$1_2
  12 - SEL$1_2 / TRP@SEL$1_2
  13 - SEL$1_2 / TTI@SEL$1_2

Predicate Information (identified by operation id):
---------------------------------------------------

   7 - filter("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
              hh24:mi:ss')+.000694444444444444444444444444444444444445*:3)
   8 - filter("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-M
              ON-yy hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME")
   9 - access("TRP"."TSA_ID"="TTI"."TSA_ID")
       filter(("TTI"."MAX_INSTALL"<>"TRP"."PUSHED_RSN" AND (("TTI"."MAX_INSTALL"=0 AND
              "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:1) OR
              ("TTI"."MAX_INSTALL">0 AND "TRP"."PUSHED_RSN"-"TRP"."CURR_RSN"<"TS"."WORKAHEAD_COUNT"*:2
              ) OR ("TTI"."MAX_INSTALL"="TRP"."PUSHED_RSN" AND "TTI"."MAX_INSTALL"<>0)) AND
              (LNNVL("TRP"."PUSHED_TIME"<TO_DATE(TO_CHAR(SYSDATE@!),'dd-MON-yy
              hh24:mi:ss')+.000694444444444444444444444444444444444445*:3) OR
              LNNVL("TRP"."PUSHED_TIME"<>TO_DATE(INTERNAL_FUNCTION("TTI"."CREATED_DATE"),'dd-MON-yy
              hh24:mi:ss')+.000694444444444444444444444444444444444445*"TS"."WORKAHEAD_TIME"))))
  10 - access("TS"."SITE_ID"="TRP"."SITE_ID")
  13 - filter("TTI"."STATUS"=1)

Column Projection Information (identified by operation id):
-----------------------------------------------------------

   1 - "TRP"."SITE_ID"[NUMBER,22]
   2 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
       "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
       "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
       "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
   3 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
       "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
       "TRP"."PUSHED_TIME"[DATE,7], "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
       "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
   4 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22], "TRP"."TSA_ID"[NUMBER,22],
       "TRP"."SITE_ID"[NUMBER,22], "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22],
       "TRP"."PUSHED_TIME"[DATE,7]
   5 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22]
   6 - (#keys=0) "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
       "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
   7 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
       "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
   8 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
       "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]
   9 - (#keys=1) "TRP"."TSA_ID"[NUMBER,22], "TTI"."TSA_ID"[NUMBER,22],
       "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7],
       "TRP"."CURR_RSN"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7], "TTI"."STATUS"[NUMBER,22],
       "TTI"."MAX_INSTALL"[NUMBER,22]
  10 - (#keys=1) "TS"."SITE_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TRP"."TSA_ID"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7], "TRP"."CURR_RSN"[NUMBER,22],
       "TRP"."PUSHED_RSN"[NUMBER,22]
  11 - "TS"."SITE_ID"[NUMBER,22], "TS"."WORKAHEAD_COUNT"[NUMBER,22],
       "TS"."WORKAHEAD_TIME"[NUMBER,22]
  12 - "TRP"."TSA_ID"[NUMBER,22], "TRP"."SITE_ID"[NUMBER,22],
       "TRP"."CURR_RSN"[NUMBER,22], "TRP"."PUSHED_RSN"[NUMBER,22], "TRP"."PUSHED_TIME"[DATE,7]
  13 - "TTI"."TSA_ID"[NUMBER,22], "TTI"."STATUS"[NUMBER,22],
       "TTI"."MAX_INSTALL"[NUMBER,22], "TTI"."CREATED_DATE"[DATE,7]


105 rows selected.
sizes of the objects concerned = >
OWNER           SEGMENT_NAME                   SEGMENT_TYPE         TABLESPACE_NAME      EXTENTS           BYTES_
--------------- ------------------------------ -------------------- -------------------- ------- ----------------
AZD_SCHM     TAS_TSA_INFO                   TABLE                TATSU_DATA_TS             22        7,340,032
AZD_SCHM     TAS_TSA_INFO_PK                INDEX                TATSU_DATA_TS             17        2,097,152
--------------- ------------------------------ -------------------- -------------------- ------- ----------------
AZD_SCHM     TAS_RECEIPTS_PROCESS           TABLE                TATSU_DATA_TS              1           65,536
AZD_SCHM     TAS_RECEIPTS_PROCESS_IDX       INDEX                TATSU_INDEX_TS             1           65,536
--------------- ------------------------------ -------------------- -------------------- ------- ----------------
AZD_SCHM     TAS_SITE                       TABLE                TATSU_DATA_TS              1           65,536
AZD_SCHM     TAS_SITE_NAME_UNQ              INDEX                TATSU_INDEX_TS             1           65,536
AZD_SCHM     TAS_SITE_PK                    INDEX                TATSU_DATA_TS              1           65,536
--------------- ------------------------------ -------------------- -------------------- ------- ----------------
Please suggest how to tune this above SQL

Above sql plan looks good


Any comment and help is appreciated highely.

Thank you and best regards,
IVW

Hello
It is a production system?
Are you a license to use the AWR?

concerning

Alan

Tags: Database

Similar Questions

  • elockplugin that this need for now

    that this need for now

    Probably an Acer Empowering Technology.

    http://support.Acer-euro.com/empowering_technology/utility.html

  • HowTo: "don't show this update" for Microsoft Silverlight?

    I have a problem preventing the wanting to install Silverlight from Microsoft/Windows Update. Every time when I do a Microsoft/Windows Update, the 'software, optional"has at least a suggested entry: Silverlight.

    The first 10 + times this happened, I clicked on the "don't show me this update again", but it has always been ignored. The of Ms/Win next update, the update of Silverlight is there still.

    I'm not anti-Silverlight, but I do not need to have installed and prefer not to see the recommendation every time. IIRC, I installed it once on a virtual machine of MsVpc2007-SP1. Seemed ok but not essential that I have the boss needs to do.

    I'm a developer of software (for most MFC) who prefer to have my score of development as 'vanilla' as possible with only these tools/utilities that I have found to be essential/reliable/stable/etc...

    I could check with success "don't show me this update again" for most of the optional software utilities, such as Search, PowerShell, .NET, etc. Silverlight seems the only one that does not take account of the "don't show this update again."

    Hi l_d_allan,.

    Thanks for the reply.

    Please take a look at the following links for more information about Silverlight.
    Description of the update for Silverlight: http://support.microsoft.com/kb/946609

    The Silverlight issues other than to install and configure, meet their needs through the FAQ and newsgroups, Microsoft Knowledge Base is available on the Microsoft Web site at the following address: http://silverlight.net/forums

    All the best!

    Thank you, and in what concerns:
    Syed V - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Oracle's solution for this need for specific research.

    Hello

    We are on Oracle 11.2.0.2 on Solaris 10. We need to be able to search on data that have diacritics and we should be able to make the serach ignoring this diacritical. That is the requirement. Now, I could hear that Oracle Text has a preference called BASIC_LEXER which can ignore diacritics and so only this feature I implemented Oracle Text and just for this DIACRITIC search and no other need.

    I mean I put up preferably like this:
      ctxsys.ctx_ddl.create_preference ('cust_lexer', 'BASIC_LEXER');
      ctxsys.ctx_ddl.set_attribute ('cust_lexer', 'base_letter', 'YES'); -- removes diacritics
    
    
    With this I set up like this:
    
    CREATE TABLE TEXT_TEST
    (
      NAME  VARCHAR2(255 BYTE)
    );
    
    --created Oracle Text index
    
    CREATE INDEX TEXT_TEST_IDX1 ON TEXT_TEST
    (NAME)
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS('LEXER cust_lexer WORDLIST cust_wl SYNC (ON COMMIT)');
    --sample data to illustrate the problem
    
    Insert into TEXT_TEST
       (NAME)
     Values
       ('muller');
    Insert into TEXT_TEST
       (NAME)
     Values
       ('müller');
    Insert into TEXT_TEST
       (NAME)
     Values
       ('MULLER');
    Insert into TEXT_TEST
       (NAME)
     Values
       ('MÜLLER');
    Insert into TEXT_TEST
       (NAME)
     Values
       ('PAUL HERNANDEZ');
    Insert into TEXT_TEST
       (NAME)
     Values
       ('CHRISTOPHER Phil');
    COMMIT;
    
    --Now there is an alternative solution that is there,  instead of thee Oracle Text which is just a plain function given below (and it seems to work neat for my simple need of removing diacritical characters effect in search)
    --I need to evaluate which is better given my specific needs -the function below or Oracle Text.
    
    CREATE OR REPLACE FUNCTION remove_dia(p_value IN VARCHAR2, p_doUpper IN VARCHAR2 := 'Y')
    RETURN VARCHAR2 DETERMINISTIC
    IS
    OUTPUT_STR VARCHAR2(4000);
    begin
    IF (p_doUpper = 'Y') THEN
       OUTPUT_STR := UPPER(p_value);
    ELSE
       OUTPUT_STR := p_value;
    END IF;
    
    OUTPUT_STR := TRANSLATE(OUTPUT_STR,'ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÑÒÓÔÕÖØÙÚÛÜÝàáâãäåçèéêëìíîïñòóôõöøùúûüýÿ', 'AAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy');
    
    RETURN (OUTPUT_STR);
    end;
    /
    
    
    
    --now I query for which name stats with  a P%:
    --Below query gets me unexpected result of one row as I am using Oracle Text where each word is parsed for search using CONTAINS...
    SQL> select * from text_test where contains(name,'P%')>0;
    
    NAME
    --------------------------------------------------------------------------------
    PAUL HERNANDEZ
    CHRISTOPHER Phil
    
    --Below query gets me the right and expected result of one row...
    SQL> select * from text_test where name like 'P%';
    
    NAME
    --------------------------------------------------------------------------------
    PAUL HERNANDEZ
    
    
    --Below query gets me the right and expected result of one row...
    SQL>  select * from text_test where remove_dia(name) like remove_dia('P%');
    
    NAME
    --------------------------------------------------------------------------------
    PAUL HERNANDEZ
    My need any only had to be able to do a search that ignores diacritical characters. To implement Oracle Text for this reason, I was wondering if it was the right choice! More when I find now that the functionality of the TYPE is not available in Oracle Text - Oracle text search are based on chips, or words, and they differ from the exit of the LIKE operator. So, maybe I just used a simple like function below and used that for my purpose instead of using Oracle Text:

    Just this feature (remove_dia) removes diacritical characters and maybe for my need is all what is needed. Can anyone help to revisit that given my need I better do not use Oracle text? I need to continue to use the feature of as operator and also need to bypass the diacritics so the simple function that I satisfied my need while Oracle Text causes a change in the behavior of search queries.

    Thank you
    OrauserN

    If what you need is AS feature and you do not have one of the features of Oracle complex search text, then I would not use Oracle Text. I would create an index based on a function on your name column that uses your function that removes diacritical marks, so that your searches will be faster. Please see the demo below.

    SCOTT@orcl_11gR2> CREATE TABLE TEXT_TEST
      2    (NAME  VARCHAR2(255 BYTE))
      3  /
    
    Table created.
    
    SCOTT@orcl_11gR2> Insert all
      2  into TEXT_TEST (NAME) Values ('muller')
      3  into TEXT_TEST (NAME) Values ('müller')
      4  into TEXT_TEST (NAME) Values ('MULLER')
      5  into TEXT_TEST (NAME) Values ('MÜLLER')
      6  into TEXT_TEST (NAME) Values ('PAUL HERNANDEZ')
      7  into TEXT_TEST (NAME) Values ('CHRISTOPHER Phil')
      8  select * from dual
      9  /
    
    6 rows created.
    
    SCOTT@orcl_11gR2> CREATE OR REPLACE FUNCTION remove_dia
      2    (p_value   IN VARCHAR2,
      3       p_doUpper IN VARCHAR2 := 'Y')
      4    RETURN VARCHAR2 DETERMINISTIC
      5  IS
      6    OUTPUT_STR VARCHAR2(4000);
      7  begin
      8    IF (p_doUpper = 'Y') THEN
      9        OUTPUT_STR := UPPER(p_value);
     10    ELSE
     11        OUTPUT_STR := p_value;
     12    END IF;
     13    RETURN
     14        TRANSLATE
     15          (OUTPUT_STR,
     16           'ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÑÒÓÔÕÖØÙÚÛÜÝàáâãäåçèéêëìíîïñòóôõöøùúûüýÿ',
     17           'AAAAAACEEEEIIIINOOOOOOUUUUYaaaaaaceeeeiiiinoooooouuuuyy');
     18  end;
     19  /
    
    Function created.
    
    SCOTT@orcl_11gR2> show errors
    No errors.
    SCOTT@orcl_11gR2> CREATE INDEX text_test_remove_dia_name
      2  ON text_test (remove_dia (name))
      3  /
    
    Index created.
    
    SCOTT@orcl_11gR2> set autotrace on explain
    SCOTT@orcl_11gR2> select * from text_test
      2  where  remove_dia (name) like remove_dia ('mü%')
      3  /
    
    NAME
    ------------------------------------------------------------------------------------------------------------------------
    muller
    müller
    MULLER
    MÜLLER
    
    4 rows selected.
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3139591283
    
    ---------------------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |                           |     1 |  2131 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TEXT_TEST                 |     1 |  2131 |     2   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | TEXT_TEST_REMOVE_DIA_NAME |     1 |       |     1   (0)| 00:00:01 |
    ---------------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("SCOTT"."REMOVE_DIA"("NAME") LIKE "REMOVE_DIA"('mü%'))
           filter("SCOTT"."REMOVE_DIA"("NAME") LIKE "REMOVE_DIA"('mü%'))
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    SCOTT@orcl_11gR2> select * from text_test
      2  where  remove_dia (name) like remove_dia ('P%')
      3  /
    
    NAME
    ------------------------------------------------------------------------------------------------------------------------
    PAUL HERNANDEZ
    
    1 row selected.
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 3139591283
    
    ---------------------------------------------------------------------------------------------------------
    | Id  | Operation                   | Name                      | Rows  | Bytes | Cost (%CPU)| Time     |
    ---------------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT            |                           |     1 |  2131 |     2   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS BY INDEX ROWID| TEXT_TEST                 |     1 |  2131 |     2   (0)| 00:00:01 |
    |*  2 |   INDEX RANGE SCAN          | TEXT_TEST_REMOVE_DIA_NAME |     1 |       |     1   (0)| 00:00:01 |
    ---------------------------------------------------------------------------------------------------------
    
    Predicate Information (identified by operation id):
    ---------------------------------------------------
    
       2 - access("SCOTT"."REMOVE_DIA"("NAME") LIKE "REMOVE_DIA"('P%'))
           filter("SCOTT"."REMOVE_DIA"("NAME") LIKE "REMOVE_DIA"('P%'))
    
    Note
    -----
       - dynamic sampling used for this statement (level=2)
    
    SCOTT@orcl_11gR2>
    
  • have a problem with nsLoinManager.js:222 his script to say is do not work, reinstall will not solve this need for assistance.

    problem arises as soon as I start firefox firefox just freezes while I can do other things with my pc,.
    IE exhausted with any problem, but I prefer firefox you want to run again, only ihad clue is this erroe msg, please help me.

    I don't know, I could use it sometime last year, so I'll exclude.
    BTW, I'm 18, which is beta and Yes! problem disappeared

  • SQLSERV. EXC uses more cpu I have one of my production sql server 2008R2 Server

    Hi all

    I am faced with a critical situation question in one of the servers.sqlserv.exc of production uses more CPU (from 90 to 100%)

    Windows version chargeWindows server 2007 standard with SP1
    Processor: Intel (R) CPU Xeon X 5675 @3. 07 GHz, 2.93 GHz
    RAM: 4.00 GB
    System type: 32-bit operating system.

    SQL server version and edition: SQL Server 2008R2 standard 32-bit edition with sp1.

    Please let me know what are the step that I have to take to solve the problem and I would like to know which process is eating more resources.

    Kind regards
    Mahi

    Hello

    Your question is better suited to one of the forums of SQL on Microsoft TechNet here:

    http://social.technet.microsoft.com/Forums/en-us/category/sqlserver .

    I suggest therefore that repost you your question here.

    Thank you.  :)

  • Allocate more cpu

    We have a test server which has 1 database.
    OS: Win2k3
    DB: 10 gr 2

    We have a handful of users or less on this test at a time server. I run a query on a huge view (about 50 million records); and it takes forever. The host of the CPU usage is only going to 11%-13%.

    resource_limit . on the database has the value FALSE. No profile to limit resources have been created on the test server.

    No one is using the machine right now and it makes me nuts to think that I can use only 11 to 13% of the brain of the machine.

    So my question is,
    (1) will allocate more cpu utilization (especially when nobody else uses it) improve my query execution?
    (2) if so, how?

    apex_disco wrote:
    You'd be right. cpu_count is set to 8; but parallel_threads_per_cpu is only 2.

    When a session is only one thread, it can consume only one heart or 1/8 = 12.5%
    Some SQL code cannot be parallelized, so never will consume more of the CPU to 12.5%.

  • Need a tool to identify the most cpu consuming thread.

    I have the database Oracle running on Windows 2008 server edition.

    Recently the oracle process has begun to consume 100% cpu it is not the particular moment where it happens.
    This is why I need a tool to check the particular thread in oracle.exe process consuming more cpu which would help find most cpu of your session in the oracle database.
    Thank you

    Hello

    The Microsoft Answers community focuses on issues and problems related to the consumer environment. Please reach out to the community of professional support in the TechNet below:

    http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

  • whenever I open firefox, I get the message: "Shockwave has stopped responding; "Difficulty, ignore, do not show this message" and it's driving me crazy. I have to wait and wait

    because he go away (sometimes 30 seconds) and I have tried clicking on "do not show this, ' and 'ignore' and others (all the possibilities.) Its driving me crazy and I think the move to Opera instead of Firefox. Can you help me? Thank you. MM2

    Hello

    Some problems with Flash video playback can be resolved by disabling hardware acceleration in Flash Player settings. (See this article for more information on using the Flash plugin in Firefox).

    To turn off hardware acceleration in Flash Player:

    1. Go to the Adobe Flash Player help page.
    2. Right-click on the Flash Player logo on this page.
    3. Click settings on the shortcut menu. The Adobe Flash Player settings screen opens.
    4. Click the icon in the lower left of the Adobe Flash Player settings window to open the display panel.

    5. Remove the enable hardware accelerationcheck box.
    6. Click close to close the Adobe Flash Player settings window.
    7. Restart Firefox.

    This Flash Player help - display settings page contains more information about the Flash Player hardware acceleration, if you are interested.

    Does this solve the problem? Let us know.

  • When you click on "don't show this again option" in "Firefox prevented this page to open in a new window or tab," How do you get the window of options again?

    I clicked by mistake on the choice of "don't show this again option" in the "Firefox prevented this page open in a new window or tab", and now I can't understand how "uncheck" the box and back again once the window options.

    My bad - it was the pop up Adblock Plus 0.7 Addon.

    "I went just the Firefox button orange > Modules > Adblock Plus pop-up Addon 0.7 - > Options > my site rules > the site right click > edit > checked 'Block all pop-up windows' and unchecked" this rule applies to: 'New Windows' and 'new tab '.

    Presto! Firefox works as before.

    I didn't know I had controls within the addon that would affect the Firefox popup blocks the action.

    Please call the attention on the "details of the system more.»

  • My HDD shows this error: "you must format the disk in the M: drive, until you can use it. You want to format? »

    My HDD shows this error: you need to format the disk in drive M: until you can use it. Format you? 
    Please help me! the hard drive is like my life...
    That's the reason of my existence...
    I need in the data and that i will do everything I have to please :/ someone help me
    Please helpppp!

    Original title: WD hard drive problem! Desperately need help. Please

    Hi Arman,

    Thanks for posting your query in Microsoft Community.

    I would say you can remove the drive letter M: using disk management and assign a different drive for the drive letter and check if it helps you to solve the problem and if the drive works very well.

    To change the drive letter in disk management follow the steps below:

    a. open computer by clicking the Start> Control Panel > system and security> Administrative Tools > computer management. If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    (b) in the left pane, click disk management.

    c. click the drive that you want to change and then click change drive letter and paths.

    d. do one of the following:

    • For letter an if it has not already received, click Add, click the letter you want to use and then click OK.
    • To change a drive letter, click change, click assign the following drive letter, click the letter you want to use, and then click OK.
    • To remove a drive letter, click Remove, and then click Yes to confirm that you want to remove.

    Additional information:

    Change, add, or remove a drive letter

    In addition, please refer to the steps posted by NakulShridhar responded on October 14, 2011 in the following thread and check if this can help:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-update/you-need-to-format-the-disk-in-drive-j-before-you/4e153784-3217-4425-9c39-48030af82a13

    Warning:
    Running chkdsk on the drive if bad sectors are found on the disk hard when chkdsk attempts to repair this area if all available on which data can be lost.

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • When I try to connect to wifi, it shows this connection is not available.

    OT: problem with wifi.

    I use a fujitsu laptop computer lh532 and my OS is Windows 8 pro. I can't connect to wifi but it displays connection available. When I try to connect to wifi, it shows this connection is not available. I also try to re install the driver wifi. but the problem is still on. What can I do now?

    Hi Francois,.

    Thanks for the reply.

    Thank you to try the following steps to solve the problem of troubleshooting.

    I need more information this problem so that I can help you better.

    1. Have you followed the steps I provided in the previous answer?

    I suggest you follow the methods mentioned below and check.

    Method 1. If you use a laptop, then I suggest you to check the key wireless keyboard that is on or not.

    Method 2 Try to reset the command netsh winsock via the command prompt.

    1. press Windows + X key and right click on command prompt (which must be run as administrator).
    2. Type "netsh winsock reset" and press enter (without the quotes).
    3. now restart the system.

    Try to follow these methods and response with the State of the question so that we can better help you.

    Thank you.

  • Question of VSphere licenses (attributed more CPU than actually)

    Hello!

    I have three licenses of business (1 to 6 cores per processor) of vSphere 4 with different capacities. And I have a problem with both of them. In VCenter license page shows me that a license assigned to 6 CPU, but its actually attributed only to 4 CPUS (two ESX servers with two cpu's (4cores) of each). And another licensed showed as assigned to 16 CPU, but actually his attributed only to 14 CPU'. This license has a total 16 CPU capacity and that's why I can't add another a host ESX to my Infrastructure. And with last license, I have not any problemms. Why it might be so? Please help me if you know how to solve this problem.

    Try to remove ALL licenses and add them.

    If this does not work go to your portal vLicense on VM Ware, regenerate the NEW keys for your existing licenses and remove existing keys in vCenter, and then ADD the new that you generate.

    You can split a license and then join them that will make new keys.

    Otherwise, you must call the vmware support and ask people to licensing to help you.

  • Updated to 11 GR 2: how much more CPU will get used by RDBMS-process?

    Hello
    We have the intention to upgrade our existing 9i and 10g to 11 GR 2 databases in the next 12 months. We do not expect to change the hardware
    (HPU - UX). One of the IT managers asked the question: how much more CPU adjust through the RDBMS 11 GR 2 system processes
    compared to the DBMS 9i and 10 g system processes?
    I went through the - upgrade-guide installation and 11 GR 2 but has not found an answer to this question. What should be assumed, it is that the
    material remains the same - which means that the CPU will change, be...

    Any useful response will get apologized...

    I don't think that the delta is documented anywhere.

    Minimum requirements for each version of the software are in MOS Doc 169706.1 (Oracle database on Unix AIX, HP - UX, Linux, Mac OS X, Solaris, Tru64 Unix Operating Systems Installation and Configuration requirements Quick Reference (8.0.5 to 11.2))

    HTH
    Srini

  • Why my original Apple Watch do not update 3.0? My information shows my software is up to date with 2.2 and 3.0 is now available. Is this only for new watches?

    My Apple Watch shows that I'm up-to-date 2.2.2. Today 3.0 is available. Is this only for new watches?

    No - watch OS 3 is available for all models of Apple Watch.

    Be patient in waiting for the watch OS update 3 to become available, but start by updating your iPhone on iOS 10:

    Update the software on your iPhone, iPad or iPod touch - Apple Support iOS

Maybe you are looking for

  • Dysfunction of graphics on a Satellite 5200 801

    I have a Toshiba Satellite 5200-801 (nr.PS 520-31P1D-PT) with the following problem: After pressing the button operation, the screen shows vertical stripes, alternately, with large rectangle B & W points. After Windows XP spit and the only thing I ca

  • Cannot change the brightness of the display on my Qosmio X 770

    I don't know what happened... After I bought the laptop (X 770-107) computer I each time improved to 7 Ultimate, then I joined a domain network. After a while I can't press the eco button, he said that some options cannot be changed... Now ive had th

  • DVD-ROM on the Satellite L300 - 144 (PSLB0E) does not

    Hi all I have a problem with my DVD player does not. When I bought the laptop 2 months ago it was working fine, after about 2 weeks the DVD player started playing some DVDs and others read do not. I decided that I was going to go down the slope from

  • Step 3 Setup fails and restarts repeatedly.

    When start the configuration of the computer step 3 appears, and the computer restarts again and again.  Impossible to get on the desktop to run the diagnostics.

  • Callback thread will not end, problem with CNVDisposeData?

    I have a problem with a thread of reminder on a RT system. I work with CVI 8.5 on the pc and the engine Runtime 9.0 on the RT system. I use a client-server architecture, the client writes data to a network 1 d variable, the server is informed via a c