Slow performance after 10g upgrade

After upgrade from 9.2.0.3.0 to 10.2.0.1.0, the following query runs extremely slow, any suggestion how to adjust the DB settings without re-writing this query
SELECT SUM (ABS (ship_net_clc_amt))
FROM ship_dtl
WHERE order_section_number = '940007320686'
AND SUBSTR (misc_charge_code, 1, 2) IN ('72', '77', 'A9')
AND ics_status_flag2 IN ('W', 'S')
AND dsr_trans_date >= to_date('1/1/2008', 'MM/DD/YYYY')
AND dsr_trans_date < to_date('1/31/2008', 'MM/DD/YYYY')
AND product_base_number NOT IN (SELECT DISTINCT sku
FROM ap_smb_sku_based
WHERE fiscal_period = '200801'
AND country = 'TAIWAN')
AND quota_product_line_code IN (SELECT pl
FROM ap_pl_bu
WHERE bu = '3C')
The exec plan for 10g (optimizer mode = ALL ROWS) is
------------------------------------------------------------------------------------------------------------------------------|
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | Pstart| Pstop ||
------------------------------------------------------------------------------------------------------------------------------|
| 0 | SELECT STATEMENT | | 1 | 49 | 7 (15)| 00:00:01 | | ||
| 1 | SORT AGGREGATE | | 1 | 49 | | | | ||
|* 2 | FILTER | | | | | | | ||
|* 3 | TABLE ACCESS BY LOCAL INDEX ROWID| SHIP_DTL | 1 | 42 | 1 (0)| 00:00:01 | 39 | 39 ||
| 4 | NESTED LOOPS | | 1 | 49 | 5 (20)| 00:00:01 | | ||
| 5 | SORT UNIQUE | | 1 | 7 | 3 (0)| 00:00:01 | | ||
|* 6 | TABLE ACCESS FULL | AP_PL_BU | 1 | 7 | 3 (0)| 00:00:01 | | ||
| 7 | PARTITION RANGE SINGLE | | 3 | | 0 (0)| 00:00:01 | 39 | 39 ||
|* 8 | INDEX RANGE SCAN | IX_SHIP_DTL_ORD_SEC_NM | 3 | | 0 (0)| 00:00:01 | 39 | 39 ||
| 9 | PARTITION RANGE SINGLE | | 1 | 39 | 2 (0)| 00:00:01 | 25 | 25 ||
|* 10 | TABLE ACCESS FULL | AP_SMB_SKU_BASED | 1 | 39 | 2 (0)| 00:00:01 | 25 | 25 ||
------------------------------------------------------------------------------------------------------------------------------|
The exec plan for 9i (optimizer mode=choose) for
----------------------------------------------------------------------------------------------------------------|
| Id | Operation | Name | Rows | Bytes | Cost | Pstart| Pstop ||
----------------------------------------------------------------------------------------------------------------|
| 0 | SELECT STATEMENT | | 1 | 47 | 10 | | ||
| 1 | SORT AGGREGATE | | 1 | 47 | | | ||
| 2 | FILTER | | | | | | ||
| 3 | HASH JOIN SEMI | | 1 | 47 | 8 | | ||
| 4 | TABLE ACCESS BY LOCAL INDEX ROWID| SHIP_DTL | 1 | 36 | 5 | 13 | 13 ||
| 5 | INDEX RANGE SCAN | IX_SHIP_DTL_ORD_SEC_NR | 9 | | 3 | 13 | 13 ||
| 6 | TABLE ACCESS FULL | AP_PL_BU | 2 | 22 | 2 | | ||
| 7 | TABLE ACCESS FULL | AP_SMB_SKU_BASED | 1 | 21 | 2 | 13 | 13 ||
Thanks.
Liz

ship_dtl has 94690531 records
ap_smb_sku_based has 19 records
ap_plbu has 19 records
The query returns a single row, because it calculates the sum. The query could be better written to get rid of IN or NOT IN which are costly. But I just wonder why the plans/performance are so different?
I used analyze to analyze other tables and it is still working fine in 10g. Now based on the plans, do you think anything wrong ?
10g -
-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Id  | Operation                                   | Name                   | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |    TQ  |IN-OUT| PQ Distrib ||
-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|   0 | SELECT STATEMENT                            |                        |     1 |    50 |    10 (-550| 00:00:01 |       |       |        |      |            ||
|   1 |  SORT AGGREGATE                             |                        |     1 |    50 |            |          |       |       |        |      |            ||
|*  2 |   FILTER                                    |                        |       |       |            |          |       |       |        |      |            ||
|*  3 |    PX COORDINATOR                           |                        |       |       |            |          |       |       |        |      |            ||
|   4 |     PX SEND QC (RANDOM)                     | :TQ10002               |     1 |    50 |    66   (5)| 00:00:01 |       |       |  Q1,02 | P->S | QC (RAND)  ||
|*  5 |      FILTER                                 |                        |       |       |            |          |       |       |  Q1,02 | PCWC |            ||
|   6 |       MERGE JOIN                            |                        |     1 |    50 |    66   (5)| 00:00:01 |       |       |  Q1,02 | PCWP |            ||
|   7 |        SORT JOIN                            |                        |     2 |    14 |     4  (50)| 00:00:01 |       |       |  Q1,02 | PCWP |            ||
|   8 |         BUFFER SORT                         |                        |       |       |            |          |       |       |  Q1,02 | PCWC |            ||
|   9 |          PX RECEIVE                         |                        |     4 |    28 |     2   (0)| 00:00:01 |       |       |  Q1,02 | PCWP |            ||
|  10 |           PX SEND HASH                      | :TQ10000               |     4 |    28 |     2   (0)| 00:00:01 |       |       |        | S->P | HASH       ||
|  11 |            SORT UNIQUE                      |                        |     4 |    28 |     2   (0)| 00:00:01 |       |       |        |      |            ||
|* 12 |             TABLE ACCESS FULL               | AP_PL_BU               |     4 |    28 |     2   (0)| 00:00:01 |       |       |        |      |            ||
|* 13 |        SORT JOIN                            |                        |     1 |    43 |    62   (2)| 00:00:01 |       |       |  Q1,02 | PCWP |            ||
|  14 |         PX RECEIVE                          |                        |     1 |    43 |    61   (0)| 00:00:01 |       |       |  Q1,02 | PCWP |            ||
|  15 |          PX SEND HASH                       | :TQ10001               |     1 |    43 |    61   (0)| 00:00:01 |       |       |  Q1,01 | P->P | HASH       ||
|  16 |           PX PARTITION RANGE ITERATOR       |                        |     1 |    43 |    61   (0)| 00:00:01 |   KEY |   KEY |  Q1,01 | PCWC |            ||
|* 17 |            TABLE ACCESS BY LOCAL INDEX ROWID| SHIP_DTL               |     1 |    43 |    61   (0)| 00:00:01 |   KEY |   KEY |  Q1,01 | PCWP |            ||
|* 18 |             INDEX RANGE SCAN                | IX_SHIP_DTL_ORD_SEC_NR |    14 |       |    49   (0)| 00:00:01 |   KEY |   KEY |  Q1,01 | PCWP |            ||
|  19 |    PARTITION RANGE SINGLE                   |                        |     1 |    39 |     2   (0)| 00:00:01 |    14 |    14 |        |      |            ||
|* 20 |     TABLE ACCESS FULL                       | AP_SMB_SKU_BASED       |     1 |    39 |     2   (0)| 00:00:01 |    14 |    14 |        |      |            ||
-------------------------------------------------------------------------------------------------------------------------------------------------------------------|Plan for 9i
-----------------------------------------------------------------------------------------------------------------------------------------------|
| Id  | Operation                              |  Name                   | Rows  | Bytes | Cost  | Pstart| Pstop |  TQ    |IN-OUT| PQ Distrib ||
-----------------------------------------------------------------------------------------------------------------------------------------------|
|   0 | SELECT STATEMENT                       |                         |     1 |    53 |    74 |       |       |        |      |            ||
|   1 |  SORT AGGREGATE                        |                         |     1 |    53 |       |       |       |        |      |            ||
|   2 |   FILTER                               |                         |       |       |       |       |       |        |      |            ||
|   3 |    FILTER                              |                         |       |       |       |       |       |        |      |            ||
|   4 |     HASH JOIN SEMI                     |                         |     1 |    53 |    72 |       |       | 30,01  | P->S | QC (RAND)  ||
|   5 |      PARTITION RANGE ITERATOR          |                         |       |       |       |   KEY |   KEY | 30,01  | PCWP |            ||
|   6 |       TABLE ACCESS BY LOCAL INDEX ROWID| SHIP_DTL                |     1 |    42 |    54 |   KEY |   KEY | 30,01  | PCWP |            ||
|   7 |        INDEX RANGE SCAN                | IX_SHIP_DTL_ORD_SEC_NR  |    21 |       |    37 |   KEY |   KEY | 30,01  | PCWP |            ||
|   8 |      TABLE ACCESS FULL                 | AP_PL_BU                |     2 |    22 |     2 |       |       | 30,00  | S->P | BROADCAST  ||
|   9 |    TABLE ACCESS FULL                   | AP_SMB_SKU_BASED        |     1 |    39 |     2 |    14 |    14 |        |      |            ||
-----------------------------------------------------------------------------------------------------------------------------------------------|

Similar Messages

  • Slower performance after Mavericks upgrade

    My Macbook Pro has been significantly slowed down by my upgrade to Mavericks. (Processor  2.3 GHz Intel Core i7) (Memory  8 GB 1600 MHz DDR3) (Graphics  Intel HD Graphics 4000 1024 MB) I can't watch a 2 minute video without long... long rendering pauses.  I get error messages and find the computer quits and starts again at random moments.  Loading apps is slower.  I am not talented technically and need some layman version of how to use time machine or other backup info to go back to my Mountain Lion IOS or how to fix this deterioration of my computer performance.  I have run the etresoft app to provide more info.  Unfortunately I am very much a novice at problem solving computer issues so if this is above my paygrade please feel free to send me to more competent sources..
    Hardware Information:
              MacBook Pro (Retina, Mid 2012)
              MacBook Pro - model: MacBookPro10,1
              1 2.3 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              WiFiUtilityStartUp - Path: /System/Library/StartupItems/WiFiUtilityStartUp
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 1:10:23
    Disk Information:
              APPLE SSD SM256E disk0 : (251 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 250.14 GB (146.62 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.microsoft.office.licensing.helper.plist
    Launch Agents:
    User Launch Agents:
              [failed] com.adobe.ARM.[...].plist
              [failed] com.google.keystone.agent.plist
              [loaded] ws.agile.1PasswordAgent.plist
    User Login Items:
              Backup Engine
              Dropbox
              WirelessUtility
    3rd Party Preference Panes:
              Flash Player
    Internet Plug-ins:
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              Google Earth Web Plug-in.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 250.14 GB Disk used: 103.52 GB
              Destinations:
                        LaCie Disk [Local] (Last used)
                        Total size: 164.68 GB
                        Total number of backups: 1
                        Oldest backup: 2013-02-06 00:39:17 +0000
                        Last backup: 2013-02-06 00:39:17 +0000
                        Size of backup disk: Too small
                                  Backup size 164.68 GB < (Disk used 103.52 GB X 3)
    Top Processes by CPU:
                   3%          WindowServer
                   2%          firefox
                   1%          EtreCheck
                   1%          mds_stores
                   1%          fontd
                   0%          WirelessUtility
                   0%          Mail
                   0%          mds
                   0%          aosnotifyd
    Top Processes by Memory:
              426 MB   firefox
              319 MB   Finder
              246 MB   Mail
              164 MB   DashboardClient
              156 MB   WindowServer
              156 MB   com.apple.IconServicesAgent
              147 MB   Dock
              131 MB   mds_stores
              106 MB   Dropbox
              106 MB   com.apple.WebKit.WebContent
    Virtual Memory Statistics:
              2.31 GB  Free RAM
              4.09 GB  Active RAM
              732 MB   Inactive RAM
              903 MB   Wired RAM
              451 MB   Page-ins
              0 B      Page-outs

    Do you know the reason for using WiFi Utility? It is not part of OS X and may be contributing to the problem.
    Assuming you have no reason to use it:
    Navigate to the following folder by selecting the entire line (triple-click to select it), then control-click, and from the contextual menu that appears, select Services > Open:
    /System/Library/StartupItems/
    Find the file WiFiUtilityStartUp and drag it to the Desktop. You will need to authenticate.
    Next: Open System Preferences by selecting it from the  (Apple) menu, then select Users & Groups. Click the lock icon and authenticate, then click your User account. Select the Login Items tab, then select the item WirelessUtility. Delete it with the "–" (minus) button.
    Next: Backup Engine is not part of OS X either, and is unrelated to Time Machine, which you are using. It may have been installed as part of a utility supplied by Seagate or other hard disk manufacturer. Such utilities should not be used on Macs. If you have no reason to use Backup Engine, delete it as well using the "–" button.
    Quit System Preferences, log out, and log in again. Reply with your results.

  • Mac Mini slower performance after Mavericks upgrade

    I'm experiencing a severe performance degradation and all the suggestions in the discussions so far haven't helped (Verify/repair disk -no issues found, Safe Boot, reinstall Mavericks). Any Suggestions on what to try next?  Thank you!
      Model Name:                      Mac mini
      Model Identifier:                Macmini4,1
      Processor Name:               Intel Core 2 Duo
      Processor Speed:              2.66 GHz
      Number of Processors:    1
      Total Number of Cores:   2
      L2 Cache:                            3 MB
      Memory:                              4 GB
      Bus Speed:                          1.07 GHz
      Boot ROM Version:            MM41.0042.B00
      SMC Version (system):     1.65f2

    Model Identifier: Macmini4,1
    System Version: OS X 10.9.3 (13D65)
    Kernel Version: Darwin 13.2.0
    Boot Mode: Normal
    Time since boot: 8 minutes
    FireWire
       My Book (WD)
       My Book 111D (WD)
    USB
       Hub (D-Link Corporation)
       USB OpticalWheel Mouse (SUNPLUS TECHNOLOGY CO., LTD.)
       HL-5040 (Brother International Corporation)
       Hub (Alcor Micro, Corp.)
       USB Card Reader (Alcor Micro, Corp.)
       VF0690 Live! Cam Socialize HD AF (Creative Labs)
       Microsoft Wireless Desktop Receiver 3.1 (Microsoft Corporation)
    Diagnostic reports
       2014-04-24 Canon IJ Network Scan Utility crash
       2014-04-25 Canon IJ Network Scan Utility crash
       2014-04-25 com.google.Chrome crash
       2014-05-13 Canon IJ Network Scan Utility crash
       2014-05-14 com.google.Chrome crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 Canon IJ Network Scan Utility crash
       2014-05-20 WDDriveManagerStatusMenu crash
       2014-05-20 WDDriveManagerStatusMenu crash
       2014-05-20 WDDriveManagerStatusMenu crash
    Log
       May 20 12:53:49 disk2s2: I/O error.
       May 20 12:54:07 disk2s2: I/O error.
       May 20 12:54:25 disk2s2: I/O error.
       May 20 12:54:43 disk2s2: I/O error.
       May 20 12:55:03 disk2s2: I/O error.
       May 20 12:56:07 CODE SIGNING: cs_invalid_page(0x1000): p=64[lacie_dm_service] final status 0x0, allowing (remove VALID) page
       May 20 12:57:45 disk1s2: I/O error.
       May 20 12:58:03 disk1s2: I/O error.
       May 20 12:58:21 disk1s2: I/O error.
       May 20 12:58:38 disk1s2: I/O error.
       May 20 12:58:56 disk1s2: I/O error.
       May 20 12:59:14 disk1s2: I/O error.
       May 20 12:59:32 disk1s2: I/O error.
       May 20 12:59:49 disk1s2: I/O error.
       May 20 13:00:07 disk1s2: I/O error.
       May 20 13:00:25 disk1s2: I/O error.
       May 20 13:00:43 disk1s2: I/O error.
       May 20 13:01:01 disk1s2: I/O error.
       May 20 13:01:18 disk1s2: I/O error.
       May 20 13:01:36 disk1s2: I/O error.
       May 20 13:01:54 disk1s2: I/O error.
       May 20 13:02:13 disk1s2: I/O error.
       May 20 13:02:41 disk1s2: I/O error.
       May 20 13:02:59 disk1s2: I/O error.
       May 20 13:03:18 disk1s2: I/O error.
    Activity
       CPU: user 13%, system 7%
    kexts
       com.oxsemi.driver.OxsemiDeviceType00
       com.LaCie.ScsiType00
       com.apple.GeForceTesla
    Daemons
       org.postfix.master
       org.ntp.ntpd
       org.cups.cupsd
       org.cups.cups-lpd
       com.vix.cron
       com.microsoft.office.licensing.helper
       com.lacie.desktopmanager.service
       com.adobe.SwitchBoard
       com.adobe.fpsaud
    Agents
       com.sandisk.SanDiskImageMate
       com.lacie.eventsactions.launcher.agent
       com.google.keystone.user.agent
       com.adobe.ARM.UUID
       com.adobe.ARM.UUID
       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.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.servernotifyd.plist
                 (com.apple.servernotifyd)
       /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.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.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.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.adobe.AAM.Updater-1.0.plist
                 (com.adobe.AAM.Startup-1.0)
       /Library/LaunchAgents/com.lacie.eventsactions.launcher.agent.plist
                 (com.lacie.eventsactions.launcher.agent)
       /Library/LaunchAgents/com.sandisk.SanDiskImageMate.plist
                 (com.sandisk.SanDiskImageMate)
       /Library/LaunchDaemons/com.adobe.fpsaud.plist
                 (com.adobe.fpsaud)
       /Library/LaunchDaemons/com.adobe.SwitchBoard.plist
                 (com.adobe.SwitchBoard)
       /Library/LaunchDaemons/com.lacie.desktopmanager.service.plist
                 (com.lacie.desktopmanager.service)
       /Library/LaunchDaemons/com.microsoft.office.licensing.helper.plist
                 (com.microsoft.office.licensing.helper)
       Library/LaunchAgents/com.adobe.AAM.Updater-1.0.plist
                 (com.adobe.AAM.Scheduler-1.0)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
                 (com.adobe.ARM.UUID)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
                 (com.adobe.ARM.UUID)
       Library/LaunchAgents/com.adobe.ARM.UUID.plist
                 (com.adobe.ARM.UUID)
       Library/LaunchAgents/com.apple.FolderActions.enabled.plist
                 (com.apple.FolderActions.enabled)
       Library/LaunchAgents/com.apple.FolderActions.folders.plist
                 (com.apple.FolderActions.folders)
       Library/LaunchAgents/com.google.keystone.agent.plist
                 (com.google.keystone.user.agent)
    Startup items
       /System/Library/StartupItems/CiscoVPN/CiscoVPN
       /System/Library/StartupItems/CiscoVPN/StartupParameters.plist
       /Library/StartupItems/HP IO/HP IO
       /Library/StartupItems/HP IO/Resources/version.plist
       /Library/StartupItems/HP IO/StartupParameters.plist
       /Library/StartupItems/HP Trap Monitor/HP Trap Monitor
       /Library/StartupItems/HP Trap Monitor/StartupParameters.plist
    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/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/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/Belcarra.USBLAN_netpart.kext
                 (com.Belcarra.iokit.USBLAN_netpart)
       /System/Library/Extensions/Belcarra.USBLAN_usbpart.kext
                 (com.Belcarra.iokit.USBLAN_usbpart)
       /System/Library/Extensions/BJUSBMP.kext
                 (jp.co.canon.bj.kext.BJUSBMP)
       /System/Library/Extensions/CiscoVPN.kext
                 (com.cisco.nke.ipsec)
       /System/Library/Extensions/com_sandisk_SanDiskImageMate.kext
                 (com.sandisk.driver.com_sandisk_SanDiskImageMate)
       /System/Library/Extensions/EPSONUSBPrintClass.kext
                 (com.epson.print.kext.USBPrintClass)
       /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/jmPeripheralDevice.kext
                 (com.jmicron.driver.jmPeripheralDevice)
       /System/Library/Extensions/LaCie_RemoteComms.kext
                 (com.lacie.driver.LaCie_RemoteComms)
       /System/Library/Extensions/LaCieScsiType00.kext
                 (com.LaCie.ScsiType00)
       /System/Library/Extensions/LaCieScsiType00FirmwareUpdater.kext
                 (com.LaCie.ScsiType00)
       /System/Library/Extensions/MicrosoftKeyboard.kext
                 (com.microsoft.driver.MicrosoftKeyboard)
       /System/Library/Extensions/MicrosoftMouse.kext
                 (com.microsoft.driver.MicrosoftMouse)
       /System/Library/Extensions/OxsemiDeviceType00.kext
                 (com.oxsemi.driver.OxsemiDeviceType00)
       /System/Library/Extensions/RemoteControl.USBLAN_usbpart.kext
                 (com.RemoteControl.USBLAN.usbpart)
       /System/Library/Extensions/SMSIWirelessModem.kext
                 (com.smithmicro.driver.SMSIWirelessModem)
       /System/Library/Extensions/WD1394HPDriver.kext
                 (com.wdc.driver.1394HP)
       /System/Library/Extensions/WDUSBHPDriver.kext
                 (com.wdc.driver.USBHP)
       /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
                 (info.emagic.driver.unitor)
       /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/Internet Plug-Ins/AdobeAAMDetect.plugin
                 (com.AdobeAAMDetectLib.AdobeAAMDetect)
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
                 (com.adobe.acrobat.pdfviewer)
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
                 (com.adobe.acrobat.pdfviewerNPAPI)
       /Library/Internet Plug-Ins/Default Browser.plugin
                 (com.apple.DefaultBrowser.PlugIn)
       /Library/Internet Plug-Ins/EPPEX Plugin.plugin
                 (jp.co.canon.EPPEX Plugin)
       /Library/Internet Plug-Ins/Flash Player.plugin
                 (com.macromedia.Flash Player.plugin)
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
                 (net.telestream.wmv.plugin)
       /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.webplugin
                 (net.telestream.wmv.webplugin)
       /Library/Internet Plug-Ins/GarminGpsControl.plugin
                 (com.garmin.GarminGpsControl)
       /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
                 (com.Google.GoogleEarthPlugin.plugin)
       /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
                 (com.apple.plugin.iPhotoPhotocast)
       /Library/Internet Plug-Ins/MeetingJoinPlugin.plugin
                 (com.microsoft.communicator.meetingjoinplugin)
       /Library/Internet Plug-Ins/OfficeLiveBrowserPlugin.plugin
                 (com.microsoft.officelive.browserplugin)
       /Library/Internet Plug-Ins/Quartz Composer.webplugin
                 (com.apple.QuartzComposer.webplugin)
       /Library/Internet Plug-Ins/QuickTime Plugin.plugin
                 (com.apple.QuickTime Plugin.plugin)
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
                 (com.microsoft.sharepoint.browserplugin)
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
                 (com.microsoft.sharepoint.webkitplugin)
       /Library/Internet Plug-Ins/SlingPlayer.plugin
                 (com.slingmedia.slingplayer.plugin.nspapi)
       /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle
                 (com.apple.QuartzComposer.iTunesPlugIn)
       /Library/Keyboard Layouts/Microsoft Keyboards.bundle
                 (com.apple.keyboardlayout.microsoft)
       /Library/PreferencePanes/Flash Player.prefPane
                 (com.adobe.flashplayerpreferences)
       /Library/QuickTime/AppleMPEG2Codec.component
                 (com.apple.AppleMPEG2Codec)
       /Library/QuickTime/CamTwist.component
                 (com.allocinit.CamTwistQTC)
       /Library/ScriptingAdditions/Adobe Unit Types.osax
                 (N/A)
       /Library/Spotlight/GBSpotlightImporter.mdimporter
                 (com.apple.garageband.spotlightimporter)
       /Library/Spotlight/iBooksAuthor.mdimporter
                 (com.apple.MDImporter.iBooksAuthor)
       /Library/Spotlight/iMovie.mdimporter
                 (com.apple.iMovieMDImporter)
       /Library/Spotlight/iWeb.mdimporter

  • Slow performance after iOS 7.1 upgrade, please help.

    My kids have iPad Airs.  One of them has a serious slow down in performance after upgrading to iOS 7.1.  The others work fine.  It is so slow that it is unusable.  When you type a single character, it takes several seconds to show up on the screen.  I'm rebooted and did a reset in Settings.  Any other ideas?  Please help.

    I called Apple Support (800-275-2273) and they also recommended a reset: "Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears".
    It came to a screen with a USB cable and arrow to iTunes logo.  I had to connect to my PC and lanuch iTunes.  iTunes recognized the iPad in restore mode.  My only option per Apple Support was to restore to factory defaults.  It appears all data is lost.
    The Apple Support person would not admit that this is a known issue with iOS 7.1 even though you can go online and see that may people have slow performance after upgrading to iOS 7.1.

  • Report giving error after 10g upgrade

    We have a custom report which is erroring out after 10g upgrade. Following is the log file-->
    **Starts**24-APR-2009 04:11:21
    ORACLE error 3113 in FDPSTP
    Cause: FDPSTP failed due to ORA-03113: end-of-file on communication channel
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R.Status_Code, P
    APP-FND-01564: ORACLE error 1000 in AFPGRG
    Cause: AFPGRG failed due to ORA-01000: maximum open cursors exceeded.
    The SQL statement being executed at the time of the error was: &SQLSTMT and was executed from the file &ERRFILE.
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    ORACLE error 3114 in AFPRSR-Resubmit_Time
    Cause: AFPRSR-Resubmit_Time failed due to ORA-03114: not connected to ORACLE
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R
    SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R.Status_Code, P.A
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected to ORACLE
    Contact your system administrator or support representative.
    Shutting down Concurrent Manager : 24-APR-2009 04:11:51
    ORA-01041: internal error. hostdef extension doesn't exist
    ORACLE error 3114 in AFPRSR-Resubmit_Time
    Cause: AFPRSR-Resubmit_Time failed due to ORA-03114: not connected to ORACLE
    The SQL statement being executed at the time of the error was: SELECT R.Conc_Login_Id, R.Request_Id, R.Phase_Code, R
    List of errors encountered:
    _ 1 _
    Routine AFPCMT encountered an ORACLE error. ORA-01041: internal error.
    hostdef extension doesn't exist
    Review your error messages for the cause of the error. (=<POINTER>)
    _ 2 _
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected
    to ORACLE
    Contact your system administrator or support representative.
    _ 3 _
    Routine AFPPRD has encountered a fatal error. ORA-03114: not connected
    to ORACLE
    Contact your system administrator or support representative.
    However the alert log has following-->
    Errors in file /u07/fatstdb/10g/admin/FATST_fatstdb/udump/fatst_ora_10468.trc:
    ORA-07445: exception encountered: core dump [qercoStart()+156] [SIGSEGV] [Address not mapped to object] [0x00000087D] [] []
    I already increased the cursors from 700 to 900
    How to fix it?

    Hi,
    However the alert log has following-->
    Errors in file /u07/fatstdb/10g/admin/FATST_fatstdb/udump/fatst_ora_10468.trc:
    ORA-07445: exception encountered: core dump [qercoStart()+156] [SIGSEGV] [Address not mapped to object] [0x00000087D] [] []Refer to the lookup to get more details about this error.
    Note: 153788.1 - Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=153788.1
    I already increased the cursors from 700 to 900
    How to fix it?Is it possible to increase OPEN_CURSORS to a higher value? Enable trace on this concurrent program, and see if this collects more details about the error.
    Regards,
    Hussein

  • Really slow performance after upgrading to OSX 10.4.3

    After I upgraded to 10.4.3 my PowerBook started to take really long time to start running after turing it on, it stays on the first screen with the apple and the thinking circle for really long time before actually promting for the login password, is that normal with the upgrade or did I did something wrong.
    just in case it is a powerbook, 15'', 1.67 ghz, 1gb ram
    I appreciate any help
    Power Book G4   Mac OS X (10.4.3)  
    Power Book G4   Mac OS X (10.4.3)  

    Hi Benjas,
    Welcome to Apple Discussoins
    One thing you might want to do is run some "cron jobs"/maintanence scripts from OnyX. Before you do that I suggest getting more information about that type of Utility from past post like this one.
    I hope that helps,
    Jon
    PS I usually repair permissions and do the daily, weekly, and monthly scripts and thats it.

  • Slow Broadband after 21CN Upgrade?

    Before my scheduled 21 upgrade my download connection has been rock solid at 8000K for several years.  My whole recent experience with BT has been very disappointing and I hope you can throw some light on a solution.
    So Far:     
    My Equipment:  BT2000 Faceplate, RJ11 to BT Homehub 1010, 1 Extension fitted (No Bell wire Connected). 
    Problem 1. Now resolved.  On the day of my appointment the engineer connected my dial tone and broadband to someone else’s line in the next village.  The fault call centre insisted the fault could only be in my property as the line tested OK and I would have to accept the possible charges.  Despite my requests for them to despatch an engineer to the exchange as it is more than a coincidence that my dial tone disappeared at the same time as my scheduled changeover they insisted I have an appointment.  The fault was cleared in the exchange by the visiting engineer.
    Problem 2.  Now resolved. The engineer did not remove the call divert on my line and I missed my incoming calls for several days as my calls were diverted to a random number.  I tried #21# and this did not work, so I contacted BT again.  They informed me they could not remove the divert because they had not put it on. After investigation #61# managed to remove my divert.  When I asked why it was not removed when my line was fixed I was told that I must have put the divert on myself as it was done by someone with access to my line. The whole point that my line had been connected elsewhere was totally alien to the call centre worker.
    Problem 3.  On going
    After 14 days of Mediocare performance I was connected much slower speed than my old connection and as my profile was 4000k this is only half of my previous performance. (See Below)
    1. Best Effort Test: -provides background information.
    Download Speed
    5959 Kbps
    0 Kbps
    4000 Kbps
    Max Achievable Speed
     Download speed achieved during the test was - 5959 Kbps
     For your connection, the acceptable range of speeds is 1200-4000 Kbps.
     Additional Information:
     Your DSL Connection Rate :4603 Kbps(DOWN-STREAM), 1251 Kbps(UP-STREAM)
     IP Profile for your line is - 4000 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 16.4:29.53:54.07 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
    The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
    2. Upstream Test: -provides background information.
    Upload Speed
    873 Kbps
    0 Kbps
    1251 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 873 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 1251 Kbps
    So I call BT again and after I have established that the only changing parameter is the new 21CN upgrade I am promised that a request will be passed to the engineers to increase the profile........  The result is that they just reset my profile, so once again my speed fluctuates for several days from a virtual stop to slow.
    It is now six days since reporting my slow speed problems after receiving several calls from BT to ask me if my speed has improved, I am finally a broken man today. 
    They insist that I have a broadband boost engineer, before I accept this, I ask several questions and failed to get any acceptable answers..
    What is wrong with my broadband?  You have a fault in the property (change the record!!)
    Why cannot you tell me the speed I am connected at.   You cannot WOOSH test me?  We cannot tell, we have to call you
    Can I speak to the engineers?  You cannot Sir
    Can I speak to your Boss?  No, why would you want to do that!
    What have you done in the exchange to fix my fault?  We have changed some things
    Do you thing it is acceptable to still have slow speeds after twenty days?  That's why you need a boost engineer
    What are you going to do differently from all the other people I have spoken to to resolve my issue.  Nothing
    So with no other option I accept that an appointment will have to be made again.  I am offered an appointment in the week, when I explain that I have business appointments and that I need a weekend appointment I am told none is available or would be available.  So I agree to a Monday appointment.  After the call I get a text to say I have an appointment has been made for Thursday!  So I have to call them back and ask for the appointment I have been promised and I am told it's a simple and easy mistake to press the wrong button, it happens quite often!!
    I since read here that it may help to upgrade my homehub, so why have they not sent me a replacement days ago?
    Current Performance:
    1. Best Effort Test: -provides background information.
    Download Speed
    2024 Kbps
    0 Kbps
    2000 Kbps
    Max Achievable Speed
     Download speed achieved during the test was - 2024 Kbps
     For your connection, the acceptable range of speeds is 800-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :2271 Kbps(DOWN-STREAM), 771 Kbps(UP-STREAM)
     IP Profile for your line is - 2000 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 13.35:23.63:63.06 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
    The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
    2. Upstream Test: -provides background information.
    Upload Speed
    592 Kbps
    0 Kbps
    771 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 592 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 771 Kbps
    I know there are more important things going on in this world.  But my work, my ebay, my shopping, my banking, my social sites etc. all require bandwidth and to have it taken away disguised as an upgrade obviously upsets me.  I am shocked at the complete lack of communications, and the inability to listen and understand your customers.  What is the point of a call centre that can do NOTHING outside their script to help!
    Solved!
    Go to Solution.

    Not sure why my profile is still changing and why I was disconnected today, probably the call centre doing another line test. 
    Uptime:
    0 days, 10:24:37
    Modulation:
    G.992.5 annex A
    Bandwidth (Up/Down) [kbps/kbps]:
    803 / 2,523
    Data Transferred (Sent/Received) [MB/MB]:
    322.86 / 348.70
    Output Power (Up/Down) [dBm]:
    12.0 / 0.0
    Line Attenuation (Up/Down) [dB]:
    19.0 / 31.0
    SN Margin (Up/Down) [dB]:
    13.5 / 30.0
    Vendor ID (Local/Remote):
    TMMB / IFTN
    Loss of Framing (Local/Remote):
    0 / 0
    Loss of Signal (Local/Remote):
    1 / 0
    Loss of Power (Local/Remote):
    0 / 0
    Loss of Link (Remote):
    0
    Error Seconds (Local/Remote):
    1 / 0
    FEC Errors (Up/Down):
    0 / 0
    CRC Errors (Up/Down):
    0 / 0
    HEC Errors (Up/Down):
    0 / 0
    Line Profile:
    Fast

  • Compiz became suddenly slow, not after an upgrade

    Hello,
    I was quite happy with my Arch setup on eeepc 1000H, with compiz as standalone WM.
    Yesterday, I booted and there was an awful lag, the system is now unusable. I have not modified xorg settings, neither performed any software upgrade. Here is what happened between the day where compiz was OK and the day compiz got slow.
    - played around with some compiz settings : parameters of some effects and keyboard shortcuts definition (no big change)
    - changed gtk theme and icon theme
    - installed checkgmail applet and added it in start_fusion.sh startup script. At that point everything was fine before shutting down.
    - added the battery to the netbook (had never been running under Arch with the battery before).
    Here is what I have tried after the problem appeared:
    - remove checkgmail applet from startup script
    - removed the battery and boot with ac adaptor plugged in
    The lag is still there, any graphical operation take ages (> 5 sec).
    Has anyone an idea about where I should look at ?Is it rather kind of a powersaving mode issue, or some option in compiz settings manager which would have such an effect ?
    Thanks for your help guys.
    [EDIT]: added precisions
    Last edited by alef (2009-10-02 14:30:42)

    purple12 wrote:
    Not sure if it'll help, but in order to enhance performance (reduce lag), Comiz offers a "loose binding" option.  You can read about it in their t-shooting section.  I've never used it, but I noticed it while poking around.
    http://wiki.compiz-fusion.org/Troubleshooting
    I confirm that using nVidia (Geforce 9600M GT) and the loose binding option the performance gets a very noticeable improvement. No idea on other cards though.

  • Slow phone after iOS4 upgrade? Try this...

    I upgraded my iPhone 3G recently to iOS4, and experienced the general slowdown that others have reported. I also had problems with photos not displaying correctly. I deleted and reimported the photos, and that solved that problem, but the slowness and "lag" was still there.
    I came across this tip in the misc.phone.mobile.iphone newsgroup:
    quote
    My 3G was quite slow when I first upgraded to iOS4. But I followed some
    advice on the Apple Support Forum. A combination of Settings -> General ->
    Reset -> Reset All Settings, followed by a full shut down and restart did
    wonders to improve the operation.
    unquote
    I haven't seen the source for this tip before so I wanted to pass it on.
    Doing the reset as described above doesn't lose data, just some settings (Home screen, WiFi login key, 4 digit lock code etc.), but it has got rid of the lag when switching the phone on, and restored some of the pre-upgrade speed.
    Hope this helps.
    Cheers

    Well, first you say that your phone is slow.  Then you state that your phone told you to remove unused apps.  Did you read my last post?  From what I've read, most phone performance issues are app related.  You either have too many apps running at once (most likely), have a third party app that is causing a problem (less likely), or there is something actually wrong with your phone (least likely).  As I stated, I noticed that my phone was slower than normal after installing OS6.  I was using OS6 just like OS5, but the difference is that the apps in OS6 seem to want to close differently.  So I had like 8 apps open at once, and that was my problem.
    The first statement that you make is so vague that no one is going to be able to help you.  When is your phone slow?  What apps are you running during this time?  Do you have excessive apps open?  Is it slow all of the time or just sometimes?  What non BB apps (third party) are you running?  The 9300 also only has 256meg of ram, so that is going to make your application behavior that much more noticeable.
    Try holding the ALT key down while pressing the BACK button (the one just to the right of the track pad) and that will show you which applications are running. You should see a minimum of 5 (home, phone, browser, messages, and messenger). If you see more than this, particularly if there apps open that you aren't using, this is likely a big contributor.  Close those apps and see the difference.  Just for fun, do a battery pull.
    The second statement that you made is even more confusing because at no point in time would your phone ever tell you to uninstall something.  At least, not that I can think of.  What do you mean when you say the phone asked you to remove unused apps?

  • Poor System performance after EHP4 upgrade

    Hello Experts,
    We have just finished our Upgrade to EHP4 for ECC6 system. After the upgrade we are noticing awfully slow system response time.
    My SGEN is currently executing and it's showing another 45 hours before it is finished.  Are there specific post Upgrade activities that I am missing? Once I try to perform some action it takes ages to compile the program. I undesratand that since SGEN is not run yet so it will need some time to compile and generate load for the application but still the response is takinng agaes before I see the actual Application/Program active in GUI.
    Please suggest what I can do to boost up my system performance.
    Thanks,
    M

    Hi Sunny,
    Another Update
    I looked at SAP Note 146289 - Parameter Recommendations for 64-Bit SAP Kernel
    Following is the recommnedation:
    Implement the SAP profile parameters as follows:
    em/initial_size_MB 1024 up to 1TB (note 835474)
    em/blocksize_KB 2048, 4096 or 8192 (note 835474)
    ztta/roll_first 1
    ztta/roll_area 6500000
    The deafult value of the following parameters is 2000000000 (2GB).
    They can be changed depending on the HW (RAM) and the configured
    SWAP Space:
    ztta/roll_extension 2000000000 (2GB)
    abap/heap_area_dia 2000000000 (2GB)
    abap/heap_area_nondia 2000000000 (2GB)
    abap/heap_area_total 2000000000 (2GB)
    But same SAP Note refers for windows:
    For Windows 64Bit recommendations see note 88416:
    As per this note recommendations are as follows:
    Standard values for zero administration memory management
    [HS] = size of the physical main memory
    [PM] = value of the profile parameter PHYS_MEMSIZE (standard value=[HS])
    [BE] = maximum possible number of users (calculated from [PM])
    Profile parameter
    Standard 32-bit
    Standard 64-bit
    Unit
    em/initial_size_MB
        [PM]
        [PM]
    Mbyte
    ---    em/max_size_MB
    ---    20000
    ---   100000
    Mbyte
    em/address_space_MB
        512
       4096
    Mbyte
      ztta/roll_first
        1
        1
    Byte
    ---    ztta/roll_area
    ---  2000000
    ---  3000000
    Byte
    ztta/roll_extension
    2000000000
    2000000000
    Byte
    abap/heap_area_dia
    2000000000
    2000000000
    Byte
    abap/heap_area_nondia
    2000000000
    0
    Byte
    abap/heap_area_total
    2000000000
    [PM]*1048576
    Byte
    -    rdisp/ROLL_MAXFS
    [BE] * 100
    [BE] * 100
    8KB Block
    ---    rdisp/ROLL_SHM
    [BE] * 100
    [BE] * 100
    8KB Block
    ---    rdisp/PG_MAXFS
    ---    32768
    ---                          32768
    8KB Block
        rdisp/PG_SHM
    [BE] * 50
    BE] * 50
    8KB Block
    PLease note that ours is a 64Bit kernel for WIndows 2003
    x86_64
    So is it ok to change the value of abap/heap_area_nondia  ?
    Thanks,
    M

  • Slow Performance Forms 10g !!!!

    Hi,
    I have migrated several forms from 6i to 10g and i use a 11g Database.
    Most of the users accessing from different countries complain of slow performance but the basic idea of migration is to get a better performance. My users mostly work on laptops.
    I am unable to find where the problem is. Is this might be due to network traffic since they are accessing via internet or any server related issues. Please help me to find and fix the problem and is there any tips for gaining better performance in using forms 10g.
    Regards,
    Suresh

    So, were they running on 6i via laptop and accessing via the internet before you migrated ? (ie: was it 6i client server or 6i web forms)
    Did you migrate the database too ?
    Slow performance as in : it used to be seconds and now it's taking minutes ?
    Steve

  • My Mab Book Pro has 4gb Memory , i want to upgrade it, since i am seeing my system slow down after i upgraded to OSx MOuntain LIon

    Hi
    After i upgraded to 10.8.2 i am seeing my MAc got slow.
    And my memory is 4gb , if i increase  the memory will the system become faster.
    Can we get it done this in Apple store .OR without upgrading hte memory cna we make this ystem to run faster ?

    vikramkg wrote:
    Hi
    if i increase  the memory will the system become faster.
    No.  Installing RAM doesn't make a computer faster.
    Can we get it done this in Apple store
    Sure, but why pay for that when you can do it yourself.
    without upgrading hte memory cna we make this ystem to run faster ?
    Have you checked activity monitor to see if any apps or processes are takin up a large percentage of the CPU?

  • Statistics gather after 10g upgrade

    I am on apps 11.5.10.2, database has been recently upgraded from 9.2.0.6 to 10.2.0.4. I used to periodically use GATHER SCHEMA STATISTICS (ALL SCHEMA), in the previous release of db.
    What should be practiced after the upgrade? There are some custom schemas for third party tool. Does gather schema statistics concurrent program gather statistics for all the schema?
    Thanks
    SA

    user593719 wrote:
    Hussein,
    To register a custom schema, I have to go thru the series of steps like registering application, creating a TOP etc., right? What if my custom application is in some other windows server and only schema is in the apps database? Do we need still follow the same steps?
    Regards,
    SAI am not sure why you have this custom schema in this Apps database. If your custom schema has nothing to do with Apps, you would be better off creating a separate instance for this custom app. You could then use the automatic stats gathering mechanism in 10g to gather stats for this custom schema app.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/stats.htm#i41282
    HTH
    Srini

  • Slow performance after installation of new OS-X

    I don't know if anyone else has been experiencing the same problem as me, but it seemed to occur after I installed the new OS-X.
    My MacBook Pro has gone stremely slow and it seems to be related to MAIL. I thought that the standard MAIL program that comes with MAC was the problem, so I installed Postbox and that seemed to work for a while (1 day or 2) and then it was the same. It's not just email programs that are slow, but all programs.
    Click and wait seconds (10, 20, 30 sec) just for a program to open. Moving between files is so slow. I feel like I'm using Windows again.
    I'm no expert, but when I look at MEMORY usage, out of 4GB I'm using 3.8GB. My Virtual Memory is 4.76GB. See screen shot below.
    I would apprecaite if anyone can help me resolve what the problem is.
    Thanks
    Richard Giuliano

    First, back up all data immediately unless you already have a current backup. If you can't back up, stop here. Do not take any of the steps below.
    Step 1
    This diagnostic procedure will query the log for messages that may indicate a system issue. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'GPU |hfs: Ru|I/O e|find tok|n Cause: -|NVDA\(|pagin|timed? ?o' | tail | awk '/:/{$4=""; print}' | open -ef
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Reset the System Management Controller.
    Run Software Update. If there's a firmware update, install it.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a portable computer, check the cycle count of the battery. It may be due for replacement.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane. See whether there's any change.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the View menu or the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for User, System, and Idle at the bottom of the window.
    Select the Memory tab. What value is shown in the bottom part of the window for Swap used?
    Next, select the Disk tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in andWrites out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard by pressing the key combinationcommand-C. Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Slow broadband after exchange upgrade

    My exchange (Accrington) was recently upgraded. Prior to the upgrade I was getting approx 5.5Mb.
    I was told that I would need to wait 10 days after the upgrade for re-training of my line.
    After 10 days, my connection had dropped to 1.6Mb, so I called BT and was told that it was because I had a home hub version 1.0 and that it was incompatible with the upgraded exchage.
    New version 2.0 Hub was sent to me and this has now been connected for 5 days. I also took the opportunity to move things arround so the new hub is connected directly to the master socket, there is no extension wiring and no telephone connected. (Master socket has BT broadband accelerator filter fitted)
    I have used BT speedtest and got the stats from my hub. My IP Profile is no where near what it used to be, I would have expected this to rise after 5 days ?
    Any suggestions as to what I should do now ?
    By the way I am 456M from the exchange !
    Line state
    Connected
    Connection time
    0 days, 19:09:33
    Downstream
    2,268 Kbps
    Upstream
    1,184 Kbps
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    28.9 dB / 4.4 dB
    Line attenuation (Down/Up)
    16.0 dB / 7.1 dB
    Output power (Down/Up)
    0.0 dBm / 13.0 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 4294967137
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 0
    Error Seconds (Local)
    0
    1. Best Effort Test: -provides background information.
    Download Speed
    1555 Kbps
    0 Kbps
    2000 Kbps
    Max Achievable Speed
     Download speedachieved during the test was - 1555 Kbps
     For your connection, the acceptable range of speedsis 800-2000 Kbps.
     Additional Information:
     Your DSL Connection Rate :2268 Kbps(DOWN-STREAM), 1183 Kbps(UP-STREAM)
     IP Profile for your line is - 1750 Kbps
    The throughput of Best Efforts (BE) classes achieved during the test is - 9.13:22.36:68.51 (SBE:NBEBE)
    These figures represent the ratio while sententiously passing Sub BE, Normal BE and Priority BE marked traffic.
    The results of this test will vary depending on the way your ISP has decided to use these traffic classes.
    2. Upstream Test: -provides background information.
    Upload Speed
    976 Kbps
    0 Kbps
    1183 Kbps
    Max Achievable Speed
    >Upload speed achieved during the test was - 976 Kbps
     Additional Information:
     Upstream Rate IP profile on your line is - 1183 Kbps
    We were unable to identify any performance problem with your service at this time.

    Thanks for the reply.
    I have removed the filter, and I will leave it for a few days to see if I get any improvement.
    The noise margin(down) actually increased slightly after removing it, is this to be expected ?
    Line state
    Connected
    Connection time
    0 days, 0:01:28
    Downstream
    2,268 Kbps
    Upstream
    1,236 Kbps
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.5
    Latency type
    Interleaved
    Noise margin (Down/Up)
    29.1 dB / 6.0 dB
    Line attenuation (Down/Up)
    16.0 dB / 7.0 dB
    Output power (Down/Up)
    0.0 dBm / 12.1 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    0 / 0
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 12
    Error Seconds (Local)
    0

Maybe you are looking for

  • SAP DMS - How to do an external DMS configuration for the existing system ?

    Hi All. Greetings. Request help and understanding. Am new to the world of SAP. And request SOME clarity for understanding of DMS. We are wanting to put an external DMS server and wish to configure for the same. So that the load on the production SAP

  • Future Valuate of Receivables T Code F107

    Hello It is with regards to Future valuation of Customer & Vendor balances vide T Code F107 to meet the requirement in IFRS. As per configuration the future valuation should be accounted in the parallel currency only in Local & Group currency. No fut

  • How do I see file sizes of songs?

    2 questions actually. 1st. How do I analyze my iTunes library to see which song files take up the most space?  Is there a best practice for doing this?  Is it through iTunes?  Or through the Finer?  Please advise. 2nd. How do I have 2 formats of a so

  • ALV field catelog in OO

    I am displaying an ALV using OO   CALL METHOD go_alv_grid->set_table_for_first_display              EXPORTING                  i_structure_name = 'MARA'              CHANGING                  it_outtab = gt_mara[]. my requirement is     i should not

  • Can't load Final Cut Pro HD 4.5 2004 onto Macbook Pro Laptop 2010 says error Galtstal

    hi does anyone know if it is possible to load a new unopened Final Cut Pro HD version 4.5 dated 2004 onto a macbook pro dated 2010. i receive error message Galtstal missing!