Re: How to make this forum run fast

I counted till eleven, but since I'm a rather quick counter, I'd say about 7 seconds as well.
Could it be that y'all are using Firefox? I'm on IE7.
®
(suspecting commie influence since '77)

sabre150 wrote:
kajbj wrote:
CeciNEstPasUnProgrammeur wrote:
I counted till eleven, but since I'm a rather quick counter, I'd say about 7 seconds as well.
Could it be that y'all are using Firefox? I'm on IE7.
®
(suspecting commie influence since '77)Strange. I tried with IE 7. Loading the main page, about 45 seconds, loading this thread about 30 seconds, getting to the reply page about 3-4 seconds.I find the site blindingly fast! Certainly less than 45 seconds to load the man page and very very much less that 30 seconds for this page. Both typically 1 second with the login page taking about 3 seconds.
Now if only I could access ALL the pages without Server Error
This server has encountered an internal error which prevents it from fulfilling your request. The most likely cause is a misconfiguration. Please ask the administrator to look for messages in the server's error log.
What forum? id 5?

Similar Messages

  • How to make mac desktop run faster . It is starting to freeze up in Safari sometimes.

    How to make IMAC desktop run faster.

    Mavericks is the Operating System, while you could call it a program it's the OS. We need to know:
    what year iMac you have including the amount of RAM installed, the capacity of the internal HD and how much is stored on it and under what conditions the computer runs slowly. Please CAREFULLY read Help us to help you on these forums

  • How to make this forum better?

    Hi friends
    I have the ability to create an announcement inside this forum. So I'm thinking about this possibility. I'm following this forum for about a time just to be sure it's free of spammers (and also for learning each time more about scripts and participating when having time).
    I'd like your opinion....
    What do you think about creating an announcement called "Read it before posting your questions here". The body of the announcement should tell the users links from where are the manuals of Illustrator Scripting and the JavaScripts Tools Guide. This could help people find useful informations of Illustrator scripting and know more about it. Do you think it would be useful?
    Also, do you think some times...is there some users who ask questions, but, at true their objectives is to make the specialists here to create an entire code for them?? ...like..."Hey, I want to create a snow ball in Illustrator. How could I do via script?"
    If you perceive there are such users, do you think would be good to include in the announcement a paragraph to warn about this?? So, this would alert this forum is a place essentially for "help"?
    Can you share your inputs about this subject, on how I could create a good announcement to help new users to use it better?
    Thank you very much
    Best Regards
    Gustavo.
    Message was edited by: Gustavo Del Vechio

    Carlos
    When I open the Illustrator scripting main page (http://forums.adobe.com/community/illustrator/illustrator_scripting), logged or not, the new yellow widget appears above the list of discussions. See my print of screen.
    Other unecessary widgets was taken off from the avaliable area of the page.
    Don't you see it in your side?
    Best Regards
    Gustavo.

  • How to make this example run on IE ?

    for example below :
    * LunarPhasesRB.java requires the following files:
    *    images/image0.jpg
    *    images/image1.jpg
    *    images/image2.jpg
    *    images/image3.jpg
    *    images/image4.jpg
    *    images/image5.jpg
    *    images/image6.jpg
    *    images/image7.jpg
    * It is a modified version of LunarPhases.java that
    * uses radio buttons instead of a combo box.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.URL;
    public class LunarPhasesRB implements ActionListener {
        final static int NUM_IMAGES = 8;
        final static int START_INDEX = 3;
        ImageIcon[] images = new ImageIcon[NUM_IMAGES];
        JPanel mainPanel, selectPanel, displayPanel;
        JLabel phaseIconLabel = null;
        public LunarPhasesRB() {
            //Create the phase selection and display panels.
            selectPanel = new JPanel();
            displayPanel = new JPanel();
            //Add various widgets to the sub panels.
            addWidgets();
            //Create the main panel to contain the two sub panels.
            mainPanel = new JPanel();
            mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.PAGE_AXIS));
            mainPanel.setBorder(BorderFactory.createEmptyBorder(5,5,5,5));
            //Add the select and display panels to the main panel.
            mainPanel.add(selectPanel);
            mainPanel.add(displayPanel);
         * Get the images and set up the widgets.
        private void addWidgets() {
             * Create a label for displaying the moon phase images and
             * put a border around it.
            phaseIconLabel = new JLabel();
            phaseIconLabel.setHorizontalAlignment(JLabel.CENTER);
            phaseIconLabel.setVerticalAlignment(JLabel.CENTER);
            phaseIconLabel.setVerticalTextPosition(JLabel.CENTER);
            phaseIconLabel.setHorizontalTextPosition(JLabel.CENTER);
            phaseIconLabel.setBorder(BorderFactory.createCompoundBorder(
                BorderFactory.createLoweredBevelBorder(),
                BorderFactory.createEmptyBorder(5,5,5,5)));
            phaseIconLabel.setBorder(BorderFactory.createCompoundBorder(
                BorderFactory.createEmptyBorder(0,0,10,0),
                phaseIconLabel.getBorder()));
         //Create radio buttons with lunar phase choices.
         JRadioButton newButton = new JRadioButton("New");
         newButton.setActionCommand("0");
         newButton.setSelected(true);
         JRadioButton waxingCrescentButton =  new JRadioButton("Waxing Crescent");
         waxingCrescentButton.setActionCommand("1");
         JRadioButton firstQuarterButton = new JRadioButton("First Quarter");
         firstQuarterButton.setActionCommand("2");
         JRadioButton waxingGibbousButton = new JRadioButton("Waxing Gibbous");
         waxingGibbousButton.setActionCommand("3");
         JRadioButton fullButton = new JRadioButton("Full");
         fullButton.setActionCommand("4");
         JRadioButton waningGibbousButton = new JRadioButton("Waning Gibbous");
         waningGibbousButton.setActionCommand("5");
         JRadioButton thirdQuarterButton = new JRadioButton("Third Quarter");
         thirdQuarterButton.setActionCommand("6");
         JRadioButton waningCrescentButton = new JRadioButton("Waning Crescent");
         waningCrescentButton.setActionCommand("7");
         // Create a button group and add the radio buttons.
         ButtonGroup group = new ButtonGroup();
         group.add(newButton);
         group.add(waxingCrescentButton);
         group.add(firstQuarterButton);
         group.add(waxingGibbousButton);
         group.add(fullButton);
         group.add(waningGibbousButton);
         group.add(thirdQuarterButton);
         group.add(waningCrescentButton);
            // Display the first image.
            phaseIconLabel.setIcon(new ImageIcon("images/image0.jpg"));
            phaseIconLabel.setText("");
           //Make the radio buttons appear in a center-aligned column.
            selectPanel.setLayout(new BoxLayout(selectPanel, BoxLayout.PAGE_AXIS));
           selectPanel.setAlignmentX(Component.CENTER_ALIGNMENT);
            //Add a border around the select panel.
            selectPanel.setBorder(BorderFactory.createCompoundBorder(
                BorderFactory.createTitledBorder("Select Phase"),
                BorderFactory.createEmptyBorder(5,5,5,5)));
            //Add a border around the display panel.
            displayPanel.setBorder(BorderFactory.createCompoundBorder(
                BorderFactory.createTitledBorder("Display Phase"),
                BorderFactory.createEmptyBorder(5,5,5,5)));
            //Add image and moon phases radio buttons to select panel.
            displayPanel.add(phaseIconLabel);
           selectPanel.add(newButton);
           selectPanel.add(waxingCrescentButton);
           selectPanel.add(firstQuarterButton);
           selectPanel.add(waxingGibbousButton);
           selectPanel.add(fullButton);
           selectPanel.add(waningGibbousButton);
           selectPanel.add(thirdQuarterButton);
           selectPanel.add(waningCrescentButton);
            //Listen to events from the radio buttons.
           newButton.addActionListener(this);
           waxingCrescentButton.addActionListener(this);
           firstQuarterButton.addActionListener(this);
           waxingGibbousButton.addActionListener(this);
           fullButton.addActionListener(this);
           waningGibbousButton.addActionListener(this);
           thirdQuarterButton.addActionListener(this);
           waningCrescentButton.addActionListener(this);
        // Load the selected image (lazy image loading).
        public void actionPerformed(ActionEvent event) {
           phaseIconLabel.setIcon(new ImageIcon("images/image"
                                  + event.getActionCommand()
                                  + ".jpg"));
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Create a new instance of LunarPhasesRB.
            LunarPhasesRB phases = new LunarPhasesRB();
            //Create and set up the window.
            JFrame lunarPhasesFrame = new JFrame("Lunar Phases");
            lunarPhasesFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            lunarPhasesFrame.setContentPane(phases.mainPanel);
            //Display the window.
            lunarPhasesFrame.pack();
            lunarPhasesFrame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
    }i know run above example on command line while i don't how to make run on IE ?
    because mostly people are used to look at sth on IE ?
    so i think it's important to runs javacode on IE .
    who can help me ?
    thanks!

    If you want it to execute inside a web browser then you need to convert it to an applet. Alternatively you can investigate Java Web Start.

  • How to make this code go faster?

    Hi,
    I have this code and its really slow. My question is how to make it faster since its taking about 10 hours.
    Code:
      loop at ti_equi.
        select matnr sernr lief_nr kunde datum uzeit bwart posnr
    appending corresponding fields of table ti_ser01
          from z_objk_ser01
         where sernr eq ti_equi-sernr
           and matnr eq ti_equi-matnr.
      endloop.
      delete ti_ser01 where not ( kunde in s_kunnr and
                                  bwart = '631' ).
      sort ti_ser01 by matnr sernr datum descending uzeit descending.
      delete adjacent duplicates from ti_ser01 comparing matnr sernr.
    What this code does is fetch all these fields and then just keeps the one that's been modified at last.
    I have created an index by sernr and matnr in table objk which makes it just a little bit faster.
    Any helpful answer will be appreciated.
    Regards,
    Roberto
    Edited by: Julius Bussche on Jan 27, 2009 4:29 PM
    Code tags added. Please use more meaningfull subject titles

    Hi roberto
    please avoid select statment inside loop.
    use code
    data: index type sy-tabix.
    data : ti-ser011 type standard table of zobjk-ser01 with header line.
    select matnr sernr lief_nr kunde datum uzeit bwart posnr
          from z_objk_ser01 into table ti_ser01.
    sort ti_ser01 by sernr matnr.
    sort ti_equi by sernr matnr.
    index = 1.
    loop at ti_equi.
        loop at ti_ser01 from index
         if  ti_ser01-sernr = ti_equi-sernr
              and ti_ser01-matnr = ti_equi-matnr.
            move-corresponding ti_ser01 to ti_ser011.
            append ti_ser011.
            index = sy-tabix.
            exit.  
         endif.
        endloop.
    endloop.
    here i have used one more internal table ti_ser011.
    you can delete specific record from ti_ser01 internal table on condition. at that time u don't need to create any other internal table like ti-ser011.
    in place of loop select statement---endloop.
    you can use this code. I think it will help you.
    please find if it is udeful.

  • How to make my iMac run faster

    Hi there,
    I have a 2011 iMac which is hardly used.  I have upgraded the ram to 12 GB when I purchased it.  However, it takes ages for the computer to run, especially during start-up.
    Any thoughts on how to make it run faster?
    Cheers,
    Gary

    Make sure you installed the correct RAM. Installing the wrong type will cause the system to become unstable and slow.

  • How Can I make this query run faster

    SQL> EXPLAIN PLAN FOR SELECT a.txid, a.methodid, a.serviceid, a.nodename, a.env, a.ts, a.te, a.resultcode, a.resultmessage FROM g2log.txmaster a,
    2 g2log.txlookup b WHERE b.key = 'sbcgnfttxuniquedslamportid' AND b.value = 'MTC3LS733001-1-1-2-13' AND a.txid = b.txid ORDER BY ts desc;
    Explained.
    Elapsed: 00:00:00.01
    SQL> @$ORACLE_HOME/rdbms/admin/utlxpls.sql
    PLAN_TABLE_OUTPUT
    Plan hash value: 3790334907
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Pstart| Pstop |
    | 0 | SELECT STATEMENT | | 578 | 108K| 1267 (1)| 00:00:16 | | |
    | 1 | PX COORDINATOR | | | | | | | |
    | 2 | PX SEND QC (ORDER) | :TQ10001 | 578 | 108K| 1267 (1)| 00:00:16 | | |
    | 3 | SORT ORDER BY | | 578 | 108K| 1267 (1)| 00:00:16 | | |
    | 4 | PX RECEIVE | | | | | | | |
    | 5 | PX SEND RANGE | :TQ10000 | | | | | | |
    | 6 | NESTED LOOPS | | | | | | | |
    | 7 | NESTED LOOPS | | 578 | 108K| 1266 (1)| 00:00:16 | | |
    | 8 | PX PARTITION RANGE ALL | | 578 | 44506 | 109 (0)| 00:00:02 | 1 | 27 |
    | 9 | TABLE ACCESS BY LOCAL INDEX ROWID| TXLOOKUP | 578 | 44506 | 109 (0)| 00:00:02 | 1 | 27 |
    |* 10 | INDEX RANGE SCAN | TX_KEY_VAL | 578 | | 58 (0)| 00:00:01 | 1 | 27 |
    |* 11 | INDEX UNIQUE SCAN | TXMASTER_TXID_PK | 1 | | 1 (0)| 00:00:01 | | |
    | 12 | TABLE ACCESS BY GLOBAL INDEX ROWID | TXMASTER | 1 | 116 | 2 (0)| 00:00:01 | ROWID | ROWID |
    Predicate Information (identified by operation id):
    10 - access("B"."KEY"='sbcgnfttxuniquedslamportid' AND "B"."VALUE"='MTC3LS733001-1-1-2-13')
    11 - access("A"."TXID"="B"."TXID")
    25 rows selected.
    I have gathered stats on the two tables as well
    SQL> select count(*) from g2log.txmaster;
    COUNT(*)
    88812
    SQL> select count(*) from g2log.txlookup;
    COUNT(*)
    228883

    I bellieve that it is disabled as well:
    SQL> show parameter parallel
    NAME TYPE VALUE
    fast_start_parallel_rollback string LOW
    parallel_adaptive_multi_user boolean TRUE
    parallel_automatic_tuning boolean FALSE
    parallel_degree_limit string CPU
    parallel_degree_policy string MANUAL
    parallel_execution_message_size integer 16384
    parallel_force_local boolean FALSE
    parallel_instance_group string
    parallel_io_cap_enabled boolean FALSE
    parallel_max_servers integer 985
    parallel_min_percent integer 0
    parallel_min_servers integer 0
    parallel_min_time_threshold string AUTO
    parallel_server boolean TRUE
    parallel_server_instances integer 2
    parallel_servers_target integer 1024
    parallel_threads_per_cpu integer 2
    recovery_parallelism integer 0

  • How to make this query go faster

    Hi ,
    I have the following query :
    select a.* from
    tbl1 a , tbl2 b
    where a.id = b.id
    substr(b.id , 3, 2) <> 'XX'
    and b.date1 is not null
    and b.date1 >= sysdate - 90 ;
    tbl1 - 21 million rows
    tbl2 - 2 millions
    i specify this hints /*+ INDEX(idxa_1 , idxa_2) INDEX(ixdb_1)
    where idxa_1 --> b.lotid
    idxa_2 --> b.date1
    idxb_1 --> a.lotid
    IF i DO NOT include b.date1 is not null and b.date1 >= sysdate - 90 ,
    from explain plan i could see it using a FAST FULL SCAN which really returns very fast
    HOWEVER if i include b.date1 is not null and b.date1 >= sysdate - 90
    , from explain plain it uses row index and then there's a range scan and its slow
    how can i improve the performance of this query ?
    pls advise
    tks & rdgs

    Don't create the temporary table.
    Create a function based index on table two
    substr(id , 3, 2)Make sure you have gathered statistics on the tables.
    Remove the hint.
    select a.* from
    tbl1 a , tbl2 b
    where a.id = b.id
    and substr(b.id , 3, 2) <> 'XX'
    and b.date1 >= sysdate - 90;If you still have performance problems, post the formatted explain plan from sqlplus.
    Read the Performance Tuning Guide.
    Unfortunately this is not urs advice.

  • How to make my MAC run faster

    My MAC is starting to run slow and I was wondering what are some ways (besides rebuild it) to make it faster? I don't have many files and programs but it is slow. I am an advanced user but I am not that good with the Linux commands etc. So if anything is command line would you please type them out.
    Thanks for any help.

    Thank but I think it is a little more than that. I dont have many things running. I have most closed and it is still very slow. This Laptop  is only a year old. i only have two apps open but it is still slow.
    Thanks

  • What can I do to make this query run faster

    Hi All,
    The below query is taking a long time. Is there any thing that I can do to shorten its time.
    SELECT C.FOLIO_NO, C.CO_TRANS_NO TRANS_NO, to_char(C.CREATED_DATE, 'dd/mm/yyyy') DOC_DATE, DECODE(PP.NAME, NULL, D.EMP_NAME, PP.NAME) LODGED_BY, decode(sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID), Null, '-', sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID)) DATE_CHANGE, P.RECEIPT_NO, decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id) TRANS_ID,(case when decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR20' then 1 when decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR03' then 2 end) TRANS_TYPE FROM CO_TRANS_MASTER C, PAYMENT_DETAIL P, PEOPLE_PROFILE PP, SC_AGENT_EMP D, M_CAA_TRANS E     where '1' <> TRIM(UPPER('S0750070Z')) and (C.CO_TRANS_ID in TRIM(UPPER('AR20')) OR C.CO_TRANS_ID in TRIM(UPPER('AR03'))OR c.co_trans_id IN TRIM (UPPER ('A020')))and C.CO_TRANS_NO = P.TRANS_NO and (C.VOID_IND = 'N' or C.VOID_IND is Null) and C.CREATED_BY = PP.PP_ID(+) and C.PROF_NO = D.PROF_NO(+) and C.CREATED_BY = D.EMP_ID (+) and TRIM(UPPER(C.CO_NO)) = TRIM(UPPER('200101586W')) and c.co_trans_id = e.trans_id (+) order by FOLIO_NO;
    SQL>
    SQL> show parameter user_dump_dest
    NAME                                 TYPE        VALUE
    user_dump_dest                       string      /u01/app/oracle/diag/rdbms/ebi
    zfile/EBIZFILE1/trace
    SQL> show parameter optimizer
    NAME                                 TYPE        VALUE
    optimizer_capture_sql_plan_baselines boolean     FALSE
    optimizer_dynamic_sampling           integer     2
    optimizer_features_enable            string      11.2.0.2
    optimizer_index_caching              integer     0
    optimizer_index_cost_adj             integer     100
    optimizer_mode                       string      ALL_ROWS
    optimizer_secure_view_merging        boolean     TRUE
    optimizer_use_invisible_indexes      boolean     FALSE
    optimizer_use_pending_statistics     boolean     FALSE
    optimizer_use_sql_plan_baselines     boolean     TRUE
    SQL> show parameter db_file_multi
    NAME                                 TYPE        VALUE
    db_file_multiblock_read_count        integer     128
    SQL> show parameter db_block_size
    NAME                                 TYPE        VALUE
    db_block_size                        integer     8192
    SQL> show parameter cursor_sharing
    NAME                                 TYPE        VALUE
    cursor_sharing                       string      EXACT
    SQL>
    SQL> column sname format a20
    SQL> column pname format a20
    SQL> column pval2 format a20
    SQL>
    SQL> select
      2  sname, pname, pval1, pval2
      3  from
      4  sys.aux_stats$;
    SNAME                PNAME                     PVAL1 PVAL2
    SYSSTATS_INFO        STATUS                          COMPLETED
    SYSSTATS_INFO        DSTART                          09-11-2010 14:25
    SYSSTATS_INFO        DSTOP                           09-11-2010 14:25
    SYSSTATS_INFO        FLAGS                         1
    SYSSTATS_MAIN        CPUSPEEDNW           739.734748
    SYSSTATS_MAIN        IOSEEKTIM                    10
    SYSSTATS_MAIN        IOTFRSPEED                 4096
    SYSSTATS_MAIN        SREADTIM
    SYSSTATS_MAIN        MREADTIM
    SYSSTATS_MAIN        CPUSPEED
    SYSSTATS_MAIN        MBRC
    SYSSTATS_MAIN        MAXTHR
    SYSSTATS_MAIN        SLAVETHR
    13 rows selected.
    Elapsed: 00:00:00.06
    SQL>
    SQL> explain plan for
      2  SELECT C.FOLIO_NO, C.CO_TRANS_NO TRANS_NO, to_char(C.CREATED_DATE, 'dd/mm/yyyy') DOC_DATE, DECODE(PP.NAME, NULL, D.EMP_NAME, PP.NAME) LODGED_BY, decode(sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID), Null, '-', sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID)) DATE_CHANGE, P.RECEIPT_NO, decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id) TRANS_ID,(case when  decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR20' then 1 when  decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR03' then 2 end) TRANS_TYPE FROM CO_TRANS_MASTER C, PAYMENT_DETAIL P, PEOPLE_PROFILE PP, SC_AGENT_EMP D, M_CAA_TRANS E     where '1' <> TRIM(UPPER('S0750070Z')) and (C.CO_TRANS_ID in TRIM(UPPER('AR20')) OR C.CO_TRANS_ID in TRIM(UPPER('AR03'))OR c.co_trans_id IN TRIM (UPPER ('A020')))and C.CO_TRANS_NO = P.TRANS_NO and (C.VOID_IND = 'N' or C.VOID_IND is Null) and C.CREATED_BY = PP.PP_ID(+) and C.PROF_NO = D.PROF_NO(+) and C.CREATED_BY = D.EMP_ID (+) and TRIM(UPPER(C.CO_NO)) =  TRIM(UPPER('200101586W')) and c.co_trans_id = e.trans_id (+) order by FOLIO_NO;
    Explained.
    Elapsed: 00:00:00.09
    SQL>
    SQL> set pagesize 1000;
    SQL> set linesize 170;
    SQL> @/u01/app/oracle/product/11.2.0/rdbms/admin/utlxpls.sql
    SQL> Rem
    SQL> Rem $Header: utlxpls.sql 26-feb-2002.19:49:37 bdagevil Exp $
    SQL> Rem
    SQL> Rem utlxpls.sql
    SQL> Rem
    SQL> Rem Copyright (c) 1998, 2002, Oracle Corporation.     All rights reserved.
    SQL> Rem
    SQL> Rem    NAME
    SQL> Rem      utlxpls.sql - UTiLity eXPLain Serial plans
    SQL> Rem
    SQL> Rem    DESCRIPTION
    SQL> Rem      script utility to display the explain plan of the last explain plan
    SQL> Rem      command. Do not display information related to Parallel Query
    SQL> Rem
    SQL> Rem    NOTES
    SQL> Rem      Assume that the PLAN_TABLE table has been created. The script
    SQL> Rem      utlxplan.sql should be used to create that table
    SQL> Rem
    SQL> Rem      With SQL*plus, it is recomended to set linesize and pagesize before
    SQL> Rem      running this script. For example:
    SQL> Rem      set linesize 100
    SQL> Rem      set pagesize 0
    SQL> Rem
    SQL> Rem    MODIFIED   (MM/DD/YY)
    SQL> Rem    bdagevil     02/26/02 - cast arguments
    SQL> Rem    bdagevil     01/23/02 - rewrite with new dbms_xplan package
    SQL> Rem    bdagevil     04/05/01 - include CPU cost
    SQL> Rem    bdagevil     02/27/01 - increase Name column
    SQL> Rem    jihuang     06/14/00 - change order by to order siblings by.
    SQL> Rem    jihuang     05/10/00 - include plan info for recursive SQL in LE row source
    SQL> Rem    bdagevil     01/05/00 - add order-by to make it deterministic
    SQL> Rem    kquinn     06/28/99 - 901272: Add missing semicolon
    SQL> Rem    bdagevil     05/07/98 - Explain plan script for serial plans
    SQL> Rem    bdagevil     05/07/98 - Created
    SQL> Rem
    SQL>
    SQL> set markup html preformat on
    SQL>
    SQL> Rem
    SQL> Rem Use the display table function from the dbms_xplan package to display the last
    SQL> Rem explain plan. Force serial option for backward compatibility
    SQL> Rem
    SQL> select plan_table_output from table(dbms_xplan.display('plan_table',null,'serial'));
    PLAN_TABLE_OUTPUT
    Plan hash value: 2520189693
    | Id  | Operation                         | Name                    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                  |                         |   592 | 85248 | 16573   (1)| 00:03:19 |
    |   1 |  TABLE ACCESS BY INDEX ROWID      | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN               | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   3 |  TABLE ACCESS BY INDEX ROWID      | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  4 |   INDEX UNIQUE SCAN               | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   5 |   TABLE ACCESS BY INDEX ROWID     | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  6 |    INDEX UNIQUE SCAN              | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   7 |  SORT ORDER BY                    |                         |   592 | 85248 | 16573   (1)| 00:03:19 |
    |   8 |   NESTED LOOPS                    |                         |       |       |            |          |
    |   9 |    NESTED LOOPS                   |                         |   592 | 85248 | 16572   (1)| 00:03:19 |
    |  10 |     NESTED LOOPS OUTER            |                         |   477 | 54855 | 15329   (1)| 00:03:04 |
    |  11 |      NESTED LOOPS OUTER           |                         |   477 | 41499 | 14374   (1)| 00:02:53 |
    |  12 |       INLIST ITERATOR             |                         |       |       |            |          |
    |* 13 |        TABLE ACCESS BY INDEX ROWID| CO_TRANS_MASTER         |   477 | 22896 | 14367   (1)| 00:02:53 |
    |* 14 |         INDEX RANGE SCAN          | IDX_CO_TRANS_ID         | 67751 |       |   150   (1)| 00:00:02 |
    |  15 |       TABLE ACCESS BY INDEX ROWID | SC_AGENT_EMP            |     1 |    39 |     1   (0)| 00:00:01 |
    |* 16 |        INDEX UNIQUE SCAN          | PK_SC_AGENT_EMP         |     1 |       |     0   (0)| 00:00:01 |
    |  17 |      TABLE ACCESS BY INDEX ROWID  | PEOPLE_PROFILE          |     1 |    28 |     2   (0)| 00:00:01 |
    |* 18 |       INDEX UNIQUE SCAN           | SYS_C0063100            |     1 |       |     1   (0)| 00:00:01 |
    |* 19 |     INDEX RANGE SCAN              | IDX_PAY_DETAIL_TRANS_NO |     1 |       |     2   (0)| 00:00:01 |
    |  20 |    TABLE ACCESS BY INDEX ROWID    | PAYMENT_DETAIL          |     1 |    29 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("F"."CO_TRANS_NO"=:B1)
       4 - access("F"."CO_TRANS_NO"=:B1)
       6 - access("F"."CO_TRANS_NO"=:B1)
      13 - filter(TRIM(UPPER("SYS_ALIAS_3"."CO_NO"))='200101586W' AND ("SYS_ALIAS_3"."VOID_IND" IS NULL
                  OR "SYS_ALIAS_3"."VOID_IND"='N'))
      14 - access("SYS_ALIAS_3"."CO_TRANS_ID"='A020' OR "SYS_ALIAS_3"."CO_TRANS_ID"='AR03' OR
                  "SYS_ALIAS_3"."CO_TRANS_ID"='AR20')
      16 - access("SYS_ALIAS_3"."PROF_NO"="D"."PROF_NO"(+) AND
                  "SYS_ALIAS_3"."CREATED_BY"="D"."EMP_ID"(+))
      18 - access("SYS_ALIAS_3"."CREATED_BY"="PP"."PP_ID"(+))
      19 - access("SYS_ALIAS_3"."CO_TRANS_NO"="P"."TRANS_NO")
    42 rows selected.
    Elapsed: 00:00:00.53
    SQL>
    SQL>
    SQL>
    SQL> rollback;
    Rollback complete.
    Elapsed: 00:00:00.01
    SQL>
    SQL> rem Set the ARRAYSIZE according to your application
    SQL> set autotrace traceonly arraysize 100
    SQL>
    SQL> alter session set tracefile_identifier = 'mytrace1';
    Session altered.
    Elapsed: 00:00:00.00
    SQL>
    SQL> rem if you're using bind variables
    SQL> rem define them here
    SQL>
    SQL> rem variable b_var1 number
    SQL> rem variable b_var2 varchar2(20)
    SQL>
    SQL> rem and initialize them
    SQL>
    SQL> rem exec :b_var1 := 1
    SQL> rem exec :b_var2 := 'DIAG'
    SQL> set pagesize 1000;
    SQL> set linesize 170;
    SQL> alter session set events '10046 trace name context forever, level 8';
    Session altered.
    Elapsed: 00:00:00.01
    SQL> SELECT C.FOLIO_NO, C.CO_TRANS_NO TRANS_NO, to_char(C.CREATED_DATE, 'dd/mm/yyyy') DOC_DATE, DECODE(PP.NAME, NULL, D.EMP_NAME, PP.NAME) LODGED_BY, decode(sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID), Null, '-', sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID)) DATE_CHANGE, P.RECEIPT_NO, decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id) TRANS_ID,(case when  decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR20' then 1 when  decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR03' then 2 end) TRANS_TYPE FROM CO_TRANS_MASTER C, PAYMENT_DETAIL P, PEOPLE_PROFILE PP, SC_AGENT_EMP D, M_CAA_TRANS E     where '1' <> TRIM(UPPER('S0750070Z')) and (C.CO_TRANS_ID in TRIM(UPPER('AR20')) OR C.CO_TRANS_ID in TRIM(UPPER('AR03'))OR c.co_trans_id IN TRIM (UPPER ('A020')))and C.CO_TRANS_NO = P.TRANS_NO and (C.VOID_IND = 'N' or C.VOID_IND is Null) and C.CREATED_BY = PP.PP_ID(+) and C.PROF_NO = D.PROF_NO(+) and C.CREATED_BY = D.EMP_ID (+) and TRIM(UPPER(C.CO_NO)) =  TRIM(UPPER('200101586W')) and c.co_trans_id = e.trans_id (+) order by FOLIO_NO;
    10 rows selected.
    Elapsed: 00:03:42.27
    Execution Plan
    Plan hash value: 2520189693
    | Id  | Operation                         | Name                    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT                  |                         |   592 | 85248 | 16573   (1)| 00:03:19 |
    |   1 |  TABLE ACCESS BY INDEX ROWID      | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  2 |   INDEX UNIQUE SCAN               | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   3 |  TABLE ACCESS BY INDEX ROWID      | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  4 |   INDEX UNIQUE SCAN               | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   5 |   TABLE ACCESS BY INDEX ROWID     | CO_FORM5A_TRANS         |     1 |    20 |     2   (0)| 00:00:01 |
    |*  6 |    INDEX UNIQUE SCAN              | SYS_C0059692            |     1 |       |     1   (0)| 00:00:01 |
    |   7 |  SORT ORDER BY                    |                         |   592 | 85248 | 16573   (1)| 00:03:19 |
    |   8 |   NESTED LOOPS                    |                         |       |       |            |          |
    |   9 |    NESTED LOOPS                   |                         |   592 | 85248 | 16572   (1)| 00:03:19 |
    |  10 |     NESTED LOOPS OUTER            |                         |   477 | 54855 | 15329   (1)| 00:03:04 |
    |  11 |      NESTED LOOPS OUTER           |                         |   477 | 41499 | 14374   (1)| 00:02:53 |
    |  12 |       INLIST ITERATOR             |                         |       |       |            |          |
    |* 13 |        TABLE ACCESS BY INDEX ROWID| CO_TRANS_MASTER         |   477 | 22896 | 14367   (1)| 00:02:53 |
    |* 14 |         INDEX RANGE SCAN          | IDX_CO_TRANS_ID         | 67751 |       |   150   (1)| 00:00:02 |
    |  15 |       TABLE ACCESS BY INDEX ROWID | SC_AGENT_EMP            |     1 |    39 |     1   (0)| 00:00:01 |
    |* 16 |        INDEX UNIQUE SCAN          | PK_SC_AGENT_EMP         |     1 |       |     0   (0)| 00:00:01 |
    |  17 |      TABLE ACCESS BY INDEX ROWID  | PEOPLE_PROFILE          |     1 |    28 |     2   (0)| 00:00:01 |
    |* 18 |       INDEX UNIQUE SCAN           | SYS_C0063100            |     1 |       |     1   (0)| 00:00:01 |
    |* 19 |     INDEX RANGE SCAN              | IDX_PAY_DETAIL_TRANS_NO |     1 |       |     2   (0)| 00:00:01 |
    |  20 |    TABLE ACCESS BY INDEX ROWID    | PAYMENT_DETAIL          |     1 |    29 |     3   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("F"."CO_TRANS_NO"=:B1)
       4 - access("F"."CO_TRANS_NO"=:B1)
       6 - access("F"."CO_TRANS_NO"=:B1)
      13 - filter(TRIM(UPPER("SYS_ALIAS_3"."CO_NO"))='200101586W' AND ("SYS_ALIAS_3"."VOID_IND" IS NULL
                  OR "SYS_ALIAS_3"."VOID_IND"='N'))
      14 - access("SYS_ALIAS_3"."CO_TRANS_ID"='A020' OR "SYS_ALIAS_3"."CO_TRANS_ID"='AR03' OR
                  "SYS_ALIAS_3"."CO_TRANS_ID"='AR20')
      16 - access("SYS_ALIAS_3"."PROF_NO"="D"."PROF_NO"(+) AND
                  "SYS_ALIAS_3"."CREATED_BY"="D"."EMP_ID"(+))
      18 - access("SYS_ALIAS_3"."CREATED_BY"="PP"."PP_ID"(+))
      19 - access("SYS_ALIAS_3"."CO_TRANS_NO"="P"."TRANS_NO")
    Statistics
             51  recursive calls
              0  db block gets
         651812  consistent gets
          92202  physical reads
              0  redo size
           1594  bytes sent via SQL*Net to client
            524  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              1  sorts (memory)
              0  sorts (disk)
             10  rows processed
    SQL>
    SQL> disconnect
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
    Data Mining and Real Application Testing options
    SQL> Thanks in advance!

    Hi Raj,
    I have given the output below as you requested....
    QL>  select * from table(dbms_xplan.display_cursor(null, null, 'ALLSTATS LAST'));
    PLAN_TABLE_OUTPUT
    SQL_ID  0taz7ckjm41yv, child number 1
    SELECT C.FOLIO_NO, C.CO_TRANS_NO TRANS_NO, to_char(C.CREATED_DATE,
    'dd/mm/yyyy') DOC_DATE, DECODE(PP.NAME, NULL, D.EMP_NAME, PP.NAME)
    LODGED_BY, decode(sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID),
    Null, '-', sf_fetch_datechange(c.co_trans_no, C.CO_TRANS_ID))
    DATE_CHANGE, P.RECEIPT_NO, decode(c.co_trans_id,'A020',(select
    nvl(base_trans_id,co_trans_id) from co_form5a_trans f where
    f.co_trans_no=c.co_trans_no),c.co_trans_id) TRANS_ID,(case when
    decode(c.co_trans_id,'A020',(select nvl(base_trans_id,co_trans_id) from
    co_form5a_trans f where f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR2
    0' then 1 when  decode(c.co_trans_id,'A020',(select
    nvl(base_trans_id,co_trans_id) from co_form5a_trans f where
    f.co_trans_no=c.co_trans_no),c.co_trans_id)='AR03' then 2 end)
    TRANS_TYPE FROM CO_TRANS_MASTER C, PAYMENT_DETAIL P, PEOPLE_PROFILE PP,
    SC_AGENT_EMP D, M_CAA_TRANS E where '1' <> TRIM(UPPER('S0750070Z')) and
    (C.CO_TRANS_ID in TRIM(UPPER('AR20')) OR C.CO_TRANS_ID in
    TRIM(UPPER('AR03'))OR c.co
    Plan hash value: 4175354585
    | Id  | Operation                        | Name                    | E-Rows |  OMem |  1Mem | Used-Mem |
    |   0 | SELECT STATEMENT                 |                         |        |       |       |          |
    |   1 |  TABLE ACCESS BY INDEX ROWID     | CO_FORM5A_TRANS         |      1 |       |       |          |
    |*  2 |   INDEX UNIQUE SCAN              | SYS_C0059692            |      1 |       |       |          |
    |   3 |  TABLE ACCESS BY INDEX ROWID     | CO_FORM5A_TRANS         |      1 |       |       |          |
    |*  4 |   INDEX UNIQUE SCAN              | SYS_C0059692            |      1 |       |       |          |
    |   5 |   TABLE ACCESS BY INDEX ROWID    | CO_FORM5A_TRANS         |      1 |       |       |          |
    |*  6 |    INDEX UNIQUE SCAN             | SYS_C0059692            |      1 |       |       |          |
    |   7 |  SORT ORDER BY                   |                         |     12 |  2048 |  2048 | 2048  (0)|
    |   8 |   NESTED LOOPS                   |                         |        |       |       |          |
    |   9 |    NESTED LOOPS                  |                         |     12 |       |       |          |
    |  10 |     NESTED LOOPS OUTER           |                         |     10 |       |       |          |
    |  11 |      NESTED LOOPS OUTER          |                         |     10 |       |       |          |
    |* 12 |       TABLE ACCESS FULL          | CO_TRANS_MASTER         |     10 |       |       |          |
    |  13 |       TABLE ACCESS BY INDEX ROWID| SC_AGENT_EMP            |      1 |       |       |          |
    |* 14 |        INDEX UNIQUE SCAN         | PK_SC_AGENT_EMP         |      1 |       |       |          |
    |  15 |      TABLE ACCESS BY INDEX ROWID | PEOPLE_PROFILE          |      1 |       |       |          |
    |* 16 |       INDEX UNIQUE SCAN          | SYS_C0063100            |      1 |       |       |          |
    |* 17 |     INDEX RANGE SCAN             | IDX_PAY_DETAIL_TRANS_NO |      1 |       |       |          |
    |  18 |    TABLE ACCESS BY INDEX ROWID   | PAYMENT_DETAIL          |      1 |       |       |          |
    Predicate Information (identified by operation id):
       2 - access("F"."CO_TRANS_NO"=:B1)
       4 - access("F"."CO_TRANS_NO"=:B1)
       6 - access("F"."CO_TRANS_NO"=:B1)
      12 - filter((INTERNAL_FUNCTION("SYS_ALIAS_3"."CO_TRANS_ID") AND
                  TRIM(UPPER("SYS_ALIAS_3"."CO_NO"))='200101586W' AND ("SYS_ALIAS_3"."VOID_IND" IS NULL OR
                  "SYS_ALIAS_3"."VOID_IND"='N')))
      14 - access("SYS_ALIAS_3"."PROF_NO"="D"."PROF_NO" AND "SYS_ALIAS_3"."CREATED_BY"="D"."EMP_ID")
      16 - access("SYS_ALIAS_3"."CREATED_BY"="PP"."PP_ID")
      17 - access("SYS_ALIAS_3"."CO_TRANS_NO"="P"."TRANS_NO")
    Note
       - cardinality feedback used for this statement
       - Warning: basic plan statistics not available. These are only collected when:
           * hint 'gather_plan_statistics' is used for the statement or
           * parameter 'statistics_level' is set to 'ALL', at session or system level
    65 rows selected.

  • How to make macbook pro run faster

    Hi,
    Saw a post from admins I guess, listed below that post and my Macbook Pro details as required:
    Do a Apple Menu > About This Mac > More information and copy and paste here what you see there EXCEPT the serial numbers at the bottom. Edit the serial numbers, we don't need that.
    1: Hold the Command/Apple key and press the SpaceBar, Spotlight appears at the top right. type: Terminal and select and open the Terminal program by pressing enter.
    2: Triple click or select each of these three lines one at a time and paste into Terminal then press enter after each.
    kextstat -kl | awk ' !/apple/ { print $6 } ' | open -f -a TextEdit
    ps -A | open -f -a TextEdit
    ls -@AOen L*/Preferences | open -f -a TextEdit
    3: Quit Terminal
    4: There will be three Text Edit windows with information in each of them.
    5: Select all the data in each window one at a time and copy it, then paste it here in a new pos
    #1st text box
    total 6728
    -rw-r--r--   1 1056  20  -    124 17 Nov  2011 .3246584E-0CF8-4153-835D-C7D952862F9D
    -rw-r--r--   1 1056  20  -      0 17 Nov  2011 .ED79F650-F474-47C9-BA6A-283561305DEB
    -rw-------   1 1056  20  -   2139  3 Sep 11:27 .GlobalPreferences.plist
    -rw-------   1 1056  20  -      0 18 Jan  2012 .GlobalPreferences.plist.8sMW13J
    -rw-------   1 1056  20  -      0 18 Jan  2012 .GlobalPreferences.plist.ee8gIMI
    drwx------  83 1056  20  -   2822  3 Sep 11:27 ByHost
    -rw-r--r--@  1 1056  20  -   1080 11 Nov  2011 CD Info.cidb
              com.apple.FinderInfo              32
    -rw-------   1 1056  20  -   3085  2 Mar  2011 IPMessenger.plist
    drwxr-xr-x   3 1056  20  -    102 23 Nov  2010 Macromedia
    drwxr-xr-x   3 1056  20  -    102 23 Nov  2010 Microsoft
    -rw-r--r--@  1 1056  20  -   8885  3 Sep 11:27 QuickTime Preferences
              com.apple.quarantine              54
    -rw-r--r--@  1 1056  20  -   2048 11 Jul  2012 RIOT DESIGNER Prefs
              com.apple.FinderInfo              32
    -rw-r--r--   1 1056  20  -     88 28 Sep  2012 Shockwave 11 Preferences
    -rw-r--r--@  1 1056  20  -   2955 31 Jan  2012 SourceGear DiffMerge Preferences
              com.apple.FinderInfo              32
    drwx------   3 1056  20  -    102 10 Mar  2011 TourDeFlex.E7BED6E5DDA59983786DD72EBFA46B1598278E07.1
    drwx------   6 1056  20  -    204 31 Aug 23:28 VLC
    drwxr-xr-x   5 1056  20  -    170 27 Aug  2012 Yummy FTP
    -rw-------   1 1056  20  -    293 11 Apr  2012 com.AnyBizSoft.PDF_to_Word.plist
    -rw-------   1 1056  20  -    176  1 Sep 13:39 com.Breakpad.crash_report_sender.plist
    -rw-------   1 1056  20  -   1649  1 May 09:53 com.TeamViewer7.Settings.Machine.plist
    -rw-------   1 1056  20  -    544  1 May 09:48 com.TeamViewer7.Settings.plist
    -rw-------   1 1056  20  -   1838 29 Aug 16:18 com.TeamViewer8.Settings.Machine.plist
    -rw-------   1 1056  20  -    722 29 Aug 09:26 com.TeamViewer8.Settings.plist
    -rw-------@  1 1056  20  -    131  3 Sep 10:01 com.apple.ATS.plist
              com.apple.quarantine              46
    -rw-------   1 1056  20  -   1003  2 Sep 18:04 com.apple.ActivityMonitor.plist
    -rw-------   1 1056  20  -    107  3 Sep 11:27 com.apple.AddressBook.abd.plist
    -rw-------   1 1056  20  -   1812  3 Sep 11:27 com.apple.AddressBook.plist
    -rw-------   1 1056  20  -    334 27 Feb  2011 com.apple.AppleShareClient.plist
    -rw-------   1 1056  20  -   1300  2 Jun  2012 com.apple.Automator.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1475  2 Jun  2012 com.apple.Automator.plist
    -rw-------   1 1056  20  -   1172 29 Aug 23:27 com.apple.BezelServices.plist
    -rw-------   1 1056  20  -   2982  1 Sep 19:03 com.apple.BluetoothFileExchange.plist
    -rw-------   1 1056  20  -     72  8 Mar  2011 com.apple.BluetoothSetupAssistant.plist
    -rw-------   1 1056  20  -    466 16 Aug  2012 com.apple.CharacterPaletteIM.plist
    -rw-------   1 1056  20  -    493  9 Aug  2011 com.apple.Chess.plist
    -rw-------   1 1056  20  -   2913  8 Jul  2012 com.apple.ColorSyncUtility.LSSharedFileList.plist
    -rw-------   1 1056  20  -    186  1 Dec  2010 com.apple.ColorSyncUtility.plist
    -rw-------   1 1056  20  -    104  3 Sep 11:30 com.apple.CoreGraphics.plist
    -rw-------   1 1056  20  -     94 13 Mar  2011 com.apple.CrashReporter.plist
    -rw-------   1 1056  20  -   3182 17 Jun 09:01 com.apple.DVDPlayer.plist
    -rw-------   1 1056  20  -    943 20 Jun 12:34 com.apple.Dictionary.plist
    -rw-------   1 1056  20  -    428 13 Mar  2011 com.apple.DictionaryServices.plist
    -rw-------   1 1056  20  -    411 13 Jun  2011 com.apple.DigitalColorMeter.plist
    -rw-------   1 1056  20  -    180 22 Apr  2012 com.apple.DirectoryUtility.plist
    -rw-------   1 1056  20  -    165  3 Sep 11:21 com.apple.DiskUtility.plist
    -rw-------   1 1056  20  -    573 21 May  2012 com.apple.FolderActions.plist
    -rw-------   1 1056  20  -   6129  8 Apr 15:34 com.apple.FontBook.plist
    -rw-------   1 1056  20  -     84  8 May 15:45 com.apple.HIToolbox.plist
    -rw-------   1 1056  20  -    419  9 Aug  2011 com.apple.Image_Capture.plist
    drwxr-xr-x   2 1056  20  -     68  7 Mar  2011 com.apple.JapaneseAnalysis
    -rw-r--r--@  1 1056  20  - 733184  2 Sep 16:58 com.apple.LaunchServices.QuarantineEvents
              com.apple.quarantine              38
    -rw-------   1 1056  0   -   1172 29 Jul 14:57 com.apple.LaunchServices.plist
    -rw-r--r--   1 1056  20  -     87  3 Sep 11:30 com.apple.MCX.plist
    -rw-------   1 1056  20  -    119  7 Feb  2012 com.apple.NetAuthAgent.plist
    -rw-------   1 1056  20  -    549 11 Apr  2012 com.apple.NetworkUtility.plist
    -rw-------   1 1056  20  -    119 29 Aug 14:53 com.apple.PTPCamera.plist
    -rw-------   1 1056  20  -    185  8 Jul 20:57 com.apple.PhotoBooth.plist
    -rw-------   1 1056  20  -    579  3 Sep 10:23 com.apple.PreferenceSync.plist
    -rw-------   1 1056  20  -    181 17 Jul  2011 com.apple.Preview.ImageSizingPresets.plist
    -rw-------   1 1056  20  -   8864  2 Sep 09:55 com.apple.Preview.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1597 29 Aug 17:04 com.apple.Preview.bookmarks.plist
    -rw-------   1 1056  20  -   3566  2 Sep 09:54 com.apple.Preview.plist
    -rw-------   1 1056  20  -    200 12 Aug 10:04 com.apple.ProblemReporter.plist
    -rw-------   1 1056  20  -    101  7 Jul 13:25 com.apple.PubSubAgent.plist
    -rw-------   1 1056  20  -    191 23 Nov  2010 com.apple.QuickLookDaemon.plist
    -rw-------   1 1056  20  - 329641  2 Sep 20:17 com.apple.QuickTimePlayerX.plist
    -rw-------   1 1056  20  -      0  1 Apr 19:37 com.apple.QuickTimePlayerX.plist.03rSrEW
    -rw-------   1 1056  20  -      0 31 Mar 18:34 com.apple.QuickTimePlayerX.plist.0WfgfX1
    -rw-------   1 1056  20  -      0 14 Jan  2011 com.apple.QuickTimePlayerX.plist.0emHipJ
    -rw-------   1 1056  20  -      0 30 Apr  2011 com.apple.QuickTimePlayerX.plist.1PwKVR5
    -rw-------   1 1056  20  -      0  5 Jul  2012 com.apple.QuickTimePlayerX.plist.2zvbuyl
    -rw-------   1 1056  20  -      0 27 Jul  2011 com.apple.QuickTimePlayerX.plist.3HVmHcr
    -rw-------   1 1056  20  -      0 23 Jul  2011 com.apple.QuickTimePlayerX.plist.4BTayqe
    -rw-------   1 1056  20  -      0 29 Sep  2012 com.apple.QuickTimePlayerX.plist.5BVfGVU
    -rw-------   1 1056  20  -      0 29 Jun 01:24 com.apple.QuickTimePlayerX.plist.5v3ynsK
    -rw-------   1 1056  20  -      0 20 Sep  2012 com.apple.QuickTimePlayerX.plist.6X8Bh5c
    -rw-------   1 1056  20  -      0 13 Nov  2012 com.apple.QuickTimePlayerX.plist.6iKbORf
    -rw-------   1 1056  20  -      0 18 Nov  2011 com.apple.QuickTimePlayerX.plist.7QoHheF
    -rw-------   1 1056  20  -      0 23 Jun 16:26 com.apple.QuickTimePlayerX.plist.7aIgDMe
    -rw-------   1 1056  20  -      0  7 Dec  2012 com.apple.QuickTimePlayerX.plist.7qWZmK8
    -rw-------   1 1056  20  -      0 17 Jan  2013 com.apple.QuickTimePlayerX.plist.AjipOQL
    -rw-------   1 1056  20  -      0  1 Jan  2013 com.apple.QuickTimePlayerX.plist.BW593mA
    -rw-------   1 1056  20  -      0 24 Dec  2010 com.apple.QuickTimePlayerX.plist.BeOqsQL
    -rw-------   1 1056  20  -      0 14 Apr  2012 com.apple.QuickTimePlayerX.plist.CWU1gWV
    -rw-------   1 1056  20  -      0 13 Jan  2011 com.apple.QuickTimePlayerX.plist.ClqxmZj
    -rw-------   1 1056  20  -      0 17 Nov  2012 com.apple.QuickTimePlayerX.plist.D2K4XhB
    -rw-------   1 1056  20  -      0  9 Nov  2012 com.apple.QuickTimePlayerX.plist.Dm1569A
    -rw-------   1 1056  20  -      0 23 Dec  2010 com.apple.QuickTimePlayerX.plist.EDSzpvO
    -rw-------   1 1056  20  -      0  4 Jun  2011 com.apple.QuickTimePlayerX.plist.EdfZaG2
    -rw-------   1 1056  20  -      0 24 Nov  2010 com.apple.QuickTimePlayerX.plist.EfaBrC5
    -rw-------   1 1056  20  -      0 17 Jun 02:41 com.apple.QuickTimePlayerX.plist.F6sdEmV
    -rw-------   1 1056  20  -      0  8 Jun 16:13 com.apple.QuickTimePlayerX.plist.FF1mQPK
    -rw-------   1 1056  20  -      0  5 May  2012 com.apple.QuickTimePlayerX.plist.FWI5qap
    -rw-------   1 1056  20  -      0  7 Mar  2011 com.apple.QuickTimePlayerX.plist.Fw4IMvX
    -rw-------   1 1056  20  -      0  5 Oct  2012 com.apple.QuickTimePlayerX.plist.GujRsHO
    -rw-------   1 1056  20  -      0  8 Aug  2011 com.apple.QuickTimePlayerX.plist.H0okHYd
    -rw-------   1 1056  20  -      0 15 Jul  2011 com.apple.QuickTimePlayerX.plist.HFZNjCb
    -rw-------   1 1056  20  -      0 10 Mar  2011 com.apple.QuickTimePlayerX.plist.I7VEq8G
    -rw-------   1 1056  20  -      0 21 Jun  2012 com.apple.QuickTimePlayerX.plist.J32qvca
    -rw-------   1 1056  20  -      0 12 Nov  2012 com.apple.QuickTimePlayerX.plist.KBfy8Fn
    -rw-------   1 1056  20  -      0 29 Nov  2010 com.apple.QuickTimePlayerX.plist.KpR4lix
    -rw-------   1 1056  20  -      0 25 Nov  2010 com.apple.QuickTimePlayerX.plist.KrHU6lp
    -rw-------   1 1056  20  -      0  6 Dec  2010 com.apple.QuickTimePlayerX.plist.L3wpOkE
    -rw-------   1 1056  20  -      0 29 Nov  2010 com.apple.QuickTimePlayerX.plist.LPbbJxc
    -rw-------   1 1056  20  -      0  6 Jul  2012 com.apple.QuickTimePlayerX.plist.LWO5oMt
    -rw-------   1 1056  20  -      0  9 Apr  2011 com.apple.QuickTimePlayerX.plist.M5TTPoL
    -rw-------   1 1056  20  -      0  7 Jul  2012 com.apple.QuickTimePlayerX.plist.MOdzkQ6
    -rw-------   1 1056  20  -      0 20 Jan  2013 com.apple.QuickTimePlayerX.plist.NUIiYLF
    -rw-------   1 1056  20  -      0 21 Sep  2012 com.apple.QuickTimePlayerX.plist.NgCCqir
    -rw-------   1 1056  20  -      0 18 Nov  2011 com.apple.QuickTimePlayerX.plist.ODwqFGS
    -rw-------   1 1056  20  -      0 19 Dec  2012 com.apple.QuickTimePlayerX.plist.PYTa8qn
    -rw-------   1 1056  20  -      0 31 Mar 13:16 com.apple.QuickTimePlayerX.plist.QYL3qUW
    -rw-------   1 1056  20  -      0  2 Apr 17:54 com.apple.QuickTimePlayerX.plist.QlG9hSz
    -rw-------   1 1056  20  -      0 24 Nov  2010 com.apple.QuickTimePlayerX.plist.QsNfWSJ
    -rw-------   1 1056  20  -      0 20 Oct  2011 com.apple.QuickTimePlayerX.plist.Qt9cPHW
    -rw-------   1 1056  20  -      0 26 Oct  2012 com.apple.QuickTimePlayerX.plist.RHmpCWh
    -rw-------   1 1056  20  -      0 13 Nov  2012 com.apple.QuickTimePlayerX.plist.SHK6F7l
    -rw-------   1 1056  20  -      0 30 Apr 20:58 com.apple.QuickTimePlayerX.plist.Sbnx7vE
    -rw-------   1 1056  20  -      0 12 Apr 17:34 com.apple.QuickTimePlayerX.plist.ShWSkkX
    -rw-------   1 1056  20  -      0 22 Nov  2011 com.apple.QuickTimePlayerX.plist.TMcj0Fp
    -rw-------   1 1056  20  -      0 13 Oct  2012 com.apple.QuickTimePlayerX.plist.TeqiAmz
    -rw-------   1 1056  20  -      0 19 Aug  2012 com.apple.QuickTimePlayerX.plist.UkPaj4a
    -rw-------   1 1056  20  -      0 19 Aug  2011 com.apple.QuickTimePlayerX.plist.UvyJpwq
    -rw-------   1 1056  20  -      0 23 Dec  2012 com.apple.QuickTimePlayerX.plist.WetVfBo
    -rw-------   1 1056  20  -      0 18 Feb  2011 com.apple.QuickTimePlayerX.plist.Y8SklIa
    -rw-------   1 1056  20  -      0 17 Jun 09:01 com.apple.QuickTimePlayerX.plist.ZANkhmB
    -rw-------   1 1056  20  -      0  6 Jul  2012 com.apple.QuickTimePlayerX.plist.ZRElV8n
    -rw-------   1 1056  20  -      0 19 Nov  2011 com.apple.QuickTimePlayerX.plist.aLcfuTr
    -rw-------   1 1056  20  -      0 18 Aug  2012 com.apple.QuickTimePlayerX.plist.aNfjRlS
    -rw-------   1 1056  20  -      0  4 Jun  2011 com.apple.QuickTimePlayerX.plist.aRzdWvH
    -rw-------   1 1056  20  -      0 16 Dec  2012 com.apple.QuickTimePlayerX.plist.b8OKK58
    -rw-------   1 1056  20  -      0  2 Jul  2012 com.apple.QuickTimePlayerX.plist.bHm9RQQ
    -rw-------   1 1056  20  -      0 16 Jun 20:27 com.apple.QuickTimePlayerX.plist.dEnXJwc
    -rw-------   1 1056  20  -      0  6 Jul  2012 com.apple.QuickTimePlayerX.plist.df0AERt
    -rw-------   1 1056  20  -      0 17 Jun 00:08 com.apple.QuickTimePlayerX.plist.dmMEWST
    -rw-------   1 1056  20  -      0  2 Apr 14:19 com.apple.QuickTimePlayerX.plist.fIux90g
    -rw-------   1 1056  20  -      0 23 Nov  2010 com.apple.QuickTimePlayerX.plist.fwx5YR7
    -rw-------   1 1056  20  -      0 30 Jan  2011 com.apple.QuickTimePlayerX.plist.gYW9aKh
    -rw-------   1 1056  20  -      0 18 May 19:44 com.apple.QuickTimePlayerX.plist.hBoImur
    -rw-------   1 1056  20  -      0 13 Sep  2012 com.apple.QuickTimePlayerX.plist.heydANj
    -rw-------   1 1056  20  -      0 31 Mar 15:01 com.apple.QuickTimePlayerX.plist.irl8U7Q
    -rw-------   1 1056  20  -      0 22 Dec  2012 com.apple.QuickTimePlayerX.plist.lDWL6pr
    -rw-------   1 1056  20  -      0 30 Aug  2011 com.apple.QuickTimePlayerX.plist.mEPiIx0
    -rw-------   1 1056  20  -      0 28 Oct  2011 com.apple.QuickTimePlayerX.plist.mpXG5bh
    -rw-------   1 1056  20  -      0 12 Apr 15:07 com.apple.QuickTimePlayerX.plist.mpevFw9
    -rw-------   1 1056  20  -      0 12 Apr 02:16 com.apple.QuickTimePlayerX.plist.msOD81M
    -rw-------   1 1056  20  -      0 25 Dec  2012 com.apple.QuickTimePlayerX.plist.nIC7ofs
    -rw-------   1 1056  20  -      0 31 Aug 18:20 com.apple.QuickTimePlayerX.plist.oh2QxYx
    -rw-------   1 1056  20  -      0  9 Nov  2011 com.apple.QuickTimePlayerX.plist.pTiKWzg
    -rw-------   1 1056  20  -      0 23 Nov  2010 com.apple.QuickTimePlayerX.plist.q6VPIvv
    -rw-------   1 1056  20  -      0 14 Feb  2011 com.apple.QuickTimePlayerX.plist.qaG5Bpl
    -rw-------   1 1056  20  -      0  3 Dec  2012 com.apple.QuickTimePlayerX.plist.qkF88cR
    -rw-------   1 1056  20  -      0  6 Mar  2011 com.apple.QuickTimePlayerX.plist.r9RdHZD
    -rw-------   1 1056  20  -      0 11 Apr  2011 com.apple.QuickTimePlayerX.plist.rIaZ4Um
    -rw-------   1 1056  20  -      0 30 Dec  2010 com.apple.QuickTimePlayerX.plist.rvULf0d
    -rw-------   1 1056  20  -      0 26 Mar  2011 com.apple.QuickTimePlayerX.plist.sCauLnP
    -rw-------   1 1056  20  -      0  4 Jun  2011 com.apple.QuickTimePlayerX.plist.sTvBlr4
    -rw-------   1 1056  20  -      0 13 Jan  2011 com.apple.QuickTimePlayerX.plist.sYugO4G
    -rw-------   1 1056  20  -      0  1 Feb  2013 com.apple.QuickTimePlayerX.plist.sbEfvfm
    -rw-------   1 1056  20  -      0 31 Jan  2011 com.apple.QuickTimePlayerX.plist.t2b2oGb
    -rw-------   1 1056  20  -      0  2 Apr 11:45 com.apple.QuickTimePlayerX.plist.t3uqaue
    -rw-------   1 1056  20  -      0  3 Apr 11:01 com.apple.QuickTimePlayerX.plist.tax7lCD
    -rw-------   1 1056  20  -      0 13 Jul  2012 com.apple.QuickTimePlayerX.plist.tjDzx1u
    -rw-------   1 1056  20  -      0 14 Feb  2011 com.apple.QuickTimePlayerX.plist.tw059Px
    -rw-------   1 1056  20  -      0 14 Dec  2012 com.apple.QuickTimePlayerX.plist.u10Lf5h
    -rw-------   1 1056  20  -      0  2 Apr 10:26 com.apple.QuickTimePlayerX.plist.vQ1KQI6
    -rw-------   1 1056  20  -      0 23 Jul 23:10 com.apple.QuickTimePlayerX.plist.vttNKE1
    -rw-------   1 1056  20  -      0  3 Oct  2012 com.apple.QuickTimePlayerX.plist.wau9Bka
    -rw-------   1 1056  20  -      0 13 Jan  2011 com.apple.QuickTimePlayerX.plist.wxsTZP5
    -rw-------   1 1056  20  -      0 31 Mar 13:29 com.apple.QuickTimePlayerX.plist.z6RHAdF
    -rw-------@  1 1056  20  -    133 23 Nov  2010 com.apple.Safari.RSS.plist
              com.apple.quarantine              38
    -rw-------@  1 1056  20  -   2482  3 Sep 11:19 com.apple.Safari.plist
              com.apple.quarantine              42
    -rw-------   1 1056  20  -    351  7 Feb  2012 com.apple.ScreenSharing.plist
    -rw-------   1 1056  20  -   1983 17 Apr  2011 com.apple.ScriptEditor2.LSSharedFileList.plist
    -rw-------   1 1056  20  -    111 14 Jan  2011 com.apple.SoftwareUpdate.plist
    -rw-------   1 1056  20  -    172  9 Apr  2011 com.apple.Stickies.plist
    -rw-------   1 1056  20  -    310  6 Jan  2013 com.apple.SystemProfiler.plist
    -rw-------   1 1056  20  -  11883  3 Sep 11:30 com.apple.Terminal.plist
    -rw-------   1 1056  20  -   8335 21 Aug 09:32 com.apple.TextEdit.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1482 18 Aug 16:36 com.apple.TextEdit.plist
    drwx------   4 1056  20  -    136 29 Jul 14:32 com.apple.VoiceOver3
    -rw-------   1 1056  20  -   4829 29 Jul 14:31 com.apple.VoiceOver3.local.plist
    -rw-------   1 1056  20  -   1405  5 Dec  2010 com.apple.WebKit.PluginHost.plist
    -rw-------   1 1056  20  -    203 11 Sep  2012 com.apple.airport.airportutility.plist
    -rw-------   1 1056  20  -    182 28 Aug 10:17 com.apple.archiveutility.plist
    -rw-------   1 1056  20  -    212 30 Aug 12:17 com.apple.calculator.plist
    -rw-------   1 1056  20  -    165  3 Sep 11:27 com.apple.dashboard.client.plist
    -rw-------   1 1056  20  -   6016  3 Sep 11:27 com.apple.dashboard.plist
    -rw-------   1 1056  20  -    966  4 Jul 10:00 com.apple.desktop.plist
    -rw-------   1 1056  20  -    185 11 Sep  2012 com.apple.digihub.plist
    -rw-------@  1 1056  20  -   1024 25 Nov  2010 com.apple.diskimages.fsck
              com.apple.quarantine              38
    -rw-r--r--   1 1056  20  -  88064  2 Sep 18:01 com.apple.dock.db
    -rw-------   1 1056  20  -  11937  3 Sep 11:24 com.apple.dock.plist
    -rw-------   1 1056  20  -  33668  3 Sep 11:24 com.apple.finder.plist
    -rw-------   1 1056  20  -    244 26 Aug 13:09 com.apple.frameworks.diskimages.uiagent.plist
    -rw-------   1 1056  20  -    106  7 Jul 22:24 com.apple.frontrow.plist
    -rw-------   1 1056  20  -   2315  3 Sep 10:56 com.apple.help.plist
    -rw-------   1 1056  20  -    157  1 Aug  2012 com.apple.helpviewer.plist
    -rw-------   1 1056  20  -    225 18 Jul 14:59 com.apple.iApps.plist
    -rw-------   1 1056  20  -      0 25 Dec  2012 com.apple.iApps.plist.0HTW7aQ
    -rw-------   1 1056  20  -      0 17 Dec  2012 com.apple.iApps.plist.2sIgAxg
    -rw-------   1 1056  20  -      0 29 Jan  2013 com.apple.iApps.plist.4uRLCXy
    -rw-------   1 1056  20  -      0  8 Jan  2013 com.apple.iApps.plist.80k2sFo
    -rw-------   1 1056  20  -      0 21 Jan  2013 com.apple.iApps.plist.ITcp5GN
    -rw-------   1 1056  20  -      0  3 May  2011 com.apple.iApps.plist.NnjpaxO
    -rw-------   1 1056  20  -      0  7 Jan  2013 com.apple.iApps.plist.OlZI4bC
    -rw-------   1 1056  20  -      0  3 Feb  2013 com.apple.iApps.plist.h6C7uef
    -rw-------   1 1056  20  -      0 28 Jan  2013 com.apple.iApps.plist.pHCg0jn
    -rw-------   1 1056  20  -      0 27 Feb  2013 com.apple.iApps.plist.yp2aLtO
    -rw-------   1 1056  20  -     95  3 Sep 11:24 com.apple.iCal.helper.plist
    -rw-------   1 1056  20  -   1742 27 Feb  2013 com.apple.iCal.plist
    -rw-------   1 1056  20  -     76 24 Apr  2012 com.apple.iChat.AIM.plist
    -rw-------   1 1056  20  -     76 24 Apr  2012 com.apple.iChat.Jabber.plist
    -rw-------   1 1056  20  -    190 23 Nov  2010 com.apple.iChat.StatusMessages.plist
    -rw-------   1 1056  20  -    131 24 Apr  2012 com.apple.iChat.SubNet.plist
    -rw-------   1 1056  20  -    712 29 Nov  2010 com.apple.iChat.plist
    -rw-r--r--   1 1056  20  -    750 11 Nov  2011 com.apple.iTunes.Gracenote.plist
    -rw-------   1 1056  20  -  14702 25 Nov  2010 com.apple.iTunes.eq.plist
    -rw-------   1 1056  20  - 128738 18 Jul 15:10 com.apple.iTunes.plist
    -rw-------   1 1056  20  -      0  3 May  2011 com.apple.iTunes.plist.IoZetdB
    -rw-------   1 1056  20  -      0 22 Sep  2011 com.apple.iTunes.plist.L54658n
    -rw-------   1 1056  20  -      0 17 Jun  2011 com.apple.iTunes.plist.Lhx7XCF
    -rw-------   1 1056  20  -      0  5 Jun  2011 com.apple.iTunes.plist.NxxVm3Q
    -rw-------   1 1056  20  -      0 26 Jun  2011 com.apple.iTunes.plist.OySj1YZ
    -rw-------   1 1056  20  -      0 31 Jan  2011 com.apple.iTunes.plist.huiD1Xp
    -rw-------   1 1056  20  -      0 21 Sep  2011 com.apple.iTunes.plist.k8BJLD2
    -rw-------   1 1056  20  -      0  4 May  2011 com.apple.iTunes.plist.zQxW2xq
    -rw-------   1 1056  20  -     57  3 Jul 17:12 com.apple.iTunesHelper.plist
    -rw-------   1 1056  20  -   2748 17 Apr  2012 com.apple.internetconfig.plist
    -rw-------   1 1056  20  -    451 13 Aug 15:51 com.apple.internetconfigpriv.plist
    -rw-------   1 1056  20  -     95  3 May  2012 com.apple.internetconnect.plist
    -rw-r--r--   1 1056  20  -    296 15 Jan  2011 com.apple.iphotomosaic.plist
    -rw-------   1 1056  20  -   1028  3 Sep 11:27 com.apple.java.JavaPreferences.plist
    -rw-------   1 1056  20  -   1029 13 Apr  2011 com.apple.java.security.plist
    -rw-------   1 1056  20  -   6663  1 Jan  2013 com.apple.java.util.prefs.plist
    -rw-------   1 1056  20  -    120 14 Apr  2011 com.apple.javajdk16.cmd.plist
    -rw-------   1 1056  20  -    404 21 Mar  2011 com.apple.keychainaccess.plist
    -rw-------   1 1056  20  -   1499 28 Aug 09:24 com.apple.loginitems.plist
    -rw-------   1 1056  20  -    108 29 Aug 23:27 com.apple.loginwindow.plist
    -rw-------   1 1056  20  -   8957  9 Jul 21:51 com.apple.mail.plist
    -rw-------   1 1056  20  -     78 15 Feb  2011 com.apple.menuextra.battery.plist
    -rw-------   1 1056  20  -    118  2 May  2011 com.apple.menuextra.clock.plist
    -rw-------   1 1056  20  -     78  2 Jan  2013 com.apple.networkConnect.plist
    -rw-------   1 1056  20  -    120 19 Jun 15:01 com.apple.preference.desktopscreeneffect.plist
    -rw-------   1 1056  20  -    832 28 Aug 17:29 com.apple.print.PrinterProxy.plist
    -rw-------   1 1056  20  -   2686 18 Aug 13:15 com.apple.print.PrintingPrefs.plist
    -rw-------   1 1056  20  -   1746  5 Aug 12:59 com.apple.print.add.plist
    -rw-------   1 1056  20  -   1645 14 Aug 11:42 com.apple.print.custompresets.forprinter.Brother_HL_2130_series.plist
    -rw-------   1 1056  20  -   2271 21 Apr 18:09 com.apple.print.custompresets.forprinter.Deskjet_3050A_J611_series__F43D1A_.pli st
    -rw-------   1 1056  20  -   1519 17 Dec  2012 com.apple.print.custompresets.forprinter.HP_LaserJet_Professional_P1102.plist
    -rw-------   1 1056  20  -   1525 10 Jan  2013 com.apple.print.custompresets.forprinter.HP_LaserJet_Professional_P1102___Alexa nderb_9s_iMac.plist
    -rw-------   1 1056  20  -   1644 18 Oct  2012 com.apple.print.custompresets.forprinter.HP_Officejet_4500_G510g_m.plist
    -rw-------   1 1056  20  -   1798 11 Aug 17:01 com.apple.print.custompresets.forprinter.PDFwriter.plist
    -rw-------   1 1056  20  -   1541  2 Jun 12:01 com.apple.print.custompresets.forprinter.Samsung_ML_2160_Series.plist
    -rw-------   1 1056  20  -   1541  1 Jul 17:32 com.apple.print.custompresets.forprinter.Samsung_ML_2160_Series___MaryAnn_s_iMa c.plist
    -rw-------   1 1056  20  -   1541 12 Sep  2012 com.apple.print.custompresets.forprinter.Samsung_SCX_3200_Series.plist
    -rw-------   1 1056  20  -   1519 29 Aug 17:33 com.apple.print.custompresets.forprinter.Xerox.plist
    -rw-r--r--@  1 1056  20  -  20514  3 Sep 11:27 com.apple.quicktime.plugin.preferences.plist
              com.apple.quarantine              38
    -rw-------   1 1056  20  -  25836  3 Sep 11:27 com.apple.recentitems.plist
    -rw-------   1 1056  20  -    326 22 Mar  2010 com.apple.scheduler.plist
    -rw-------   1 1056  20  -    121 13 Mar  2011 com.apple.screensaver.plist
    -rw-r--r--   1 1056  20  -    707  3 Dec  2011 com.apple.security.plist
    -rw-------   1 1056  20  -  11177  3 Sep 11:04 com.apple.sidebarlists.plist
    -rw-------   1 1056  20  -     68 24 Nov  2010 com.apple.soundpref.plist
    -rw-------   1 1056  20  -     60 29 Jul 14:30 com.apple.speech.prefs.plist
    -rw-------   1 1056  20  -   9458 29 Jul 14:03 com.apple.speech.recognition.AppleSpeechRecognition.prefs.plist
    -rw-------   1 1056  20  -    175  9 Aug  2011 com.apple.speech.recognition.feedback.prefs.plist
    -rw-------   1 1056  20  -    170 29 Jul 14:03 com.apple.speech.recognition.recognizer.prefs.plist
    -rw-------   1 1056  20  -    373 29 Jul 14:26 com.apple.speech.synthesis.general.prefs.plist
    -rw-------   1 1056  20  -    189 29 Jul 14:30 com.apple.speech.voice.prefs.plist
    -rw-------   1 1056  20  -   2951 25 Mar 14:40 com.apple.symbolichotkeys.plist
    -rw-------   1 1056  20  -   4041 28 Aug 17:36 com.apple.systempreferences.plist
    -rw-------   1 1056  20  -    352 26 Jan  2011 com.apple.systemsound.plist
    -rw-------   1 1056  20  -   2057  3 Sep 11:24 com.apple.systemuiserver.plist
    -rw-------   1 1056  20  -    194  8 Apr 15:48 com.apple.typographypanel.plist
    -rw-------   1 1056  20  -    313  5 Jun 17:19 com.apple.universalaccess.plist
    -rw-------   1 1056  20  -   9242  2 Sep 12:31 com.barebones.textwrangler.LSSharedFileList.plist
    drwxr-xr-x   7 1056  20  -    238  3 Sep 10:57 com.barebones.textwrangler.PreferenceData
    -rw-------   1 1056  20  -  48469  3 Sep 10:56 com.barebones.textwrangler.plist
    -rw-------   1 1056  20  -   3852 15 Aug  2011 com.bittorrent.uTorrent.plist
    -rw-------   1 1056  20  -   1550 24 May  2012 com.docudesk.deskunpdf.plist
    -rw-------@  1 1056  20  -   2659 12 Aug 12:35 com.google.Chrome.helper.EH.plist
              com.apple.quarantine              70
    -rw-------@  1 1056  20  -   1901 26 Oct  2011 com.google.Chrome.helper.plist
              com.apple.quarantine              64
    -rw-------@  1 1056  20  -   3260  3 Sep 11:27 com.google.Chrome.plist
              com.apple.quarantine              50
    -rw-------   1 1056  20  -    726  3 Sep 10:40 com.google.Keystone.Agent.plist
    -rw-------   1 1056  20  -     61 26 Aug 13:05 com.google.android.mtpviewer.plist
    -rw-------   1 1056  20  -    118 10 Jan  2013 com.google.code.sequel-pro.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1464 19 May  2011 com.hp.printerutility.plist
    -rw-------   1 1056  20  -    437 18 Oct  2012 com.hp.scanModule.plist
    -rw-------   1 1056  20  -    218 19 May  2011 com.hp.scanModule3.plist
    -rw-r--r--   1 1056  20  -   8620 19 May  2011 com.hp.scancaps.plist
    -rw-------   1 1056  20  -     79 20 Sep  2011 com.install4j.installations.plist
    -rw-------   1 1056  20  -    819 13 Sep  2012 com.leadertech.powerReg.plist
    -rw-------   1 1056  20  -     81 17 Apr  2012 com.microsoft.ClipGallery.plist
    -rw-------   1 1056  20  -   3749  1 Dec  2010 com.microsoft.Communicator.plist
    -rw-------   1 1056  20  -    272 17 Apr 13:11 com.microsoft.DocumentConnection.plist
    -rw-------   1 1056  20  -   6724  3 Sep 11:16 com.microsoft.Excel.plist
    -rw-------@  1 1056  20  -     88 16 Feb  2012 com.microsoft.Outlook.SyncServicesPreferences.plist
              com.apple.quarantine              58
    -rw-------@  1 1056  20  -  49724 24 Aug 11:48 com.microsoft.Outlook.plist
              com.apple.quarantine              58
    -rw-------   1 1056  20  -   5809  1 Jul 09:29 com.microsoft.Powerpoint.plist
    -rw-------   1 1056  20  -  15402 28 Aug 17:36 com.microsoft.Word.plist
    -rw-------   1 1056  20  -   1079  1 Jul 09:29 com.microsoft.autoupdate2.plist
    -rw-------   1 1056  20  -    349  2 Sep 12:19 com.microsoft.error_reporting.plist
    -rw-------   1 1056  20  -    828 16 Feb  2012 com.microsoft.myday.plist
    -rw-------   1 1056  20  - 779271  3 Sep 11:16 com.microsoft.office.plist
    -rw-------   1 1056  20  -     81 23 Nov  2010 com.microsoft.office.setupassistant.plist
    -rw-------   1 1056  20  -     81 23 Nov  2010 com.microsoft.outlook.database_daemon.plist
    -rw-------   1 1056  20  -    161 16 Feb  2012 com.microsoft.outlook.office_reminders.plist
    -rw-------   1 1056  20  -   1070 26 Nov  2010 com.microsoft.rdc.LSSharedFileList.plist
    -rw-------   1 1056  20  -    123 26 Nov  2010 com.microsoft.rdc.plist
    -rw-------   1 1056  20  -     96  4 May 12:58 com.microsoft.visual_basic.plist
    -rw-------   1 1056  20  -   4903  8 Oct  2012 com.myownapp.myPhotoEdit.plist
    -rw-------   1 1056  20  -    456  1 Apr 11:25 com.peternoriega.unrarx.plist
    -rw-------   1 1056  20  -    119 14 Aug 11:43 com.samsung.imagecapture.scanner.app.plist
    -rw-------   1 1056  20  - 101383  3 Sep 10:57 com.sequelpro.SequelPro.plist
    -rw-------   1 1056  20  -   5874  3 Sep 11:27 com.skype.skype.plist
    -rw-------   1 1056  20  -   1474 30 Jan  2012 com.sourcegear.DiffMerge.plist
    -rw-------   1 1056  20  -    144  8 Feb  2011 com.sun.MySQLWorkbench.plist
    -rw-------   1 1056  20  -    135 18 Apr  2011 com.sun.deploy.plist
    -rw-------   1 1056  20  -     83 29 Aug 16:18 com.teamviewer.TeamViewer.plist
    -rw-------   1 1056  20  -  11747 11 May  2012 com.trolltech.plist
    -rw-------   1 1056  20  -   3129 27 Aug  2012 com.yummysoftware.yummy-ftp.plist
    -rw-------   1 1056  20  -  46114 17 Nov  2011 com.zeobit.MacKeeper.Helper.plist
    -rw-------   1 1056  20  -  46110 17 Nov  2011 com.zeobit.MacKeeper.Helper.plist.2p2BkLI
    -rw-------   1 1056  20  -   1436 17 Nov  2011 com.zeobit.MacKeeper.plist
    -rw-------   1 1056  20  -    284  6 Jan  2013 edu.mit.Kerberos.IdentityManagement.plist
    -rw-------   1 1056  20  -    265 16 Jul  2012 iCalExternalSync.plist
    -rw-------   1 1056  20  -    659 28 Aug 09:24 loginwindow.plist
    -rw-------   1 1056  20  -   1647 18 Apr 09:56 org.eclipse.eclipse.plist
    -rw-------@  1 1056  20  -     60  9 Jul  2012 org.mozilla.crashreporter.plist
              com.apple.quarantine              46
    -rw-------@  1 1056  20  -   2884  3 Sep 10:02 org.mozilla.firefox.plist
              com.apple.quarantine              46
    -rw-------@  1 1056  20  -   2672 30 Jul 11:19 org.mozilla.plugincontainer.plist
              com.apple.quarantine              46
    -rw-------   1 1056  20  -   5889 27 Oct  2012 org.mplayerosx.MplayerOSX.plist
    -rw-------   1 1056  20  -   7530  5 Mar 16:55 org.openoffice.script.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1395 26 Feb  2013 org.openoffice.script.plist
    -rw-------   1 1056  20  -    440  9 Jan  2011 org.tigris.scplugin.SCPluginUIDaemon.plist
    -rw-------   1 1056  20  -   5791 31 Aug 20:41 org.videolan.vlc.LSSharedFileList.plist
    -rw-------   1 1056  20  -   1124 31 Aug 18:21 org.videolan.vlc.plist
    -rw-------   1 1056  20  -     88  3 Sep 11:24 pbs.plist
    -rw-------   1 1056  20  -     86  3 Sep 11:27 widget-com.apple.widget.calendar.plist
    -rw-------   1 1056  20  -    241  3 Sep 11:27 widget-com.apple.widget.dictionary.plist
    -rw-------   1 1056  20  -    242  7 Jan  2013 widget-com.apple.widget.flighttracker.plist
    -rw-------   1 1056  20  -    382  3 Sep 11:27 widget-com.apple.widget.stickies.plist
    -rw-------   1 1056  20  -      0 20 May 16:45 widget-com.apple.widget.stickies.plist.8y2pi6p
    -rw-------   1 1056  20  -    341 24 Feb  2013 widget-com.apple.widget.weather.plist
    -rw-------   1 1056  20  -    182 26 Mar  2012 widget-com.apple.widget.worldclock.plist
    -rw-------   1 1056  20  -    264 16 Jul 14:47 widget-com.iSlayer.iStatnanoV2.widget.plist
    -rw-------   1 1056  20  -  10335  3 Sep 11:27 widget-it.com.palple.widget.currencyconverter.plist
    #2nd text box
      PID TTY           TIME CMD
        1 ??         0:00.30 /sbin/launchd
       10 ??         0:01.36 /usr/libexec/kextd
       11 ??         0:02.29 /usr/sbin/DirectoryService
       12 ??         0:00.10 /usr/sbin/notifyd
       13 ??         0:00.05 /usr/sbin/diskarbitrationd
       14 ??         0:01.23 /usr/libexec/configd
       15 ??         0:00.09 /usr/sbin/syslogd
       16 ??         0:00.14 /usr/sbin/distnoted
       17 ??         0:00.28 /usr/sbin/blued
       18 ??         0:00.15 /usr/sbin/mDNSResponder -launchd
       23 ??         0:00.96 /System/Library/CoreServices/coreservicesd
       25 ??         0:00.13 /usr/sbin/securityd -i
       28 ??         0:00.07 /usr/sbin/ntpd -c /private/etc/ntp-restrict.conf -n -g -p /var/run/ntpd.pid -f /var/db/ntp.drift
       29 ??         0:00.07 /usr/sbin/nmbd -F
       30 ??         0:00.07 /usr/sbin/krb5kdc -n
       31 ??         0:00.08 /Library/Application Support/Seagate/TBLoopDriveParams
       33 ??         0:00.04 /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd -launchd
       34 ??         0:00.01 /sbin/SystemStarter
       38 ??         0:00.01 /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Su pport/RFBRegisterMDNS
       40 ??         0:01.94 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
       41 ??         0:00.91 /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow console
       42 ??         0:00.01 /usr/sbin/KernelEventAgent
       44 ??         0:01.03 /usr/libexec/hidd
       45 ??         0:00.14 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/Support/fseventsd
       47 ??         0:00.03 /sbin/dynamic_pager -F /private/var/vm/swapfile
       53 ??         0:00.01 autofsd
       56 ??         0:06.05 /Library/Application Support/MacKeeper/AntiVirus.app/Contents/MacOS/AntiVirus
       61 ??         0:01.59 /usr/libexec/ApplicationFirewall/socketfilterfw
       64 ??         0:08.50 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer -daemon
       67 ??         0:00.03 /usr/sbin/ocspd
       73 ??         0:00.02 /Library/StartupItems/HWNetMgr/HWNetCfg
       75 ??         0:00.03 /Library/StartupItems/HWPortDetect/HWPortCfg
       79 ??         0:00.01 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsServ
       94 ??         0:00.13 /usr/sbin/coreaudiod
      104 ??         0:00.17 /sbin/launchd
      110 ??         0:00.09 /usr/sbin/cupsd -l
      116 ??         0:01.05 /System/Library/CoreServices/Dock.app/Contents/MacOS/Dock
      117 ??         0:01.80 /System/Library/CoreServices/SystemUIServer.app/Contents/MacOS/SystemUIServer
      118 ??         0:01.03 /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
      120 ??         0:00.00 /usr/sbin/pboard
      121 ??         0:00.53 /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Support/fontd
      125 ??         0:00.24 /usr/libexec/UserEventAgent -l Aqua
      127 ??         0:00.03 /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent
      132 ??         0:00.06 /System/Library/CoreServices/AirPort Base Station Agent.app/Contents/MacOS/AirPort Base Station Agent -launchd -allowquit
      133 ??         0:00.10 /Library/Contextual Menu Items/SCFinderPlugin.plugin/Contents/Resources/SCPluginUIDaemon.app/Contents/Ma cOS/SCPluginUIDaemon
      137 ??         0:00.07 /System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher
      142 ??         0:00.05 /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TISwitcher.app/Contents/MacOS/TISw itcher
      143 ??         0:05.52 /Applications/Dropbox.app/Contents/MacOS/Dropbox -psn_0_53261
      144 ??         0:00.05 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/Resources/SpeechSynthesisServer.app/Content s/MacOS/SpeechSynthesisServer -psn_0_57358
      145 ??         0:00.02 /System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Contents/Ma cOS/AppleVNCServer
      146 ??         0:00.02 /System/Library/CoreServices/CCacheServer.app/Contents/MacOS/CCacheServer
      166 ??         0:00.08 /System/Library/Image Capture/Support/Image Capture Extension.app/Contents/MacOS/Image Capture Extension -psn_0_90134
      168 ??         0:00.03 /Library/DropboxHelperTools/Dropbox_u1056/dbfseventsd
      169 ??         0:00.18 /Library/DropboxHelperTools/Dropbox_u1056/dbfseventsd
      170 ??         0:00.13 /Library/DropboxHelperTools/Dropbox_u1056/dbfseventsd
      175 ??         0:01.50 /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Versions/A/Support/mdworker MDSImporterWorker com.apple.Spotlight.ImporterWorker.1056
      192 ??         0:00.41 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
      193 ??         0:00.70 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
      194 ??         0:00.51 /System/Library/CoreServices/Dock.app/Contents/Resources/DashboardClient.app/Co ntents/MacOS/DashboardClient
      197 ??         2:10.86 /Applications/Google Chrome.app/Contents/MacOS/Google Chrome -psn_0_118813
      204 ??         0:00.71 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --extension-process --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.2.1675575854
      205 ??         0:00.45 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --extension-process --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.3.241561720
      206 ??         0:40.41 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --extension-process --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.4.1233200434
      210 ??         0:06.89 /Applications/Skype.app/Contents/MacOS/Skype -psn_0_151589
      213 ??         0:37.86 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.7.951332507
      214 ??         0:37.34 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.8.348641160
      215 ??         0:39.51 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.9.1038407949
      216 ??         0:38.22 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.10.138553045
      217 ??         0:37.62 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=renderer --lang=en-US --force-fieldtrials=AsyncDns/AsyncDnsA/ForceCompositingMode/thread/InfiniteCach e/No/InstantExtended/Control14 pct:10d m29stablemac:pp2/OmniboxStopTimer/Standard/Prerender/PrerenderEnabled/Prerender LocalPredictor/Disabled/Test0PercentDefault/group_01/UMA-Dynamic-Binary-Uniformi ty-Trial/default/UMA-Dynamic-Uniformity-Trial/Group6/UMA-Session-Randomized-Unif ormity-Trial-5-Percent/group_13/UMA-Uniformity-Trial-1-Percent/group_36/UMA-Unif ormity-Trial-10-Percent/group_05/UMA-Uniformity-Trial-20-Percent/default/UMA-Uni formity-Trial-5-Percent/group_05/UMA-Uniformity-Trial-50-Percent/group_01/ --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --renderer-print-preview --disable-html-notifications --disable-gl-multisampling --disable-accelerated-video-decode --channel=197.11.717849151
      230 ??         0:00.26 /Applications/Google Chrome.app/Contents/Versions/29.0.1547.65/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper --type=gpu-process --channel=197.16.1603066989 --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774 --disable-gl-multisampling --supports-dual-gpus=false --gpu-driver-bug-workarounds=0,16,19,22 --gpu-vendor-id=0x10de --gpu-device-id=0x08a0 --gpu-driver-vendor --gpu-driver-version --enable-crash-reporter=5957250BE82DA49AD6C4652FD5694774
      231 ??         0:00.05 /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Resources/VDC.p lugin/Contents/Resources/VDCAssistant
      232 ??         0:00.08 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/cvmsComp_i386 1
      268 ??         0:00.29 /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_200753
      278 ??         0:00.25 /Applications/TextEdit.app/Contents/MacOS/TextEdit -psn_0_204850
      282 ??         0:00.12 /System/Library/Services/AppleSpell.service/Contents/MacOS/AppleSpell -psn_0_208947
      270 ttys000    0:00.06 login -pf deepthi
      272 ttys000    0:00.01 -bash
      285 ttys000    0:00.00 ps -A
      286 ttys000    0:00.01 open -f -a TextEdit
    #3rd text bod
    Empty

    Let's take this one step at a time... what you've posted can be useful, for the right problems, but it's not helpful much in determining how you can speed up your MacBook Pro.
    First, which model do you have (e.g., "15-inch Late 2011") and which version of OS X are you running? How much RAM do you have installed?
    Downlaod and run EtreCheck and post the results.
    Clinton

  • How to make GUI application run fast and use less memory?

    Hi, there,
    My GUI application have:
    Menu, toolbar, filechooser, JTable, and log panel.(There is not much file io operation)
    When I run it in my machine, it is so slow, and if I run several times, close it after each run, it will run out of my memory. I am using PII266MMX, 256RAM. (When I run another software, such as flashfxp, GUI of which is more complicated than mine, however it is far faster than mine, but I don't think it is written in JAVA), Is JAVA's GUI desktop application not fast?
    Regardless hardware factors, what should I pay attention to writing an efficient GUI application?
    Can anybody give some advice?
    Thanks a lot, thanks .....

    Thank you, Denis.
    I can run several times of this applicaiton in another machine: PIII866, 256M RAM (windows 2000). I didn't encounter the memory problem, I can open serveral windows of it with that machine.
    Why I met this problem in this old machine, I alway get memory not enough problem.(this old machine comes with Win98). Both of machines have same memory(256M).
    Could you please give me some hint?
    Thanks,
    Sitai

  • Can anybody tell me how to make this forum to send email when someone reply to my post!!?

    Hi,
    I need to be informed when someone reply to my posts anybody
    know how?
    thanks

    Select "Subscribe to this topic"

  • How to make this select statement faster?

    this statement is really taking long time to process.
    in bseg table as vbeln is not primary key or seconday key, i guess thz the reason it is taking so much time ,,,
    can anyone help me to sort this out... ??
    any fun mod to get the data of bseg cluster table by giving vbeln?/
    or any other conditions to reduce the processing time?
    clear t_vbrkvbrp.
    sort t_vbrkvbrp by vbeln.
    loop at t_vbrkvbrp.
    at new vbeln.
    select bukrs belnr vbeln
           from bseg
           into corresponding fields of table t_temp
           where bukrs = t_vbrkvbrp-bukrs
            and vbeln = t_vbrkvbrp-vbeln.
    endat.
    endloop.
    SELECT bukrs belnr buzid koart shkzg dmbtr vbeln hkont kunnr werks
           FROM bseg
           INTO TABLE t_bseg
           for all entries in t_temp
           WHERE hkont IN s_hkont
           AND bukrs = t_temp-bukrs
           AND belnr = t_temp-belnr
           AND buzid = ' '
           AND koart = 'S'
           AND shkzg = 'H'.
    i need to get the g/l account number for the above condition type so i have to use bseg table
    Message was edited by:
            shahid mohammed syed

    Shahid,
    Usually BSEG SELECTs are slow as it is a Clu8ster table. More over you are not passing the PKeys in the WHERE condition. That's alcso one reason for slow retrieval. You can also use the table BSIS (Accounting: Secondary Index for G/L Accounts) for the G/L accounts. But first of all, I suggest you cnange your where condition as below:
    SELECT bukrs belnr buzid koart shkzg dmbtr vbeln hkont kunnr werks
    FROM bseg
    INTO TABLE t_bseg
    for all entries in t_temp
    WHERE  bukrs = t_temp-bukrs
    AND belnr = t_temp-belnr
    AND buzid = ' '
    AND koart = 'S'
    AND shkzg = 'H'
    <b>AND hkont IN s_hkont.</b>
    Not much diff. I just re-ordered the condition based on the order of BSEG fields... Lemme know if it helps.
    Regards,
    Karthik
    Message was edited by:
            Karthik

  • How can I make my phone run faster?

    anytime I have to download or upload or search the web it is very very slow .

    ray miranda wrote:
    I have my iMac purchased in 2008 and it is running very slow.  I have a time capsule.  I believe it only has 1 GB of SD Ram.  Will it run faster/better if I increase the Ram?
    YUP!
    How large is you HD and how much space do you have left?
    Care to share which OS you are using?
    How can I make my iMac run faster?

Maybe you are looking for