Round Dates Every 15 Minutes?

I need a way to round a date to 5 or 15 minute intervals for a query in a realtime graph. I know using the round function I can round to 1 minute or 1 hour, but I need something in the middle. Any ideas?

I would bet myone is faster!
SQL> select d, count(*) from t19
group by d;
D                     COUNT(*)
23.05.2005 09:20:55     999999
Elapsed: 00:00:01.19
SQL> select date '2000-01-01' + round( (d-date '2000-01-01')*24*4)/4/24, count(*)
from t19
group by date '2000-01-01' + round( (d-date '2000-01-01')*24*4)/4/24;
DATE'2000-01-01'+RO   COUNT(*)
23.05.2005 09:15:00     999999
Elapsed: 00:00:13.46
SQL> select
to_char(d + (abs(mod(to_number(to_char(d,'mi')),15) - 15)/1440),'dd/mm/rrrr hh24:mi')
, count(*)
from t19
group by
to_char(d + (abs(mod(to_number(to_char(d,'mi')),15) - 15)/1440),'dd/mm/rrrr hh24:mi');
TO_CHAR(D+(ABS(M   COUNT(*)
23/05/2005 09:30     999999
Elapsed: 00:00:14.61But I am convinced you can do faster than my one. Also note that you can use trunc(), round(), ceil(), up to you.

Similar Messages

  • Error when refreshing web intelligence document less then every minute

    Hi all,
    I get the following error, when refreshing document via javascript more often then every minute:
    Server Error in '/Dashboard' Application.
    FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2 at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: BusinessObjects.Enterprise.OcaFramework.ManagedServiceFatalException: FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2 at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)
    Source Error:
    Line 121:               
    Line 122:                    //Session["StorageToken" + strDocId] = doc.StorageToken;
    Line 123:               doc = reportEngine.OpenDocument(intDocID);
    Line 124:               //doc = reportEngine.GetDocumentFromStorageToken(storageToken);
    Line 125:               doc.Refresh();
    Source File: c:\inetpub\wwwroot\dashboard\document.aspx.cs    Line: 123
    Stack Trace:
    [ManagedServiceFatalException: FatalException occured. The cause was : BusinessObjects.Enterprise.OcaFramework.Oca.oca_abuse: IDL:img.seagatesoftware.com/OCA/oca_abuse:3.2
       at BusinessObjects.Enterprise.OcaFramework.ManagedService.invoke(MethodInfo method, Object[] args, IDictionary context)]
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA._WICDZProxy.initInstance(Byte[] p0, UTF8StringHolder p1)
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub.InitInstance(String clientInfo, Int32& returnCode)
    [CommunicationException: The Web Intelligence server could not be reached. Contact your Business Objects administrator. (Error: RWI 00236)]
       BusinessObjects.ReportEngine.WI.Internal.Server.OCCA.OCCAServerStub.InitInstance(String clientInfo, Int32& returnCode)
       BusinessObjects.ReportEngine.WI.Internal.Server.ServerCaller.InitInstance(String clientInfo)
       BusinessObjects.ReportEngine.WI.Internal.WIDocumentInstance..ctor(WIReportEngine engine, Int32 documentId)
       BusinessObjects.ReportEngine.WI.Internal.WIReportEngine.OpenDocument(Int32 documentId)
       Dashboard.document.Page_Load(Object sender, EventArgs e) in c:\inetpub\wwwroot\dashboard\document.aspx.cs:123
       System.Web.UI.Control.OnLoad(EventArgs e)
       System.Web.UI.Control.LoadRecursive()
       System.Web.UI.Page.ProcessRequestMain()
    Version Information: Microsoft .NET Framework Version:1.1.4322.2407; ASP.NET Version:1.1.4322.2407
    I searched forum and google for this error, but I didn't find anything. Did you heard of this error? How can I fix it?
    My BO Version is BusinessObjects Enterprise XI (without any ServicePacks). Is there a SP which fix this error?
    Thank you for every idea!!!

    Hi,
    Copy File from Client system to server in same folder location .
    Make sure in Edit Query option Editable & Refreshable options are checked .
    Please check the links below  .
    Webi Excel Personal Data Provider Dynamic Data
    How to create a webi report using excel as source
    Excel as datasource in Infoview
    Excel source located in Infoview

  • Capturing data every 2 mins - Streams

    I am using Oracle 11gR2 on RHEL
    We are planning to configure streams from 11gR2 OLTP environment to the 11gR2 DW. This would be schema level replication.
    Once the streams destination schema is populated with the data, we need to schedule the ETL processes to run every 2 minutes as we are dealing with real time reporting. The amount of data flow would be around 5000 records every minute.
    So my question is if I need to look for the most recent data, should I be using a TIMESTAMP column in the source tables or does Streams have any inbuilt columns which I can query to get the most recent data(recent 2 minutes of data)?
    I went through the Oracle Documentation which specifies that these attributes can be added using DBMS_CAPTURE_ADM.INCLUDE_EXTRA_ATTRIBUTE
    row_id (row LCRs only)
    serial#
    session#
    thread#
    tx_name
    username
    But none of these are related to timestamp, so is that the source tables should be having the timestamp column if I need to query the recent 2 mins worth of data from destination schema?
    I know CDC can be of help as I can create subscribers and can extend the window to retrieve the latest data but not sure how this can be accomplished with Streams ? Any thoughts?

    Sorry, think so I was not clear. I am talking about destination tables here/
    I don't have control over the source tables in the OLTP database as they already exist and they would hold data for few years.
    DW is what I have control upon and the one's that I was talking about were the Streams destination tables in the DW database.
    So what I was talking about is, the presentation layer would hold all the reporting data and if the Streams destination tables continue to grow, then my database size would double due to duplicate data in the reporting Schema and Streams schema.
    The reason I wouldn't be able to purge the data in Streams tables(in DW database) is because the rows are not frozen, even after a year some rows might get updated, so if I purge them, I suppose Streams will complain and would throw errors.
    In the case of CDC, since the DML activity is applied as inserts, updates and deletes at the destination tables, even if the change table at destination is truncated, I would still receive updates. For eg:
    In CDC if there are 100 source in source table which have been replicated to destination then I would have 100 rows in destination tables with Operation I(I stands for Insert)
    If I truncate the destination table rows, then obviously it would result in 0 rows in destination table.
    Now if all the 100 rows in source table are updated, I would receive 200 rows in the destination table, 100 as UO(Update old value) and 100 as UN(update new value), so what I mean is CDC won't compain if I truncate the destination tables as part of purge operation for maintenance activities. So I can control the size of the table, I can keep it simple by purging the change table(destination table) every day.
    In case of streams, whether will I be able to do similar purging operations(at destination side) even on rows which would be updated later ?
    Let me know if I am clear.

  • Finder crashes and restarts every minute

    I'm on 10.8.4. A few hours ago, Finder started to crash and restart every minute. Doesn't happen when logged as Guest user, and doesn't happen when booting in Safe Mode. Crash Report copied below. Any help appreciated!
    Process:         Finder [414]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Identifier:      com.apple.finder
    Version:         10.8.3 (10.8.3)
    Build Info:      Finder_FE-808003001000000~4
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [149]
    User ID:         501
    Date/Time:       2013-07-18 17:13:25.995 +1000
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Crashed Thread:  4
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001017e91b4
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1017e91b4:
    -->
        __TEXT                 0000000106a3f000-0000000106efa000 [ 4844K] r-x/rwx SM=COW  /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x000000010c5a0686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x000000010c59fc42 mach_msg + 70
    2   com.apple.CoreFoundation                0x0000000109449233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010944e916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010944e0e2 CFRunLoopRunSpecific + 290
    5   com.apple.HIToolbox                     0x000000010803ceb4 RunCurrentEventLoopInMode + 209
    6   com.apple.HIToolbox                     0x000000010803cc52 ReceiveNextEventCommon + 356
    7   com.apple.HIToolbox                     0x000000010803cae3 BlockUntilNextEventMatchingListInMode + 62
    8   com.apple.AppKit                        0x0000000109fc0533 _DPSNextEvent + 685
    9   com.apple.AppKit                        0x0000000109fbfdf2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    10  com.apple.AppKit                        0x0000000109fb71a3 -[NSApplication run] + 517
    11  com.apple.AppKit                        0x0000000109f5bbd6 NSApplicationMain + 869
    12  com.apple.finder                        0x0000000106a44b56 0x106a3f000 + 23382
    13  libdyld.dylib                           0x000000010c3cc7e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x000000010c5a2d16 kevent + 10
    1   libdispatch.dylib                       0x000000010c396dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x000000010c3969ee _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x000000010c5a26d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010c432f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010c432d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x000000010c41d1d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x000000010c5a26d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x000000010c432f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x000000010c432d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x000000010c41d1d1 start_wqthread + 13
    Thread 4 Crashed:
    0   ???                                     0x00000001017e91b4 0 + 4320039348
    Thread 4 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000052  rcx: 0x000000010c3d4000  rdx: 0x0000000000000052
      rdi: 0x000000010c3d4000  rsi: 0x0000000107c5f000  rbp: 0x000000010c3d5ff4  rsp: 0x000000010c3d5f7c
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x0000000000000000  r13: 0x0000000000000000  r14: 0x0000000107c5f000  r15: 0x0000000000000000
      rip: 0x00000001017e91b4  rfl: 0x0000000000010206  cr2: 0x00000001017e91b4
    Logical CPU: 0
    Binary Images:
           0x106a3f000 -        0x106ef9ff7  com.apple.finder (10.8.3 - 10.8.3) <5AF2416D-6AF0-386F-86D5-A276C74780E6> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x107005000 -        0x107125fff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10719b000 -        0x1071ecff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10721f000 -        0x1074f0ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x107627000 -        0x10766aff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x10767e000 -        0x107684fff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x107691000 -        0x1076ffff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x107734000 -        0x1077f9ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x107876000 -        0x107a24fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x107adc000 -        0x107adcfff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x107ae6000 -        0x107af5fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x107b01000 -        0x107bdbfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x107c62000 -        0x107cbefff  com.apple.QuickLookFramework (4.0 - 555.5) <8B9EAC35-98F3-3BF0-8B15-3A5FE39F150A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x107cfd000 -        0x107d0bfff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x107d22000 -        0x107f22fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x107fc8000 -        0x107fcffff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x107fdd000 -        0x10830dfff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x108465000 -        0x108714fff  com.apple.imageKit (2.2 - 673) <5F0504DA-7CE9-3D97-B2B5-3C5839AEBF1F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10894d000 -        0x108a4bfff  com.apple.QuickLookUIFramework (4.0 - 555.5) <EE02B332-20F3-3226-A022-D71B808E1CC4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x108b07000 -        0x108b61fff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x108ba5000 -        0x108ba5ffb +cl_kernels (???) <33520EC0-3A2E-440D-8831-FA3005ED6171> cl_kernels
           0x108ba7000 -        0x108baafff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x108bb6000 -        0x108d08fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x108d92000 -        0x108e83ff7  com.apple.DiskImagesFramework (10.8.3 - 345) <F9FAEAF0-B9A5-34DF-94B7-926FB03AD5F6> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
           0x108ee3000 -        0x108ee4fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x108eea000 -        0x108f79fff  libCoreStorage.dylib (296.16.1) <35FE3D47-089C-351A-AC9E-4D2C82AE5D87> /usr/lib/libCoreStorage.dylib
           0x108fa1000 -        0x108feafff  com.apple.DiskManagement (5.2.1 - 665.1) <8F2C8673-B1DE-33CE-A024-5E179EA8D378> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
           0x109012000 -        0x10901cfff  libcsfde.dylib (296.16.1) <8F75205A-8802-3B1D-87AA-235CBF1E49AE> /usr/lib/libcsfde.dylib
           0x109028000 -        0x10904fff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10906f000 -        0x1090a3fff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x1090d0000 -        0x109138ff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
           0x109193000 -        0x109194ff7  libSystem.B.dylib (169.3) <9089D72D-E714-31E1-80C8-698A8E8B05AD> /usr/lib/libSystem.B.dylib
           0x10919b000 -        0x10919bffc +cl_kernels (???) <AF4B46AD-CB39-4495-8ADC-EFD65697D11D> cl_kernels
           0x1091a2000 -        0x1092ba92f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x1092da000 -        0x1093acff7  com.apple.CoreText (260.0 - 275.16) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x10940c000 -        0x10940cff7 +cl_kernels (???) <877B6C98-47F1-4744-80EE-8C3DBCBCED52> cl_kernels
           0x10940e000 -        0x10940effc +cl_kernels (???) <AF4B46AD-CB39-4495-8ADC-EFD65697D11D> cl_kernels
           0x109411000 -        0x109411fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x109419000 -        0x109603ff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x109762000 -        0x109763ff8 +cl_kernels (???) <CC5D6C2A-0F3B-4B03-BC93-0AFB49A4D43F> cl_kernels
           0x109765000 -        0x109765ffb +cl_kernels (???) <CA9A04AF-C0CD-4E0C-9351-4042F8495F64> cl_kernels
           0x109767000 -        0x109767fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10976b000 -        0x109acafff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x109cef000 -        0x109cefffd +cl_kernels (???) <7CC6D8FF-FF5B-4E12-A787-27DBCA7E873D> cl_kernels
           0x109cf1000 -        0x109e0afff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x109e6b000 -        0x10aa98fff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x10b18f000 -        0x10b18fffd +cl_kernels (???) <9D0377DE-030C-4217-8864-A7471D8A61A9> cl_kernels
           0x10b192000 -        0x10b307ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x10b3c7000 -        0x10b3c7ffe +cl_kernels (???) <81AA10D3-FEED-4D7D-9646-66DA2285B847> cl_kernels
           0x10b3cb000 -        0x10b3deff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x10b3e7000 -        0x10b3e7ff8 +cl_kernels (???) <4E38C1F1-91EB-4586-9710-095C6E421299> cl_kernels
           0x10b3eb000 -        0x10b40cfff  com.apple.Ubiquity (1.2 - 243.15) <C9A7EE77-B637-3676-B667-C0843BBB0409> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10b421000 -        0x10b42eff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10b43a000 -        0x10b43affd +cl_kernels (???) <5CF58061-DDAC-49D7-8B63-C99AAC904FBA> cl_kernels
           0x10b43f000 -        0x10bdcf4af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10bed7000 -        0x10bed7ff9 +cl_kernels (???) <0493CB29-C1CC-4CCF-AE54-54217BCEF74C> cl_kernels
           0x10bede000 -        0x10bf5eff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10bf8a000 -        0x10bf8bffa +cl_kernels (???) <6C173234-E4E2-4F5A-86D7-495A03222350> cl_kernels
           0x10bf90000 -        0x10c04dff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10c092000 -        0x10c0e8fff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10c121000 -        0x10c134ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10c142000 -        0x10c19cfff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10c1c9000 -        0x10c208ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10c224000 -        0x10c238fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10c24d000 -        0x10c25fff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x10c265000 -        0x10c265ffd +cl_kernels (???) <A64DFA47-A4A6-4BC8-B4D6-0658E5DF8C06> cl_kernels
           0x10c268000 -        0x10c26cfff  com.apple.IOSurface (86.0.4 - 86.0.4) <26F01CD4-B76B-37A3-989D-66E8140542B3> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x10c275000 -        0x10c2defff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x10c346000 -        0x10c34bfff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x10c355000 -        0x10c363fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x10c371000 -        0x10c376fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x10c381000 -        0x10c388fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x10c392000 -        0x10c3a7ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x10c3c1000 -        0x10c3c2ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x10c3ca000 -        0x10c3cdff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x10c3d8000 -        0x10c3d8fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x10c3e0000 -        0x10c3e8fff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x10c3f1000 -        0x10c3f7fff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x10c402000 -        0x10c404fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x10c40a000 -        0x10c40bff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x10c414000 -        0x10c415fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x10c41c000 -        0x10c4e8ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x10c52d000 -        0x10c535ff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x10c540000 -        0x10c576fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
           0x10c590000 -        0x10c5abff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x10c5c3000 -        0x10c5f1ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
           0x10c602000 -        0x10c610ff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
           0x10c61f000 -        0x10c62afff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x10c636000 -        0x10c637ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x10c63f000 -        0x10c641ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
           0x10c648000 -        0x10c64eff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x10c659000 -        0x10c67bff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x10c698000 -        0x10c6e7ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x10c6f9000 -        0x10c745ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x10c760000 -        0x10c785ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x10c7b9000 -        0x10c7c7ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x10c7ce000 -        0x10cae5ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10cb63000 -        0x10cbe4fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10cc3c000 -        0x10cce2ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10cd49000 -        0x10cdd6ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10ce1d000 -        0x10ce7cfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10cea7000 -        0x10cf58fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10cfab000 -        0x10cfdcff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10d005000 -        0x10d102fff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x10d11c000 -        0x10d219ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
           0x10d252000 -        0x10d261ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
           0x10d26c000 -        0x10d270fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x10d277000 -        0x10d277fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x10d27e000 -        0x10d28bfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x10d295000 -        0x10d302ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10d33e000 -        0x10d342ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x10d34c000 -        0x10d34dfff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x10d358000 -        0x10d379ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
           0x10d386000 -        0x10d39dfff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10d3ad000 -        0x10d3c4fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10d3e4000 -        0x10d40ffff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x10d420000 -        0x10d420fff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x10d423000 -        0x10d52efff  libFontParser.dylib (84.6) <96C42E49-79A6-3475-B5E4-6A782599A6DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10d595000 -        0x10d5e4ff7  libFontRegistry.dylib (100) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10d611000 -        0x10d7acfef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10d7cd000 -        0x10d7cdfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10d7d2000 -        0x10d83afff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10d849000 -        0x10d8e3fff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10d8f1000 -        0x10dce8fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10dd4e000 -        0x10ded4fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10df05000 -        0x10df2dfff  libJPEG.dylib (850) <DC750E1E-BD07-339B-A4A6-D86BFE969F68> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10df39000 -        0x10df8eff7  libTIFF.dylib (850) <EDAF0D99-70AF-3B3F-9EFA-9463C91D0E3C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10df9b000 -        0x10dfbbfff  libPng.dylib (850) <203C43BF-FAD3-3CCB-81D5-F2770E36338B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10dfc9000 -        0x10dfcdfff  libGIF.dylib (850) <D4525F87-759C-338C-B283-BB8DE815D3D5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10dfd8000 -        0x10e0dafff  libJP2.dylib (850) <2E43216C-3A5A-3693-820C-38B360698FA0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10e108000 -        0x10e10bfff  libRadiance.dylib (850) <62E3F7FB-03E3-3937-A857-AF57A75EAF09> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x10e114000 -        0x10e158fff  libcups.2.dylib (327.6) <9C01D012-6F4C-3B69-B614-1B408B0ED4E3> /usr/lib/libcups.2.dylib
           0x10e16d000 -        0x10e18fff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10e1a9000 -        0x10e1e3ff7  com.apple.GSS (3.0 - 2.0) <970CAE00-1437-3F4E-B677-0FDB3714C08C> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10e202000 -        0x10e221ff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
           0x10e231000 -        0x10e326fff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
           0x10e33d000 -        0x10e3bfff7  com.apple.Heimdal (3.0 - 2.0) <C94B0C6C-1320-35A1-8143-FE252E7B2A08> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10e3ea000 -        0x10e3ecfff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10e3f3000 -        0x10e3f8fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10e408000 -        0x10e413fff  com.apple.CommonAuth (3.0 - 2.0) <7A953C1F-8B18-3E46-9BEA-26D9B5B7745D> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10e41d000 -        0x10e428ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10e436000 -        0x10e455ff7  com.apple.ChunkingLibrary (2.0 - 133.3) <8BEC9AFB-DCAA-37E8-A5AB-24422B234ECF> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x10e461000 -        0x10e46efff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x10e479000 -        0x10e4a3ff7  com.apple.CoreVideo (1.8 - 99.4) <E5082966-6D81-3973-A05A-38AA5B85F886> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x10e4c4000 -        0x10e768ff7  com.apple.CoreImage (8.4.0 - 1.0.1) <CC6DD22B-FFC6-310B-BE13-2397A02C79EF> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x10e84d000 -        0x10e8a4ff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10e8cb000 -        0x10e915ff7  libGLU.dylib (8.9.2) <1B5511FF-1064-3004-A245-972CE5687D37> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10e927000 -        0x10e92efff  libGFXShared.dylib (8.9.2) <398F8D57-EC82-3E13-AC8E-470BE19237D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10e93a000 -        0x10e951fff  libGL.dylib (8.9.2) <B8E5948D-BCF2-3727-B74E-D74B8EDC82D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x10e965000 -        0x10e9a2fef  libGLImage.dylib (8.9.2) <C38649ED-E1C9-315E-9953-F33E8C6A3C89> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10e9af000 -        0x10e9b1fff  libCVMSPluginSupport.dylib (8.9.2) <EF1192AC-3357-3A0B-BFAF-6594D7737892> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10e9b6000 -        0x10e9bafff  libCoreVMClient.dylib (32.3) <AD8391D9-56DD-3A78-A294-6A30E6ECE1A2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10e9c2000 -        0x10e9cefff  com.apple.CrashReporterSupport (10.8.3 - 418) <DE6AFE16-D97E-399D-82ED-3522C773C36E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10e9e1000 -        0x10ea3bff7  com.apple.opencl (2.2.19 - 2.2.19) <3C7DFB2C-B3F9-3447-A1FC-EAAA42181A6E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10ea53000 -        0x10ee70fff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x10f085000 -        0x10f2baff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f3bb000 -        0x10f3feff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10f438000 -        0x10f438ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10f43e000 -        0x10f448fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10f454000 -        0x10f4b7ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10f4e1000 -        0x10f4f7fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10f50b000 -        0x10f532fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10f54e000 -        0x10f5ecff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10f624000 -        0x10f624fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10f627000 -        0x10f6a6ff7  com.apple.securityfoundation (6.0 - 55115.4) <8676E0DF-295F-3690-BDAA-6C9C1D210B88> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10f6e8000 -        0x10f6f1ff7  com.apple.CommerceCore (1.0 - 26.1) <40A129A8-4E5D-3C7A-B299-8CB203C4C65D> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x10f6fc000 -        0x10f797fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10f7b2000 -        0x10f80eff7  com.apple.Symbolication (1.3 - 93) <97F3B1D2-D81D-3F37-87B3-B9A686124CF5> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10f851000 -        0x10f887fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10f8ac000 -        0x10fb70fff  com.apple.AddressBook.framework (7.1 - 1170) <A850809B-B087-3366-9FA0-1518C20831D3> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x10fdc8000 -        0x10fdd4ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x10fddf000 -        0x10fde6fff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x10fdec000 -        0x10fdecfff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10fdf0000 -        0x10fe2afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10fe62000 -        0x10fe9dfff  com.apple.LDAPFramework (2.4.28 - 194.5) <7C71C445-2B52-3AC0-97E5-9F2E692C8F5C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10feab000 -        0x110106ff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x11026c000 -        0x11031fff7  com.apple.PDFKit (2.8.4 - 2.8.4) <BD6E8774-1C8B-3CD1-B5FA-7352B2173068> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x110395000 -        0x1103c1fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x1103f1000 -        0x11068cff7  com.apple.JavaScriptCore (8536 - 8536.30) <FE3C5ADD-43D3-33C9-9150-8DCEFDA218E2> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x11073e000 -        0x1108afff7  com.apple.QTKit (7.7.1 - 2599.31) <1CBAB8B9-E335-33E3-B442-60105D265CB7> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x1109b6000 -        0x110a01fff  com.apple.CoreMedia (1.0 - 926.104) <31EAF297-9C42-3D6F-A8A1-CDAB94A26113> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x110a27000 -        0x110cdeff7  com.apple.MediaToolbox (1.0 - 926.104) <916B1ACC-2623-39FB-9B5A-1B0162F8C468> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x110d72000 -        0x1111aefef  com.apple.VideoToolbox (1.0 - 926.104) <9231E12F-3D46-3F3D-B24F-6E16127E5909> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x111244000 -        0x111244fff  com.apple.Carbon (154 - 155) <1B2846B1-384E-3D1C-8999-201215723349> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x11124d000 -        0x111267fff  com.apple.CoreMediaAuthoring (2.1 - 914) <23F2B9D0-7B73-3C42-8EDC-8ADBF9C7B8C2> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x111282000 -        0x1112cffff  com.apple.CoreMediaIO (308.0 - 4155.4) <B563579E-469D-39A1-975C-F4EDD419602E> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x1112f8000 -        0x111456fef  com.apple.MediaControlSender (1.7 - 170.20) <853BE89D-49B0-3922-9ED5-DDBDE9A97356> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
           0x11149a000 -        0x1115b4fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
           0x1115da000 -        0x111d81fff  com.apple.CoreAUC (6.16.13 - 6.16.13) <8CBFBC9C-0773-3DEB-AF99-989008CB2B36> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x111d9d000 -        0x111dc9fff  com.apple.framework.Apple80211 (8.4 - 840.22.1) <7CFDDBBB-87DF-3CB5-AB69-A77D73F26239> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x111ddd000 -        0x111e28fff  com.apple.framework.CoreWLAN (3.3 - 330.15) <047FA8CB-7447-3171-9518-6C88DA71F20E> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x111e53000 -        0x111ea2fff  com.apple.framework.CoreWiFi (1.3 - 130.13) <CCF3D8E3-CD1C-36CD-929A-C9972F833F24> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x111ed9000 -        0x111f30ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19) <541A7DBE-F8E4-3023-A3C0-8D5A2A550CFB> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x111f3b000 -        0x111f3fff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x111f46000 -        0x111f49fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x111f56000 -        0x111f6bfff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x111f86000 -        0x111fa3ff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x111fb5000 -        0x111fb7ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x111fbe000 -        0x111fc0fff  com.apple.securityhi (4.0 - 55002) <26E6D477-EF61-351F-BA8C-67824AA231C6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x111fca000 -        0x11205eff7  com.apple.CorePDF (2.2 - 2.2) <F17D7D37-4190-38E2-9F43-DD4F87792390> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x1120b2000 -        0x1120bdff7  com.apple.DisplayServicesFW (2.7.2 - 357) <EC87A00D-FE9C-3CFE-A98C-063C3D23085A> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x1120c8000 -        0x112121ff7  com.apple.ImageCaptureCore (5.0.4 - 5.0.4) <84F003C2-5758-3D0A-8644-F3A0BA4F22FC> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x11216a000 -        0x112185ff7  com.apple.frameworks.preferencepanes (15.1 - 15.1) <8A3CDC5B-9FA5-32EB-A066-F19874193B92> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x1121a4000 -        0x1122a6fff  libcrypto.0.9.8.dylib (47.1) <72AA650B-0453-3BB4-BA03-824627BB199C> /usr/lib/libcrypto.0.9.8.dylib
           0x112314000 -        0x112595fff  com.apple.AOSKit (1.051 - 152.4) <01C09924-2603-3C1E-97F7-9484CBA35BC9> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x1125c3000 -        0x1125c3fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x1125c8000 -        0x112638fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x11268c000 -        0x112697ff7  com.apple.aps.framework (3.0 - 3.0) <DEF85257-2D1C-3524-88F8-CF70980726AE> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1126aa000 -        0x1126bbff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
           0x1126c9000 -        0x112700ff7  libssl.0.9.8.dylib (47.1) <B7C438BB-79FF-37B3-B8FB-253E5135CBB4> /usr/lib/libssl.0.9.8.dylib
           0x112717000 -        0x1127eaff7  com.apple.DiscRecording (7.0 - 7000.2.4) <E5F3F320-1049-32D8-8189-916EF5C40A1A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
           0x112858000 -        0x1128a0fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
           0x1128b5000 -        0x1128f5ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
           0x11290a000 -        0x11290cff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
           0x112912000 -        0x112915fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
           0x112d5e000 -        0x112d8cfff  com.apple.CoreServicesInternal (154.3 - 154.3) <F4E118E4-E327-3314-83D7-EA20B1717ED0> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x112eb8000 -        0x112ebcfff  libCGXType.A.dylib (332) <17C8DD17-B3CB-3633-B252-C368AE51204C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
           0x114216000 -        0x114224fff  com.apple.Librarian (1.1 - 1) <5AC28666-7642-395F-A923-C6F8A274BBBD> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x114b25000 -        0x114b31fff  libCSync.A.dylib (332) <47466CF6-EB5C-3312-9E24-178F4410A92B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
           0x114bbf000 -        0x114bd4fff  com.apple.frameworks.preferencepanessupport (12.0 - 12.0) <B2DDBD97-CE08-3632-BFED-43325BCDDD7A> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x114be9000 -        0x114cb7fff  com.apple.Bluetooth (4.1.4 - 4.1.4f2) <B08B37AD-88BB-3048-A4AF-8A7B3F9A598C> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
           0x114d2c000 -        0x114e56ff7  com.apple.avfoundation (2.0 - 361.40) <EDEAB424-D693-39C6-B4A6-C503213203AF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
           0x114f3e000 -        0x114f49fff  com.apple.CoreBluetooth (100.6 - 1) <8166B68C-3AA7-30F9-8454-CA2AA03F50E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/Frameworks/CoreBlue tooth.framework/Versions/A/CoreBluetooth
           0x1161c9000 -        0x1161edff7  com.apple.security.csparser (3.0 - 55179.13) <B85553DE-708C-3C20-93D5-70DC80068CE3> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
           0x11622e000 -        0x116234fff  libCGXCoreImage.A.dylib (332) <F6300A73-D4C4-3DE6-A1B7-806E627CCF76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
           0x11623b000 -        0x116244fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x116439000 -        0x116465ff7  libRIP.A.dylib (332) <D26BC320-B415-3C4D-B57F-D525FC361BB2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
           0x1171fa000 -        0x117294ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x11856f000 -        0x118605ff7  unorm8_rgba.dylib (2.2.16) <853BEBC4-AED9-3CE2-B91D-3D666E7C7C8F> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
        0x7fff6663f000 -     0x7fff6667393f  dyld (210.2.3) <36CAA36E-72BC-3E48-96D9-B96A2DF77730> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 15
        thread_create: 1
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 470
        thread_create: 18
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=176.6M resident=97.2M(55%) swapped_out_or_unallocated=79.4M(45%)
    Writable regions: Total=177.3M written=13.8M(8%) resident=67.5M(38%) swapped_out=0K(0%) unallocated=109.8M(62%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                  24.5M
    CG image                            220K
    CG raster data                      112K
    CG shared images                   1216K
    CoreAnimation                      1732K
    CoreImage                            24K
    CoreServices                       1200K
    MALLOC                            116.6M
    MALLOC guard page                    48K
    Memory tag=242                       12K
    Memory tag=250                      576K
    Memory tag=251                       24K
    OpenCL                              120K
    STACK GUARD                        56.0M
    Stack                              9752K
    VM_ALLOCATE                        16.2M
    __DATA                             17.4M
    __IMAGE                             528K
    __LINKEDIT                         34.9M
    __TEXT                            141.8M
    __UNICODE                           544K
    mapped file                        55.3M
    shared memory                      5628K
    ===========                      =======
    TOTAL                             484.0M

    Here you go Clinton:
    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: 512 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    Startup Items:
              HP Trap Monitor - Path: /Library/StartupItems/HP Trap Monitor
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 0:22:25
    Disk Information:
              APPLE SSD SM256E disk0 : (251 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 250.14 GB (66.64 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:
              [loaded] com.hp.help.tocgenerator.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.202f4087f2bbde52e3ac2df389f53a4f123223c9cc56a8fd83a6f7ae.plist
              [failed] com.apple.CSConfigDotMacCert-[redacted]@me.com-SharedServices.Agent.plist
              [loaded] com.google.keystone.agent.plist
    User Login Items:
              iTunesHelper
              Microsoft Database Daemon
              Skype
              Launcher
              Google Drive
              Dropbox
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              GarminGpsControl.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              Aspera Installer.plugin
              Aspera Web 3.1.1.70545.plugin
              CitrixOnlineWebDeploymentPlugin.plugin
              SigniantTransfer v4.0.0.42163.plugin
              WebEx64.plugin
    Bad Fonts:
              None
    Top Processes by CPU:
                   8%          Finder
                   3%          WindowServer
                   2%          fontd
                   2%          Microsoft Outlook
                   1%          EtreCheck
                   0%          Skype
                   0%          Launcher
                   0%          warmd
                   0%          Dropbox
                   0%          WebProcess
    Top Processes by Memory:
              311 MB             WebProcess
              205 MB             WindowServer
              188 MB             Safari
              180 MB             mds
              147 MB             Microsoft Outlook
              123 MB             Dock
              115 MB             Skype
              90 MB              OmniGraffle Professional
              90 MB              ReportCrash
              90 MB              Dropbox
    Virtual Memory Statistics
              3.53 GB            Free RAM
              2.69 GB            Active RAM
              268 MB             Inactive RAM
              1.51 GB            Wired RAM
              522 MB             Page-ins
              0 B                Page-outs

  • Full Garabage Collection every minute in oc4j_soa instance

    It looks like a Full GC cycle is run exactly every minute on a IDLE BPEL instance that does not have any instances. This is a basic 10.1.3.1.0 BPEL install with no Out of the box parameters modified / tuned. Is this a known issue / bug with a fix ?
    Also, we have 3 - 5 Asnyc BPEL Processes that involve human workflow. The invocation rate of these workflows is medium (100 instances per hour),but the instances may last long due to human workflow. What would be the recommended settings for these in terms of worker, invoker and dispatcher threads, DB Connections etc? Is there any tuning guide/ spreadsheet available for computation of optimum values ?
    $ jstat -gcutil 7123 60000
    S0 S1 E O P YGC YGCT FGC FGCT GCT
    0.00 62.95 29.18 11.66 99.66 651 13.801 62 62.792 76.593
    18.75 0.00 86.85 11.78 99.67 666 14.103 63 63.845 77.948
    0.00 25.00 71.48 10.95 99.63 681 14.404 64 64.908 79.312
    0.00 41.97 54.68 11.08 99.64 697 14.722 65 65.900 80.622
    0.00 41.97 30.84 11.21 99.65 713 15.043 66 66.853 81.897
    0.00 41.97 7.20 11.33 99.66 729 15.352 67 67.815 83.168
    87.81 0.00 75.06 10.92 99.64 744 15.652 68 68.818 84.469
    65.86 0.00 43.25 11.04 99.64 760 15.984 69 69.798 85.782
    84.94 0.00 82.86 11.23 99.68 776 16.292 70 70.776 87.068
    59.61 0.00 1.74 11.41 99.69 792 16.606 71 71.758 88.364
    0.00 25.00 67.50 10.94 99.65 807 16.897 72 72.776 89.673
    0.00 62.95 23.52 11.06 99.65 823 17.219 73 73.728 90.947
    $ top -p 7123
    7123 vvedula 17 0 1491m 338m 46m S 3.0 16.7 6:45.31 java => 3% CPU usage

    Thanks for the replies. Let me clarify a few things:
    1) We've tried setting -Xms to -Xmx (a long time ago, so maybe it's time to revisit), but doing so caused our app to exhibit other strange behavior due to the fact that no full GCs were ever done until all the allocated memory was exhausted. These full GCs, when finally triggered, ended up taking quite some time due to the fact that there was a lot of compaction (or attempted compaction) going on.
    2) I don't have a problem with doing full GCs (I use the term full GC because both a young and old generation GC happens at every full GC), but I have a problem with the full GCs happening every 2 or 3 seconds and taking up 100% cpu for minutes (because the concurrent phases would run back-to-back for every full GC). Especially when the app has 1/10th the volume of our other app which does a young gc every 20s or so and a full gc every 5 or 6 minutes.
    We've gone ahead and set the initial heap size to -Xms5g for today's run. We initially went without setting -Xms (again, just like our other instance) and we started seeing full GCs almost immediately as the JVM did not want to allocate more heap. We then went with -Xms2g which delayed the full GCs for a few hours until the used heap got close to the allocated heap. Full GCs then kicked in for cycles (15 or 30 mins long) until the JVM increased the heap by a few hundred mb each time.
    As I've stated, I'm struggling with the fact that we have another instance of the application that does not exhibit this behavior and does not have -Xms set at all. And the only thing I know that is different is that during startup, the amount of data we load is quite large (~6-8gb) and so our "min size" is already pretty large before starting to handle additional volume. Hopefully setting -Xms to 5g will replicate the starting point of the original instance.
    I'll respond back with updates.
    Thx,
    Josh
    Edited by: user10720003 on Aug 12, 2009 4:15 AM

  • How to take voltage measurements every minute

    Hi all,
    I am currently new to labview and i am trying to take timed voltage measurements.  Here is what i am trying to do;
     I am using labview 2010 and I am trying to take temperature and humidity readings in sync with each other.  To measure the temperature i am using a cDaq and mudule 9213, for humiduty i am using the voltage from module 9234 and converting it using the ambient temperature and voltage from my humidity sensor.  
    Now what i want to do is take voltage and temperature measurements say every minute or 30 seconds, but my buffer fills from the voltage readings and gives me an error or the table takes values from what im assuming is the buffer, one by one, instead of grabbing the current data from the module.  
    My real question here is how do i take current voltage measurements every 30 seconds?
    Thank you for any advice.
    Solved!
    Go to Solution.

    Did you stop your VI when changing voltages?  It would make since if you did since the chart will retain its memory while the table's Express VI is reset with each run.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Purple LED flashing every minute

    I cannot find the source of this Purple LED that flashes every minute.  It even flashes when in Bedside Mode.
    I have looked through all Apps in Settings >> Notifications.
    I had an App called 'Power Tools' installed. This allows for the changing of LED colours, but I never implemented the app, and did check all possible LED changes in the App, but none were set.  I have since removed the App, but the LED continues to blink every minute.
    Can anyone give an idea of where to look for possible sources of this blinking LED?
    Thanks very much !
    Solved!
    Go to Solution.

    dragonfly888 wrote:
    Shouldn't I be able to see CPU activity when the LED fires off?
    Probably not, the LED uses very very CPU and battery. You know how those little cheap LED lights you buy at cash register checkout counters can last for years....?
    I don't see the app that might causing it.
    Look in your App World > My World > Apps ? Installed.
    Anything like BeBuzz, Hub++ or something in there?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Explorer.exe is crashing/restarting every minute - faulting module ntdll.dll

    I upgraded to Windows 8 on 11/18 and started having problems where explorer.exe is restarting every minute or so. Here is the error from the event log:
    Faulting application name: explorer.exe, version: 6.2.9200.16433, time stamp: 0x50763312
    Faulting module name: ntdll.dll, version: 6.2.9200.16420, time stamp: 0x505ab405
    Exception code: 0xc000071f
    Fault offset: 0x000000000011808f
    Faulting process id: 0x12c8
    Faulting application start time: 0x01cdc8c32effec36
    Faulting application path: C:\Windows\explorer.exe
    Faulting module path: C:\Windows\SYSTEM32\ntdll.dll
    Report Id: 9220779c-34b6-11e2-be72-e06995f1e71a
    Faulting package full name:
    Faulting package-relative application ID:
    I worked with Microsoft Tech Support for 4 days and ended up doing a clean install of Windows 8.  I had been told by Microsoft that they would escalate me to Tier 2, but they called back and said it was an HP/Hardware issue and I would have to
    work with them.  Chatted with HP, they said it was an OS issue.
    Anyone have any thoughts?
    Dan

    Here is the dump file. Any assistance is greatly appreciated!
    http://sdrv.ms/XyPNrE
    google drive is the cause:
    FAULTING_IP:
    ntdll!RtlReportCriticalFailure+89
    000007f8`47d9a485 eb00 jmp ntdll!RtlReportCriticalFailure+0x8b (000007f8`47d9a487)
    EXCEPTION_RECORD: ffffffffffffffff -- (.exr 0xffffffffffffffff)
    ExceptionAddress: 000007f847d9a485 (ntdll!RtlReportCriticalFailure+0x0000000000000089)
    ExceptionCode: c0000374
    ExceptionFlags: 00000001
    NumberParameters: 1
    Parameter[0]: 000007f847defd60
    PROCESS_NAME: explorer.exe
    ERROR_CODE: (NTSTATUS) 0xc0000374 - Ein Heap wurde besch digt.
    EXCEPTION_CODE: (NTSTATUS) 0xc0000374 - Ein Heap wurde besch digt.
    EXCEPTION_PARAMETER1: 000007f847defd60
    NTGLOBALFLAG: 0
    APPLICATION_VERIFIER_FLAGS: 0
    APP: explorer.exe
    MANAGED_STACK: !dumpstack -EE
    OS Thread Id: 0x6bc (50)
    Current frame:
    Child-SP RetAddr Caller, Callee
    BUGCHECK_STR: APPLICATION_FAULT_WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    PRIMARY_PROBLEM_CLASS: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    DEFAULT_BUCKET_ID: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT
    LAST_CONTROL_TRANSFER: from 000007f847d9f2a0 to 000007f847d9a485
    STACK_TEXT:
    ntdll!NtWaitForSingleObject
    ntdll!RtlReportExceptionEx
    ntdll!RtlReportException
    ntdll!RtlReportCriticalFailure
    ntdll!_C_specific_handler
    ntdll!_GSHandlerCheck_SEH
    ntdll!RtlpExecuteHandlerForException
    ntdll!RtlDispatchException
    ntdll!RtlRaiseException
    ntdll!RtlReportCriticalFailure
    ntdll!RtlpLogHeapFailure
    ntdll! ?? ::FNODOBFM::`string'
    msvcr90!free
    googledrivesync64!DllCanUnloadNow
    shell32!CFSIconOverlayManager::_GetFileOverlayInfo
    shell32!CFSIconOverlayManager::GetFileOverlayInfo
    shell32!CFSFolder::_GetOverlayInfo
    shell32!CIconOverlayTask::InternalResumeRT
    shell32!CRunnableTask::Run
    shell32!CShellTask::TT_Run
    shell32!CShellTaskThread::ThreadProc
    shell32!CShellTaskThread::s_ThreadProc
    SHCore!ExecuteWorkItemThreadProc
    ntdll!RtlpTpWorkCallback
    ntdll!TppWorkerThread
    kernel32!BaseThreadInitThunk
    ntdll!RtlUserThreadStart
    FOLLOWUP_IP:
    googledrivesync64!DllCanUnloadNow+cd8
    000007f8`32602dc8 488d542430 lea rdx,[rsp+30h]
    SYMBOL_STACK_INDEX: 4
    SYMBOL_NAME: googledrivesync64!DllCanUnloadNow+cd8
    FOLLOWUP_NAME: wintriag
    MODULE_NAME: googledrivesync64
    IMAGE_NAME: googledrivesync64.dll
    DEBUG_FLR_IMAGE_TIMESTAMP: 50cfe78c
    STACK_COMMAND: ~50s; .ecxr ; kb
    FAILURE_BUCKET_ID: WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT_c0000374_googledrivesync64.dll!DllCanUnloadNow
    BUCKET_ID: APPLICATION_FAULT_WRONG_SYMBOLS_clr.dll_UNEXPECTED_UNKNOWN_INDEX_RESULT_googledrivesync64!DllCanUnloadNow+cd8
    WATSON_STAGEONE_URL: http://watson.microsoft.com/StageOne/explorer_exe/6_2_9200_16433/50763312/ntdll_dll/6_2_9200_16420/505ab405/c0000374/000ea485.htm?Retriage=1
    Followup: wintriag
    0:050> lmvm googledrivesync64
    start end module name
    000007f8`32600000 000007f8`326bb000 googledrivesync64 (export symbols) googledrivesync64.dll
    Loaded symbol image file: googledrivesync64.dll
    Image path: C:\Program Files (x86)\Google\Drive\googledrivesync64.dll
    Image name: googledrivesync64.dll
    Timestamp: Tue Dec 18 04:48:28 2012 (50CFE78C)
    CheckSum: 000BE686
    ImageSize: 000BB000
    File version: 1.7.4018.3496
    Product version: 1.7.4018.3496
    File flags: 0 (Mask 3F)
    File OS: 4 Unknown Win32
    File type: 2.0 Dll
    File date: 00000000.00000000
    Translations: 0409.04b0
    CompanyName: Google
    ProductName: Google Drive
    ProductVersion: 1.7.4018.3496
    FileVersion: 1.7.4018.3496
    FileDescription: Google Drive shell extension
    LegalCopyright: Google
    disable the sharing overlay icons in the google drive options.
    "A programmer is just a tool which converts caffeine into code"

  • Event 12317 every minute... File Server

    Hello,
    I am getting the following error every minute on the File Server Cluster node B
    Log Name: Application
    Source: SRMSVC
    Date: 2/20/2015 10:35:13 AM
    Event ID: 12317
    Task Category: None
    Level: Warning
    Keywords: Classic
    User: N/A
    Computer: BOPFSCL1A.ad
    Description:
    File Server Resource Manager failed to enumerate share paths or DFS paths. Mappings from local file paths to share and DFS paths may be incomplete or temporarily unavailable. FSRM will retry the operation at a later time.
    Error-specific details:
    Error: NetShareEnum, 0x80070005, Access is denied.
    I have checked the blog:
    http://blogs.technet.com/b/filecab/archive/2006/09/29/459430.aspx
    Even the Authenticated Users Group was already in the Users Group for th BuiltIn Folder in AD I have restarted the srmsvc and srmreports ...
    But still the error 12317 is poping up...
    Any idea?
    Thanks,
    DOm
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

    Hi Dom,
    How are things going? Please let us know if there is any progress or any new error occurs. 
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Still having the issue and even on another cluster now...
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/a07def79-50aa-4883-96e5-50d4cddd8d9a/cluster-nodes-loosing-communication?forum=winserverClustering
    Any clue?
    Thanks,
    Dom
    System Center Operations Manager 2007 / System Center Configuration Manager 2007 R2 / Forefront Client Security / Forefront Identity Manager

  • All Windows VM - Virtual Disk Service start/stop every minute

    Dear all
    I recently discovered that all my Windows VM's (2003/2008/2008R2) start and stop the virtual disk service:
    System Log File:
    08:37:27 Virtual Disk Service --> Service started
    08:37:27 Service Control Manager --> The Virtual Disk service entered the running state.
    08:37:28 Virtual Disk Service --> Service stopped
    08:37:28 Service Control Manager --> The Virtual Disk service entered the stopped state.
    and i have this entry every minute.
    I removed the DVD Drive from the VM but no change. What could be the reason for this? All my physical servers with the same backup program haven't this behavior.
    Thanks for any hint
    JBAB

    Just as a follow up:
    Dell know that problem and it will be "fixed" in Version 4.7.
    "In releases of the Host Integration Tools previous to V4.6,  Auto Snapshot Manager would query the entire system state every time a refresh was performed.  In Host
    Integration Tools V4.6 Auto Snapshot Manager will query the entire system state only during the initial load.  After that ASM uses event notifications to keep itself up to date refreshing only these changed items.   However event notifications
    aren’t enough,  to pick up some application changes Engineering implemented a polling mechanism.   The Virtual Disk Service events are a side effect of that polling and are normal and expected.
    However while these messages are entirely benign,  Engineering understands these message could be a concern as  they do fill up the event log and drown out important
    events.  Changes have been added to the V4.7 release of Auto Snapshot Manager giving the user the ability to control how often these refreshes occur along with the option of disabling automatic refreshes and using just a manual refresh button in the GUI."

  • Kin2 Restarts every minute

    I got a Kin2 a month ago and it was great until last night.  It started turning off and restarting literally every minute.  I've tried making calls as soon as it comes back on and after a minute it shuts off then restarts. 
    Any suggestions?

    shlhu,
    A phone that restarts when its not suppose to would be very annoying and frustrating.  I will be happy to assist and make sure we get this resolved for you!  
    There are a few things I would like to try, such as removing and reinserting the battery.  If that doesn't solve the issue, I would even like to try a Master Reset to possibly clear any corrupt data on the phone that would be causing it to power cycle.  Just ensure your data is backed up prior to doing the Master Reset.  To perform the Master Reset, you would tap Settings > tap About Your Phone > tap Erase Phone Data.  
    If you are still experiencing the resetting after the Master Reset I can see if your device is still covered under the manufacturer's warranty for replacement.
    Let me know how this works for you!

  • Forcing log switch every minute.

    Hi,
    I want to force a log switch every one minute how can i do it?
    What should be the value of fast_start_mttr_target?
    Does a checkpoint force a log switch?
    Do i need to only reduce the size of redo log to a small size?
    How can i make sure that a log switch will happen after a particular time period for ex. 1Minute,2 minute.
    I want to force a log switch every minute because i want to send the archive redo log to standby database so that not more than 1 minute changes in database are lost. I am using 10g R2 on windows 2003 server.
    I am unable to find a solution. Any help?

    Hi,
    I want to force a log switch every one minute how
    can i do it? yes with archive_lag_target parameter
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/onlineredo.htm#sthref934
    What should be the value of fast_start_mttr_target?incremental or normal checkpoint "fast instance recovery/downtime concerned" introduced from oracle 8, this feature is enabled with the initialization parameter FAST_START_MTTR_TARGET in 9i.
    fast_start_mttr_target to database writer tries to keep the number of dirty blocks in the buffer cache low enough to guarantee rapid recovery in the event of a crash. It frequently updates the file headers to reflect the fact that there are not dirty buffers older than a particular SCN.
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmtunin004.htm#sthref1110
    Does a checkpoint force a log switch? log switch force to checkpoint ,checkpoint never force to log switch.
    Do i need to only reduce the size of redo log to a
    small size?depends yours SLA how far you can risk the data ,but it will effect yours database performance ,recommended to set the size of log which should imply the log swtich after filling to 20 mins,its a trade off risk vs perofrmance.
    How can i make sure that a log switch will happen
    after a particular time period for ex. 1Minute,2
    minute.
    want to force a log switch every minute because i
    want to send the archive redo log to standby database
    so that not more than 1 minute changes in database
    are lost. I am using 10g R2 on windows 2003 server.
    am unable to find a solution. Any help?
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/onlineredo.htm#sthref934Khurram

  • Jrun errors logged every minute in CF8

    Hi. We've had errors logged every few minutes for several years and would like to know how to stop them please? The log path and a file name example is:
    <drive>\JRun4\lib\wsconfig\1\LogFiles\jrun_iis6_wildcard130603.log
    The first few lines of the latest log are below.
    2013-06-03 07:59:09 jrISAPI[init:2060]  JRun ISAPI Extension DLL Detaching (FreeLibrary)
    2013-06-03 08:19:15 jrISAPI[init:3816]  JRun 4.0 (Build 108673) JRun ISAPI Extension - Mar 13 2008 19:48:36
    2013-06-03 08:19:15 jrISAPI[init:3816]  JRun ISAPI Extension DLL Attaching
    2013-06-03 08:19:30 jrISAPI[5648:3816]  127.0.0.1:51020 connect failed[740]: 10060 Connection timed out
    2013-06-03 08:19:30 jrISAPI[5648:3816]  Couldn't initialize from remote server, JRun server(s) probably down.
    2013-06-03 08:20:49 jrISAPI[3712:3816]  127.0.0.1:51020 connect failed[644]: 10060 Connection timed out
    2013-06-03 08:20:49 jrISAPI[3712:3816]  Couldn't initialize from remote server, JRun server(s) probably down.
    2013-06-03 08:21:21 jrISAPI[1824:3816]  127.0.0.1:51020 connect failed[804]: 10060 Connection timed out
    2013-06-03 08:21:21 jrISAPI[1824:3816]  Couldn't initialize from remote server, JRun server(s) probably down.
    The last 2 lines are repeated every minute.
    We stopped the built-in Jrun web server after installation years ago as it's an uncessary component in production. I don't understand why something is still requesting data from the Jrun server every minute.
    Setup: CF 8.01 x64 installed as multi-server instance on Windows 2008 R2 with IIS7.5.
    Thanks in advance for any solutions or suggestions.
    Gary F

    Delete and re-add the web server connector?
    Adam

  • IPhone service dropping every minute

    So I've been having this problem since last night. Every minute, my service will completely drop out and show "No Service" and then an instant later it will start searching, and then reconnect. I opened up my diagnostics and usage data log, and looked through the massive list of errors from today alone and each one says the same thing
    deviceId: (i'll withhold this info)
    isAnonymous: true
    deviceConfigId: 101
    triggerTime: 1325278144287
    triggerId: 524308
    profileId: 10127
    investigationId: 0
    metricCCAirplaneMode {
    airplaneModeEnable: false
    timestamp: 1325278144286
    Now, I looked at prior error reports and there were similar ones, but right when this started happening, I saw the "metricCCAirplaneMode" section of that code come up, so could my phone be continuously trying to turn airplane mode on and off? And if so, how do I stop it? Would restoring from a backup fix?

    According to your information you have iOS 5.0.1, most likely build 9A405, running on your iPhone 4. Apple recently updated the build of iOS 5.0.1 to help with this issue. Restoring your iPhone using the most recent build of 5.0.1 (Build 9A406) should fix the problem.

  • Nokia N72 it restarts automatically every minute.

    Hi, Newly bought Nokia N72 phone it restarts automatically every minute. But when i put the bluetooth on the phone remains stable and it does not reboot. Once the bluetooth is switched off again the phone starts rebooting automatically every minute. Please let me know if there is any solution for that.

    Update your Firmware with latest one.Either take it to NOKIA CARE or do it from the wesite of NOKIA but do take back up of all your data.

Maybe you are looking for

  • Ipad 1 not appearing in itunes. I am running 10.6.8 and have itunes 10.3.1

    I have been given a first generation ipad and it will not appear in itunes. I have 10.6.8 installed with itunes 10.3.1. I connected the cable to the USB port in the back of the computer and when i connect to the ipad there is the audible sound when a

  • Nested XML Output in PL/SQL

    I need to generate XML that looks like this: <Person> <Name> <FirstName>IMA</FirstName> <MiddleName>ANOTHER</MiddleName> <LastName>TEST</LastName> <BirthDate>04/05/1982</BirthDate> </Name> <IDDetails> <SSNID>234-23-3333</SSNID> <OtherID>19781</OtherI

  • TA38263 there is no burn tab in preferences

    I have called up preferences but there is no burn tab. How doI fix this

  • Trouble with authorization on iPhone and Mac

         I recently got a new Macbook Pro for Christmas, and I moved all of the music from my iTunes library on my iPhone onto my new computer at that time. Since then, they have not been synchronized, and I don't know why. When I download a new song, it

  • [Solved] KDE 4.10-1 problems after update

    Hi, Yesterday I updated my system with pacman -Syu and all of the KDE packages were upgraded to 4.10.1-1 and now I'm having some weird problems.. KDE logs in but the window decorations are gone(some applications start but I can't move them while othe