Oracle query / view performing very slow.

Hello,
I had created a view in my application for example
CREATE OR REPLACE VIEW EmpTransfer
( EMPID,EMPNAME,EMPMANAGER,EMPDOB,EMPTRANSFER)
AS
SELECT EMPID,EMPNAME,EMPMANAGER,EMPDOB,EMPTRANSFER
FROM EMP ;
After couple of months if we changed a columnname in the table EMP and added a new column.
We changed column name EMPTRANSFER to OldEMPTRANSFER and added a new column as NEWEMPTRANSFER.
The indexes were recreated on OldEMPTRANSFER and new index is creatd on NEWEMPTRANSFER column.
the view is again recreated.
CREATE OR REPLACE VIEW EmpTransfer
( EMPID,EMPNAME,EMPMANAGER,EMPDOB,OldEMPTRANSFER,NEWEMPTRANSFER )
AS
SELECT EMPID,EMPNAME,EMPMANAGER,EMPDOB,OldEMPTRANSFER ,NEWEMPTRANSFER
FROM EMP ;
This view is working as expected but some times this view is working very slow.
The performance of this view is randomly slow.
Is it possible that column name change will cause slowness...?

What's the explain plans for both before and after the column change? It could possibly be running slow the first time because of a hard parse due to the query change, which will remain until it's in the shared_pool.
Edited by: DaleyB on 07-Oct-2009 04:53

Similar Messages

  • Database performing Very slow  - Lots of wait events

    My database is on Oracle10g on Sun 5.10
    The users are complaining about database is very slow.
    I analyzed the indexes & later on rebuild them, hardly it has only 5% performance improvement.
    http://i812.photobucket.com/albums/zz43/sadeel00/untitled1.jpg
    http://i812.photobucket.com/albums/zz43/sadeel00/untitled2.jpg
    ADDM has no recommendations.

    Duplicate post - Database performing Very slow  - Lots of wait events
    Srini

  • My Jetpack 5510L says that its connected to 4G but its performing very slow, I removed the sim card and did a reset of the device. Any other suggestions?

    My Jetpack 5510L says that its connected to 4G but its performing very slow, I removed the sim card and did a reset of the device. Any other suggestions?

    I don't know who you would contact at Verizon to verify this, but I suspect you are in the same situation as me.  My unlimited Jetpack is now being throttled to a basically useless speed of .10Mbps.  Sometimes as low as .04Mbps.  Turns out this is done purposely as they are evidently eliminating unlimited.  They're doing this now even though accounts still display on the my device page as unlimited.  They have given no warning, no explanation and started it in the middle of a billing cycle.  At least for me.  Be prepared to pay about double for 20GB with I think and $8 per gig overage cost.  With the 5GB plan it appears they just throttle down to an unusable speed.  Currently considering saying goodbye to Verizon myself.  Even with some need to change plans and eliminate unlimited this isn't the way to treat customers during the change.

  • Mobile component performs very slow

    Hello,
    I have created a component wich actually draws a country map containing about 400 cities.
    My first approach was to write a 'country' class (UIComponent) which created 400 city objects (UIComponent also).
    Each city object draws its own shape using graphics object.
    Result was a beautiful country with colored cities in it.
    But... testing on iPhone or iPad was really slow.
    So I decided another approach:
    I created only one class which extends from Image.
    In it, I used the graphics object to draw all cities. The result is just one image object about 2500 x 2000 pixels.
    Result: almost no performance gain! Very, very slow.
    I'm just using one image!
    Any ideas how I can get better performance?
    Thx,
    Dany

    I don't quite understand what you mean with 'If Re: Mobile component performs very slow shows up near the top'
    I do use a lot of points to plot but only while drawing on the graphics object. Once that is done, I only have one image object sizing about 600 x 400. I've put it in a scroller.

  • Aspire E14/E5-411-C3K3 performs very slow

    I'm a bit disappointed of the perfomance of my Aspire E 14/E5-411-C3K3's performace. My sister just bought this last December 2014 considering that it is new and since yesterday it was my frist time to use this to do my paper works. It was totally wasted my time. I wasn't able to do my work. I was asking sister why this performs very slow even in saving, browsing it takes time and can't do multitasking where it stops/hangs up in a while. Not to mention as you switches it on or off, it takes time to open. Sorry for this complain, I really appreciate for your time in answering or explanationing my concerns. Thank you very much for taking time to read and I look forward to know the best that I can do improve my notebook's performance. God bless!

    If you can't afford to upgrade the RAM I would consider installing the 32 bit version of Windows instead of the 64 bt version which uses less RAM. I was surprised that my ES1-411 that came with 2 GB RAM shipped with the 64 bit version of Windows 8.1 installed, the 32 bit version would make much more sense on this computer. I upgraded it to 8 GB instead and it works very nicely with 64 bit windows 8.1 and Windows 10.

  • Site Performing Very Slow on Azure

    Hi Guys
    I have a site which is performing very slow when deployed on Azure. However, the same site's performance is very good when deployed on our own server. Can you please advise/guide on the possible reasons for this and the way to debug/fix the same.
    Let me know if any more details are required from my end.
    Thanks
    Developer Trinsights

    Hi,
     Thanks for Posting.
      Have you deployed a website or Cloud Service ?
      You might find the Below threads and links useful to diagnose the performance issues.
    https://social.msdn.microsoft.com/Forums/en-US/4bae13b8-b074-46a7-8722-319082ade070/very-slow-azuresite-performance?forum=windowsazurewebsitespreview
    http://stackoverflow.com/questions/18071780/services-extremely-slow-when-deployed-on-azure
      http://msdn.microsoft.com/en-us/library/dn481103.aspx
    Best Practices for Performance in Azure Applications
    Regards,
    Nithin.Rathnakar

  • Oracle 11G - Update is very slow on View

    I have big trouble with some Update query on Oracle 11G.
    I have a set of tables (5) of identical structures and a view that consists in an UNION ALL of the 5 tables.
    None of this table contains more than 20 000 rows.
    Let's call the view V_INTE_NE. Each of the basic table has a PRIMARY KEY defined on 3 NUMBERS(10,0) -> INTE_REF / NE_REF / INSTANCE.
    Now, I get 6 rows in another table and I want to update my view from the data of this small table (let's call it SMALL). This table has the 3 columns INTE_REF / NE_REF / INSTANCE.
    When I try to join the two tables :
    SELECT * FROM T_INTE_NE T2
    WHERE EXISTS ( SELECT 1 FROM SMALL T1 WHERE T2.INTE_REF = T1.INTEREF AND T2.NE_REF = T1.NEREF AND T2.INTE_INST = T1.INSTANCE )
    I get the 6 lines in 0.037 seconds
    When I try to update the view (I have an INSTEAD OF trigger that does nothing (just return for testing even without modifying anything), I execute the following query :
    UPDATE T_INTE_NE T2
    SET INTE_STATE = -11 WHERE
    EXISTS ( SELECT 1 FROM SMALL T1 WHERE T2.INTE_REF = T1.INTEREF AND T2.NE_REF = T1.NEREF AND T2.INTE_INST = T1.INSTANCE )
    The 6 rows are updated (at least TRIGGER is called) in 20 seconds.
    However, in the execution plan, I can't see where Oracle takes time to achieve the query :
    Plan hash value: 907176690
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | UPDATE STATEMENT | | 6 | 36870 | 153 (1)| 00:00:02 |
    | 1 | UPDATE | T_INTE_NE | | | | |
    |* 2 | HASH JOIN RIGHT SEMI | | 6 | 36870 | 153 (1)| 00:00:02 |
    | 3 | TABLE ACCESS FULL | SMALL | 6 | 234 | 9 (0)| 00:00:01 |
    | 4 | VIEW | T_INTE_NE | 6 | 36636 | 143 (0)| 00:00:02 |
    | 5 | VIEW | X_V_T_INTE_NE | 6 | 18636 | 143 (0)| 00:00:02 |
    | 6 | UNION-ALL | | | | | |
    | 7 | TABLE ACCESS FULL| SECNODE1_T_INTE_NE | 1 | 3106 | 60 (0)| 00:00:01 |
    | 8 | TABLE ACCESS FULL| SECNODE2_T_INTE_NE | 1 | 3106 | 60 (0)| 00:00:01 |
    | 9 | TABLE ACCESS FULL| SECNODE3_T_INTE_NE | 1 | 3106 | 2 (0)| 00:00:01 |
    | 10 | TABLE ACCESS FULL| SECNODE4_T_INTE_NE | 1 | 3106 | 2 (0)| 00:00:01 |
    | 11 | TABLE ACCESS FULL| SECNODE5_T_INTE_NE | 1 | 3106 | 2 (0)| 00:00:01 |
    | 12 | TABLE ACCESS FULL| SYS_T_INTE_NE | 1 | 3106 | 17 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - access("T2"."INTE_REF"="T1"."INTEREF" AND "T2"."NE_REF"="T1"."NEREF" AND
    "T2"."INTE_INST"="T1"."INSTANCE")
    Note
    - dynamic sampling used for this statement (level=2)
    Statistics
    3 user calls
    0 physical read total bytes
    0 physical write total bytes
    0 spare statistic 3
    0 commit cleanout failures: cannot pin
    0 TBS Extension: bytes extended
    0 total number of times SMON posted
    0 SMON posted for undo segment recovery
    0 SMON posted for dropping temp segment
    0 segment prealloc tasks
    What could explain the difference ?
    I get exactly the same execution plan (when autotrace is ON).
    Furthermore, if I try to do the same update on each of the basic tables, I get the rows updated instantaneously.
    Is there any reason for avoiding this kind of query ?
    Any help would be greatly appreciated :-)
    Regards,
    Patrick

    Sorry for this, I lost myself in conjonctures and I didn't think I would have to explain the whole case.
    So, I wrote a small piece of PL/SQL that reproduces the same issue.
    It seems that my issue is not due to the UPDATE but to the use of the IN predicate.
    As you can see at the end of the script, I try to join the 2 tables using different technics.
    The first query is very fast, the second is very slow.
    I need the second one if I want to do any update.
    DROP TABLE Part1;
    DROP TABLE Part2;
    DROP TABLE Part3;
    DROP TABLE Part4;
    CREATE TABLE Part1 ( Key1 NUMBER(10, 0), Key2 NUMBER(10, 0), Key3 NUMBER(10, 0), PartId NUMBER(10, 0) DEFAULT( 1 ) NOT NULL, Data1 VARCHAR2(1000), X_Data2 VARCHAR2(2000) NULL, X_Data3 VARCHAR2(2000) NULL, CONSTRAINT PK_Part1 PRIMARY KEY( Key1, Key2, Key3 ) );
    CREATE TABLE Part2 ( Key1 NUMBER(10, 0), Key2 NUMBER(10, 0), Key3 NUMBER(10, 0), PartId NUMBER(10, 0) DEFAULT( 2 ) NOT NULL, Data1 VARCHAR2(1000), X_Data2 VARCHAR2(2000) NULL, X_Data3 VARCHAR2(2000) NULL, CONSTRAINT PK_Part2 PRIMARY KEY( Key1, Key2, Key3 ) );
    CREATE TABLE Part3 ( Key1 NUMBER(10, 0), Key2 NUMBER(10, 0), Key3 NUMBER(10, 0), PartId NUMBER(10, 0) DEFAULT( 3 ) NOT NULL, Data1 VARCHAR2(1000), X_Data2 VARCHAR2(2000) NULL, X_Data3 VARCHAR2(2000) NULL, CONSTRAINT PK_Part3 PRIMARY KEY( Key1, Key2, Key3 ) );
    CREATE TABLE Part4 ( Key1 NUMBER(10, 0), Key2 NUMBER(10, 0), Key3 NUMBER(10, 0), PartId NUMBER(10, 0) DEFAULT( 4 ) NOT NULL, Data1 VARCHAR2(1000), X_Data2 VARCHAR2(2000) NULL, X_Data3 VARCHAR2(2000) NULL, CONSTRAINT PK_Part4 PRIMARY KEY( Key1, Key2, Key3 ) );
    CREATE OR REPLACE FUNCTION Decrypt
    x_in IN VARCHAR2
    ) RETURN VARCHAR2
    AS
    x_out VARCHAR2(2000);
    BEGIN
    SELECT REVERSE( x_in ) INTO x_out FROM DUAL;
    RETURN ( x_out );
    END;
    CREATE OR REPLACE VIEW AllParts AS
    SELECT Key1, Key2, Key3, PartId, Data1, Decrypt( X_Data2 ) AS Data2, Decrypt( X_Data3 ) AS Data3 FROM Part1
    UNION ALL
    SELECT Key1, Key2, Key3, PartId, Data1, Decrypt( X_Data2 ) AS Data2, Decrypt( X_Data3 ) AS Data3 FROM Part2
    UNION ALL
    SELECT Key1, Key2, Key3, PartId, Data1, Decrypt( X_Data2 ) AS Data2, Decrypt( X_Data3 ) AS Data3 FROM Part3
    UNION ALL
    SELECT Key1, Key2, Key3, PartId, Data1, Decrypt( X_Data2 ) AS Data2, Decrypt( X_Data3 ) AS Data3 FROM Part4;
    DROP TABLE Small;
    CREATE TABLE Small ( Key1 NUMBER(10, 0), Key2 NUMBER(10, 0), Key3 NUMBER(10, 0), Data1 VARCHAR2(1000) );
    BEGIN
    DECLARE
    n_Key NUMBER(10, 0 ) := 0;
    BEGIN
    WHILE ( n_Key < 50000 )
    LOOP
    INSERT INTO Part1( Key1, Key2, Key3 )
    VALUES( n_Key, FLOOR( n_Key / 10 ), FLOOR( n_Key / 100 ) );
    INSERT INTO Part2( Key1, Key2, Key3 )
    VALUES( n_Key, FLOOR( n_Key / 10 ), FLOOR( n_Key / 100 ) );
    INSERT INTO Part3( Key1, Key2, Key3 )
    VALUES( n_Key, FLOOR( n_Key / 10 ), FLOOR( n_Key / 100 ) );
    INSERT INTO Part4( Key1, Key2, Key3 )
    VALUES( n_Key, FLOOR( n_Key / 10 ), FLOOR( n_Key / 100 ) );
    n_Key := n_Key + 1;
    END LOOP;
    INSERT INTO Small( Key1, Key2, Key3, Data1 ) VALUES ( 1000, 100, 10, 'Test 1000' );
    INSERT INTO Small( Key1, Key2, Key3, Data1 ) VALUES ( 3000, 300, 30, 'Test 3000' );
    INSERT INTO Small( Key1, Key2, Key3, Data1 ) VALUES ( 5000, 500, 50, 'Test 5000' );
    COMMIT;
    END;
    END;
    SELECT T2.*
    FROM Small T1, AllParts T2
    WHERE T2.Key1 = T1.Key1 AND T2.Key2 = T1.Key2 AND T2.Key3 = T1.Key3;
    SELECT T1.*
    FROM AllParts T1
    WHERE ( T1.Key1, T1.Key2, T1.Key3 ) IN ( SELECT T2.Key1, T2.Key2, T2.Key3 FROM Small T2 );

  • Oracle Forms Performance very slow on the internet

    Hi ,
    We have developed a form application with forms Developer 10g and deployed it on a ORACLE 10g AS. If the user runs our application over intranet there is no any network problem or not any performance decrease occurs. However if we deploy our application over WAN or internet, the startup time of the forms become Very Slow.
    What we can use to make it faster , is there any other tools we have to learn like APEX or JDeveloper , what is the best solution , should we forget the Developer for ever and starting with other tools with fast performance on the internet , if so , what we have to learn , please help us , its common problem .
    any help please ,

    Interesting thread....
    You asked whether "Forms" is the right product for the job. Well, the answer to that question will depend entirely on exactly what functionality you need and your skill-set. One advantage of using Forms over other Oracle products is that, in my opinion, Forms allows you to create simple or complex applications very quickly, with limited development experience. The downside to using Forms however, is that it does use a fairly thick client making startup slower than other applications. Generally, Forms is not very well suited for Internet deployments although it can and has been done. If your goal is to use a product which is easy to work with and is appropriate for Internet deployment, you may want to consider Apex. The downside to Apex is that unlike Forms, Apex generates what I like to call static html pages. Meaning once a page is displayed for the end-user, the data on it remains the same until the user forces interaction with the server again, but in this case the entire page would be refreshed in order to realize the changes. In the case of Forms, any content displayed to the end-user can be change without completely refreshing their view. I like to refer to Forms as a living application because unlike Apex, it can easily respond to most user inputs and/or server side changes almost in real-time. If you want this "live" experience, Forms might be the way to go, although at the cost of some startup performance. Alternatively, Oracle ADF can also give you a similar live-like experience. However, ADF will require a broader skill-set (pl/sql, java, html, etc), whereas with Forms you could get away with only knowing pl/sql although java knowledge would be helpful.
    The views expressed in this thread are my own and do not necessarily reflect the views of Oracle.

  • The query is performing very very slow, can any one please help me tue this

    SELECT h.ROWID row_id, e.preparer_user_id
    FROM arsarc.ars_sv_reconciliation e,
    arsarc.ars_sv_reconciliation_accts a,
    arsarc.ars_sv_acct_status_history h
    WHERE e.rec_id = :b1
    AND e.rec_id = a.rec_id
    AND e.ledger_id = h.ledger_id
    AND a.ccid = h.ccid
    AND e.preparer_user_id <> h.preparer_user_id
    AND h.fiscal_year + h.fiscal_period >= e.fiscal_year + e.fiscal_period
    PLAN_TABLE_OUTPUT
    Plan hash value: 2851427911
    | Id  | Operation                     | Name                           | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT              |                                |    60 |  7740 |  6282  (11)| 00:00:08 |
    |*  1 |  HASH JOIN                    |                                |    60 |  7740 |  6282  (11)| 00:00:08 |
    |*  2 |   INDEX RANGE SCAN            | PK_RECONCILIATION_ACCTS        |   104 |  4160 |     3   (0)| 00:00:01 |
    |   3 |   NESTED LOOPS                |                                |   178K|    15M|  6243  (10)| 00:00:08 |
    |   4 |    TABLE ACCESS BY INDEX ROWID| ARS_SV_RECONCILIATION          |     1 |    23 |     2   (0)| 00:00:01 |
    |*  5 |     INDEX UNIQUE SCAN         | PK_ARS_SV_RECONCILIATION       |     1 |       |     1   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    |*  6 |    TABLE ACCESS BY INDEX ROWID| ARS_SV_ACCT_STATUS_HISTORY     |   178K|    11M|  6241  (10)| 00:00:08 |
    |*  7 |     INDEX RANGE SCAN          | ARS_SV_ACCT_STATUS_HISTORY$LPY | 62094 |       |  5243  (11)| 00:00:07 |
    Predicate Information (identified by operation id):
       1 - access("A"."CCID"="H"."CCID")
       2 - access("A"."REC_ID"=TO_NUMBER(:B1))
       5 - access("E"."REC_ID"=TO_NUMBER(:B1))
       6 - filter("E"."PREPARER_USER_ID"<>"H"."PREPARER_USER_ID")
    PLAN_TABLE_OUTPUT
       7 - access("E"."LEDGER_ID"="H"."LEDGER_ID")
           filter("H"."FISCAL_YEAR"+"H"."FISCAL_PERIOD">="E"."FISCAL_YEAR"+"E"."FISCAL_PERIOD")

    Hi,
    the plan isn't showing any problem (the cost isn't high) so it's not possible to use it to troublehshoot the query. Please provide more information: 4-digit Oracle version, and depending on the version, either SQL real-time monitor report or dbms_xplan output with rowsource stats (option "iostats last" after running your sql with ALTER SESSION SET STATISTICS_LEVEL = ALL).
    Also, when reporting a performance problem it would be wise to avoid expressions like "very, very slow" replacing them with something more useful like "my query is taking 2.5 hours to retrieve 30k rows".
    Best regards,
    Nikolay

  • Report Viewer is very slow at first time

    Hi,
    We are facing very slow when loading the reports.For any search it is taking more time to load the reports.We are thinking issue is due to report viewer control and we are using report viewer control version 10.0.0.0.Could you please let us know how to resolve
    this issue.
    Thanks,
    Vijay

    How big id the query?  How much memory does the server have? It is possible that an execution plan/data pages of the query was thrown from the cache and SQL Server needs to compile/read the data from disk again.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • View is very slow.

    Hi All,
    I have a view which has 15 select statement using union. It's a complex view.
    create or replace view v1 (c1,c2,c3)
    as
    select c1,c2,c3 from t1,t20,t30,t40 where ...............
    union
    select c1,c2,c3 from t2,t3,t4,t5 where ...............
    union
    select c1,c2,c3 from t15,t16,t,17 where ...............
    If I run the select statement on its own its very quick, records are retrieved in milli seconds.
    select c1,c2,c3 from t1,t20,t30,t40 where c1 = xyz
    union
    select c1,c2,c3 from t2,t3,t4,t5 where c1 = xyz
    union
    select c1,c2,c3 from t15,t16,t,17 where c1 = xyz
    but If I run the same selects through a view then it takes 10 min.
    select * from v1 where c1 = xyz
    Can someone tell me whats the difference,why the view is so slow as its the same sql in a view and if there is a work around.I have to make this view run faster as its used in Oracle forms.
    Thanks.
    V.

    I tried doing UNION ALL and ran the same query it made no difference. It took still 10 min, which means whether its union or union all oracle is not able to push the predicate inside the various sub queries . Thanks Rob.
    Any other solutions ?
    I think I may have to take the select statments from the view and create the form based on the proecudure using the select statements.
    V.

  • Query result is very slow

    i have two table master detail, for instance dept and emp
    the situtation is this. i need the recod of those departements who has clerks in specific time hired. i wrote following query. but due to millions of records in two tables its very very slow.
    select * from emp a,dept b
    where a.deptno in (select distinct deptno from emp where job='clerk')
    and hiredate >= '01-jun-2004' and hiredate <='01-jan-2007'
    and a.deptno=b.deptno
    can any body tune it.

    One thing I am seeing, that I find very troubling, is that posters such as the OP on this thread seem to be facing these tasks in a classroom or testing environment where they don't actually have access to Oracle and SQL*Plus.
    They are being asked to tune something that exists only on paper and don't have the tools to provide an explain plan, probably don't even have the ability to do a describe on the table(s) because they don't actually exist.
    If this is the case then the education system is cheating these people because tuning is not done in a room with the lights off by guessing. It is done, and only done, with:
    EXPLAIN PLAN FOR
    DBMS_XPLAN
    TKPROF
    a look at the statistics, etc.
    Here's a real-world example of what is wrong with what I see. Anyone want to guess which of these queries is the most efficient?
    SELECT srvr_id
    FROM servers
    INTERSECT
    SELECT srvr_id
    FROM serv_inst;
    SELECT srvr_id
    FROM servers
    WHERE srvr_id IN (
      SELECT srvr_id
      FROM serv_inst);
    SELECT srvr_id
    FROM servers
    WHERE srvr_id IN (
      SELECT i.srvr_id
      FROM serv_inst i, servers s
      WHERE i.srvr_id = s.srvr_id);
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id = i.srvr_id;
    SELECT /*+ NO_USE_NL(s,i) */ DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id = i.srvr_id;
    SELECT DISTINCT srvr_id
    FROM servers
    WHERE srvr_id NOT IN (
      SELECT srvr_id
      FROM servers
      MINUS
      SELECT srvr_id
      FROM serv_inst);
    SELECT srvr_id
    FROM servers s
    WHERE EXISTS (
      SELECT srvr_id
      FROM serv_inst i
      WHERE s.srvr_id = i.srvr_id);
    WITH q AS (
      SELECT DISTINCT s.srvr_id
      FROM servers s, serv_inst i
      WHERE s.srvr_id = i.srvr_id)
    SELECT * FROM q;
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id(+) = i.srvr_id;
    SELECT srvr_id
    FROM (
      SELECT srvr_id, SUM(cnt) SUMCNT
      FROM (
        SELECT DISTINCT srvr_id, 1 AS CNT
        FROM servers
        UNION ALL
        SELECT DISTINCT srvr_id, 1
        FROM serv_inst)
      GROUP BY srvr_id)
    WHERE sumcnt = 2;
    SELECT DISTINCT s.srvr_id
    FROM servers s, serv_inst i
    WHERE s.srvr_id+0 = i.srvr_id+0;And yes they all return the exact same result set using the test data.
    The chance that anyone can guess the most efficient query looking at what I just presented is precisely zero.
    Because the query most efficient in 8.1.7.4 is not the most efficient query in 9.2.0.4 which is not the most efficient query in 10.2.0.2.

  • Mac Mini performance very slow after upgrading to Mavericks

    Since upgrading my Mac Mini to Mavericks, its performance has become progressively slower.  The first issue I noticed was a freezing of the clock display on the upper-right of the menu bar.  I often leave my Mac on overnight to stream music and increasingly when I check the clock in the morning it has frozen at somepoint during the night.  When I move the mouse over arrow over the clock, it turns to "busy" and I clicking on it does nothing.  Changing the clock setting in system preferences does nothing to the displayed time, however the clock in system preferences is not frozen and displays the correct time.  Rebooting is the only thing that fixes the problem.  Lately the system has been performing progressive slower.  The boot-up/restart process takes several minutes now (>= 5min) and opening a program takes about as long as it did on my PC 20 years ago.  When the computer is awakened up from sleep mode all of the open programs have to be force quit because they are unresponsive.  Often, at this point, trying to open a menu in the menu-bar, saving work on a spreadsheet or navigating through folders in the finder takes an unusually long time, whereas it used to happen almost instantaneously before Mavericks was installed.  I would really appreciate feedback/advice.  Thanks, Aaron.
    Mac Mini mid-2010
    Model Identifier: Macmini4,1
    2.4 GHz Intel Core 2 Duo
    2 GB 1067 MHz DDR3
    System Version: OS X 10.9.4 (13E28)
    Here are the results of a diagnostic suggested by one of the forum contributors that I ran today:
    Model Identifier: Macmini4,1
    System Version: OS X 10.9.4 (13E28)
    Kernel Version: Darwin 13.3.0
    Boot Mode: Normal
    Time since boot: 21 minutes
    USB
       USB Optical Mouse (Logitech Inc.)
    Diagnostic reports
       2014-06-09 iTunes crash
       2014-06-09 iTunes hang
       2014-06-12 Microsoft Excel hang
       2014-06-12 Spotify hang
       2014-06-12 WindowServer crash
       2014-06-12 coreaudiod crash
       2014-06-12 firefox hang
       2014-06-13 Maps hang
       2014-06-13 Microsoft Excel hang
       2014-06-13 Spotify hang
       2014-06-13 WindowServer crash
       2014-06-13 com.apple.dock.extra crash
       2014-06-13 firefox hang
       2014-06-13 plugin-container crash
       2014-06-14 UserEventAgent crash
       2014-06-17 coreaudiod crash
       2014-06-18 im_ks_tool crash
       2014-06-21 helpd crash
       2014-06-23 WindowServer crash
       2014-06-23 com.apple.dock.extra crash
       2014-06-23 coreaudiod crash
       2014-06-23 plugin-container crash
       2014-07-01 soffice crash
       2014-07-02 Spotify Helper crash
       2014-07-04 coreaudiod crash
    Log
       Jul  4 10:01:36 process Calendar[476] caught causing excessive wakeups. Observed wakeups rate (per sec): 1223; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 82341
       Jul  4 10:01:36 process Antispam Engine[536] caught causing excessive wakeups. Observed wakeups rate (per sec): 24844; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 150872
       Jul  4 10:01:45 process helpd[291] caught causing excessive wakeups. Observed wakeups rate (per sec): 275; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 52866
       Jul  4 10:01:45 process com.apple.dock.e[502] caught causing excessive wakeups. Observed wakeups rate (per sec): 1590; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 57334
       Jul  4 10:01:47 process NotificationCent[492] caught causing excessive wakeups. Observed wakeups rate (per sec): 964; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 68071
       Jul  4 10:01:48 process softwareupdate_n[546] caught causing excessive wakeups. Observed wakeups rate (per sec): 28527; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 93633
       Jul  4 10:01:48 process firefox[474] caught causing excessive wakeups. Observed wakeups rate (per sec): 1225; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 98282
       Jul  4 10:02:10 process LOGINserver[528] caught causing excessive wakeups. Observed wakeups rate (per sec): 1091; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45867
       Jul  4 10:02:16 process iTunes[475] caught causing excessive wakeups. Observed wakeups rate (per sec): 516; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 55586
       Jul  4 10:02:21 process XPCKeychainSandb[562] caught causing excessive wakeups. Observed wakeups rate (per sec): 10104; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 74292
       Jul  4 10:02:21 process com.apple.WebKit[572] caught causing excessive wakeups. Observed wakeups rate (per sec): 55671; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 61284
       Jul  4 10:02:21 process softwareupdated[163] caught causing excessive wakeups. Observed wakeups rate (per sec): 1271; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 84492
       Jul  4 10:02:23 process AppleSpell[550] caught causing excessive wakeups. Observed wakeups rate (per sec): 1437; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 50449
       Jul  4 10:02:24 process com.apple.WebKit[569] caught causing excessive wakeups. Observed wakeups rate (per sec): 13001; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 53799
       Jul  4 10:02:26 process SLRuntimeLoader[564] caught causing excessive wakeups. Observed wakeups rate (per sec): 4630; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 52375
       Jul  4 10:02:27 process com.apple.WebKit[568] caught causing excessive wakeups. Observed wakeups rate (per sec): 16719; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 137972
       Jul  4 10:02:27 process IntegoMenu[526] caught causing excessive wakeups. Observed wakeups rate (per sec): 2184; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 130115
       Jul  4 10:02:27 process AddressBookSourc[571] caught causing excessive wakeups. Observed wakeups rate (per sec): 14785; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 110705
       Jul  4 10:02:27 process com.apple.InputM[575] caught causing excessive wakeups. Observed wakeups rate (per sec): 11617; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 79147
       Jul  4 10:02:59 process bsdtar[504] caught causing excessive wakeups. Observed wakeups rate (per sec): 475; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 47697
       Jul  4 10:03:12 process syncdefaultsd[491] caught causing excessive wakeups. Observed wakeups rate (per sec): 344; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 54125
       Jul  4 10:03:21 process com.apple.WebKit[570] caught causing excessive wakeups. Observed wakeups rate (per sec): 786; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 48418
       Jul  4 10:03:26 process CalendarAgent[218] caught causing excessive wakeups. Observed wakeups rate (per sec): 636; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 49912
       Jul  4 10:03:58 process AddressBookSourc[612] caught causing excessive wakeups. Observed wakeups rate (per sec): 3304; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45166
       Jul  4 10:06:21 process Spotify[473] caught causing excessive wakeups. Observed wakeups rate (per sec): 2180; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 80348
    kexts
       com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN
       com.apple.GeForceTesla
       com.intego.netbarrier.kext.monitor
       com.intego.netbarrier.kext.network
       com.intego.netbarrier.kext.process
       com.intego.virusbarrier.kext.realtime
       com.intego.Family-Protector.extension
    Daemons
       com.intego.virusbarrier.daemon.realtime
       org.postfix.master
       org.ntp.ntpd
       org.cups.cupsd
       com.vix.cron
       com.oracle.java.Helper-Tool
       com.microsoft.office.licensing.helper
       com.intego.WashingMachine.service
       com.intego.virusbarrier.daemon.scanner
       com.intego.virusbarrier.daemon
       com.intego.virusbarrier.daemon.logger
       com.intego.virusbarrier.daemon.emlparser
       com.intego.PersonalBackup.daemon
       com.intego.personalantispam.daemon
       com.intego.netupdate.daemon
       com.intego.netbarrier.daemon
       com.intego.netbarrier.daemon.monitor
       com.intego.netbarrier.daemon.logger
       com.intego.Family-Protector.daemon
       com.intego.commonservices.metrics.kschecker
       com.intego.commonservices.icalserver
       com.intego.commonservices.daemon.taskmanager
       com.intego.commonservices.daemon.integod
       com.adobe.fpsaud
    Agents
       com.intego.WashingMachine.ui.helper
       com.oracle.java.Java-Updater
       com.intego.virusbarrier.alert
       com.intego.personalbackup.agent
       com.intego.netupdate.agent
       com.intego.netbarrier.alert
       com.intego.Family-Protector.agent
       com.intego.commonservices.uninstaller
       com.intego.commonservices.taskmanager
       com.intego.commonservices.integomenu
       com.canon.MFManager
       com.adobe.ARM.UUID
    launchd
       /System/Library/LaunchAgents/com.apple.accountsd.plist
           (com.apple.accountsd)
       /System/Library/LaunchAgents/com.apple.AddressBook.abd.plist
           (com.apple.AddressBook.abd)
       /System/Library/LaunchAgents/com.apple.AddressBook.AssistantService.plist
           (com.apple.AddressBook.AssistantService)
       /System/Library/LaunchAgents/com.apple.AddressBook.SourceSync.plist
           (com.apple.AddressBook.SourceSync)
       /System/Library/LaunchAgents/com.apple.AirPlayUIAgent.plist
           (com.apple.AirPlayUIAgent)
       /System/Library/LaunchAgents/com.apple.AirPortBaseStationAgent.plist
           (com.apple.AirPortBaseStationAgent)
       /System/Library/LaunchAgents/com.apple.alf.useragent.plist
           (com.apple.alf.useragent)
       /System/Library/LaunchAgents/com.apple.aos.migrate.plist
           (com.apple.aos.migrate)
       /System/Library/LaunchAgents/com.apple.AOSPushRelay.plist
           (com.apple.AOSPushRelay)
       /System/Library/LaunchAgents/com.apple.AppleGraphicsWarning.plist
           (com.apple.AppleGraphicsWarning)
       /System/Library/LaunchAgents/com.apple.appleseed.seedusaged.plist
           (com.apple.appleseed.seedusaged)
       /System/Library/LaunchAgents/com.apple.appstoreupdateagent.plist
           (com.apple.appstoreupdateagent)
       /System/Library/LaunchAgents/com.apple.apsctl.plist
           (com.apple.apsctl)
       /System/Library/LaunchAgents/com.apple.assistant_service.plist
           (com.apple.assistant_service)
       /System/Library/LaunchAgents/com.apple.assistantd.plist
           (com.apple.assistantd)
       /System/Library/LaunchAgents/com.apple.AssistiveControl.plist
           (com.apple.AssistiveControl)
       /System/Library/LaunchAgents/com.apple.avrcpagent.plist
           (com.apple.avrcpAgent)
       /System/Library/LaunchAgents/com.apple.BezelUI.plist
           (com.apple.BezelUIServer)
       /System/Library/LaunchAgents/com.apple.bluetoothUIServer.plist
           (com.apple.bluetoothUIServer)
       /System/Library/LaunchAgents/com.apple.bookstoreagent.plist
           (com.apple.bookstoreagent)
       /System/Library/LaunchAgents/com.apple.btsa.plist
           (com.apple.btsa)
       /System/Library/LaunchAgents/com.apple.CalendarAgent.plist
           (com.apple.CalendarAgent)
       /System/Library/LaunchAgents/com.apple.CalendarAgentLauncher.plist
           (com.apple.CalendarAgentLauncher)
       /System/Library/LaunchAgents/com.apple.cfnetwork.AuthBrokerAgent.plist
           (com.apple.cfnetwork.AuthBrokerAgent)
       /System/Library/LaunchAgents/com.apple.cfnetwork.cfnetworkagent.plist
           (com.apple.cfnetwork.cfnetworkagent)
       /System/Library/LaunchAgents/com.apple.cmfsyncagent.plist
           (com.apple.cmfsyncagent)
       /System/Library/LaunchAgents/com.apple.ContainerRepairAgent.plist
           (com.apple.ContainerRepairAgent)
       /System/Library/LaunchAgents/com.apple.cookied.plist
           (com.apple.cookied)
       /System/Library/LaunchAgents/com.apple.CoreLocationAgent.plist
           (com.apple.CoreLocationAgent)
       /System/Library/LaunchAgents/com.apple.coreservices.appleid.authentication.plis t
           (com.apple.coreservices.appleid.authentication)
       /System/Library/LaunchAgents/com.apple.coreservices.uiagent.plist
           (com.apple.coreservices.uiagent)
       /System/Library/LaunchAgents/com.apple.csuseragent.plist
           (com.apple.csuseragent)
       /System/Library/LaunchAgents/com.apple.cvmsCompAgent_i386.plist
           (com.apple.cvmsCompAgent_i386)
       /System/Library/LaunchAgents/com.apple.cvmsCompAgent_i386_1.plist
           (com.apple.cvmsCompAgent_i386_1)
       /System/Library/LaunchAgents/com.apple.cvmsCompAgent_x86_64.plist
           (com.apple.cvmsCompAgent_x86_64)
       /System/Library/LaunchAgents/com.apple.cvmsCompAgent_x86_64_1.plist
           (com.apple.cvmsCompAgent_x86_64_1)
       /System/Library/LaunchAgents/com.apple.DiagnosticReportCleanUpAgent.plist
           (com.apple.DiagnosticReportCleanUpAgent)
       /System/Library/LaunchAgents/com.apple.DiskArbitrationAgent.plist
           (com.apple.DiskArbitrationAgent)
       /System/Library/LaunchAgents/com.apple.Dock.plist
           (com.apple.Dock.agent)
       /System/Library/LaunchAgents/com.apple.dt.CommandLineTools.installondemand.plis t
           (com.apple.dt.CommandLineTools.installondemand)
       /System/Library/LaunchAgents/com.apple.EscrowSecurityAlert.plist
           (com.apple.EscrowSecurityAlert)
       /System/Library/LaunchAgents/com.apple.FileStatsAgent.plist
           (com.apple.FileStatsAgent)
       /System/Library/LaunchAgents/com.apple.FileSyncAgent.PHD.plist
           (com.apple.FileSyncAgent.PHD)
       /System/Library/LaunchAgents/com.apple.Finder.plist
           (com.apple.Finder)
       /System/Library/LaunchAgents/com.apple.FontRegistryUIAgent.plist
           (com.apple.FontRegistryUIAgent)
       /System/Library/LaunchAgents/com.apple.FontValidator.plist
           (com.apple.ATS.FontValidator)
       /System/Library/LaunchAgents/com.apple.FontValidatorConduit.plist
           (com.apple.ATS.FontValidatorConduit)
       /System/Library/LaunchAgents/com.apple.FTCleanup.plist
           (com.apple.FTCleanup)
       /System/Library/LaunchAgents/com.apple.gamed.plist
           (com.apple.gamed)
       /System/Library/LaunchAgents/com.apple.helpd.plist
           (com.apple.helpd)
       /System/Library/LaunchAgents/com.apple.icbaccountsd.plist
           (com.apple.icbaccountsd)
       /System/Library/LaunchAgents/com.apple.icloud.AOSNotificationAgent.plist
           (com.apple.icloud.AOSNotificationAgent)
       /System/Library/LaunchAgents/com.apple.icloud.AOSNotificationLoginAgent.plist
           (com.apple.icloud.AOSNotificationLoginAgent)
       /System/Library/LaunchAgents/com.apple.identityservicesd.plist
           (com.apple.identityservicesd)
       /System/Library/LaunchAgents/com.apple.imagent.plist
           (com.apple.imagent)
       /System/Library/LaunchAgents/com.apple.IMLoggingAgent.plist
           (com.apple.IMLoggingAgent)
       /System/Library/LaunchAgents/com.apple.isst.plist
           (com.apple.isst)
       /System/Library/LaunchAgents/com.apple.java.InstallOnDemand.plist
           (com.apple.java.InstallOnDemandAgent)
       /System/Library/LaunchAgents/com.apple.java.updateSharing.plist
           (com.apple.java.updateSharing)
       /System/Library/LaunchAgents/com.apple.KerberosHelper.LKDCHelper.plist
           (com.apple.KerberosHelper.LKDCHelper)
       /System/Library/LaunchAgents/com.apple.lateragent.plist
           (com.apple.lateragent)
       /System/Library/LaunchAgents/com.apple.librariand.plist
           (com.apple.librariand)
       /System/Library/LaunchAgents/com.apple.locationmenu.plist
           (com.apple.locationmenu)
       /System/Library/LaunchAgents/com.apple.lookupd.plist
           (com.apple.lookupd)
       /System/Library/LaunchAgents/com.apple.ManagedClient.agent.plist
           (com.apple.ManagedClient.agent)
       /System/Library/LaunchAgents/com.apple.Maps.pushdaemon.plist
           (com.apple.Maps.mapspushd)
       /System/Library/LaunchAgents/com.apple.maspushagent.plist
           (com.apple.maspushagent)
       /System/Library/LaunchAgents/com.apple.mbloginhelper.user.plist
           (com.apple.mbloginhelper.user)
       /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist
           (com.apple.mbpluginhost.user)
       /System/Library/LaunchAgents/com.apple.mdmclient.agent.plist
           (com.apple.mdmclient.agent)
       /System/Library/LaunchAgents/com.apple.mdmclient.cloudconfig.agent.plist
           (com.apple.mdmclient.cloudconfig.agent)
       /System/Library/LaunchAgents/com.apple.mdworker.32bit.plist
           (com.apple.mdworker.32bit)
       /System/Library/LaunchAgents/com.apple.mdworker.bundles.plist
           (com.apple.mdworker.bundles)
       /System/Library/LaunchAgents/com.apple.mdworker.isolation.plist
           (com.apple.mdworker.isolation)
       /System/Library/LaunchAgents/com.apple.mdworker.lsb.plist
           (com.apple.mdworker.lsb)
       /System/Library/LaunchAgents/com.apple.mdworker.mail.plist
           (com.apple.mdworker.mail)
       /System/Library/LaunchAgents/com.apple.mdworker.shared.plist
           (com.apple.mdworker.shared)
       /System/Library/LaunchAgents/com.apple.mdworker.single.plist
           (com.apple.mdworker.single)
       /System/Library/LaunchAgents/com.apple.mdworker.sizing.plist
           (com.apple.mdworker.sizing)
       /System/Library/LaunchAgents/com.apple.metadata.mdflagwriter.plist
           (com.apple.metadata.mdflagwriter)
       /System/Library/LaunchAgents/com.apple.metadata.mdwrite.plist
           (com.apple.metadata.mdwrite)
       /System/Library/LaunchAgents/com.apple.midiserver.plist
           (com.apple.midiserver)
       /System/Library/LaunchAgents/com.apple.NetworkDiagnostics.plist
           (com.apple.NetworkDiagnostics)
       /System/Library/LaunchAgents/com.apple.noticeboard.agent.plist
           (com.apple.noticeboard.agent)
       /System/Library/LaunchAgents/com.apple.notificationcenterui.plist
           (com.apple.notificationcenterui.agent)
       /System/Library/LaunchAgents/com.apple.nsnetworkd.plist
           (com.apple.nsnetworkd)
       /System/Library/LaunchAgents/com.apple.PackageKit.InstallStatus.plist
           (com.apple.PackageKit.InstallStatus)
       /System/Library/LaunchAgents/com.apple.pbs.plist
           (com.apple.pbs)
       /System/Library/LaunchAgents/com.apple.PCIESlotCheck.plist
           (com.apple.PCIESlotCheck)
       /System/Library/LaunchAgents/com.apple.pictd.plist
           (com.apple.pictd)
       /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist
           (com.apple.pluginkit.pkd)
       /System/Library/LaunchAgents/com.apple.printtool.agent.plist
           (com.apple.printtool.agent)
       /System/Library/LaunchAgents/com.apple.printuitool.agent.plist
           (com.apple.printuitool.agent)
       /System/Library/LaunchAgents/com.apple.PubSub.Agent.plist
           (com.apple.PubSub.Agent)
       /System/Library/LaunchAgents/com.apple.quicklook.32bit.plist
           (com.apple.quicklook.32bit)
       /System/Library/LaunchAgents/com.apple.quicklook.config.plist
           (com.apple.quicklook.config)
       /System/Library/LaunchAgents/com.apple.quicklook.plist
           (com.apple.quicklook)
       /System/Library/LaunchAgents/com.apple.quicklook.ui.helper.plist
           (com.apple.quicklook.ui.helper)
       /System/Library/LaunchAgents/com.apple.rcd.plist
           (com.apple.rcd)
       /System/Library/LaunchAgents/com.apple.recentsd.plist
           (com.apple.recentsd)
       /System/Library/LaunchAgents/com.apple.ReclaimSpaceAgent.plist
           (com.apple.reclaimspace)
       /System/Library/LaunchAgents/com.apple.RemoteDesktop.plist
           (com.apple.RemoteDesktop.agent)
       /System/Library/LaunchAgents/com.apple.ReportCrash.plist
           (com.apple.ReportCrash)
       /System/Library/LaunchAgents/com.apple.ReportCrash.Self.plist
           (com.apple.ReportCrash.Self)
       /System/Library/LaunchAgents/com.apple.ReportGPURestart.plist
           (com.apple.ReportGPURestart)
       /System/Library/LaunchAgents/com.apple.ReportPanic.plist
           (com.apple.ReportPanic)
       /System/Library/LaunchAgents/com.apple.safaridavclient.plist
           (com.apple.safaridavclient)
       /System/Library/LaunchAgents/com.apple.SafariNotificationAgent.plist
           (com.apple.SafariNotificationAgent)
       /System/Library/LaunchAgents/com.apple.sbd.plist
           (com.apple.sbd)
       /System/Library/LaunchAgents/com.apple.scopedbookmarkagent.xpc.plist
           (com.apple.scopedbookmarksagent.xpc)
       /System/Library/LaunchAgents/com.apple.ScreenReaderUIServer.plist
           (com.apple.ScreenReaderUIServer)
       /System/Library/LaunchAgents/com.apple.screensharing.agent.plist
           (com.apple.screensharing.agent)
       /System/Library/LaunchAgents/com.apple.screensharing.MessagesAgent.plist
           (com.apple.screensharing.MessagesAgent)
       /System/Library/LaunchAgents/com.apple.scrod.plist
           (com.apple.scrod)
       /System/Library/LaunchAgents/com.apple.security.DiskUnmountWatcher.plist
           (com.apple.security.DiskUnmountWatcher)
       /System/Library/LaunchAgents/com.apple.security.keychain-circle-notification.pl ist
           (com.apple.security.keychain-circle-notification)
       /System/Library/LaunchAgents/com.apple.ServiceManagement.LoginItems.plist
           (com.apple.ServiceManagement.LoginItems)
       /System/Library/LaunchAgents/com.apple.sharingd.plist
           (com.apple.sharingd)
       /System/Library/LaunchAgents/com.apple.soagent.plist
           (com.apple.soagent)
       /System/Library/LaunchAgents/com.apple.SocialPushAgent.plist
           (com.apple.SocialPushAgent)
       /System/Library/LaunchAgents/com.apple.softwareupdate_notify_agent.plist
           (com.apple.softwareupdate_notify_agent)
       /System/Library/LaunchAgents/com.apple.speech.feedbackservicesserver.plist
           (com.apple.speech.feedbackservicesserver)
       /System/Library/LaunchAgents/com.apple.speech.recognitionserver.plist
           (com.apple.speech.recognitionserver)
       /System/Library/LaunchAgents/com.apple.speech.speechdatainstallerd.plist
           (com.apple.speech.speechdatainstallerd)
       /System/Library/LaunchAgents/com.apple.speech.speechsynthesisd.plist
           (com.apple.speech.speechsynthesisd)
       /System/Library/LaunchAgents/com.apple.speech.synthesisserver.plist
           (com.apple.speech.synthesisserver)
       /System/Library/LaunchAgents/com.apple.spindump_agent.plist
           (com.apple.spindump_agent)
       /System/Library/LaunchAgents/com.apple.store_helper.plist
           (com.apple.storehelper)
       /System/Library/LaunchAgents/com.apple.storeagent.plist
           (com.apple.storeagent)
       /System/Library/LaunchAgents/com.apple.SubmitDiagInfo.plist
           (com.apple.SubmitDiagInfo)
       /System/Library/LaunchAgents/com.apple.syncdefaultsd.plist
           (com.apple.syncdefaultsd)
       /System/Library/LaunchAgents/com.apple.syncservices.SyncServer.plist
           (com.apple.syncservices.SyncServer)
       /System/Library/LaunchAgents/com.apple.syncservices.uihandler.plist
           (com.apple.syncservices.uihandler)
       /System/Library/LaunchAgents/com.apple.SystemUIServer.plist
           (com.apple.SystemUIServer.agent)
       /System/Library/LaunchAgents/com.apple.talagent.plist
           (com.apple.talagent)
       /System/Library/LaunchAgents/com.apple.tiswitcher.plist
           (com.apple.tiswitcher)
       /System/Library/LaunchAgents/com.apple.TMHelperAgent.plist
           (com.apple.TMHelperAgent)
       /System/Library/LaunchAgents/com.apple.TMHelperAgent.SetupOffer.plist
           (com.apple.TMHelperAgent.SetupOffer)
       /System/Library/LaunchAgents/com.apple.ubd.plist
           (com.apple.ubd)
       /System/Library/LaunchAgents/com.apple.universalaccessAuthWarn.plist
           (com.apple.universalaccessAuthWarn)
       /System/Library/LaunchAgents/com.apple.universalaccesscontrol.plist
           (com.apple.universalaccesscontrol)
       /System/Library/LaunchAgents/com.apple.universalaccessd.plist
           (com.apple.universalaccessd)
       /System/Library/LaunchAgents/com.apple.unmountassistant.useragent.plist
           (com.apple.unmountassistant.useragent)
       /System/Library/LaunchAgents/com.apple.USBAgent.plist
           (com.apple.USBAgent)
       /System/Library/LaunchAgents/com.apple.UserEventAgent-Aqua.plist
           (com.apple.UserEventAgent-Aqua)
       /System/Library/LaunchAgents/com.apple.UserEventAgent-LoginWindow.plist
           (com.apple.UserEventAgent-LoginWindow)
       /System/Library/LaunchAgents/com.apple.usernoted.plist
           (com.apple.usernoted)
       /System/Library/LaunchAgents/com.apple.UserNotificationCenterAgent-LoginWindow. plist
           (com.apple.UserNotificationCenterAgent-LoginWindow)
       /System/Library/LaunchAgents/com.apple.UserNotificationCenterAgent.plist
           (com.apple.UserNotificationCenterAgent)
       /System/Library/LaunchAgents/com.apple.VoiceOver.plist
           (com.apple.VoiceOver)
       /System/Library/LaunchAgents/com.apple.warmd_agent.plist
           (com.apple.warmd_agent)
       /System/Library/LaunchAgents/com.apple.WebKit.PluginAgent.plist
           (com.apple.WebKit.PluginAgent)
       /System/Library/LaunchAgents/com.apple.wifi.WiFiKeychainProxy.plist
           (com.apple.wifi.WiFiKeychainProxy)
       /System/Library/LaunchAgents/com.apple.xmigrationhelper.user.plist
           (com.apple.xmigrationhelper.user)
       /System/Library/LaunchAgents/com.apple.ZoomWindow.plist
           (com.apple.ZoomWindow)
       /System/Library/LaunchDaemons/com.apple.AirPlayXPCHelper.plist
           (com.apple.AirPlayXPCHelper)
       /System/Library/LaunchDaemons/com.apple.AOSNotificationOSX.plist
           (com.apple.AOSNotification)
       /System/Library/LaunchDaemons/com.apple.appleseed.fbahelperd.plist
           (com.apple.appleseed.fbahelperd)
       /System/Library/LaunchDaemons/com.apple.applessdstatistics.plist
           (com.apple.applessdstatistics)
       /System/Library/LaunchDaemons/com.apple.aslmanager.plist
           (com.apple.aslmanager)
       /System/Library/LaunchDaemons/com.apple.atrun.plist
           (com.apple.atrun)
       /System/Library/LaunchDaemons/com.apple.auditd.plist
           (com.apple.auditd)
       /System/Library/LaunchDaemons/com.apple.autofsd.plist
           (com.apple.autofsd)
       /System/Library/LaunchDaemons/com.apple.automountd.plist
           (com.apple.automountd)
       /System/Library/LaunchDaemons/com.apple.awacsd.plist
           (com.apple.awacsd)
       /System/Library/LaunchDaemons/com.apple.bluetoothaudiod.plist
           (com.apple.bluetoothaudiod)
       /System/Library/LaunchDaemons/com.apple.bnepd.plist
           (com.apple.bnepd)
       /System/Library/LaunchDaemons/com.apple.bsd.launchdadd.plist
           (com.apple.bsd.launchdadd)
       /System/Library/LaunchDaemons/com.apple.cmio.AppleCameraAssistant.plist
           (com.apple.cmio.AppleCameraAssistant)
       /System/Library/LaunchDaemons/com.apple.cmio.AVCAssistant.plist
           (com.apple.cmio.AVCAssistant)
       /System/Library/LaunchDaemons/com.apple.cmio.IIDCVideoAssistant.plist
           (com.apple.cmio.IIDCVideoAssistant)
       /System/Library/LaunchDaemons/com.apple.cmio.VDCAssistant.plist
           (com.apple.cmio.VDCAssistant)
       /System/Library/LaunchDaemons/com.apple.comsat.plist
           (com.apple.comsat)
       /System/Library/LaunchDaemons/com.apple.configureLocalKDC.plist
           (com.apple.configureLocalKDC)
       /System/Library/LaunchDaemons/com.apple.coreservices.appleevents.plist
           (com.apple.coreservices.appleevents)
       /System/Library/LaunchDaemons/com.apple.coreservices.appleid.passwordcheck.plis t
           (com.apple.coreservices.appleid.passwordcheck)
       /System/Library/LaunchDaemons/com.apple.corestorage.corestoraged.plist
           (com.apple.corestorage.corestoraged)
       /System/Library/LaunchDaemons/com.apple.corestorage.corestoragehelperd.plist
           (com.apple.corestorage.corestoragehelperd)
       /System/Library/LaunchDaemons/com.apple.coresymbolicationd.plist
           (com.apple.coresymbolicationd)
       /System/Library/LaunchDaemons/com.apple.cvmsServ.plist
           (com.apple.cvmsServ)
       /System/Library/LaunchDaemons/com.apple.DiagnosticReportCleanUpDaemon.plist
           (com.apple.DiagnosticReportCleanUpDaemon)
       /System/Library/LaunchDaemons/com.apple.displaypolicyd.plist
           (com.apple.displaypolicyd)
       /System/Library/LaunchDaemons/com.apple.dnsextd.plist
           (com.apple.dnsextd)
       /System/Library/LaunchDaemons/com.apple.docsetinstalld.plist
           (com.apple.docsetinstalld)
       /System/Library/LaunchDaemons/com.apple.dpd.plist
           (com.apple.dpd)
       /System/Library/LaunchDaemons/com.apple.dspluginhelperd.plist
           (com.apple.dspluginhelperd)
       /System/Library/LaunchDaemons/com.apple.DumpGPURestart.plist
           (com.apple.DumpGPURestart)
       /System/Library/LaunchDaemons/com.apple.DumpPanic.plist
           (com.apple.DumpPanic)
       /System/Library/LaunchDaemons/com.apple.dvdplayback.setregion.plist
           (com.apple.dvdplayback.setregion)
       /System/Library/LaunchDaemons/com.apple.dynamic_pager.plist
           (com.apple.dynamic_pager)
       /System/Library/LaunchDaemons/com.apple.efax.plist
           (com.apple.efax)
       /System/Library/LaunchDaemons/com.apple.emlog.plist
           (com.apple.emlog)
       /System/Library/LaunchDaemons/com.apple.emond.aslmanager.plist
           (com.apple.emond.aslmanager)
       /System/Library/LaunchDaemons/com.apple.emond.plist
           (com.apple.emond)
       /System/Library/LaunchDaemons/com.apple.eppc.plist
           (com.apple.AEServer)
       /System/Library/LaunchDaemons/com.apple.FileSyncAgent.sshd.plist
           (com.apple.FileSyncAgent.sshd)
       /System/Library/LaunchDaemons/com.apple.firmwaresyncd.plist
           (com.apple.firmwaresyncd)
       /System/Library/LaunchDaemons/com.apple.fseventsd.plist
           (com.apple.fseventsd)
       /System/Library/LaunchDaemons/com.apple.getty.plist
           (com.apple.getty)
       /System/Library/LaunchDaemons/com.apple.gkbisd.plist
           (com.apple.gkbisd)
       /System/Library/LaunchDaemons/com.apple.gssd.plist
           (com.apple.gssd)
       /System/Library/LaunchDaemons/com.apple.hdiejectd.plist
           (com.apple.hdiejectd)
       /System/Library/LaunchDaemons/com.apple.iconservices.iconservicesd.plist
           (com.apple.iconservicesd)
       /System/Library/LaunchDaemons/com.apple.IFCStart.plist
           (com.apple.IFCStart)
       /System/Library/LaunchDaemons/com.apple.InternetSharing.plist
           (com.apple.InternetSharing)
       /System/Library/LaunchDaemons/com.apple.IOAccelMemoryInfoCollector.plist
           (com.apple.IOAccelMemoryInfoCollector)
       /System/Library/LaunchDaemons/com.apple.IOBluetoothUSBDFU.plist
           (com.apple.IOBluetoothUSBDFU)
       /System/Library/LaunchDaemons/com.apple.kcproxy.plist
           (com.apple.kcproxy)
       /System/Library/LaunchDaemons/com.apple.kdumpd.plist
           (com.apple.kdumpd)
       /System/Library/LaunchDaemons/com.apple.Kerberos.digest-service.plist
           (com.apple.Kerberos.digest-service)
       /System/Library/LaunchDaemons/com.apple.Kerberos.kadmind.plist
           (com.apple.Kerberos.kadmind)
       /System/Library/LaunchDaemons/com.apple.Kerberos.kcm.plist
           (com.apple.Kerberos.kcm)
       /System/Library/LaunchDaemons/com.apple.Kerberos.kdc.plist
           (com.apple.Kerberos.kdc)
       /System/Library/LaunchDaemons/com.apple.Kerberos.kpasswdd.plist
           (com.apple.Kerberos.kpasswdd)
       /System/Library/LaunchDaemons/com.apple.laterscheduler.plist
           (com.apple.laterscheduler)
       /System/Library/LaunchDaemons/com.apple.locate.plist
           (com.apple.locate)
       /System/Library/LaunchDaemons/com.apple.lockd.plist
           (com.apple.lockd)
       /System/Library/LaunchDaemons/com.apple.logind.plist
           (com.apple.logind)
       /System/Library/LaunchDaemons/com.apple.loginwindow.LFVTracer.plist
           (com.apple.loginwindow.LFVTracer)
       /System/Library/LaunchDaemons/com.apple.loginwindow.plist
           (com.apple.loginwindow)
       /System/Library/LaunchDaemons/com.apple.loginwindow.secureerase.plist
           (com.apple.loginwindow.secureerase)
       /System/Library/LaunchDaemons/com.apple.logkextloadsd.plist
           (com.apple.logkextloadsd)
       /System/Library/LaunchDaemons/com.apple.logsyswritesd.plist
           (com.apple.logsyswritesd)
       /System/Library/LaunchDaemons/com.apple.ManagedClient.cloudconfigurationd.plist
           (com.apple.ManagedClient.cloudconfigurationd)
       /System/Library/LaunchDaemons/com.apple.ManagedClient.enroll.plist
           (com.apple.ManagedClient.enroll)
       /System/Library/LaunchDaemons/com.apple.ManagedClient.plist
           (com.apple.ManagedClient)
       /System/Library/LaunchDaemons/com.apple.ManagedClient.startup.plist
           (com.apple.ManagedClient.startup)
       /System/Library/LaunchDaemons/com.apple.mbicloudsetupd.plist
           (com.apple.mbicloudsetupd)
       /System/Library/LaunchDaemons/com.apple.mdmclient.daemon.plist
           (com.apple.mdmclient.daemon)
       /System/Library/LaunchDaemons/com.apple.metadata.mds.index.plist
           (com.apple.metadata.mds.index)
       /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
           (com.apple.metadata.mds)
       /System/Library/LaunchDaemons/com.apple.metadata.mds.scan.plist
           (com.apple.metadata.mds.scan)
       /System/Library/LaunchDaemons/com.apple.metadata.mds.spindump.plist
           (com.apple.metadata.mds.spindump)
       /System/Library/LaunchDaemons/com.apple.msrpc.echosvc.plist
           (com.apple.msrpc.echosvc)
       /System/Library/LaunchDaemons/com.apple.msrpc.lsarpc.plist
           (com.apple.msrpc.lsarpc)
       /System/Library/LaunchDaemons/com.apple.msrpc.mdssvc.plist
           (com.apple.msrpc.mdssvc)
       /System/Library/LaunchDaemons/com.apple.msrpc.netlogon.plist
           (com.apple.msrpc.netlogon)
       /System/Library/LaunchDaemons/com.apple.msrpc.srvsvc.plist
           (com.apple.msrpc.srvsvc)
       /System/Library/LaunchDaemons/com.apple.msrpc.wkssvc.plist
           (com.apple.msrpc.wkssvc)
       /System/Library/LaunchDaemons/com.apple.mtmd.plist
           (com.apple.mtmd)
       /System/Library/LaunchDaemons/com.apple.mtmfs.plist
           (com.apple.mtmfs)
       /System/Library/LaunchDaemons/com.apple.netbiosd.plist
           (com.apple.netbiosd)
       /System/Library/LaunchDaemons/com.apple.newsyslog.plist
           (com.apple.newsyslog)
       /System/Library/LaunchDaemons/com.apple.nfsconf.plist
           (com.apple.nfsconf)
       /System/Library/LaunchDaemons/com.apple.nfsd.plist
           (com.apple.nfsd)
       /System/Library/LaunchDaemons/com.apple.nis.ypbind.plist
           (com.apple.nis.ypbind)
       /System/Library/LaunchDaemons/com.apple.noticeboard.state.plist
           (com.apple.noticeboard.state)
       /System/Library/LaunchDaemons/com.apple.odproxyd.plist
           (com.apple.odproxyd)
       /System/Library/LaunchDaemons/com.apple.ODSAgent.plist
           (com.apple.ODSAgent)
       /System/Library/LaunchDaemons/com.apple.opendirectoryd.plist
           (com.apple.opendirectoryd)
       /System/Library/LaunchDaemons/com.apple.pacemaker.plist
           (com.apple.pacemaker)
       /System/Library/LaunchDaemons/com.apple.PasswordService.plist
           (com.apple.PasswordService)
       /System/Library/LaunchDaemons/com.apple.PCIELaneConfigTool.plist
           (com.apple.PCIELaneConfigTool)
       /System/Library/LaunchDaemons/com.apple.periodic-daily.plist
           (com.apple.periodic-daily)
       /System/Library/LaunchDaemons/com.apple.periodic-monthly.plist
           (com.apple.periodic-monthly)
       /System/Library/LaunchDaemons/com.apple.periodic-weekly.plist
           (com.apple.periodic-weekly)
       /System/Library/LaunchDaemons/com.apple.pfctl.plist
           (com.apple.pfctl)
       /System/Library/LaunchDaemons/com.apple.pfd.plist
           (com.apple.pfd)
       /System/Library/LaunchDaemons/com.apple.platform.ptmd.plist
           (com.apple.platform.ptmd)
       /System/Library/LaunchDaemons/com.apple.postgres.plist
           (com.apple.postgres)
       /System/Library/LaunchDaemons/com.apple.preferences.timezone.admintool.plist
           (com.apple.preferences.timezone.admintool)
       /System/Library/LaunchDaemons/com.apple.preferences.timezone.auto.plist
           (com.apple.preferences.timezone.auto)
       /System/Library/LaunchDaemons/com.apple.printtool.daemon.plist
           (com.apple.printtool.daemon)
       /System/Library/LaunchDaemons/com.apple.racoon.plist
           (com.apple.racoon)
       /System/Library/LaunchDaemons/com.apple.RemoteDesktop.PrivilegeProxy.plist
           (com.apple.RemoteDesktop.PrivilegeProxy)
       /System/Library/LaunchDaemons/com.apple.remotepairtool.plist
           (com.apple.RemotePairTool)
       /System/Library/LaunchDaemons/com.apple.ReportPanicService.plist
           (com.apple.ReportPanicService)
       /System/Library/LaunchDaemons/com.apple.revisiond.plist
           (com.apple.revisiond)
       /System/Library/LaunchDaemons/com.apple.RFBEventHelper.plist
           (com.apple.RFBEventHelper)
       /System/Library/LaunchDaemons/com.apple.rpcbind.plist
           (com.apple.rpcbind)
       /System/Library/LaunchDaemons/com.apple.screensharing.plist
           (com.apple.screensharing)
       /System/Library/LaunchDaemons/com.apple.scsid.plist
           (com.apple.scsid)
       /System/Library/LaunchDaemons/com.apple.security.FDERecoveryAgent.plist
           (com.apple.security.FDERecoveryAgent)
       /System/Library/LaunchDaemons/com.apple.security.syspolicy.plist
           (com.apple.security.syspolicy)
       /System/Library/LaunchDaemons/com.apple.ServerPerfLog.aslmanager.plist
           (com.apple.ServerPerfLog.aslmanager)
       /System/Library/LaunchDaemons/com.apple.ServerPerfLog.plist
           (com.apple.ServerPerfLog)
       /System/Library/LaunchDaemons/com.apple.sessionlogoutd.plist
           (com.apple.sessionlogoutd)
       /System/Library/LaunchDaemons/com.apple.shutdown_monitor.plist
           (com.apple.shutdown_monitor)
       /System/Library/LaunchDaemons/com.apple.sleepservicesd.plist
           (com.apple.sleepservicesd)
       /System/Library/LaunchDaemons/com.apple.smb.preferences.plist
           (com.apple.smb.preferences)
       /System/Library/LaunchDaemons/com.apple.smbd.plist
           (com.apple.smbd)
       /System/Library/LaunchDaemons/com.apple.snhelper.plist
           (com.apple.snhelper)
       /System/Library/LaunchDaemons/com.apple.softwareupdate_firstrun_tasks.plist
           (com.apple.softwareupdatecheck.initial)
       /System/Library/LaunchDaemons/com.apple.softwareupdated.plist
           (com.apple.softwareupdated)
       /System/Library/LaunchDaemons/com.apple.spindump.plist
           (com.apple.spindump)
       /System/Library/LaunchDaemons/com.apple.spindump_symbolicator.plist
           (com.apple.spindump_symbolicator)
       /System/Library/LaunchDaemons/com.apple.stackshot.plist
           (com.apple.stackshot)
       /System/Library/LaunchDaemons/com.apple.statd.notify.plist
           (com.apple.statd.notify)
       /System/Library/LaunchDaemons/com.apple.SubmitDiagInfo.Root.plist
           (com.apple.SubmitDiagInfo.Root)
       /System/Library/LaunchDaemons/com.apple.suhelperd.plist
           (com.apple.suhelperd)
       /System/Library/LaunchDaemons/com.apple.sysmond.plist
           (com.apple.sysmond)
       /System/Library/LaunchDaemons/com.apple.systemkeychain.plist
           (com.apple.systemkeychain)
       /System/Library/LaunchDaemons/com.apple.systempreferences.installer.plist
           (com.apple.systempreferences.install)
       /System/Library/LaunchDaemons/com.apple.systemstats.analysis.plist
           (com.apple.systemstats.analysis)
       /System/Library/LaunchDaemons/com.apple.systemstats.daily.plist
           (com.apple.systemstats.daily)
       /System/Library/LaunchDaemons/com.apple.systemstatsd.plist
           (com.apple.systemstatsd)
       /System/Library/LaunchDaemons/com.apple.taskgated-helper.plist
           (com.apple.taskgated-helper)
       /System/Library/LaunchDaemons/com.apple.ucupdate.plist
           (com.apple.ucupdate.plist)
       /System/Library/LaunchDaemons/com.apple.uninstalld.plist
           (com.apple.uninstalld)
       /System/Library/LaunchDaemons/com.apple.unmountassistant.sysagent.plist
           (com.apple.unmountassistant.sysagent)
       /System/Library/LaunchDaemons/com.apple.usbd.plist
           (com.apple.usbd)
       /System/Library/LaunchDaemons/com.apple.UserEventAgent-System.plist
           (com.apple.UserEventAgent-System)
       /System/Library/LaunchDaemons/com.apple.UserNotificationCenter.plist
           (com.apple.UserNotificationCenter)
       /System/Library/LaunchDaemons/com.apple.uucp.plist
           (com.apple.uucp)
       /System/Library/LaunchDaemons/com.apple.var-db-dslocal-backup.plist
           (com.apple.var-db-dslocal-backup)
       /System/Library/LaunchDaemons/com.apple.vsdbutil.plist
           (com.apple.vsdbutil)
       /System/Library/LaunchDaemons/com.apple.warmd.plist
           (com.apple.warmd)
       /System/Library/LaunchDaemons/com.apple.wdhelper.plist
           (com.apple.wdhelper)
       /System/Library/LaunchDaemons/com.apple.wifid.plist
           (com.apple.wifid)
       /System/Library/LaunchDaemons/com.apple.wwand.plist
           (com.apple.wwand)
       /System/Library/LaunchDaemons/com.apple.xsan.plist
           (com.apple.xsan)
       /System/Library/LaunchDaemons/com.apple.xsanmgrd.plist
           (com.apple.xsanmgrd)
       /System/Library/LaunchDaemons/com.apple.xscertadmin.plist
           (com.apple.xscertadmin)
       /System/Library/LaunchDaemons/com.apple.xscertd-helper.plist
           (com.apple.xscertd-helper)
       /System/Library/LaunchDaemons/com.apple.xscertd.plist
           (com.apple.xscertd)
       /System/Library/LaunchDaemons/com.danga.memcached.plist
           (memcached)
       /System/Library/LaunchDaemons/com.vix.cron.plist
           (com.vix.cron)
       /System/Library/LaunchDaemons/exec.plist
           (com.apple.rexecd)
       /System/Library/LaunchDaemons/finger.plist
           (com.apple.fingerd)
       /System/Library/LaunchDaemons/ftp.plist
           (com.apple.ftpd)
       /System/Library/LaunchDaemons/login.plist
           (com.apple.rlogind)
       /System/Library/LaunchDaemons/ntalk.plist
           (com.apple.ntalkd)
       /System/Library/LaunchDaemons/org.apache.httpd.plist
           (org.apache.httpd)
       /System/Library/LaunchDaemons/org.cups.cups-lpd.plist
           (org.cups.cups-lpd)
       /System/Library/LaunchDaemons/org.cups.cupsd.plist
           (org.cups.cupsd)
       /System/Library/LaunchDaemons/org.net-snmp.snmpd.plist
           (org.net-snmp.snmpd)
       /System/Library/LaunchDaemons/org.ntp.ntpd.plist
           (org.ntp.ntpd)
       /System/Library/LaunchDaemons/org.openldap.slapd.plist
           (org.openldap.slapd)
       /System/Library/LaunchDaemons/org.postfix.master.plist
           (org.postfix.master)
       /System/Library/LaunchDaemons/shell.plist
           (com.apple.rshd)
       /System/Library/LaunchDaemons/telnet.plist
           (com.apple.telnetd)
       /System/Library/LaunchDaemons/tftp.plist
           (com.apple.tftpd)
       /Library/LaunchAgents/com.canon.MFManager.plist
           (com.canon.MFManager)
       /Library/LaunchAgents/com.intego.commonservices.integomenu.plist
           (com.intego.commonservices.integomenu)
       /Library/LaunchAgents/com.intego.commonservices.taskmanager.plist
           (com.intego.commonservices.taskmanager)
       /Library/LaunchAgents/com.intego.commonservices.uninstaller.plist
           (com.intego.commonservices.uninstaller)
       /Library/LaunchAgents/com.intego.Family-Protector.agent.plist
           (com.intego.Family-Protector.agent)
       /Library/LaunchAgents/com.intego.netbarrier.alert.plist
           (com.intego.netbarrier.alert)
       /Library/LaunchAgents/com.intego.netupdate.agent.plist
           (com.intego.netupdate.agent)
       /Library/LaunchAgents/com.intego.personalbackup.agent.plist
           (com.intego.personalbackup.agent)
       /Library/LaunchAgents/com.intego.virusbarrier.alert.plist
           (com.intego.virusbarrier.alert)
       /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
           (com.oracle.java.Java-Updater)
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
           (com.adobe.fpsaud)
       /Library/LaunchDaemons/com.intego.commonservices.daemon.integod.plist
           (com.intego.commonservices.daemon.integod)
       /Library/LaunchDaemons/com.intego.commonservices.daemon.taskmanager.plist
           (com.intego.commonservices.daemon.taskmanager)
       /Library/LaunchDaemons/com.intego.commonservices.icalserver.plist
           (com.intego.commonservices.icalserver)
       /Library/LaunchDaemons/com.intego.commonservices.metrics.kschecker.plist
           (com.intego.commonservices.metrics.kschecker)
       /Library/LaunchDaemons/com.intego.Family-Protector.daemon.plist
           (com.intego.Family-Protector.daemon)
       /Library/LaunchDaemons/com.intego.netbarrier.daemon.logger.plist
           (com.intego.netbarrier.daemon.logger)
       /Library/LaunchDaemons/com.intego.netbarrier.daemon.monitor.plist
           (com.intego.netbarrier.daemon.monitor)
       /Library/LaunchDaemons/com.intego.netbarrier.daemon.plist
           (com.intego.netbarrier.daemon)
       /Library/LaunchDaemons/com.intego.netupdate.daemon.plist
           (com.intego.netupdate.daemon)
       /Library/LaunchDaemons/com.intego.personalantispam.daemon.plist
           (com.intego.personalantispam.daemon)
       /Library/LaunchDaemons/com.intego.PersonalBackup.daemon.plist
           (com.intego.PersonalBackup.daemon)
       /Library/LaunchDaemons/com.intego.virusbarrier.daemon.emlparser.plist
           (com.intego.virusbarrier.daemon.emlparser)
       /Library/LaunchDaemons/com.intego.virusbarrier.daemon.logger.plist
           (com.intego.virusbarrier.daemon.logger)
       /Library/LaunchDaemons/com.intego.virusbarrier.daemon.plist
           (com.intego.virusbarrier.daemon)
       /Library/LaunchDaemons/com.intego.virusbarrier.daemon.scanner.plist
           (com.intego.virusbarrier.daemon.scanner)
       /Library/LaunchDaemons/com.intego.WashingMachine.service.plist
           (com.intego.WashingMachine.service)
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
           (com.microsoft.office.licensing.helper)
       /Library/LaunchDaemons/com.oracle.java.Helper-Tool.plist
           (com.oracle.java.Helper-Tool)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
           (com.adobe.ARM.UUID)
    Startup items
       /System/Library/StartupItems/WiUtilityUSBStartUp/AppDaemonUSB
       /System/Library/StartupItems/WiUtilityUSBStartUp/StartupParameters.plist
       /System/Library/StartupItems/WiUtilityUSBStartUp/WiUtilityUSBStartUp
       /Library/StartupItems/Personal Antispam/Deauthorizer.app/Contents/Info.plist
       /Library/StartupItems/Personal Antispam/Deauthorizer.app/Contents/MacOS/Deauthorizer
       /Library/StartupItems/Personal Antispam/load
       /Library/StartupItems/Personal Antispam/Personal Antispam Daemon.app/Contents/Info.plist
       /Library/StartupItems/Personal Antispam/Personal Antispam Daemon.app/Contents/MacOS/Personal Antispam Daemon
    Bundles
       /System/Library/CoreServices/SecurityAgentPlugins/HomeDirMechanism.bundle
           (com.apple.SecurityAgentPlugin.HomeDirMechanism)
       /System/Library/CoreServices/SecurityAgentPlugins/KerberosAgent.bundle
           (com.apple.KerberosAgent)
       /System/Library/CoreServices/SecurityAgentPlugins/loginwindow.bundle
           (com.apple.securityAgentPlugins.loginwindowUI)
       /System/Library/CoreServices/SecurityAgentPlugins/MCXMechanism.bundle
           (com.apple.securityAgentPlugin.MCXMechanism)
       /System/Library/CoreServices/SecurityAgentPlugins/PKINITMechanism.bundle
           (com.apple.PKINITMechanism)
       /System/Library/CoreServices/SecurityAgentPlugins/RestartAuthorization.bundle
           (com.apple.securityAgentPlugin.RestartAuthorization)
       /System/Library/Extensions/AMDRadeonVADriver.bundle
           (com.apple. AMDRadeonVADriver)
       /System/Library/Extensions/AMDRadeonX3000.kext
           (com.apple.AMDRadeonX3000)
       /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle
           (com.apple.AMDRadeonX3000GLDriver)
       /System/Library/Extensions/AMDRadeonX4000.kext
           (com.apple.AMDRadeonX4000)
       /System/Library/Extensions/AMDRadeonX4000GLDriver.bundle
           (com.apple.AMDRadeonX4000GLDriver)
       /System/Library/Extensions/AppleFSCompressionTypeLZVN.kext
           (com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN)
       /System/Library/Extensions/AppleIntelHD3000Graphics.kext
           (com.apple.driver.AppleIntelHD3000Graphics)
       /System/Library/Extensions/AppleIntelHD3000GraphicsGA.plugin
           (com.apple.driver.AppleIntelHD3000GraphicsGA)
       /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle
           (com.apple.driver.AppleIntelHD3000GraphicsGLDriver)
       /System/Library/Extensions/AppleIntelHD3000GraphicsVADriver.bundle
           (com.apple.AppleIntelHD3000GraphicsVADriver)
       /System/Library/Extensions/AppleIntelHD4000Graphics.kext
           (com.apple.driver.AppleIntelHD4000Graphics)
       /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle
           (com.apple.driver.AppleIntelHD4000GraphicsGLDriver)
       /System/Library/Extensions/AppleIntelHD4000GraphicsVADriver.bundle
           (com.apple.AppleIntelHD4000GraphicsVADriver)
       /System/Library/Extensions/AppleIntelHD5000Graphics.kext
           (com.apple.driver.AppleIntelHD5000Graphics)
       /System/Library/Extensions/AppleIntelHD5000GraphicsGLDriver.bundle
           (com.apple.driver.AppleIntelHD5000GraphicsGLDriver)
       /System/Library/Extensions/AppleIntelHD5000GraphicsVADriver.bundle
           (com.apple.AppleIntelHD5000GraphicsVADriver)
       /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle
           (com.apple.driver.AppleIntelHDGraphicsGLDriver)
       /System/Library/Extensions/AppleIntelHSWVA.bundle
           (com.apple.AppleIntelHSWFBVA)
       /System/Library/Extensions/AppleIntelIVBVA.bundle
           (com.apple.AppleIntelIVBFBVA)
       /System/Library/Extensions/AppleIntelMCEReporter.kext
           (com.apple.driver.AppleIntelMCEReporter)
       /System/Library/Extensions/ATIRadeonX2000.kext
           (com.apple.ATIRadeonX2000)
       /System/Library/Extensions/ATIRadeonX2000GA.plugin
           (com.apple.ATIRadeonX2000GA)
       /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle
           (com.apple.ATIRadeonX2000GLDriver)
       /System/Library/Extensions/ATIRadeonX2000VADriver.bundle
           (com.apple.ATIRadeonX2000VADriver)
       /System/Library/Extensions/BJUSBMP.kext
           (jp.co.canon.bj.kext.BJUSBMP)
       /System/Library/Extensions/EPSONUSBPrintClass.kext
           (com.epson.print.kext.USBPrintClass)
       /System/Library/Extensions/Family Protector Safe Boot_Legacy.kext
           (com.intego.Family-Protector.safe-boot)
       /System/Library/Extensions/GeForce.kext
           (com.apple.GeForce)
       /System/Library/Extensions/GeForceGA.plugin
           (com.apple.GeForceGA)
       /System/Library/Extensions/GeForceGLDriver.bundle
           (com.apple.GeForceGLDriver)
       /System/Library/Extensions/GeForceTesla.kext
           (com.apple.GeForceTesla)
       /System/Library/Extensions/GeForceTeslaGLDriver.bundle
           (com.apple.GeForceTeslaGLDriver)
       /System/Library/Extensions/GeForceTeslaVADriver.bundle
           (com.apple.GeForceTeslaVADriver)
       /System/Library/Extensions/GeForceVADriver.bundle
           (com.apple.GeForceVADriver)
       /System/Library/Extensions/hp_designjet_series.kext
           (com.hp.print.hpio.Designjet.kext)
       /System/Library/Extensions/hp_Deskjet_io_enabler.kext
           (com.hp.print.hpio.Deskjet.kext)
       /System/Library/Extensions/hp_Inkjet1_io_enabler.kext
           (com.hp.print.hpio.Inkjet1.kext)
       /System/Library/Extensions/hp_Inkjet2_io_enabler.kext
           (com.hp.print.hpio.Inkjet2.kext)
       /System/Library/Extensions/hp_Inkjet3_io_enabler.kext
           (com.hp.print.hpio.Inkjet3.kext)
       /System/Library/Extensions/hp_Inkjet4_io_enabler.kext
           (com.hp.print.hpio.Inkjet4.kext)
       /System/Library/Extensions/hp_Inkjet5_io_enabler.kext
           (com.hp.print.hpio.Inkjet5.kext)
       /System/Library/Extensions/hp_Inkjet7_io_enabler.kext
           (com.hp.print.hpio.inkjet7.kext)
       /System/Library/Extensions/hp_Inkjet8_io_enabler.kext
           (com.hp.print.hpio.inkjet8.kext)
       /System/Library/Extensions/hp_Inkjet_io_enabler.kext
           (com.hp.print.hpio.Inkjet.kext)
       /System/Library/Extensions/hp_io_printerclassdriver_enabler.kext
           (com.hp.hpio.hp_io_printerclassdriver_enabler)
       /System/Library/Extensions/hp_Laserjet_io_enabler.kext
           (com.hp.print.hpio.Laserjet.kext)
       /System/Library/Extensions/hp_Officejet_io_enabler.kext
           (com.hp.print.hpio.Officejet.kext)
       /System/Library/Extensions/hp_Photosmart_io_enabler.kext
           (com.hp.print.hpio.Photosmart.kext)
       /System/Library/Extensions/hp_PhotosmartPro_io_enabler.kext
           (com.hp.print.hpio.PhotosmartPro.kext)
       /System/Library/Extensions/hp_qc_io_enabler.kext
           (com.hp.hpio.hp_psa530_630_io_enabler)
       /System/Library/Extensions/RT2870USBWirelessDriver.kext
           (com.Ralink.driver.RT2870USBWirelessDriver)
       /System/Library/Extensions/RT2870USBWirelessDriver.kext/Contents/Resources
           (com.Ralink.driver.RT2870USBWirelessDriver)
       /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
           (info.emagic.driver.unitor)
       /Library/Audio/Plug-Ins/Components/Flip4Mac WMA Import.component
           (net.telestream.wmv.import)
       /Library/Audio/Plug-Ins/HAL/AirPlay.driver
           (com.apple.audio.AirTunesHALPlugin)
       /Library/Audio/Plug-Ins/HAL/AppleAVBAudio.driver
           (com.apple.audio.AppleAVBAudio)
       /Library/Audio/Plug-Ins/HAL/BluetoothAudioPlugIn.driver
           (com.apple.audio.BluetoothAudioPlugIn)
       /Library/Audio/Plug-Ins/HAL/iSightAudio.driver
           (com.apple.iSightAudio)
       /Library/Extensions/Family Protector Safe Boot.kext
           (com.intego.Family-Protector.safe-boot)
       /Library/Intego/commonservices.bundle
           (com.intego.commonservices)
       /Library/Intego/Family Protector.bundle
           (com.intego.Family-Protector.integod)
       /Library/Intego/IM_ObjectiveMetrics.framework/Resources
           (com.bitspatter.IM-ObjectiveMetrics)
       /Library/Intego/IM_ObjectiveMetrics.framework/Versions/A/Resources
       

    Thanks for your reply.  I booted from the Restore partition and repaired disk and permissions.  There were no disk errors and only one permission to repair.
    I ran EtreCheck and here are the results:
    EtreCheck version: 1.9.12 (48)
    Report generated July 4, 2014 at 11:37:19 AM MST
    Hardware Information:
        Mac mini (Mid 2010) (Verified)
        Mac mini - model: Macmini4,1
        1 2.4 GHz Intel Core 2 Duo CPU: 2 cores
        2 GB RAM
    Video Information:
        NVIDIA GeForce 320M - VRAM: 256 MB
            LCD TV spdisplays_720p
    System Software:
        OS X 10.9.4 (13E28) - Uptime: 0 days 1:43:42
    Disk Information:
        TOSHIBA MK3255GSXF disk0 : (320.07 GB)
            EFI (disk0s1) <not mounted>: 209.7 MB
            Macintosh HD (disk0s2) / [Startup]: 319.21 GB (253.36 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        HL-DT-STDVDRW  GA32N 
    USB Information:
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        Logitech USB Optical Mouse
        Apple Inc. BRCM2070 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
    Gatekeeper:
        Mac App Store and identified developers
    Kernel Extensions:
        [not loaded]    com.Ralink.driver.RT2870USBWirelessDriver (1.0.8) Support
        [not loaded]    com.intego.Family-Protector.safe-boot (10.7.5 - SDK 10.8) Support
    Startup Items:
        WiUtilityUSBStartUp: Path: /System/Library/StartupItems/WiUtilityUSBStartUp
    Launch Daemons:
        [loaded]    com.adobe.fpsaud.plist Support
        [running]    com.intego.commonservices.daemon.integod.plist Support
        [running]    com.intego.commonservices.daemon.taskmanager.plist Support
        [loaded]    com.intego.commonservices.icalserver.plist Support
        [loaded]    com.intego.commonservices.metrics.kschecker.plist Support
        [running]    com.intego.Family-Protector.daemon.plist Support
        [running]    com.intego.netbarrier.daemon.logger.plist Support
        [running]    com.intego.netbarrier.daemon.monitor.plist Support
        [running]    com.intego.netbarrier.daemon.plist Support
        [running]    com.intego.netupdate.daemon.plist Support
        [running]    com.intego.personalantispam.daemon.plist Support
        [running]    com.intego.PersonalBackup.daemon.plist Support
        [loaded]    com.intego.virusbarrier.daemon.emlparser.plist Support
        [running]    com.intego.virusbarrier.daemon.logger.plist Support
        [running]    com.intego.virusbarrier.daemon.plist Support
        [running]    com.intego.virusbarrier.daemon.scanner.plist Support
        [running]    com.intego.WashingMachine.service.plist Support
        [loaded]    com.microsoft.office.licensing.helper.plist Support
        [loaded]    com.oracle.java.Helper-Tool.plist Support
    Launch Agents:
        [running]    com.brother.LOGINserver.plist Support
        [running]    com.canon.MFManager.plist Support
        [running]    com.intego.commonservices.integomenu.plist Support
        [loaded]    com.intego.commonservices.taskmanager.plist Support
        [loaded]    com.intego.commonservices.uninstaller.plist Support
        [running]    com.intego.Family-Protector.agent.plist Support
        [loaded]    com.intego.netbarrier.alert.plist Support
        [running]    com.intego.netupdate.agent.plist Support
        [loaded]    com.intego.personalbackup.agent.plist Support
        [loaded]    com.intego.virusbarrier.alert.plist Support
        [loaded]    com.oracle.java.Java-Updater.plist Support
    User Launch Agents:
        [loaded]    com.adobe.ARM.[...].plist Support
        [failed]    com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
    User Login Items:
        Microsoft AU Daemon
        Stickies
        iTunesHelper
        Antispam Engine
    Internet Plug-ins:
        LogitechHarmony: Version: 1.2.0.1 - SDK 10.8 Support
        Default Browser: Version: 537 - SDK 10.9
        Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 Support
        AdobePDFViewerNPAPI: Version: 10.1.10 Support
        FlashPlayer-10.6: Version: 14.0.0.125 - SDK 10.6 Support
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
        Flash Player: Version: 14.0.0.125 - SDK 10.6 Support
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        SharePointBrowserPlugin: Version: 14.4.2 - SDK 10.6 Support
        AdobePDFViewer: Version: 10.1.10 Support
        EPPEX Plugin: Version: 4.1.0.0 Support
        JavaAppletPlugin: Version: Java 8 Check version
    Audio Plug-ins:
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
        Flash Player  Support
        Flip4Mac WMV  Support
        Java  Support
    Time Machine:
        Time Machine not configured!
    Top Processes by CPU:
             2%    firefox
             1%    WindowServer
             0%    Spotify
             0%    ocspd
             0%    mds_stores
    Top Processes by Memory:
        307 MB    firefox
        55 MB    soffice
        51 MB    Spotify
        35 MB    Finder
        33 MB    WindowServer
    Virtual Memory Information:
        27 MB    Free RAM
        547 MB    Active RAM
        527 MB    Inactive RAM
        405 MB    Wired RAM
        911 MB    Page-ins
        76 MB    Page-outs

  • New Google maps street view is very slow in FF 31.2.0 on Linux (RHEL 6.3)

    The new google streetview (which does not use Flash) is unusable and renders very slow starting with pixelated images that progressively build. The slowness is not present in FF30.0 on Windows.
    It seems to be an issue in Linux Mint as well: http://forums.linuxmint.com/viewtopic.php?f=47&t=180542
    It seems to be quite common on the google map forums: https://productforums.google.com/forum/#!topic/maps/rWUCllpDDSE
    There seems to be bug open already: https://bugzilla.mozilla.org/show_bug.cgi?id=697443
    But why does FF30.0 on windows work O.K but not FF31.2.0 on Linux?
    * ICA Plugin (Linux) Version 12.1.8.250715 (/opt/Citrix/ICAClient/wfica)
    * Shockwave Flash 11.2 r202
    * The IcedTea-Web Plugin executes Java applets.
    * The Totem 2.28.6 plugin handles video and audio streams.
    * DivX Web Player version 1.4.0.233
    * nspluginwrapper is a cross-platform NPAPI plugin viewer, in particular for linux/i386 plugins.This beta software is available under the terms of the GNU General Public License.
    * This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.
    * Add Block Plus
    * Firebug

    fixed with this method:
    http://bbs.archlinux.org/viewtopic.php?pid=319710

  • Oracle-11g connection is very slow

    Hi Team,
    Installed oracle11g with database yesterday. but the connection to database using tnsnames is very slow even from host server, where as sys / as sysdba is normal in hostserver.
    And checked other databases(10g) connections in the same host server, normal. Here with I spooled alert log file and parameter list. pls do the needful help.
    Aler log file from shut down to startup.
    Sat Aug 06 11:28:54 2011
    Shutting down instance (immediate)
    Stopping background process SMCO
    Shutting down instance: further logons disabled
    Sat Aug 06 11:28:55 2011
    Stopping background process CJQ0
    Stopping background process QMNC
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 10
    ALTER DATABASE CLOSE NORMAL
    Sat Aug 06 11:28:58 2011
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Sat Aug 06 11:28:58 2011
    Shutting down archive processes
    Archiving is disabled
    Sat Aug 06 11:28:58 2011
    ARCH shutting down
    Sat Aug 06 11:28:58 2011
    ARCH shutting down
    Sat Aug 06 11:28:58 2011
    ARCH shutting down
    ARC1: Archival stopped
    ARC0: Archival stopped
    ARC3: Archival stopped
    Sat Aug 06 11:28:58 2011
    ARCH shutting down
    ARC2: Archival stopped
    Thread 1 closed at log sequence 9
    Successful close of redo thread 1
    Completed: ALTER DATABASE CLOSE NORMAL
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Sat Aug 06 11:29:01 2011
    Stopping background process VKTM:
    Sat Aug 06 11:29:05 2011
    Instance shutdown complete
    Sat Aug 06 11:32:12 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =118
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production.
    Using parameter settings in client-side pfile /oracle/ora11g/apps/dbs/initrakshak.ora on machine abml01
    System parameters with non-default values:
    processes                = 700
    sga_max_size             = 30G
    sga_target               = 30G
    control_files            = "/barch10g_db/ora11g/rakshak_control/rkdatabase/control1/rakshak_control01.ctl"
    control_files            = "/barch10g_db/ora11g/rakshak_redo/rkdatabase/control2/rakshak_control02.ctl"
    control_files            = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/control3/rakshak_control03.ctl"
    db_block_size            = 16384
    compatible               = "11.2.0"
    log_archive_dest         = "/barch10g_db/ora11g/rakshak_archive/rkdatabase/rakshak"
    db_recovery_file_dest    = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/flash_recovery_area"
    db_recovery_file_dest_size= 2G
    undo_management          = "AUTO"
    undo_tablespace          = "UNDOTBS1"
    sec_case_sensitive_logon = FALSE
    remote_login_passwordfile= "EXCLUSIVE"
    utl_file_dir             = "/barch10g_db/ora11g/ldoutput/"
    plsql_code_type          = "native"
    job_queue_processes      = 100
    cursor_sharing           = "FORCE"
    audit_file_dest          = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/adump"
    audit_trail              = "DB"
    db_name                  = "rakshak"
    open_cursors             = 700
    diagnostic_dest          = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/"
    Sat Aug 06 11:32:33 2011
    PMON started with pid=2, OS id=9463
    Sat Aug 06 11:32:34 2011
    VKTM started with pid=3, OS id=9465 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Sat Aug 06 11:32:34 2011
    GEN0 started with pid=4, OS id=9469
    Sat Aug 06 11:32:34 2011
    DIAG started with pid=5, OS id=9471
    Sat Aug 06 11:32:34 2011
    DBRM started with pid=6, OS id=9473
    Sat Aug 06 11:32:34 2011
    PSP0 started with pid=7, OS id=9475
    Sat Aug 06 11:32:34 2011
    DIA0 started with pid=8, OS id=9477
    Sat Aug 06 11:32:34 2011
    MMAN started with pid=9, OS id=9479
    Sat Aug 06 11:32:34 2011
    DBW0 started with pid=10, OS id=9481
    Sat Aug 06 11:32:34 2011
    DBW1 started with pid=11, OS id=9483
    Sat Aug 06 11:32:34 2011
    DBW2 started with pid=12, OS id=9485
    Sat Aug 06 11:32:34 2011
    LGWR started with pid=13, OS id=9487
    Sat Aug 06 11:32:34 2011
    CKPT started with pid=14, OS id=9489
    Sat Aug 06 11:32:34 2011
    SMON started with pid=15, OS id=9491
    Sat Aug 06 11:32:34 2011
    RECO started with pid=16, OS id=9493
    Sat Aug 06 11:32:34 2011
    MMON started with pid=17, OS id=9495
    Sat Aug 06 11:32:34 2011
    MMNL started with pid=18, OS id=9497
    Sat Aug 06 11:32:34 2011
    ORACLE_BASE not set in environment. It is recommended
    that ORACLE_BASE be set in the environment
    Sat Aug 06 11:34:34 2011
    Shutting down instance (immediate)
    Shutting down instance: further logons disabled
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 1
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Sat Aug 06 11:34:37 2011
    Stopping background process VKTM:
    Sat Aug 06 11:34:40 2011
    Instance shutdown complete
    Sat Aug 06 11:35:55 2011
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 3
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =118
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Release 11.2.0.1.0 - 64bit Production.
    Using parameter settings in client-side pfile /oracle/ora11g/apps/dbs/initrakshak.ora on machine abml01
    System parameters with non-default values:
    processes                = 700
    sga_max_size             = 30G
    sga_target               = 30G
    control_files            = "/barch10g_db/ora11g/rakshak_control/rkdatabase/control1/rakshak_control01.ctl"
    control_files            = "/barch10g_db/ora11g/rakshak_redo/rkdatabase/control2/rakshak_control02.ctl"
    control_files            = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/control3/rakshak_control03.ctl"
    db_block_size            = 16384
    compatible               = "11.2.0"
    log_archive_dest         = "/barch10g_db/ora11g/rakshak_archive/rkdatabase/rakshak"
    db_recovery_file_dest    = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/flash_recovery_area"
    db_recovery_file_dest_size= 2G
    undo_management          = "AUTO"
    undo_tablespace          = "UNDOTBS1"
    sec_case_sensitive_logon = FALSE
    remote_login_passwordfile= "EXCLUSIVE"
    utl_file_dir             = "/barch10g_db/ora11g/ldoutput/"
    plsql_code_type          = "native"
    job_queue_processes      = 100
    cursor_sharing           = "FORCE"
    audit_file_dest          = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/adump"
    audit_trail              = "DB"
    db_name                  = "rakshak"
    open_cursors             = 700
    diagnostic_dest          = "/barch10g_db/ora11g/rakshak_idx1/rkdatabase/"
    Sat Aug 06 11:36:16 2011
    PMON started with pid=2, OS id=9648
    Sat Aug 06 11:36:16 2011
    VKTM started with pid=3, OS id=9657 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Sat Aug 06 11:36:16 2011
    GEN0 started with pid=4, OS id=9669
    Sat Aug 06 11:36:16 2011
    DIAG started with pid=5, OS id=9678
    Sat Aug 06 11:36:16 2011
    DBRM started with pid=6, OS id=9686
    Sat Aug 06 11:36:16 2011
    PSP0 started with pid=7, OS id=9697
    Sat Aug 06 11:36:16 2011
    DIA0 started with pid=8, OS id=9704
    Sat Aug 06 11:36:16 2011
    MMAN started with pid=9, OS id=9711
    Sat Aug 06 11:36:16 2011
    DBW0 started with pid=10, OS id=9713
    Sat Aug 06 11:36:16 2011
    DBW1 started with pid=11, OS id=9715
    Sat Aug 06 11:36:16 2011
    DBW2 started with pid=12, OS id=9717
    Sat Aug 06 11:36:16 2011
    LGWR started with pid=13, OS id=9719
    Sat Aug 06 11:36:16 2011
    CKPT started with pid=14, OS id=9721
    Sat Aug 06 11:36:16 2011
    SMON started with pid=15, OS id=9723
    Sat Aug 06 11:36:16 2011
    RECO started with pid=16, OS id=9725
    Sat Aug 06 11:36:16 2011
    MMON started with pid=17, OS id=9727
    Sat Aug 06 11:36:16 2011
    MMNL started with pid=18, OS id=9729
    Sat Aug 06 11:36:16 2011
    ORACLE_BASE from environment = /oracle/ora11g/home
    Sat Aug 06 11:36:40 2011
    alter database mount
    Sat Aug 06 11:36:44 2011
    Successful mount of redo thread 1, with mount id 3292194824
    Database mounted in Exclusive Mode
    Lost write protection disabled
    Completed: alter database mount
    Sat Aug 06 11:36:54 2011
    alter database open
    LGWR: STARTING ARCH PROCESSES
    Sat Aug 06 11:36:54 2011
    ARC0 started with pid=20, OS id=9743
    Sat Aug 06 11:36:55 2011
    ARC0: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    ARC0: STARTING ARCH PROCESSES
    Sat Aug 06 11:36:55 2011
    ARC1 started with pid=21, OS id=9745
    Sat Aug 06 11:36:55 2011
    ARC2 started with pid=22, OS id=9747
    Sat Aug 06 11:36:55 2011
    ARC3 started with pid=23, OS id=9749
    ARC1: Archival started
    ARC2: Archival started
    ARC2: Becoming the 'no FAL' ARCH
    ARC2: Becoming the 'no SRL' ARCH
    ARC1: Becoming the heartbeat ARCH
    Thread 1 opened at log sequence 9
    Current log# 3 seq# 9 mem# 0: /barch10g_db/ora11g/rakshak_idx1/rkdatabase/redo3/rakshak_redolog3a.log
    Current log# 3 seq# 9 mem# 1: /barch10g_db/ora11g/rakshak_idx1/rkdatabase/redo3/rakshak_redolog3b.log
    Successful open of redo thread 1
    Sat Aug 06 11:36:55 2011
    SMON: enabling cache recovery
    Successfully onlined Undo Tablespace 2.
    Verifying file header compatibility for 11g tablespace encryption..
    Verifying 11g file header compatibility for tablespace encryption completed
    SMON: enabling tx recovery
    Database Characterset is WE8ISO8859P1
    No Resource Manager plan active
    replication_dependency_tracking turned off (no async multimaster replication found)
    Starting background process QMNC
    Sat Aug 06 11:36:55 2011
    QMNC started with pid=25, OS id=9753
    Completed: alter database open
    Sat Aug 06 11:36:56 2011
    db_recovery_file_dest_size of 2048 MB is 0.99% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    ARC3: Archival started
    ARC0: STARTING ARCH PROCESSES COMPLETE
    Sat Aug 06 11:36:58 2011
    Starting background process CJQ0
    Sat Aug 06 11:36:58 2011
    CJQ0 started with pid=24, OS id=9768
    Setting Resource Manager plan SCHEDULER[0x2FF9]:DEFAULT_MAINTENANCE_PLAN via scheduler window
    Setting Resource Manager plan DEFAULT_MAINTENANCE_PLAN via parameter
    Sat Aug 06 11:37:01 2011
    Starting background process VKRM
    Sat Aug 06 11:37:01 2011
    VKRM started with pid=26, OS id=9770
    Sat Aug 06 11:41:55 2011
    Starting background process SMCO
    Sat Aug 06 11:41:55 2011
    SMCO started with pid=29, OS id=9920
    parameter list
    db_name='rakshak'
    +#memory_target=30G+
    processes = 700
    audit_file_dest='/barch10g_db/ora11g/rakshak_idx1/rkdatabase/adump'
    audit_trail ='db'
    db_block_size=16384
    db_recovery_file_dest='/barch10g_db/ora11g/rakshak_idx1/rkdatabase/flash_recovery_area'
    db_recovery_file_dest_size=2G
    diagnostic_dest='/barch10g_db/ora11g/rakshak_idx1/rkdatabase/'
    +#dispatchers='(PROTOCOL=TCP) (SERVICE=ORCLXDB)'+
    open_cursors=700
    job_queue_processes=100
    remote_login_passwordfile='EXCLUSIVE'
    undo_management='AUTO'
    undo_tablespace='UNDOTBS1'
    +# You may want to ensure that control files are created on separate physical+
    +# devices+
    control_files = '/barch10g_db/ora11g/rakshak_control/rkdatabase/control1/rakshak_control01.ctl','/barch10g_db/ora11g/rakshak_redo/rkdatabase/control2/rakshak_control02.ctl','/barch10g_db/ora11g/rakshak_idx1/rkdatabase/control3/rakshak_control03.ctl'
    compatible ='11.2.0'
    SGA_MAX_SIZE=30G
    SGA_TARGET=30G
    Utl_file_dir='/barch10g_db/ora11g/ldoutput/'
    sec_case_sensitive_logon=FALSE
    plsql_code_type=native
    cursor_sharing='FORCE'
    log_archive_dest='/barch10g_db/ora11g/rakshak_archive/rkdatabase/rakshak'
    If any information is needed, pls let me know.
    thanks in advance
    Regards
    Phani Kumar

    Phani  wrote:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.247.27)(PORT=1522)))Why use port 1522?
    It is always a good idea to use the standard ports for a network application. There is no logic in obfuscating ports for security purposes. It also makes network management and dealing with quality of service issues for example, much more complex if you do not stick to the registered application ports.
    Also note that if you provide a dotted IP address, only that address will be used for binding the tcp port as a listening end point. This means no connections will be accepted on localhost and other IP addresses of that server. Make sure that this is what is technically required.
    ifconfig
    bond6     Link encap:Ethernet  HWaddr 00:26:55:D3:02:B6
    Why are you using bonding? How many bonded interfaces are there and now many physical NICs? Bond6 alludes that it is the 7th bonded interface - and at 2 NICs per bonded interface it implies that your server has 14 physical Ethernet interfaces. Which I doubt is true.
    RX packets:1309675596 errors:5 dropped:0 overruns:0 frame:3Not good to see any errors. What does ethtool stats show? Also check that the physical interfaces are enabled for full duplex. Some Cisco switches do not negotiate it properly and the NIC could be running half duplex.
    Also - using bonding... does not seem right. The 1st and default bonded interface should be +/dev/bond0+ - and not bond6.
    Check the server's network configuration (the +ifcfg-*+ files in +/etc/sysconfig/networking-scripts+ directory). Suggest that you get a network engineer (or the like) to assist with reviewing the network setup of that server.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for