Taking a lot of time to get the result of the query

Hi all

The query below takes a long time for results

select vs.task_name, count(*) fallout_count  from provco.view_stage_history vs
 where record_type in ('TASK')
  and task_name like 'Op-%'
  and vs.line_of_business = 'OPTIONLESS'
--  and vs.task_due_date > ((sysdate - 146)) and vs.task_due_date is not null
--  and vs.order_due_date > ((sysdate - 146)) and vs.order_due_date is not null
  and vs.fallout_date > ((sysdate - 146)) and vs.fallout_date is not null
--  and vs.assignment_date > ((sysdate - 146)) and vs.assignment_date is not null
--  and upper(vs.install_country_code) like 'US%'
  and vs.ban is not null
--  and vs.task_name not in ('ASR-Assignment', 'SOR-Assignment')
  group by vs.task_name order by fallout_count desc;

Its takes an hour to get the result. You will find the description of the table and the index below

CREATE TABLE "PROVCO"."VIEW_STAGE_HISTORY" 
   ( "TASK_ID" NUMBER NOT NULL ENABLE, 
  "ASSIGNMENT_DATE" TIMESTAMP (6) NOT NULL ENABLE, 
  "LINE_OF_BUSINESS" VARCHAR2(30 BYTE) NOT NULL ENABLE, 
  "ORDER_ID" NUMBER NOT NULL ENABLE, 
  "ORDER_NUMBER" VARCHAR2(128 BYTE) NOT NULL ENABLE, 
  "ORDER_VERSION" VARCHAR2(15 BYTE) NOT NULL ENABLE, 
  "ORDER_TYPE" VARCHAR2(25 BYTE), 
  "TASK_NAME" VARCHAR2(60 BYTE) NOT NULL ENABLE, 
  "FALLOUT_DATE" TIMESTAMP (6), 
  "JEOP_CODE" VARCHAR2(64 BYTE), 
  "ERROR_CODE" VARCHAR2(64 BYTE), 
  "ERROR_DESC" VARCHAR2(1000 BYTE), 
  "WORKGROUP" VARCHAR2(30 BYTE), 
  "WORKPOOL" VARCHAR2(50 BYTE), 
  "USER_ID" VARCHAR2(32 BYTE), 
  "RECORD_TYPE" VARCHAR2(40 BYTE) NOT NULL ENABLE, 
  "ASSIGNMENT_TYPE" VARCHAR2(40 BYTE), 
  "ORDER_DUE_DATE" TIMESTAMP (6), 
  "COMMIT_DATE" TIMESTAMP (6), 
  "TASK_DUE_DATE" TIMESTAMP (6), 
  "SEED" VARCHAR2(255 BYTE), 
  "BAN" VARCHAR2(100 BYTE), 
  "ORDER_STATUS" VARCHAR2(64 BYTE), 
  "PROJECT_ID" VARCHAR2(20 BYTE), 
  "CUSTOMER_NAME" VARCHAR2(128 BYTE), 
  "CIRCUIT_ID" VARCHAR2(53 BYTE), 
  "SENSITIVITY_LVL" VARCHAR2(10 BYTE), 
  "BANDWIDTH" VARCHAR2(8 BYTE), 
  "WORK_STEP" NUMBER, 
  "MARKETING_APPROVAL_DATE" TIMESTAMP (6), 
  "INSERTED" TIMESTAMP (6), 
  "UPDATED" TIMESTAMP (6), 
  "INSTALL_COUNTRY_CODE" VARCHAR2(3 BYTE), 
  "SOLD_COUNTRY_CODE" VARCHAR2(3 BYTE), 
  "UPSTREAM_ORDER_NUMBER" VARCHAR2(15 BYTE), 
  "SAR_ID" VARCHAR2(15 BYTE), 
  "DUE_DATE_TYPE" VARCHAR2(4 BYTE), 
  "HOTCUT_IND" VARCHAR2(3 BYTE), 
  "MARKET_SEGMENT" VARCHAR2(50 BYTE), 
  "CNTL_TERM" VARCHAR2(25 BYTE), 
  "SVC_ORD_TYPE" VARCHAR2(40 BYTE), 
  "BLENDED_IND" VARCHAR2(1 BYTE), 
  "RELATED_ORDERS" VARCHAR2(100 BYTE), 
  "TERM_ID" VARCHAR2(20 BYTE), 
  "SUB_SVC_ORD_TYPE" VARCHAR2(40 BYTE), 
  "LAST_TASK_NAME" VARCHAR2(40 BYTE), 
  "PRE_OA_STATUS" VARCHAR2(40 BYTE), 
  "TSP_CODE" VARCHAR2(12 BYTE), 
  "ORDER_CATEGORY" NUMBER, 
  "CHANGE_CATEGORY" NUMBER, 
  "COUNTRY_CODE" VARCHAR2(2 BYTE), 
  "RESELLER_ID" VARCHAR2(19 BYTE), 
  "STATUS_CODE" VARCHAR2(32 BYTE), 
  "STATUS_CATEGORY" VARCHAR2(32 BYTE), 
  "PROVISIONING_LOCATION" VARCHAR2(32 BYTE), 
  "INSTALLED_LOCATION" VARCHAR2(32 BYTE), 
  "DATE_ORDERED" TIMESTAMP (6), 
  "CUSTOMER_NAME_ABBR" VARCHAR2(8 BYTE), 
  "CPE_IND" VARCHAR2(1 BYTE), 
  "CUSTOMER_PON" VARCHAR2(20 BYTE), 
  "PRODUCT_ID" VARCHAR2(20 BYTE), 
  "ASR_PON" VARCHAR2(16 BYTE), 
  "ASR_PON_VER" VARCHAR2(3 BYTE), 
  "ASR_TYPE" VARCHAR2(3 BYTE), 
  "ASR_TRAN_TYPE" VARCHAR2(1 BYTE), 
  "PARTNER_CARRIER_ID" VARCHAR2(8 BYTE), 
  "PREMISE_SEQUENCE_NUMBER" VARCHAR2(3 BYTE), 
  "EXPEDITE_IND" VARCHAR2(6 BYTE), 
  "ORDER_SOURCE" VARCHAR2(40 BYTE), 
  "SERVICE_REQ_ID" VARCHAR2(40 BYTE), 
  "SUB_ORDER_VALUE" VARCHAR2(50 BYTE), 
  "SUB_ORDER_TYPE" VARCHAR2(15 BYTE), 
  "PROV_OWNER" VARCHAR2(32 BYTE), 
  "TASC_OWNER" VARCHAR2(32 BYTE), 
  "DM_OWNER" VARCHAR2(32 BYTE), 
  "ORDNBR_TYPE" VARCHAR2(128 BYTE), 
  "WORK_ID" NUMBER, 
  "GARM_TYPE" VARCHAR2(50 BYTE), 
  "USER_TASK_DUE_DATE" TIMESTAMP (6), 
  CONSTRAINT "VIEW_STAGE_HISTORY_PKY" PRIMARY KEY ("TASK_ID", "ASSIGNMENT_DATE")
  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
  STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_IDX"  ENABLE, 
  SUPPLEMENTAL LOG GROUP "GGS_211360" ("TASK_ID", "ASSIGNMENT_DATE") ALWAYS
   ) SEGMENT CREATION IMMEDIATE 
  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 
 NOCOMPRESS LOGGING
  STORAGE(INITIAL 524288 NEXT 524288 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_DAT" ;


  CREATE INDEX "PROVCO"."VIEW_STAGE_HISTORY_IDX5" ON "PROVCO"."VIEW_STAGE_HISTORY" ("ORDER_NUMBER", "TASK_NAME") 
  PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
  STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_IDX" ;


  CREATE INDEX "PROVCO"."VSH_INSERTED_IDX" ON "PROVCO"."VIEW_STAGE_HISTORY" ("INSERTED") 
  PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
  STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_IDX" ;


  CREATE INDEX "PROVCO"."VSH_LOB_OT_ON_IDX" ON "PROVCO"."VIEW_STAGE_HISTORY" ("LINE_OF_BUSINESS", "ORDER_TYPE", "ORDER_NUMBER") 
  PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
  STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_IDX" ;


  CREATE INDEX "PROVCO"."VSH_LOB_TN_IDX" ON "PROVCO"."VIEW_STAGE_HISTORY" ("LINE_OF_BUSINESS", "TASK_NAME") 
  PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS 
  STORAGE(INITIAL 131072 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
  BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
  TABLESPACE "TBS_PROVCO_IDX" ;

Explain the plan of the query is

SQL> explain plan for
  2  select vs.task_name, count(*) fallout_count  from provco.view_stage_history vs
 where record_type in ('TASK')
  3    4    and task_name like 'Op-%'
  5    and vs.line_of_business = 'OPTIONLESS'
  6  --  and vs.task_due_date > ((sysdate - 146)) and vs.task_due_date is not null
  7  --  and vs.order_due_date > ((sysdate - 146)) and vs.order_due_date is not null
  8    and vs.fallout_date > ((sysdate - 146)) and vs.fallout_date is not null
  9  --  and vs.assignment_date > ((sysdate - 146)) and vs.assignment_date is not null
 10  --  and upper(vs.install_country_code) like 'US%'
 11    and vs.ban is not null
--  and vs.task_name not in ('ASR-Assignment', 'SOR-Assignment')
 12   13    group by vs.task_name order by fallout_count desc;


Explained.


SQL> select plan_table_output from table(dbms_xplan.display('plan_table',null,'typical cost bytes'));


PLAN_TABLE_OUTPUT
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Plan hash value: 3788003769


------------------------------------------------------------------------------------------------------------
| Id  | Operation                     | Name               | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
------------------------------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT              |                    |   191 | 10505 |       |   136K  (1)| 00:27:24 |
|   1 |  SORT ORDER BY                |                    |   191 | 10505 |  1536K|   136K  (1)| 00:27:24 |
|   2 |   SORT GROUP BY NOSORT        |                    |   191 | 10505 |       |   136K  (1)| 00:27:24 |
|*  3 |    TABLE ACCESS BY INDEX ROWID| VIEW_STAGE_HISTORY | 21528 |  1156K|       |   136K  (1)| 00:27:21 |
|*  4 |     INDEX RANGE SCAN          | VSH_LOB_TN_IDX     |   229K|       |       |  1474   (1)| 00:00:18 |
------------------------------------------------------------------------------------------------------------


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


   3 - filter("VS"."BAN" IS NOT NULL AND "RECORD_TYPE"='TASK' AND "VS"."FALLOUT_DATE">SYSDATE@!-146)
   4 - access("VS"."LINE_OF_BUSINESS"='OPTIONLESS' AND "TASK_NAME" LIKE 'Op-%')
       filter("TASK_NAME" LIKE 'Op-%')


18 rows selected.

the view_stage_history table has 19504509

Please let me know somehow that we can speed up the query above.

Thank you

Mani

How much time does it take if you suggest a full table scan?

Tags: Database

Similar Questions

  • I'm trying to download the updates to my computer, but can't. I get the error code 646 and the download fails. I tried to download the update several times, but get the same answer. What is the problem?

    Ideas: I'm trying to download the updates to my computer, but can't. I get the error code 646 and the download fails. I tried to download the update several times, but get the same answer. What is the problem?

    • Pragrams you have problems with
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Hello

    Try this 1st to see if it helps, and it should:

    Description of the Patch registration cleanup tool
    http://support.Microsoft.com/kb/976220/

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

    If necessary :

    Try this - Panel - Windows Updates - on every update that will not be installed - click on the important updates
    or the update itself - double click a view more information (or click top then discovers on the right)

    Those who will take you to a page where you can download the update.

    Or go here and the KBxxxxxx number to download it.

    Download Center - mount the KBxxxxxx.

    Microsoft Download Center
    http://www.Microsoft.com/downloads/en/default.aspx

    Download - SAVE - go to where you put them - click on - RUN AS ADMIN

    Then you can right click on the update in the updates Windows and HIDE.

    If you get an error Installer install this version:

    Windows install 4.5 Redistributable
    http://www.Microsoft.com/downloads/details.aspx?FamilyId=5A58B56F-60B6-4412-95B9-54D056D6F9F4&displaylang=en

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

    Then run this:

    How to reset the Windows Update components? -a Mr Fixit
    http://support.Microsoft.com/kb/971058

    Description of the system for Windows Vista, Windows Server 2008, update tool and
    for Windows 7
    http://support.Microsoft.com/kb/947821

    ------------------------------------------------------------
    Because these are all Office updates you might get more information if necessary in the Agency of those groups that
    may have experienced the same problem.

    Office newsgroups
    http://www.Microsoft.com/Office/Community/en-us/FlyoutOverview.mspx

    Microsoft.public.office.misc discussions
    http://www.Microsoft.com/communities/newsgroups/list/en-us/default.aspx?DG=Microsoft.public.Office.misc&cat=en_us_01cb749f-c998-4762-8099-df71793c11c7&lang=en&CR=us

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

    If necessary you can incident free get reports however the above should take care of it for you.

    Windows updates - free Incident report

    Go here and click on-> Windows Update fails while searching, downloading or installation of updates
    http://support.Microsoft.com/GP/wusupport#tab3

    The security updates, you can get free support Incident report
    http://www.Microsoft.com/protect/resources/support.aspx

    I hope this helps.
    Rob - bicycle - Mark Twain said it is good.

  • For the third time, after re-installing Photoshop components 13, I tried to update, but every time I get the U44M1I200 error code that can help me?

    For the third time, after re-installing Photoshop components 13, I tried to update, but every time I get the U44M1I200 error code that can help me?

    U44... Update error http://forums.adobe.com/thread/1289956 can help

  • have tried four times to get the trial version of captivate 7 to download on my windows 7 64 bit

    have tried four times to get the trial version of Captivate 7 to download on my windows 7 64 bit desktop and displays download manager a message, it is not compatible with my ie11

    There is apparently a problem with IE10 + because it is wrongly considered IE1.  To work around this use another browser or compatibility view (http://windows.microsoft.com/en-us/internet-explorer/use-compatibility-view#ie=ie-10)

  • How to get the query execution time without running...?

    Hello

    I had one condition... as follows...
    I had 3 sql statements. I need to run only sql what runtime is very less.

    Can someone help me, how to get the time query and run this query without using explain plan... ?

    Thank you
    Rajesh

    I can't think in any way at all to get the query execution time without running the query.

    You might get an estimate ( approximation ) If you are using explain plan.

    But you have governed to explain plan for a reason, so I can't help you.
    Why you do not want to use don't explain plan?

  • Is it possible to get the query Details of the old run from oracle?

    Is it possible to get the query Details of the old run from oracle? I mean, I wanted to know the details of a request executed work, I know the time taken by the query to run? Is it possible to know?

    Yes, it is possible to obtain, provided you use enterprise edition version + additional license *. A few tables to get information of are:

    dba_hist_sqltext

    dba_hist_sqlstat

    dba_hist_snapshot

    dba_hist_sql_plan

    dba_hist_active_sess_history

  • How to get the query of the region "PL/SQL function body returns the query string"?

    Hello

    is it possible to get the query string from the region of type "PL/SQL function body returns the query string"?

    I can get the definition of the region as a PL/SQL procedure, but I am interested in the returned query. I tried to write something like

    < pre > v_return_query: = «...» » ;
    : P49_QUERY: = v_return_query;
    Return v_return_query; < / pre >

    to save the return on hidden item P49_QUERY string, but it does not work. I get the error message: ERR-1002 cannot find the item for the "P49_QUERY" element ID in the application '4000 '.

    Kind regards
    Przemek

    If you need to make reference to a page element in the block then you can use this type of control to avoid having to use generic column names:

    if apex_application.get_current_flow_sgid(:APP_ID) = apex_application.get_sgid then-- runtime  :P9_SQL := vSQL;else-- design time  null;end if;
    

    But if all you want to do is capture the SQL debugging you can take all the references element in the block and use the insert statement (in a debug table) as I showed earlier.

    Scott

  • Facing problem after completing an operation taking a lot of time to stop running vi.

    Hello

    I am facing a problem that after having completed an operation of its many take the time to stop the vi.

    Means when an operation are in fact that its application and save the file after you have saved the file vi should be stopped but before he stops time consuming and then its judgment.

    And I put that when user open vi Sound already functioning.

    Please guide me how can I fix this problem

    Thank you much in advance.

    It would be possible to have some problem with the system because I've done a new structure for the same program and even if I get the same problem.

    Now, I try to reduce the repeat function and making vi smooth.

    Thank you very much.

  • Laptop starts sometimes, but most of the time I get the flashing single LED SHIFT NUMLOCK and caps lock.

    Presario CQ61-411WM

    OS is Windows 7

    Most of the time the laptop does not start upward and I get the only witness flashing Caps Lock and Num Loc.  However, if I'm persistent and keep trying the Start button it will start.  After that it starts everything works fine.  I can even do a reboot and it will stop and start up.  But if I make a stop so I have to press the start several times (it will come back with the only witness flashing Caps Lock and Num Loc) before it will start again.

    Any suggestions?

    Buddy,

    The system does not close completely to the bottom of all components during a restart.

    When you can get your backups done, you could do some tests on the material.

    You can do a search using your favorite search engine to learn more about sleep verses shutdown.

    For example: Shut Down versus sleep against Hibernate

    Click on the Thumbs-Up Kudos to testify and say thank you.

    Although I strive to reflect best practices of HP, I do not work for HP.

  • ICX session sharing between EBS and ADF. Navigate from EBS page by page of ADF custom application. but every time I get the session as a GUEST, even if I give valid credentils to enter into EBS.

    Hello

    I am integrating EBS and ADF through sharing of session ICX. Navigate from EBS page by page of ADF custom application. but whenever I get session as GUEST (VALID_GUEST), even if I give credentials valid at the EBS system. I should get a valid session that I have connected with a valid user. As it it a VALID_GUEST that the status of cookie icx, back (he got newspapers/debug) and I am.  Comparing with status cookie VALID icx, so every time system opens the Apps login page.  I used fndext.jar to do this. Please help me on this. I'm not sure it's a problem with DB/EBS EBS system, or the code of the adf. My code spruce is given below.

    import java.io.IOException;

    import java.sql.Connection;

    import java.sql.SQLException;

    Import javax.faces.application.FacesMessage;

    Import javax.faces.context.FacesContext;

    to import javax.servlet.http.HttpServletRequest;

    to import javax.servlet.http.HttpServletResponse;

    Import oracle.adf.controller.v2.lifecycle.Lifecycle;

    Import oracle.adf.controller.v2.lifecycle.PagePhaseEvent;

    Import oracle.adf.controller.v2.lifecycle.PagePhaseListener;

    Import oracle.apps.fnd.ext.common.AppsRequestWrapper;

    Import oracle.apps.fnd.ext.common.CookieStatus;

    Import oracle.apps.fnd.ext.common.EBiz;

    Import oracle.apps.fnd.ext.common.Session;

    / public class MyCustomPhaseListner implements PagePhaseListener {}

    public MyCustomPhaseListner() {}

    Super();

    }

    AppsRequestWrapper wrappedRequest = null;

    HttpServletRequest request = null;

    HttpServletResponse response = null;

    String currentUser store = null;

    String currentUserId = null;

    {} public void afterPhase (PagePhaseEvent pagePhaseEvent)

    If (pagePhaseEvent.getPhaseId () == Lifecycle.PREPARE_RENDER_ID) {}

    System.out.println ("in phase");

    If (wrappedRequest! = null & &)

    wrappedRequest.getConnection ()! = null) {}

    try {}

    If (! wrappedRequest.getConnection () .isClosed ())

    wrappedRequest.getConnection (m:System.NET.Sockets.Socket.close ());

    } catch (SQLException e) {}

    }

    }

    }

    }

    {} public void beforePhase (PagePhaseEvent pagePhaseEvent)

    If (pagePhaseEvent.getPhaseId () == Lifecycle.INIT_CONTEXT_ID) {}

    Channel agent = null;

    System.out.println ("forward Phase");

    FacesContext fctx = FacesContext.getCurrentInstance ();

    request =

    (HttpServletRequest) fctx.getExternalContext () .getRequest ();

    answer =

    (HttpServletResponse) fctx.getExternalContext () m:System.NET.FtpWebRequest.GetResponse ();

    CookieStatus icxCookieStatus = null;

    try {}

    Connection EBSconn = ConnectionProvider.getConnection ();

    EBiz instance = EBizUtil.getEBizInstance ();

    wrappedRequest =

    new AppsRequestWrapper (request, response, EBSconn,

    (instance);

    A session = wrappedRequest.getAppsSession (true);

    tried with "a session = wrappedRequest.getAppsSession ();" / / do not return not of any session

    icxCookieStatus =

    session.getCurrentState () .getIcxCookieStatus ();

    Agent = wrappedRequest.getEbizInstance () .getAppsServletAgent ();

    If (! icxCookieStatus.equals (CookieStatus.VALID)) {}

    response.sendRedirect (agent + "AppsLocalLogin.jsp");

    return;

    }

    currentUser = session.getUserName ();

    currentUserId = session.getUserId ();

    } catch (Exception ob) {}

    ob.printStackTrace ();

    }

    FacesMessage message =

    new FacesMessage ("Session is:" + icxCookieStatus + "" +)

    currentUser + "" + currentUserId);

    fctx.addMessage (null, message);

    }

    }

    }

    Have you checked

    https://blogs.Oracle.com/jruiz/entry/adf_and_oracle_e_business

    https://blogs.Oracle.com/jruiz/entry/adf_and_oracle_e_business2

    http://www.Oracle.com/technetwork/tutorials/EBS-SDK-ADF-1887167.PDF

    https://www.YouTube.com/watch?v=9wGv7yxRgVU

    Timo

  • When I try to run the latest Quick Time, I get the message "Please install application apple support."

    I installed the latest version of Quicktime from Apple, and it seems to be installed OK, but when I try to launch it I get the message "Please install application apple support."

    I am running Windows 7 64 bit on a processor intel 3570 with 16 GB of ram

    Cheerrs

    Garry

    Hello

    As you have problems with the Apple software, I suggest you contact Apple Support.

    http://www.Apple.com/au/support/QuickTime/

    See you soon.

  • only to get the net for what I want to see and have to hit maximize every time to get the full screen

    Whenever I try to set up one of my little Web pages present yourself as half of a page instead of a full screen. I have to type maximize to get the full screen. This just start happening this week 06/05/2014. How can I fix this problem? It is with Windows 7 64 bit.

    Instead of click to enlarge, drag the window edges to a larger size, and then click the red X to close.  Open it again and it should be at the larger size, as you drag out now.

  • Windows 7 by taking a lot of time to start!

    Dear Sir.

    I have a few questions here, and I hope that someone could help me with them. my laptop in the first days it takes only about 30 seconds to start windows, but now I need more than 90 seconds to start windows. I have the machine of SONY (VAIO), model number is CPCCW2S1E. I need to know what takes a long time for the computer to boot. and I would like to know whether the registry is incharge somehow on this subject. I work with photo and video stuff, I always install and uninstall programs, so I thought that maybe make my pc speed. and if the regestry is incharge thereon, is there somehow or no software to clean the registry database or to do something? If there is no recommended program, let me know please...

    Thank you

    Is your system error free?

    To access the system log, select Start, Control Panel, administrative tools, Event Viewer, in the list on the left of the window select Windows and the system logs. Place the cursor on the system, right click and select filter current log. Check the front of the error and click OK and see you only reports errors. Click header to sort on the Date and time. You may need to click a second time to see the last report above.
     
    A tip for posting copies of error reports! Run Event Viewer and double-click the error you want to copy. In the window, you will see a button resembling two pages. Click on the button and close Event Viewer. Now start your message and paste it into the body of the message. Make sure that it is the first dough right out of the event viewer.

    I suggest you download Process Explorer.
    For more information about Process Explorer, see here:
    http://www.Microsoft.com/technet/sysinternals/SystemInformation/ProcessExplorer.mspx

    This freeware utility performs a similar function to the Windows Task Manager, but it goes much further.

    In process Explorer, please add a column. Select View, Select, columns, process, performance, and check the box before the start time. Then, select "Show processes from all Users" and click on the 'Start Time' column header. This will sort so that you can see start with the first sooner. You may need to click twice or three times.

    On my Windows 7 machine, the first point I see is smss.exe = Manager of Session. You should then see a long list of items over a short period of time to load. The boot process is not responding on my computer with two files AVG loading (my anti-virus is AVG 10. Before these two files is a file uns.exe that loaded this morning 2 minutes and 20 seconds after smss.exe. USN.exe is a file of Intel, so may not be on your computer.

    Questions. How long it take to smss.exe loading to the main files to load? What are the files that arrive at the end, and how long does it take so that they appear after smss.exe?
    Can you also detail what anti-malware software is installed?

    Hope this helps, Gerry Cornell

  • How do I check how much time running on the query server

    Hello

    I work as a junior DBA. The guys on the team application gives the SID from v$ session and asking me how long running this query.
    I'm connecting ther server and get the PID and cpu utilization on unixbox, but cannot get it question time.
    Pls help help get duration/how running queries. Verion Oracle's 9i.

    SQL > select * from v version $;

    BANNER
    ----------------------------------------------------------------
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    PL/SQL Release 9.2.0.8.0 - Production
    CORE Production 9.2.0.8.0
    AMT for Solaris: 9.2.0.8.0 - Production Version
    NLSRTL Version 9.2.0.8.0 - Production

    Kind regards
    Vincent

    >
    This means 113547 minutes. Right?
    >

    Yes, it's true. But it is not a few Minutes but microseconds. ELAPSED_TIME is microseconds (10g or higher. Not sure about 9i. Please check the doc)

    >
    Number of executions increasing very fast now its 29999. with in wrigting mail its increase. to get the output why this query execution of this many times.
    >

    This means there are a few sessions by running the same query (which is fine). Only, you will need to tell us why the query is run that many times :) Maybe, you need it!

    Published by: user12035575 on September 11, 2011 14:38

  • If I press the button 2 times to run the query 2 times

    Hello..

    If I press the button 2 times to run query 2 times
    I want to limit this problem, than a run time enough.
    no need to rerun query when I press the button because it will make the erroneous data.

    Please give me a solution
    Maha

    Hello Maha

    did you use KEY-EXEQRY trigger and turn off the query button?

    SET_ITEM_PROPERTY('BLOCK1.) REPRINT ', ENABLED, PROPERTY_FALSE);

    Sorry not clear for me, but plu everything sounds good :)

    Kind regards

    Amatu Allah

Maybe you are looking for

  • How can I put ONLY 9 tabs, NO 15, on the new tab Page?

    How can I put ONLY 9 tabs, NO 15, on the new tab Page?(First OFF... Please do not read this as being written by an angry person.) I'm just frustrated with the browser that I liked for years. I hope someone can help me)For a long time, I had my Firefo

  • 9.2.1 update problem

    Since 9.2.1 update, my iphone 6 plus has several problems... the most important is that it makes the sound of the helicopter during a call or worse still, it is a pure silence! you hear nothing, and on the other side, they can be. what I would do. It

  • PSC 2110 white than yellow when copying and scanning

    Anyone have any ideas why my printer PSC 2110 sees white yellow, when the copy and scanning? For example, when a copy of a white paper with black text and color, white background yellow comes out if I choose the color copy. I did a full reset, but it

  • Deleting the files corrupted in the recycled folder

    I am running Windows XP and I have tried to run the defrag program.  The program will not work until the end because of corrupted files (4) in the recycled folder.  I can view the list of files by going to the command prompt, but no action that I hav

  • How can I remove npfdm.dll in my browser plugin directory

    Download Manager free is not installed correctly, and I want to download with my browser, how to delete files * npfdm.dll* * in the directory my browser plugin