Crash in __db_truncate_pp for a DS database in version 4.7.25

My application creates a DS database (version 4.7.25). It is a single threaded application that reads/inserts records from/to this database.
This application is guarded by a heart-beating parent process that listens to SIGCHLD to re-start this process. There is also a mechanism to cleanly stop the parent and child processes. Both these tasks listen to SIGTERM signal to do cleanup and shutdown gracefully.
The requirement is to populate the database, periodically do a db->sync, continue using the data if crashed and restarted, but in case of a graceful shutdown and restart use a clean database. In the startup path, the application cannot determine whether it is started afresh for the first time or has restarted.
- Hence it tries to open the DB handle.
- If DB is already existing, run db->verify on this DB before accessing it.
- If task is gracefully shutting down, call a truncate on the DB (since this cannot be done at startup).
The truncate call fails and the application crashes with the following core
(gdb) bt
#0 0xfee11ce4 in __db_truncate_pp ()
from /export/home/myapp/3rdparty/bdb/libdb-4.7.so
The code fragment is simply as follows
if(dbase != NULL)
if((ret = dbase->truncate(dbase,NULL,(unsigned long*)count,0)) == 0)
return SUCCESS;
if(ret < 0)
fprintf(stderr,"DB-truncate failure error (BDB returnval: %d)\n", ret);
else
perror("truncate perror");
else
fprintf(stderr,"DB-truncate Invalid DB handle ...\n");
return FAILURE;
Is something missing out here ?
Regards,
Ravi Nathwani

Hello,
Is it possible to configure with:
enable-debug and enable-diagnostic
and get a complete stack trace, as that could
help identify what is going on a bit better.
Thanks,
Sandra

Similar Messages

  • Selective XML Index feature is not supported for the current database version , SQL Server Extended Events , Optimizing Reading from XML column datatype

    Team , Thanks for looking into this  ..
    As a last resort on  optimizing my stored procedure ( Below ) i wanted to create a Selective XML index  ( Normal XML indexes doesn't seem to be improving performance as needed ) but i keep getting this error within my stored proc . Selective XML
    Index feature is not supported for the current database version.. How ever
    EXECUTE sys.sp_db_selective_xml_index; return 1 , stating Selective XML Indexes are enabled on my current database .
    Is there ANY alternative way i can optimize below stored proc ?
    Thanks in advance for your response(s) !
    /****** Object: StoredProcedure [dbo].[MN_Process_DDLSchema_Changes] Script Date: 3/11/2015 3:10:42 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    -- EXEC [dbo].[MN_Process_DDLSchema_Changes]
    ALTER PROCEDURE [dbo].[MN_Process_DDLSchema_Changes]
    AS
    BEGIN
    SET NOCOUNT ON --Does'nt have impact ( May be this wont on SQL Server Extended events session's being created on Server(s) , DB's )
    SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
    select getdate() as getdate_0
    DECLARE @XML XML , @Prev_Insertion_time DATETIME
    -- Staging Previous Load time for filtering purpose ( Performance optimize while on insert )
    SET @Prev_Insertion_time = (SELECT MAX(EE_Time_Stamp) FROM dbo.MN_DDLSchema_Changes_log ) -- Perf Optimize
    -- PRINT '1'
    CREATE TABLE #Temp
    EventName VARCHAR(100),
    Time_Stamp_EE DATETIME,
    ObjectName VARCHAR(100),
    ObjectType VARCHAR(100),
    DbName VARCHAR(100),
    ddl_Phase VARCHAR(50),
    ClientAppName VARCHAR(2000),
    ClientHostName VARCHAR(100),
    server_instance_name VARCHAR(100),
    ServerPrincipalName VARCHAR(100),
    nt_username varchar(100),
    SqlText NVARCHAR(MAX)
    CREATE TABLE #XML_Hold
    ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY , -- PK necessity for Indexing on XML Col
    BufferXml XML
    select getdate() as getdate_01
    INSERT INTO #XML_Hold (BufferXml)
    SELECT
    CAST(target_data AS XML) AS BufferXml -- Buffer Storage from SQL Extended Event(s) , Looks like there is a limitation with xml size ?? Need to re-search .
    FROM sys.dm_xe_session_targets xet
    INNER JOIN sys.dm_xe_sessions xes
    ON xes.address = xet.event_session_address
    WHERE xes.name = 'Capture DDL Schema Changes' --Ryelugu : 03/05/2015 Session being created withing SQL Server Extended Events
    --RETURN
    --SELECT * FROM #XML_Hold
    select getdate() as getdate_1
    -- 03/10/2015 RYelugu : Error while creating XML Index : Selective XML Index feature is not supported for the current database version
    CREATE SELECTIVE XML INDEX SXI_TimeStamp ON #XML_Hold(BufferXml)
    FOR
    PathTimeStamp ='/RingBufferTarget/event/timestamp' AS XQUERY 'node()'
    --RETURN
    --CREATE PRIMARY XML INDEX [IX_XML_Hold] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index
    --SELECT GETDATE() AS GETDATE_2
    -- RYelugu 03/10/2015 -Creating secondary XML index doesnt make significant improvement at Query Optimizer , Instead creation takes more time , Only primary should be good here
    --CREATE XML INDEX [IX_XML_Hold_values] ON #XML_Hold(BufferXml) -- Ryelugu 03/09/2015 - Primary Index , --There should exists a Primary for a secondary creation
    --USING XML INDEX [IX_XML_Hold]
    ---- FOR VALUE
    -- --FOR PROPERTY
    -- FOR PATH
    --SELECT GETDATE() AS GETDATE_3
    --PRINT '2'
    -- RETURN
    SELECT GETDATE() GETDATE_3
    INSERT INTO #Temp
    EventName ,
    Time_Stamp_EE ,
    ObjectName ,
    ObjectType,
    DbName ,
    ddl_Phase ,
    ClientAppName ,
    ClientHostName,
    server_instance_name,
    nt_username,
    ServerPrincipalName ,
    SqlText
    SELECT
    p.q.value('@name[1]','varchar(100)') AS eventname,
    p.q.value('@timestamp[1]','datetime') AS timestampvalue,
    p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') AS objectname,
    p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') AS ObjectType,
    p.q.value('(./action[@name="database_name"]/value)[1]','varchar(100)') AS databasename,
    p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') AS ddl_phase,
    p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') AS clientappname,
    p.q.value('(./action[@name="client_hostname"]/value)[1]','varchar(100)') AS clienthostname,
    p.q.value('(./action[@name="server_instance_name"]/value)[1]','varchar(100)') AS server_instance_name,
    p.q.value('(./action[@name="nt_username"]/value)[1]','varchar(100)') AS nt_username,
    p.q.value('(./action[@name="server_principal_name"]/value)[1]','varchar(100)') AS serverprincipalname,
    p.q.value('(./action[@name="sql_text"]/value)[1]','Nvarchar(max)') AS sqltext
    FROM #XML_Hold
    CROSS APPLY BufferXml.nodes('/RingBufferTarget/event')p(q)
    WHERE -- Ryelugu 03/05/2015 - Perf Optimize - Filtering the Buffered XML so as not to lookup at previoulsy loaded records into stage table
    p.q.value('@timestamp[1]','datetime') >= ISNULL(@Prev_Insertion_time ,p.q.value('@timestamp[1]','datetime'))
    AND p.q.value('(./data[@name="ddl_phase"]/text)[1]','varchar(100)') ='Commit' --Ryelugu 03/06/2015 - Every Event records a begin version and a commit version into Buffer ( XML ) we need the committed version
    AND p.q.value('(./data[@name="object_type"]/text)[1]','varchar(100)') <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND p.q.value('(./data[@name="object_name"]/value)[1]','varchar(100)') NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND p.q.value('(./action[@name="client_app_name"]/value)[1]','varchar(100)') <> 'Replication Monitor' --Ryelugu : 03/09/2015 We do not want any records being caprutred by Replication Monitor ??
    SELECT GETDATE() GETDATE_4
    -- SELECT * FROM #TEMP
    -- SELECT COUNT(*) FROM #TEMP
    -- SELECT GETDATE()
    -- RETURN
    -- PRINT '3'
    --RETURN
    INSERT INTO [dbo].[MN_DDLSchema_Changes_log]
    [UserName]
    ,[DbName]
    ,[ObjectName]
    ,[client_app_name]
    ,[ClientHostName]
    ,[ServerName]
    ,[SQL_TEXT]
    ,[EE_Time_Stamp]
    ,[Event_Name]
    SELECT
    CASE WHEN T.nt_username IS NULL OR LEN(T.nt_username) = 0 THEN t.ServerPrincipalName
    ELSE T.nt_username
    END
    ,T.DbName
    ,T.objectname
    ,T.clientappname
    ,t.ClientHostName
    ,T.server_instance_name
    ,T.sqltext
    ,T.Time_Stamp_EE
    ,T.eventname
    FROM
    #TEMP T
    /** -- RYelugu 03/06/2015 - Filters are now being applied directly while retrieving records from BUFFER or on XML
    -- Ryelugu 03/15/2015 - More filters are likely to be added on further testing
    WHERE ddl_Phase ='Commit'
    AND ObjectType <> 'STATISTICS' --Ryelugu 03/06/2015 - May be SQL Server Internally Creates Statistics for #Temp tables , we do not want Creation of STATISTICS Statement to be logged
    AND ObjectName NOT LIKE '%#%' -- Any stored proc which creates a temp table within it Extended Event does capture this creation statement SQL as well , we dont need it though
    AND T.Time_Stamp_EE >= @Prev_Insertion_time --Ryelugu 03/05/2015 - Performance Optimize
    AND NOT EXISTS ( SELECT 1 FROM [dbo].[MN_DDLSchema_Changes_log] MN
    WHERE MN.[ServerName] = T.server_instance_name -- Ryelugu Server Name needes to be added on to to xml ( Events in session )
    AND MN.[DbName] = T.DbName
    AND MN.[Event_Name] = T.EventName
    AND MN.[ObjectName]= T.ObjectName
    AND MN.[EE_Time_Stamp] = T.Time_Stamp_EE
    AND MN.[SQL_TEXT] =T.SqlText -- Ryelugu 03/05/2015 This is a comparision Metric as well , But needs to decide on
    -- Peformance Factor here , Will take advise from Lance if comparision on varchar(max) is a vital idea
    --SELECT GETDATE()
    --PRINT '4'
    --RETURN
    SELECT
    top 100
    [EE_Time_Stamp]
    ,[ServerName]
    ,[DbName]
    ,[Event_Name]
    ,[ObjectName]
    ,[UserName]
    ,[SQL_TEXT]
    ,[client_app_name]
    ,[Created_Date]
    ,[ClientHostName]
    FROM
    [dbo].[MN_DDLSchema_Changes_log]
    ORDER BY [EE_Time_Stamp] desc
    -- select getdate()
    -- ** DELETE EVENTS after logging into Physical table
    -- NEED TO Identify if this @XML can be updated into physical system table such that previously loaded events are left untoched
    -- SET @XML.modify('delete /event/class/.[@timestamp="2015-03-06T13:01:19.020Z"]')
    -- SELECT @XML
    SELECT GETDATE() GETDATE_5
    END
    GO
    Rajkumar Yelugu

    @@Version : ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    Microsoft SQL Server 2012 - 11.0.5058.0 (X64)
        May 14 2014 18:34:29
        Copyright (c) Microsoft Corporation
        Developer Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    (1 row(s) affected)
    Compatibility level is set to 110 .
    One of the limitation states - XML columns with a depth of more than 128 nested nodes
    How do i verify this ? Thanks .
    Rajkumar Yelugu

  • How do I create a new emkey for Enterprise Manager Database Control?

    Hi,
    I just installed 11gR2.
    I am evaluating it.
    How do I create a new emkey for Enterprise Manager Database Control?
    I tried various combinations of this command:
    emctl config emkey
    I did find a probable bug:
    $ emctl config emkey -emkey -emkeyfile emkey.ora -force -sysman_pwd he11ow0rld
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Undefined subroutine &EmKeyCmds::promptUserPasswd called at /u2/app/oracle/product/11.2.0/dbhome_1/bin/EmKeyCmds.pm line 160, <FILE> line 3.
    $
    Again,
    How do I create a new emkey for Enterprise Manager Database Control?
    I do have a copy of my old key but it is no longer good because I reinstalled the repository with these commands:
    emca -repos drop ...
    emca -repos create ...
    Oh, and where is emctl "documented".
    I poked around in some book-index links and with the search engine.
    I could not find anything.
    Thanks,
    -Janis

    user11892726 wrote:
    Oh, and where is emctl "documented".
    http://download.oracle.com/docs/cd/B16240_01/welcome.html

  • Looking for A Powerful Database App

    Hello!
    I know this is not the best place to ask this question but I didn't have the choice. I am looking for a good database software to make databases for a bit everything: books, CDs, players list in video games, etc.
    I have been using FileMakerPro for a long time and this program is great but I grew tired of the interface....even if you can do anything with it I don't like it.
    So I looked on the web, I tried iList Data but it is not complete enough for me. And I just heard about AppleWorks. Someone said on a forum that it is better than iList Data.
    Is AppleWorks what I could be looking for regarding what I want to do with a database? I want something complete but more userfriendly than FMP.
    Thanks a lot!
    Vinny.

    Hi Vinny,
    As much as I love AppleWorks and use its DB module, I wouldn't recommend it to anyone as a 'new' purchase for one simple reason.
    Apple last updated AppleWorks in 2004, noted they were building the successor to AppleWorks in 2005, and declared AppleWorks EOL with the introduction of Numbers in iWork '08.
    EOL doesn't mean that the application no longer works, just that Apple no longer sells, develops or supports it.
    For someone familiar with the existing version and used to its quirks and foibles, that's not a major problem. For someone coming to AppleWorks cold, it could be.
    FMPro is a relational database application, and capable of far more than AppleWorks (a flat file DB). The appearance of the interfaces is similar, as both were designed at Claris, now FileMaker.
    OpenOffice.org and NeoOffice (based on OpenOffice.org) both have database capabilities. You may find their learning curves a bit steeper than FMPro's.
    Database Options For The Macintosh offers further information on desktop and server DB applications for Mac.
    Regards,
    Barry

  • Service accounts for the Workspace Database service permission Error while creating Tabular Mode from PowerPivot

    Hi All,
    Please help me out against this issue. I have spent so much (3 working days) time just figuring out what is the issue and its solution.
    I am learning Tabular Mode and trying to create a mode based on PowerPivot model. I am getting following error message:
    'The PowerPivot workbook could not be imported. The service account for the workspace database server does not have permission to read from the PowerPivot workbook.'
    Here is my infrastructure:
    1. SSAS in Tabular Mode is installed on my Windows 8 Laptop
    2. PowerPivot is also in my laptop
    3. There is only my account (as Admin of course) for SSAS
    Here are my questions:
    1. What is this error and how can I cope with that? A step by step explanation would be highly appreciated :-)
    2. Do I need to change something in Windows settings or in SSAS?
    3. I am confused about my workspace database server as well, Do I have to install SSAS twice; one for development and one for workspace?
     Looking forward for the expert advise.
    Tahir
    Thanks, TA

    Hi,
    I suspect you might have more luck if you try the SSAS forum: http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlanalysisservices
    Regards
    Jamie
    ObjectStorageHelper<T> – A WinRT utility for Windows 8 |
    http://sqlblog.com/blogs/jamie_thomson/ |
    @jamiet |
    About me

  • Error when installing 9.0.1.4.0 patch set for the Oracle Database Server.

    Hi to all.
    Currently, i am trying to install patches for portal server.
    The server OS is Sun Solaris 8.
    We are using Oracle9iAS.
    Now, we are installing 9.0.1.4.0 patch set for the Oracle Database Server.
    We managed to install the patch, but have problem with the Post Install Action.
    We managed to run
    -ALTER SYSTEM ENABLE RESTRICTED SESSION;
    -@rdbms/admin/catpatch.sql
    -ALTER SYSTEM DISABLE RESTRICTED SESSION;
    -CONNECT / AS SYSDBA
    -update obj$ set status=5 where type#=29 and owner#!=0;
    -commit;
    But, when we come to the next command, which is to shutdown, it gives us like
    this..
    SQL> update obj$ set status=5 where type#=29 and owner#!=0;
    1402 rows updated.
    SQL> commit;
    Commit complete.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01219: database not open: queries allowed on fixed tables/views only
    We tried to startup the database..it gives us this error..
    SQL> startup
    ORA-01081: cannot start already-running ORACLE - shut it down first
    So, we tried to shutdown again..
    SQL> shutdown immediate
    ORA-01089: immediate shutdown in progress - no operations are permitted
    I been informed that this is maybe a Database problem related. Any ideas?
    Best Wishes,
    Rushdan Md Saad.

    Patchsets could be obtained (only) from http://metalink.oracle.com
    You need to have valid CSI for access.
    P.S: Sorry Werner, I didn't see you post.
    Message was edited by:
    Ivan Kartik

  • How can we suggest a new DBA OCE certification for very large databases?

    How can we suggest a new DBA OCE certification for very large databases?
    What web site, or what phone number can we call to suggest creating a VLDB OCE certification.
    The largest databases that I have ever worked with barely over 1 Trillion Bytes.
    Some people told me that the results of being a DBA totally change when you have a VERY LARGE DATABASE.
    I could guess that maybe some of the following topics of how to configure might be on it,
    * Partitioning
    * parallel
    * bigger block size - DSS vs OLTP
    * etc
    Where could I send in a recommendation?
    Thanks Roger

    I wish there were some details about the OCE data warehousing.
    Look at the topics for 1Z0-515. Assume that the 'lightweight' topics will go (like Best Practices) and that there will be more technical topics added.
    Oracle Database 11g Data Warehousing Essentials | Oracle Certification Exam
    Overview of Data Warehousing
      Describe the benefits of a data warehouse
      Describe the technical characteristics of a data warehouse
      Describe the Oracle Database structures used primarily by a data warehouse
      Explain the use of materialized views
      Implement Database Resource Manager to control resource usage
      Identify and explain the benefits provided by standard Oracle Database 11g enhancements for a data warehouse
    Parallelism
      Explain how the Oracle optimizer determines the degree of parallelism
      Configure parallelism
      Explain how parallelism and partitioning work together
    Partitioning
      Describe types of partitioning
      Describe the benefits of partitioning
      Implement partition-wise joins
    Result Cache
      Describe how the SQL Result Cache operates
      Identify the scenarios which benefit the most from Result Set Caching
    OLAP
      Explain how Oracle OLAP delivers high performance
      Describe how applications can access data stored in Oracle OLAP cubes
    Advanced Compression
      Explain the benefits provided by Advanced Compression
      Explain how Advanced Compression operates
      Describe how Advanced Compression interacts with other Oracle options and utilities
    Data integration
      Explain Oracle's overall approach to data integration
      Describe the benefits provided by ODI
      Differentiate the components of ODI
      Create integration data flows with ODI
      Ensure data quality with OWB
      Explain the concept and use of real-time data integration
      Describe the architecture of Oracle's data integration solutions
    Data mining and analysis
      Describe the components of Oracle's Data Mining option
      Describe the analytical functions provided by Oracle Data Mining
      Identify use cases that can benefit from Oracle Data Mining
      Identify which Oracle products use Oracle Data Mining
    Sizing
      Properly size all resources to be used in a data warehouse configuration
    Exadata
      Describe the architecture of the Sun Oracle Database Machine
      Describe configuration options for an Exadata Storage Server
      Explain the advantages provided by the Exadata Storage Server
    Best practices for performance
      Employ best practices to load incremental data into a data warehouse
      Employ best practices for using Oracle features to implement high performance data warehouses

  • BEST PRACTICES FOR CREATING DISCOVERER DATABASE CONNECTION -PUBLIC VS. PRIV

    I have enabled SSO for Discoverer. So when you browse to http://host:port/discoverer/viewer you get prompted for your SSO
    username/password. I have enabled users to create their own private
    connections. I log in as portal and created a private connection. I then from
    Oracle Portal create a portlet and add a discoverer worksheet using the private
    connection that I created as the portal user. This works fine...users access
    the portal they can see the worksheet. When they click the analyze link, the
    users are prompted to enter a password for the private connection. The
    following message is displayed:
    The item you are requesting requires you to enter a password. This could occur because this is a private connection or
    because the public connection password was invalid. Please enter the correct
    password now to continue.
    I originally created a public connection...and then follow the same steps from Oracle portal to create the portlet and display the
    worksheet. Worksheet is displayed properly from Portal, when users click the
    analyze link they are taken to Discoverer Viewer without having to enter a
    password. The problem with this is that when a user browses to
    http://host:port/discoverer/viewer they enter their SSO information and then
    any user with an SSO account can see the public connection...very insecure!
    When private connections are used, no connection information is displayed to
    SSO users when logging into Discoverer Viewer.
    For the very first step, when editing the Worksheet portlet from Portal, I enter the following for Database
    Connections:
    Publisher: I choose either the private or public connection that I created
    Users Logged In: Display same data to all users using connection (Publisher's Connection)
    Users Not Logged In: Do no display data
    My question is what are the best practices for creating Discoverer Database
    Connections.
    Is there a way to create a public connection, but not display it in at http://host:port/discoverer/viewer?
    Can I restrict access to http://host:port/discoverer/viewer to specific SSO users?
    So overall, I want roughly 40 users to have access to my Portal Page Group. I then want to
    display portlets with Discoverer worksheets. Certain worksheets I want to have
    the ability to display the analyze link. When the SSO user clicks on this they
    will be taken to Discoverer Viewer and prompted for no logon information. All
    SSO users will see the same data...there is no need to restrict access based on
    SSO username...1 database user will be set up in either the public or private
    connection.

    You can make it happen by creating a private connection for 40 users by capi script and when creating portlet select 2nd option in Users Logged in section. In this the portlet uses there own private connection every time user logs in.
    So that it won't ask for password.
    Another thing is there is an option of entering password or not in ASC in discoverer section, if your version 10.1.2.2. Let me know if you need more information
    thnaks
    kiran

  • Can Jdeveloper Be Used For Non-Oracle Databases

    I have been trying to evaluate Jdeveloper 9i and Jbuilder 7 Enterprise for Swing database development. I am particularly interested in the productivity enhancements such as BC4J and Jclient. The underlying database might be Oracle, SapDb (excellent, easy to use, and free), SQLServer, etc.
    I evaluated Jbuilder Enterprise tools and it worked flawlessly with SapDb. This emphasized using their DataExpress and DbSwing components which provide many useful capabilities similar to BC4j and Jclient. It also involved using their DBPilot tool which allows browsing similar to that provided via a Jdeveloper connection.
    I tried to use Jdeveloper for the same SapDB and it is essentially non-functional. I followed the instructions for using a non-default driver and tried to define a connection. It behaved inconsistently: often saying no suitable driver can be found and yet when you edit the connection and test without making any changes, it works. If you try to establish a BC4J definition, it is very inconsistent and fails to recognize important details as foreign keys. Even if you define a ViewLink manually, it still does not work properly if you attempt to define a Master-Detail Jclient form. As I have stated, all these types of capabilities worked flawlessly in their Jbuilder equivalent. Furthermore, I really like the fact that Jbuilder gives many of BC4Js benefits without needing a BC4J J2EE container.
    Has anyone had real success using Jdeveloper's advanced features to develop for non-Oracle databases and if so, how did you get around these types of problems?

    Hi,
    generally, SCAN can be used for 10g databases and you discovered the first half: for 10g databases you will have to modify the REMOTE_LISTENER entry for each 10g database instance to point to the SCAN listeners (as opposed to pointing to the remote local listeners, which is the default in 10g). You could even have the databases registers themselves with SCAN and the remote listeners, if you wanted to... It's more or less a matter of configuration. But for simplification reasons, I will stick to the case where you have your 10g databases register with the SCAN listeners only.
    Now the other half is the client and the client configuration. An 11g Rel. 2 client configured for RAC would have a TNSNAMES entry that has only one address line for the RAC databases. The host entry in this one address line should point to the SCAN (the SCAN name is ideally resolved in DNS). A 10g client configured for RAC would have as many address lines in the TNSNAMES as you have nodes in the cluster.
    The 10g client SCAN configuration would then be in the middle so to speak: You would have 3 address lines in your TNSNAMES, in which each host entry would resolve to one SCAN address (I assume you will use the recommended default of 3 SCAN IPs). If you choose, you can have a name resolution for each of your SCAN IPs, but this would not be required. Now, why would you do it this way? Because this configuration will always work and does not make you dependent on certain functionality that your DNS server may or may not offer.
    For the remaining questions: SCAN is a DNS entry resolving one name to more than one (typically 3) IP addresses. OID is short for Oracle Internet Directory, which is a complete LDAP server. And you are right that there is no document how to configure 10g clients for SCAN from Oracle yet. However, there is a quite good document on SCAN on otn.oracle.com/rac, but I am sure you are aware of it already.
    Hope that helps. Thanks,
    Markus

  • Is it possible to have different authentication mode for SQL Server Database Engine and corresponding SQL Server instance?

    Hi,
    I have installed the x64 SQL Server 2008 R2 Express with default settings and run MBSA 2.3 (using default settings too). It shows three SQL Server instances: MSSQL10_50.SQLEXPRESS, SQLEXPRESS and SQLEXPRESS (32-bit). For the first, authentication
    mode is Windows, for the rest two - mixed. Here https://social.msdn.microsoft.com/Forums/sqlserver/en-US/03e470dc-874d-476d-849b-c805acf5b24d/sql-mbsa-question-on-folder-permission?forum=sqlsecurity question
    about such multiple instances was asked and the answer is that "MSSQL10.TEST_DB
    is the instance ID for the SQL Server Database Engine of the instance, TEST_DB", so in my case, it seems that MSSQL10_50.SQLEXPRESS is the instance ID for SQL Server Database Engine  of the SQLEXPRESS instance.
    I have two questions:
    1) How can it be that SQL Server DB Engine instance has different authentication mode than corresponding SQL Server Instance?
    2) Why 32-bit instance reported although I installed only 64-bit version?
    Also, this https://social.technet.microsoft.com/Forums/security/en-US/6b12c019-eaf0-402c-ab40-51d31dce968f/mbsa-23-reporting-sql-32bt-instance-is-running-in-mixed-mode-when-it-is-set-to-integrated?forum=MBSA question seems to be related to this
    issue, but there is no answer :(.
    Upd: Tried on clean Windows 8 installation and Windows 7 with the same result.

      Because I DO NOT want the three people who will be having access to the production SQL Server to also have access to the primary host ProductionA.  Since I have to allow them to RDC into the box to manage the SQL Server, I figure why not create
    a separate VM for each one of them and they can RDC into those instead.
    Does this make any sense?
    Any tips are greatly appreciated.  The main reason for doing this is because the three people who will be accessing the box, I need to isolate each one of them and at the same time keep them off of the primary ProductionA.
    Thanks for your help.
    M
    Hello M,
    Since you dont want the 3 guys to have access to Production machine A.You can install SQL Server client .By client i mean SQL server management studio(SSMS) on there local desktop and then create login for them in SQL Server.Open port on which your SQL server
    is running for three of the machines so that they can connct.Now with SSMS installed on each machine each can connect to SQL server from there own machine.
    I would also like you to be cautious with giving Sysadmin privilege to all three of them ,first please note down what task they would do and then decide what rights to be provided.
    Your option will also work but you need to create 3 VM for that .Which is more tedious task.
    Hope this helps
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Mail app crashes when checking for mail (new macbook pro)

    For some reason 4-5 days ago the mail app quit working/started crashing when checking for new mail. It would begin negotiating with the server and start downloading messages. It would receive the number of messages to download and then begin the download process. during this download it would then crash and the whole app will close.
    Any ideas? I have removed RSS feeds thinking that was a problem from other threads but still fails.
    MAC OS 10.6.2
    Mail 4.2 (1077)
    Apple debug information:
    Process: Mail [376]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Identifier: com.apple.mail
    Version: 4.2 (1077)
    Build Info: Mail-10770000~4
    Code Type: X86-64 (Native)
    Parent Process: launchd [76]
    Date/Time: 2010-02-25 21:22:23.712 -0600
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 79731 sec
    Crashes Since Last Report: 21
    Per-App Interval Since Last Report: 181 sec
    Per-App Crashes Since Last Report: 21
    Anonymous UUID: D0F4664C-6587-478D-870B-BBE459254F1B
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000000000064
    Crashed Thread: 6 Dispatch queue: com.apple.root.default-priority
    Application Specific Information:
    objc_msgSend() selector name: retain
    -[MessageRouter routeQueuedMessages]
    -[POPAccount fetchSynchronouslyIsAuto:]
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x00007fff88506e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff885074ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86a447a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff83a7aa24 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.AppKit 0x00007fff80bfa3c8 -[NSAnimation(NSInternal) _runBlocking] + 321
    6 com.apple.mail 0x000000010001384d 0x100000000 + 79949
    7 com.apple.mail 0x000000010004d7af 0x100000000 + 317359
    8 com.apple.mail 0x000000010004d686 0x100000000 + 317062
    9 com.apple.Foundation 0x00007fff83a534ec -[NSKeyValueObservance observeValueForKeyPath:ofObject:change:context:] + 325
    10 com.apple.Foundation 0x00007fff83a5329a NSKeyValueNotifyObserver + 338
    11 com.apple.Foundation 0x00007fff83a52d8e NSKeyValueDidChange + 458
    12 com.apple.Foundation 0x00007fff83a3673b -[NSObject(NSKeyValueObserverNotification) didChangeValueForKey:] + 134
    13 com.apple.Foundation 0x00007fff83a57647 __NSThreadPerformPerform + 219
    14 com.apple.CoreFoundation 0x00007fff86a46271 __CFRunLoopDoSources0 + 1361
    15 com.apple.CoreFoundation 0x00007fff86a44469 __CFRunLoopRun + 873
    16 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    17 com.apple.HIToolbox 0x00007fff83fa0a4e RunCurrentEventLoopInMode + 333
    18 com.apple.HIToolbox 0x00007fff83fa0853 ReceiveNextEventCommon + 310
    19 com.apple.HIToolbox 0x00007fff83fa070c BlockUntilNextEventMatchingListInMode + 59
    20 com.apple.AppKit 0x00007fff80aac1f2 _DPSNextEvent + 708
    21 com.apple.AppKit 0x00007fff80aabb41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    22 com.apple.AppKit 0x00007fff80a71747 -[NSApplication run] + 395
    23 com.apple.AppKit 0x00007fff80a6a468 NSApplicationMain + 364
    24 com.apple.mail 0x0000000100002150 0x100000000 + 8528
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x00007fff8851fbba kevent + 10
    1 libSystem.B.dylib 0x00007fff88521a85 dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x00007fff8852175c dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x00007fff88521286 dispatch_workerthread2 + 244
    4 libSystem.B.dylib 0x00007fff88520bb8 pthreadwqthread + 353
    5 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 3:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 4: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x00007fff885419ee _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff885457f1 pthread_condwait + 1286
    2 com.apple.JavaScriptCore 0x00007fff889d52b3 ***::TCMalloc_PageHeap::scavengerThread() + 515
    3 com.apple.JavaScriptCore 0x00007fff889d52f9 ***::TCMalloc_PageHeap::runScavengerThread(void*) + 9
    4 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 5: Dispatch queue: com.apple.root.default-priority
    0 libSystem.B.dylib 0x00007fff88506e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff885074ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86a447a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    4 com.apple.MessageFramework 0x00007fff837408e7 _handleRequestWithTimeout + 1608
    5 com.apple.MessageFramework 0x00007fff83742e4c -[_NSSocket readBytes:length:error:] + 177
    6 com.apple.MessageFramework 0x00007fff83742a74 -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 95
    7 com.apple.MessageFramework 0x00007fff8374286d -[Connection _fillBuffer:] + 593
    8 com.apple.MessageFramework 0x00007fff837424fc -[Connection _readLineIntoData:error:] + 70
    9 com.apple.MessageFramework 0x00007fff838dae52 -[POP3Connection _copyReplyLineDataWithError:] + 90
    10 com.apple.MessageFramework 0x00007fff838db686 -[POP3Connection _getStatusFromReply] + 47
    11 com.apple.MessageFramework 0x00007fff838db4da -[POP3Connection _retrieveMessage:ofSize:informDelegate:] + 117
    12 com.apple.MessageFramework 0x00007fff838db15c -[POP3Connection _retr:] + 145
    13 com.apple.MessageFramework 0x00007fff838dc392 -[POP3Connection fetchMessages:totalBytes:] + 361
    14 com.apple.MessageFramework 0x00007fff838dfdf4 -[POP3FetchStore fetchSynchronously] + 2048
    15 com.apple.MessageFramework 0x00007fff838e18f6 -[POPAccount fetchSynchronously] + 148
    16 com.apple.CoreFoundation 0x00007fff86a7e0dc _invoking__ + 140
    17 com.apple.CoreFoundation 0x00007fff86a7dfad -[NSInvocation invoke] + 141
    18 com.apple.MessageFramework 0x00007fff8370e3f1 -[MonitoredInvocation invoke] + 214
    19 com.apple.MessageFramework 0x00007fff836f5888 -[ThrowingInvocationOperation main] + 31
    20 com.apple.MessageFramework 0x00007fff836f51c8 -[_MFInvocationOperation main] + 275
    21 com.apple.Foundation 0x00007fff83a6906d -[__NSOperationInternal start] + 681
    22 com.apple.Foundation 0x00007fff83a68d23 ___startOperations_block_invoke2 + 99
    23 libSystem.B.dylib 0x00007fff88542ce8 dispatch_call_block_andrelease + 15
    24 libSystem.B.dylib 0x00007fff88521279 dispatch_workerthread2 + 231
    25 libSystem.B.dylib 0x00007fff88520bb8 pthreadwqthread + 353
    26 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 6 Crashed: Dispatch queue: com.apple.root.default-priority
    0 libobjc.A.dylib 0x00007fff805ef311 objcmsgSendvtable13 + 9
    1 com.apple.CoreData 0x00007fff86810a3a _PFFaultHandlerFulfillFault + 2890
    2 com.apple.CoreData 0x00007fff8680f561 _PFFaultHandlerLookupRow + 1121
    3 com.apple.CoreData 0x00007fff8680f0f7 -[NSFaultHandler fulfillFault:withContext:] + 23
    4 com.apple.CoreData 0x00007fff8680d5de PFFulfillDeferredFault + 254
    5 com.apple.CoreData 0x00007fff868112d7 sharedIMPL_pvfkcore + 87
    6 com.apple.CoreData 0x00007fff8681cc7e pvfk7 + 14
    7 ...apple.AddressBook.framework 0x00007fff802c96ce -[ABRecord nts_initWithDatabaseImpl:addressBook:] + 253
    8 ...apple.AddressBook.framework 0x00007fff802c9573 +[ABCDRecord copyPublicRecordForClass:withDatabaseImpl:inAddressBook:] + 109
    9 ...apple.AddressBook.framework 0x00007fff802d091c -[ABAddressBook(ABMailPeopleSearch) recordsMatchingMailAddressWithEmail:fullName:firstName:lastName:inSubscribedCon tent:] + 999
    10 com.apple.MessageFramework 0x00007fff83798d67 -[ABAddressBook(MailAdditions) bestRecordMatchingFormattedAddress:] + 364
    11 com.apple.MessageFramework 0x00007fff83798a65 -[MailAddressManager bestRecordMatchingFormattedAddress:] + 411
    12 com.apple.MessageFramework 0x00007fff837987c8 -[MessageCriterion _evaluateAddressBookCriterion:] + 148
    13 com.apple.MessageFramework 0x00007fff837979f6 -[MessageRule doesMessageSatisfyCriteria:] + 471
    14 com.apple.MessageFramework 0x00007fff8379759e +[MessageRouter putRulesThatWantsToHandleMessage:intoArray:colorRulesOnly:] + 481
    15 com.apple.MessageFramework 0x00007fff837968ec -[MessageRouter routeMessages:fromStores:] + 1268
    16 com.apple.MessageFramework 0x00007fff8389a982 -[MessageRouter routeQueuedMessages] + 1163
    17 com.apple.CoreFoundation 0x00007fff86a7e0dc _invoking__ + 140
    18 com.apple.CoreFoundation 0x00007fff86a7dfad -[NSInvocation invoke] + 141
    19 com.apple.MessageFramework 0x00007fff8370e3f1 -[MonitoredInvocation invoke] + 214
    20 com.apple.MessageFramework 0x00007fff836f5888 -[ThrowingInvocationOperation main] + 31
    21 com.apple.MessageFramework 0x00007fff836f51c8 -[_MFInvocationOperation main] + 275
    22 com.apple.Foundation 0x00007fff83a6906d -[__NSOperationInternal start] + 681
    23 com.apple.Foundation 0x00007fff83a68d23 ___startOperations_block_invoke2 + 99
    24 libSystem.B.dylib 0x00007fff88542ce8 dispatch_call_block_andrelease + 15
    25 libSystem.B.dylib 0x00007fff88521279 dispatch_workerthread2 + 231
    26 libSystem.B.dylib 0x00007fff88520bb8 pthreadwqthread + 353
    27 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 7:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 8:
    0 libSystem.B.dylib 0x00007fff88506e9a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x00007fff885456e2 pthread_condwait + 1015
    2 ...apple.AddressBook.framework 0x00007fff802d29b3 -[ABRemoteImageLoader workLoop] + 304
    3 com.apple.Foundation 0x00007fff83a3fe99 _NSThread__main_ + 1429
    4 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    5 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 9:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 10:
    0 libSystem.B.dylib 0x00007fff88506e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff885074ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86a447a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff83abf4cf +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    5 com.apple.Foundation 0x00007fff83a3fe99 _NSThread__main_ + 1429
    6 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    7 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 11:
    0 libSystem.B.dylib 0x00007fff88506e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff885074ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86a447a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff83a7aa24 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff83a7a903 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff8370ca89 -[RSSInterchange _runManager] + 1445
    7 com.apple.Foundation 0x00007fff83a3fe99 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 12:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 13:
    0 libSystem.B.dylib 0x00007fff885209da _workqkernreturn + 10
    1 libSystem.B.dylib 0x00007fff88520dec pthreadwqthread + 917
    2 libSystem.B.dylib 0x00007fff88520a55 start_wqthread + 13
    Thread 14:
    0 libSystem.B.dylib 0x00007fff88506e3a machmsgtrap + 10
    1 libSystem.B.dylib 0x00007fff885074ad mach_msg + 59
    2 com.apple.CoreFoundation 0x00007fff86a447a2 __CFRunLoopRun + 1698
    3 com.apple.CoreFoundation 0x00007fff86a43c2f CFRunLoopRunSpecific + 575
    4 com.apple.Foundation 0x00007fff83a7aa24 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 270
    5 com.apple.Foundation 0x00007fff83a7a903 -[NSRunLoop(NSRunLoop) run] + 77
    6 com.apple.MessageFramework 0x00007fff8373f76c +[_NSSocket _runIOThread] + 78
    7 com.apple.Foundation 0x00007fff83a3fe99 _NSThread__main_ + 1429
    8 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    9 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 15:
    0 libSystem.B.dylib 0x00007fff8854a9e2 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00007fff86a66242 __CFSocketManager + 818
    2 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    3 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 16:
    0 libSystem.B.dylib 0x00007fff885419ee _semwaitsignal + 10
    1 libSystem.B.dylib 0x00007fff8854187d nanosleep + 148
    2 libSystem.B.dylib 0x00007fff885417e7 usleep + 57
    3 com.apple.AppKit 0x00007fff80bf756a -[NSUIHeartBeat _heartBeatThread:] + 1540
    4 com.apple.Foundation 0x00007fff83a3fe99 _NSThread__main_ + 1429
    5 libSystem.B.dylib 0x00007fff8853ff8e pthreadstart + 331
    6 libSystem.B.dylib 0x00007fff8853fe41 thread_start + 13
    Thread 6 crashed with X86 Thread State (64-bit):
    rax: 0x00007fff70d0cca0 rbx: 0x0000000000000000 rcx: 0x0000000000000018 rdx: 0x0000000000000064
    rdi: 0x0000000000000064 rsi: 0x00007fff811a13d8 rbp: 0x0000000114ed1e30 rsp: 0x0000000114ed1d48
    r8: 0xfffffffffffffffa r9: 0x0000000116778178 r10: 0x00007fff83a348a3 r11: 0x0000000100522130
    r12: 0x000000000000000c r13: 0x0000000000000000 r14: 0x000000000000000c r15: 0x0000000116778178
    rip: 0x00007fff805ef311 rfl: 0x0000000000010202 cr2: 0x0000000000000064
    Binary Images:
    0x100000000 - 0x100338fe7 com.apple.mail 4.2 (1077) <A3B6D6AE-FBD2-15AE-46BA-5B27D9E85786> /Applications/Mail.app/Contents/MacOS/Mail
    0x114488000 - 0x1147dcfef com.apple.RawCamera.bundle 3.0.1 (523) <F6C20A35-2D51-08D7-07CA-5159256D6158> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x114edf000 - 0x114ee2fff com.apple.yahoo.syncframework 1.3 (51) <AEBB9A2D-B787-0C74-7C40-64E6F0BBF43C> /System/Library/PrivateFrameworks/YahooSync.framework/Versions/A/YahooSync
    0x114eee000 - 0x114ef4fff com.apple.AddressBook.LDAPSource 1.0.1 (864) <A13EB3DE-9B6F-A74F-B653-3442B0A03AE4> /System/Library/Address Book Plug-Ins/LDAP.sourcebundle/Contents/MacOS/LDAP
    0x114efb000 - 0x114efbfff com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <C1DB7C52-0812-0B24-6BB1-83E9149811D2> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x11566f000 - 0x115682ff7 com.apple.AddressBook.LocalSourceBundle 1.0.1 (864) <157AB366-BDEE-6FA9-94FD-CA027086D2BA> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x1156c5000 - 0x1156cdff7 com.apple.JavaVM 13.1.0 (13.1.0) <50BF10FF-1372-2993-B8E2-162E2FC99596> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1156d6000 - 0x1156e8ff7 com.apple.mail.WebPlugIn 4.2 (1077) <1042E456-191F-FB9D-9C09-484FB641528D> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
    0x115800000 - 0x11585ffff com.apple.google.GoogleContactSyncFramework 39 (39) <BD6B36C2-620E-DBC2-71A9-ECE0F627DE22> /System/Library/PrivateFrameworks/GoogleContactSync.framework/Versions/A/Google ContactSync
    0x116662000 - 0x1166b2ff7 com.apple.datadetectors.actions 2.0 (102.0) <B64E5232-8736-050B-3F68-A2BA6DFFCA43> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
    0x117357000 - 0x11737afff com.apple.Mail.Syncer 4.2 (1077) <A4CD23F8-C0FB-2587-9250-A3954B0A27F5> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <B633F790-4DDB-53CD-7ACF-2A3682BCEA9F> /usr/lib/dyld
    0x7fff80019000 - 0x7fff80024fff com.apple.CrashReporterSupport 10.6.2 (239) <9A14C43B-69B0-842E-3149-2F580DC13A50> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7fff80025000 - 0x7fff8002dfff com.apple.DisplayServicesFW 2.2 (2.2) <2C497E53-F471-5930-D15D-C033C438F39C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x7fff8002e000 - 0x7fff8002fff7 com.apple.TrustEvaluationAgent 1.1 (1) <51867586-1C71-AE37-EAAD-535A58DD3550> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x7fff80030000 - 0x7fff80035fff libGFXShared.dylib ??? (???) <05345B3E-5705-3C2A-464E-052B1DDA45B7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff80036000 - 0x7fff80039fff com.apple.help 1.3.1 (41) <54B79BA2-B71B-268E-8752-5C8EE00E49E4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8003a000 - 0x7fff80040fff libCGXCoreImage.A.dylib ??? (???) <B6A66067-68D9-7644-B4AF-EEA3B2AACA8D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x7fff8005d000 - 0x7fff8009bfef com.apple.DebugSymbols 1.1 (70) <C3D11461-E118-09DB-D9D7-8972B3FD160F> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x7fff8009c000 - 0x7fff800bcfff com.apple.DotMacSyncManager 2.0.1 (446.3) <200FD7C1-8C44-A14C-33EF-0E287DE741D4> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0x7fff80217000 - 0x7fff80258ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <FFCA91A7-ADDB-E3D0-234A-47609BC37556> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x7fff80259000 - 0x7fff80293fff com.apple.bom 10.0 (164) <E5C9AFBD-68C1-197E-72B0-B43295DC87DC> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff80294000 - 0x7fff802b5fff libresolv.9.dylib ??? (???) <01C7C750-7F6A-89B3-C586-5C50A839019E> /usr/lib/libresolv.9.dylib
    0x7fff802b6000 - 0x7fff802bcff7 com.apple.DiskArbitration 2.3 (2.3) <857F6E43-1EF4-7D53-351B-10DE0A8F992A> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x7fff802bd000 - 0x7fff804f7fff com.apple.AddressBook.framework 5.0.1 (864) <4FA65C25-3F4F-6D79-1901-07FF6BBAAEDB> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff804f8000 - 0x7fff8050efff com.apple.ImageCapture 6.0 (6.0) <5B5AF8FB-C12A-B51F-94FC-3EC4698E818E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7fff8050f000 - 0x7fff80576fef com.apple.AppleVAFramework 4.7.5 (4.7.5) <68D4E82B-7D55-A963-FF0B-80F276C1F2DE> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x7fff805b6000 - 0x7fff805c3ff7 com.apple.AppleFSCompression 1.0 (1.0) <06099990-D14E-CBD3-8E6A-23905A3B4A48> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff805c4000 - 0x7fff805e8ff7 com.apple.CoreVideo 1.6.0 (43.1) <FF310442-03F4-648D-4CD2-D7AC459901D5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff805e9000 - 0x7fff8069ffff libobjc.A.dylib ??? (???) <F206BE6D-8777-AE6C-B367-7BEA76C14241> /usr/lib/libobjc.A.dylib
    0x7fff806a0000 - 0x7fff806affef com.apple.opengl 1.6.5 (1.6.5) <30D6B03B-4B4C-1F78-1FDB-0403E7FE8707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff80791000 - 0x7fff808fdff7 com.apple.QTKit 7.6.3 (1591.3) <2AD2AC43-F6A8-F2CE-CCFE-9E8E38E47BB0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x7fff809b3000 - 0x7fff809b8fff libGIF.dylib ??? (???) <9DB87A71-27B7-A909-461B-F886DB2BD622> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x7fff809b9000 - 0x7fff809d7fff libPng.dylib ??? (???) <7635B74B-5415-9767-A881-E0B017F62376> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff809d8000 - 0x7fff809f3fff com.apple.datadetectors 2.0 (102.0) <D3E026E9-C12A-88ED-25FC-7A58E435AB02> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x7fff809f4000 - 0x7fff80a3efef com.apple.IMCore 5.0.1 (744) <32F01A93-564E-4A0A-7A59-76DB29E054A0> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0x7fff80a41000 - 0x7fff80a61ff7 com.apple.DirectoryService.Framework 3.6 (621.1) <FC0C2E15-84E2-B4A8-18EE-3AE620111627> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7fff80a62000 - 0x7fff80a67ff7 com.apple.CommonPanels 1.2.4 (91) <4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7fff80a68000 - 0x7fff8145cfff com.apple.AppKit 6.6.3 (1038.25) <2F7A5AC8-29E7-9B5F-D3F1-4C7F5821BB80> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff8145d000 - 0x7fff8157efe7 libcrypto.0.9.8.dylib ??? (???) <32F2A87F-B146-BBF2-3AD1-494C686F1EE3> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8157f000 - 0x7fff81590fef libz.1.dylib ??? (???) <3A7A4C48-A4C8-A78A-8B87-C0DDF6601AC8> /usr/lib/libz.1.dylib
    0x7fff81591000 - 0x7fff81591ff7 com.apple.quartzframework 1.5 (1.5) <B182B579-BCCE-81BF-8DA2-9E0B7BDF8516> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7fff81592000 - 0x7fff81614fe7 com.apple.QuickLookUIFramework 2.1 (327.3) <A35335F3-BC7B-1341-D934-45ACC19FFEC3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff8164b000 - 0x7fff81686fe7 com.apple.CoreMedia 0.420.18 (420.18) <30166EED-C905-A818-9C3C-32E4EEA20995> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x7fff81687000 - 0x7fff81692ff7 com.apple.HelpData 2.0.4 (34) <B44D2E2A-BC1E-CD63-F8A1-C9465491693A> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x7fff81693000 - 0x7fff81851fff libicucore.A.dylib ??? (???) <5BD16988-545F-6A8C-9A6F-FB18ACDCAEC2> /usr/lib/libicucore.A.dylib
    0x7fff81852000 - 0x7fff8185aff7 com.apple.NSServerNotificationCenter 2 (1.0) <0F9B07B8-D9F9-A55D-AB60-9CC3533D77F8> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x7fff8185b000 - 0x7fff81bf3fff com.apple.QuartzCore 1.6.1 (227.8) <E296B174-F7CB-F021-D103-091CCB33BBEB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x7fff81bf4000 - 0x7fff81c2fff7 com.apple.CoreMediaIOServices 124.0 (850) <B71C361C-105E-EDD2-5AEE-10E640445561> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x7fff81c30000 - 0x7fff81cbcfef SecurityFoundation ??? (???) <B69E2FF9-A698-4923-BC8B-180224B6EF75> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7fff81cbd000 - 0x7fff81ce0ff7 com.apple.iChat.IMFoundation 5.0.1 (744) <C06AE6AC-F5F3-EC30-426A-0C9C81658B56> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0x7fff81ce1000 - 0x7fff81f4afff com.apple.QuartzComposer 4.1 (156.10) <F5569DC9-15E9-0815-3032-7E1257F36A3E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x7fff81f4b000 - 0x7fff81f5dfe7 libsasl2.2.dylib ??? (???) <76B83C8D-8EFE-4467-0F75-275648AFED97> /usr/lib/libsasl2.2.dylib
    0x7fff82059000 - 0x7fff82072fff com.apple.CFOpenDirectory 10.6 (10.6) <0F46E102-8B8E-0995-BA85-3D9608F0A30C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff82073000 - 0x7fff820f0fef libstdc++.6.dylib ??? (???) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    0x7fff820f1000 - 0x7fff8212cff7 com.apple.AE 496.1 (496.1) <27D2D2E9-B309-7E65-8C3F-7FF01148F0DE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff8212d000 - 0x7fff8224bff7 com.apple.PubSub 1.0.4 (65.11) <C1D56F85-7553-FB97-2A31-35CEB2BB8B63> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x7fff8224c000 - 0x7fff8225bfff com.apple.NetFS 3.2.1 (3.2.1) <FF21DB1E-F425-1005-FB70-BC19CAF4006E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8225c000 - 0x7fff8225dfff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <5062DACE-FCE7-8E41-F5F6-58821778629C> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x7fff8225e000 - 0x7fff82590fef com.apple.CoreServices.CarbonCore 861.2 (861.2) <39F3B259-AC2A-792B-ECFE-4F3E72F2D1A5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff82591000 - 0x7fff825a2fff com.apple.DSObjCWrappers.Framework 10.6 (134) <3C08225D-517E-2822-6152-F6EB13A4ADF9> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7fff825a3000 - 0x7fff82687fff com.apple.DesktopServices 1.5.3 (1.5.3) <F443ED58-3761-116F-A8B2-C6DC29B7D119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff82688000 - 0x7fff826bdfff libGLImage.dylib ??? (???) <8AB3A26A-4CC4-4E6D-95CC-530FD7204599> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff826be000 - 0x7fff82732ff7 com.apple.WhitePagesFramework 10.6.0 (140.0) <546E204C-AC7A-030C-DC32-125A3E422FB5> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x7fff82733000 - 0x7fff82733ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <E517A811-E0E6-89D0-F397-66122C7A25A4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff82734000 - 0x7fff8277afe7 libvDSP.dylib ??? (???) <2DAA1591-8AE8-B411-7D01-68DE99C63CEE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x7fff8277b000 - 0x7fff82786fff com.apple.dotMacLegacy 3.2 (266) <80F00DE2-4C50-0FD9-5C6E-3EAA1599277B> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x7fff829c4000 - 0x7fff829c4ff7 com.apple.Carbon 150 (152) <8D8CF535-90BE-691C-EC1B-63FBE2162C9B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x7fff829c5000 - 0x7fff82a09fef com.apple.ImageCaptureCore 1.0 (1.0) <29A6CF83-B5C2-9730-D71D-825AEC8657F5> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff82a0a000 - 0x7fff82a90ff3 com.apple.iLifeMediaBrowser 2.1.5 (368) <BC6090D5-47FD-882D-1123-BA40CB821481> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x7fff82a91000 - 0x7fff82adbff7 com.apple.Metadata 10.6.2 (507.4) <A28A5E0C-DCDC-A5CE-4EB7-39752E63956A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x7fff82adc000 - 0x7fff83519fe7 com.apple.WebCore 6531.21 (6531.21.8) <04C92586-679B-00A5-E3BE-590A0E9BCB11> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff8351a000 - 0x7fff8351eff7 libmathCommon.A.dylib ??? (???) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x7fff8355f000 - 0x7fff83639ff7 com.apple.vImage 4.0 (4.0) <354F34BF-B221-A3C9-2CA7-9BE5E14AD5AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x7fff8363a000 - 0x7fff836eeff7 com.apple.ColorSync 4.6.2 (4.6.2) <78A86D96-7758-6BFE-7231-A0C70F185FDD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff836ef000 - 0x7fff83a2dfef com.apple.MessageFramework 4.2 (1077) <32F00E54-E6C4-0511-EBE4-DDC7DE1CB474> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x7fff83a2e000 - 0x7fff83a2eff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <BA861575-B0DE-50F5-A799-BDF188A3D4EF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x7fff83a2f000 - 0x7fff83cb0fe7 com.apple.Foundation 6.6.1 (751.14) <767349DB-C486-70E8-7970-F13DB4CDAF37> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x7fff83cb1000 - 0x7fff83cc4fff libGL.dylib ??? (???) <5F9DAF5F-C25C-B6C2-C9BC-3D91D723FD85> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7fff83cc5000 - 0x7fff83dcafe7 libGLProgrammability.dylib ??? (???) <50498DA4-A2D6-260E-5C6E-994AF9BBDB98> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x7fff83dcb000 - 0x7fff83e80fe7 com.apple.ink.framework 1.3.1 (105) <5AA00FE5-B251-44AF-5108-44AA927C053C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff83e81000 - 0x7fff83e9cff7 com.apple.openscripting 1.3.1 (???) <FD46A0FE-AC79-3EF7-AB4F-396D376DDE71> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff83e9d000 - 0x7fff83efdfff com.apple.ExchangeWebServices 1.1 (56) <76BE6B3A-45B7-0FD3-CE9F-A0616C79B26E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x7fff83efe000 - 0x7fff83f68fe7 libvMisc.dylib ??? (???) <524DC30F-6A54-CCED-56D9-F57033B06E99> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff83f6e000 - 0x7fff83f6fff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <98969AA3-2394-34B5-2DC3-7F4187E96D26> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff83f70000 - 0x7fff83f71fff liblangid.dylib ??? (???) <EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
    0x7fff83f72000 - 0x7fff84270fe7 com.apple.HIToolbox 1.6.2 (???) <D463A388-244E-047A-E49A-4DA6C15BD1BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff84271000 - 0x7fff8430bfff com.apple.ApplicationServices.ATS 4.1 (???) <E2A107C5-0230-265A-E40D-CFE0219C99E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x7fff8430c000 - 0x7fff8433dfef libTrueTypeScaler.dylib ??? (???) <8291D9BB-97B2-AD06-D565-58A14A20D617> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x7fff8433e000 - 0x7fff8437bfff com.apple.LDAPFramework 2.0 (120.1) <05A853F5-76B9-AF27-6548-A2450AE86451> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff8437c000 - 0x7fff84380ff7 libCGXType.A.dylib ??? (???) <E11B4D25-2251-4646-118C-87BD4C57A194> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x7fff84381000 - 0x7fff843d0fff com.apple.iCalendar 1.0.1 (51) <6A991ED8-2A03-8FEC-85FF-5DDFDF18D8E3> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x7fff843d1000 - 0x7fff8449dfff com.apple.CFNetwork 454.5 (454.5) <319C7138-2839-DA5E-413A-618248BD4A32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x7fff8449e000 - 0x7fff844b6fff com.apple.iChat.InstantMessage 5.0.1 (744) <0D312A5A-78EA-AD6C-9492-C822F3DD1D03> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x7fff844e7000 - 0x7fff84533fff libauto.dylib ??? (???) <072804DF-36AD-2DBE-7EF8-639CFB79077F> /usr/lib/libauto.dylib
    0x7fff84534000 - 0x7fff845b3fff com.apple.audio.CoreAudio 3.2.2 (3.2.2) <2633DFAC-F6A6-489D-8DF0-F12639CCD8C4> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff845b4000 - 0x7fff84609fef com.apple.framework.familycontrols 2.0 (2.0) <8DD78DC7-4C73-EDE6-86A4-BC35B335ED5F> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x7fff8460a000 - 0x7fff8463afef com.apple.shortcut 1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x7fff8463b000 - 0x7fff84664ff7 com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <2D3B7CF8-DA92-F25D-F2E2-D17C7D7F46E5> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0x7fff84665000 - 0x7fff8477cfef libxml2.2.dylib ??? (???) <EE067D7E-15B3-F043-6FBD-10BA31FE76C7> /usr/lib/libxml2.2.dylib
    0x7fff8477d000 - 0x7fff847ccfef libTIFF.dylib ??? (???) <796A1E6E-09B0-64F4-35F7-2ACEE9C2B429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff848c6000 - 0x7fff848d2fef libbz2.1.0.dylib ??? (???) <4AA81AA7-DF37-6430-07D1-F59F37AEC357> /usr/lib/libbz2.1.0.dylib
    0x7fff848d3000 - 0x7fff848dbfff com.apple.iChat.IMUtils 5.0.1 (744) <A2956C75-C9E3-D609-17F2-A40D3BA2BD6C> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0x7fff848dc000 - 0x7fff8498bfff edu.mit.Kerberos 6.5.9 (6.5.9) <42364D54-C647-14DE-2B1C-D94DAA03F092> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8498c000 - 0x7fff849a2fef libbsm.0.dylib ??? (???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
    0x7fff849fc000 - 0x7fff84a0fff7 com.apple.syncservices.syncservicesui 5.1 (578) <E103A7E4-EAD3-53F4-601A-E854870469FF> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0x7fff84a10000 - 0x7fff84b34fe7 com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <466C5725-8311-41F1-1653-EB5C80644ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff84b35000 - 0x7fff84ba7fef com.apple.CoreSymbolication 2.0 (23) <06F8561E-4B36-7BF6-31BA-64091B3D8058> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff84ba8000 - 0x7fff84febfef libLAPACK.dylib ??? (???) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7fff85155000 - 0x7fff8519fff7 com.apple.DAVKit 4.0.1 (730) <57B9EB89-C7A4-1F7B-4B09-0873CC557555> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0x7fff851a0000 - 0x7fff851a0ff7 com.apple.vecLib 3.5 (vecLib 3.5) <5B072584-9579-F54F-180E-5D425B37E85C> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x7fff851a1000 - 0x7fff851b6ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <E83DAF4F-F284-BE0B-3D9D-D573023098B4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x7fff851b7000 - 0x7fff85213fff libGLU.dylib ??? (???) <6A6612BC-1AF9-08EC-80B2-B697238EED47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff85214000 - 0x7fff8521bfff com.apple.OpenDirectory 10.6 (10.6) <72A65D76-7831-D31E-F1B3-9E48BF26A98B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff8521c000 - 0x7fff85279fef com.apple.framework.IOKit 2.0 (???) <EBBEED67-D5BE-5F7F-96F4-9023BBA1B913> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x7fff8527a000 - 0x7fff8527aff7 com.apple.Cocoa 6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff8527b000 - 0x7fff852aaff7 com.apple.quartzfilters 1.6.0 (1.6.0) <9CECB4FC-1CCF-B8A2-B935-5888B21CBEEF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff852ab000 - 0x7fff8533afff com.apple.PDFKit 2.5 (2.5) <7849E675-4289-6FEA-E314-063E91A4B07F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8543c000 - 0x7fff854f5fff libsqlite3.dylib ??? (???) <5A15E12A-AE8F-1A36-BBC7-564E7D7AD0FB> /usr/lib/libsqlite3.dylib
    0x7fff854f6000 - 0x7fff8551cfe7 libJPEG.dylib ??? (???) <89DFAA03-2801-BB31-1F4D-1AE0804E08BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8551d000 - 0x7fff8559afe7 com.apple.CoreText 3.1.0 (???) <B4BFF82D-CA77-9A8E-2C7E-66367E807C7C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x7fff8559b000 - 0x7fff85c8f537 com.apple.CoreGraphics 1.536.12 (???) <0DCA088B-0C6B-146F-0341-9E0212B5CA50> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff85c90000 - 0x7fff85cd7ff7 com.apple.coreui 2 (113) <60D2FE5C-8470-A0F4-379B-1E90FBD4FE7D> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x7fff85cd8000 - 0x7fff85cdafff com.apple.print.framework.Print 6.0 (237) <70DA9755-5DC1-716B-77E2-E42C5DAB85A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x7fff85cdb000 - 0x7fff85d58fef com.apple.backup.framework 1.2 (1.2) <E3635A09-6221-71CE-6083-6025CE478634> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7fff85d80000 - 0x7fff85dc9ff7 com.apple.securityinterface 4.0.1 (37214) <F8F2D8F4-861F-6694-58F6-3DC55C9DBF50> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7fff85dca000 - 0x7fff85dd0ff7 IOSurface ??? (???) <8E0EE904-59D1-9AA0-CE55-B1777F4BAEC1> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff85dd1000 - 0x7fff85e4cff7 com.apple.ISSupport 1.9.2 (50) <09D926B6-BBF7-7E15-2978-D0C4D933543D> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x7fff85e4d000 - 0x7fff85e4ffff libRadiance.dylib ??? (???) <376EAE92-8F25-9202-CC35-8EED5BD471FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x7fff85e50000 - 0x7fff85e56fff com.apple.AOSNotification 1.1.0 (123.3) <9436ED02-186A-E6CC-E594-31E3942A5898> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x7fff85e57000 - 0x7fff85e64fe7 libCSync.A.dylib ??? (???) <F4066C8C-2A3E-4F2F-9F4D-03DB56F7C5CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x7fff85e65000 - 0x7fff85f21ff7 com.apple.CoreServices.OSServices 352 (352) <CD933BBD-B260-552F-E64E-291D6ED3091A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x7fff85f38000 - 0x7fff86118fff com.apple.CalendarStore 4.0.1 (973) <5A6D8FC7-F5C7-4FCA-FB31-7EB186EBC790> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x7fff86119000 - 0x7fff86156fef libFontRegistry.dylib ??? (???) <8712832A-A980-3AAF-0D88-50164898F38E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff86157000 - 0x7fff862b6ff7 com.apple.syncservices 5.1 (578) <17B2B8E1-EFEE-B0F5-3FFF-27A88ACFB467> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x7fff862b7000 - 0x7fff862c5ff7 libkxld.dylib ??? (???) <568C35E7-B101-3F1E-0361-3E1E9F15C90B> /usr/lib/system/libkxld.dylib
    0x7fff862c6000 - 0x7fff862eefff com.apple.DictionaryServices 1.1.1 (1.1.1) <9FD709FC-23F0-F270-EAC1-C590CD516A36> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x7fff864db000 - 0x7fff86510ff7 libcups.2.dylib ??? (???) <B7854E3A-784F-5033-1A47-CF2AE40C5855> /usr/lib/libcups.2.dylib
    0x7fff86511000 - 0x7fff86554fff libtidy.A.dylib ??? (???) <8AF4DB3A-7BDB-7AF7-0E9C-413BBBD0E380> /usr/lib/libtidy.A.dylib
    0x7fff86555000 - 0x7fff8655cff7 com.apple.KerberosHelper 2.1 (1.0) <CAE238A0-1DEC-421D-EE11-36AE9E67C8DC> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x7fff8655d000 - 0x7fff865bffe7 com.apple.datadetectorscore 2.0 (80.7) <F9D2332D-0890-2ED2-1AC8-F85CB89D8BD4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x7fff865c0000 - 0x7fff8660fff7 com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <14FD0978-4BE0-336B-A19E-F388694583EB> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7fff86610000 - 0x7fff867cafef com.apple.ImageIO.framework 3.0.1 (3.0.1) <10202E28-34DD-71CA-BE5D-1BE5C8DE2198> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x7fff867cb000 - 0x7fff867e1ff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <2BBD800A-0456-D90D-3205-8CE61F3A8F05> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x7fff867e2000 - 0x7fff86920fff com.apple.CoreData 102.1 (250) <8DDA49A1-F78C-DE30-8B58-EBC49E4E7ABF> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff869f9000 - 0x7fff86b6cff7 com.apple.CoreFoundation 6.6.1 (550.13) <1E952BD9-37C6-16BE-B2F0-CD92A6283D37> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff86b6d000 - 0x7fff87065ff7 com.apple.VideoToolbox 0.420.18 (420.18) <428CE263-C02B-421D-7772-FC73EFF180A3> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x7fff87075000 - 0x7fff87075ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff87076000 - 0x7fff87081ff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <F0DDF27E-DB55-07CE-E548-C62095BE8167> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x7fff87082000 - 0x7fff870d3fe7 com.apple.HIServices 1.8.0 (???) <113EEB8A-8EC6-9F86-EF46-4BA5C2CBF77C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x7fff870d4000 - 0x7fff870d4ff7 com.apple.CoreServices 44 (44) <210A4C56-BECB-E3E4-B6EE-7EC53E02265D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff870d5000 - 0x7fff87213ff7 com.apple.WebKit 6531.21 (6531.21.8) <1B786776-E9EA-3B88-D9EE-618BC4CCD7B4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x7fff87214000 - 0x7fff87255fef com.apple.QD 3.33 (???) <3F528878-21F5-B2B5-8A9B-DF067BF91922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff87256000 - 0x7fff87259ff7 com.apple.securityhi 4.0 (36638) <77F40B57-2D97-7AE5-1331-8945C71DFB57> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7fff8727d000 - 0x7fff87348fe7 ColorSyncDeprecated.dylib ??? (???) <1D97E664-75D3-E483-FDD3-35BD7733DF13> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x7fff87349000 - 0x7fff8736bff7 com.apple.opencl 12 (12) <533D6753-D6E4-EC34-E93B-8F6498B50FBA> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff873da000 - 0x7fff87414fff libssl.0.9.8.dylib ??? (???) <0714FA32-C193-CD96-80D1-6FCF06A0ED2E> /usr/lib/libssl.0.9.8.dylib
    0x7fff87415000 - 0x7fff87c1ffe7 libBLAS.dylib ??? (???) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x7fff87c20000 - 0x7fff87c88ff7 com.apple.MeshKitRuntime 1.0 (49.0) <580F1945-540B-1E68-0341-A6ADAD78397E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x7fff87c89000 - 0x7fff87cccff7 libRIP.A.dylib ??? (???) <9CA0768E-C2DF-61FD-F475-DB48F4219B49> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x7fff87ccd000 - 0x7fff87f07ff7 com.apple.imageKit 2.0.1 (1.0) <5E32976B-5CEB-6316-2B5C-2ABFEF588E4F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff87f08000 - 0x7fff87f5ffff com.apple.Symbolication 1.1 (67) <73B6FC15-9E05-69E2-2955-14F82F9BC337> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x7fff87f60000 - 0x7fff87ff0fff com.apple.SearchKit 1.3.0 (1.3.0) <4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff87ff1000 - 0x7fff88038fef com.apple.QuickLookFramework 2.1 (327.3) <6B3D79C5-E19B-97E1-673F-74731A0B188B> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff88049000 - 0x7fff88082ff7 com.apple.MeshKit 1.0 (49.0) <7587A7F2-DF5D-B8B2-A6A8-1389CF28BC51> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x7fff8808f000 - 0x7fff880baff7 libxslt.1.dylib ??? (???) <87A0B228-B24A-C426-C3FB-B40D7258DD49> /usr/lib/libxslt.1.dylib
    0x7fff880bb000 - 0x7fff8813ffe7 com.apple.print.framework.PrintCore 6.1 (312.3) <33C0EADA-243E-1897-335D-17C5DC6A14A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff88140000 - 0x7fff883c5fe7 com.apple.security 6.1.1 (37594) <E5DA8BFD-4A48-EFD4-E938-3BDFB356A8AF> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff883cc000 - 0x7fff884d5fff com.apple.MediaToolbox 0.420.18 (420.18) <0A2444E8-DA72-7DC8-084F-D78D28E5C74F> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x7fff88506000 - 0x7fff886c4ff7 libSystem.B.dylib ??? (???) <526DD3E5-2A8B-4512-ED97-01B832369959> /usr/lib/libSystem.B.dylib
    0x7fff88703000 - 0x7fff88706ff7 libCoreVMClient.dylib ??? (???) <1C6D04BA-5F78-CC4D-26CB-7904919042B9> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff88707000 - 0x7fff887a7fff com.apple.LaunchServices 362 (362) <CCBFC037-7162-E392-B11F-90098891AE20> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x7fff887a8000 - 0x7fff887bcff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <621B7415-A0B9-07A7-F313-36BEEDD7B132> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff887bd000 - 0x7fff888c7ff7 com.apple.MeshKitIO 1.0 (49.0) <66600E25-66F9-D31A-EA47-E81518FF6DDA> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x7fff888c8000 - 0x7fff88a4dfef com.apple.JavaScriptCore 6531.21 (6531.21.9) <FB6CF9E3-A3B1-8C45-1D91-756679DE36FB> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x7fff88a69000 - 0x7fff88a6bfef com.apple.ExceptionHandling 1.5 (10) <F2867B93-A56A-974F-9556-266BCE394057> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x7fff88a89000 - 0x7fff88af5ff7 com.apple.CorePDF 1.1 (1.1) <3D51A551-50C5-DDD5-9A79-9679DA2806B0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff88af6000 - 0x7fff88bb2ff7 libFontParser.dylib ??? (???) <99DEA723-9D02-2361-E3C7-034E25C5B829> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <526DD3E5-2A8B-4512-ED97-01B832369959> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW GS23N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

    Create a New User Account, and as that New User try to set up this one account -- if POP set to leave messages on the server after download. If not familiar with setting up a New User Account, see:
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8235.html
    This will be a useful test, and it not meant to suggest a permanent switch to the New User Account, but rather a test of the Mail application outside of your normal User Account.
    Ernie

  • I can't seem to decide between the 13" or the 15" MacBook Pro. I had a 14.5 in Dell which crashed on me for the third and last time. It was also my primary home computer. Is the 15" necessary or should I just get the 13"?

    I can't seem to decide between the 13" or the 15" MacBook Pro. I had a 14.5" I'm just used to that size. Dell which crashed on me for the third and last time. It was also my primary home computer. Is the 15" necessary or should I just get the 13"? I probably won't be doing any graphics or anything like that.

    It is really a matter of your personal preference. You have to choose between the extra carrying convenience of the smaller machine and the greater "real estate" of the bigger. I use a 15", and have not found it inconvenient for carrying, even on aircraft, where it has to share backpack space with an SLR camera and assorted lenses.

  • Final Cut Server for still photo database?

    I know that FCS was intended to be use for video production database, but I have heard it could be applied to other database uses, such as a digital photo database. I haven't seen or heard of anyone doing this, but our unit is looking to replace our current database software (Cumulus) with a more user-friendly application. Our unit is a university support office with both video and digital still photography. Our current still image database is over 100,000 files. Has anyone used FCS for this type of database application?

    We are currently using it as a Photo/Video database.
    I've only put about 3000 images/clips in there so far
    but it seems to be working well.
    We are running it on a old Quad G5 and have some
    custom conversions set up for adding images and
    videos.
    Our Web team can take our videos and in two clicks
    have a WMV and FLV video for their sites and then
    select a few images and do a quick convert to web
    sized imges..all within FCS
    It would be nice to see a open architecture with plugin support
    and more file compatibility, but for now it works great
    as a database for images and video.

  • ITunes crashes on launch for all but one user

    iTunes works fine for me (main user), but it crashes for any other user. I've tried deleting and creating new accounts, but no matter what I do iTunes crashes on launch for any user but me. Here's the crash report:
    Date/Time: 2007-08-12 13:09:51.731 -0400
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: iTunes
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Parent: WindowServer [93]
    Version: 7.3.2 (7.3.2)
    Build Version: 2
    Project Name: iTunes
    Source Version: 7320601
    PID: 340
    Thread: 0
    Exception: EXCBADINSTRUCTION (0x0002)
    Code[0]: 0x00000002
    Code[1]: 0x9980516c
    Thread 0 Crashed:
    0 com.apple.applescript 0x9980516c classifyobject_overfdes + 0
    1 com.apple.applescript 0x99804838 search_object + 40
    2 com.apple.applescript 0x99804d90 examine_objects + 300
    3 com.apple.applescript 0x99804660 Unwind_FindFDE + 148
    4 com.apple.applescript 0x998044c8 uwframe_statefor + 68
    5 com.apple.applescript 0x99804440 uwinit_context1 + 64
    6 com.apple.applescript 0x9980421c UnwindRaiseException + 52
    7 com.apple.applescript 0x998040e0 _cxathrow + 136
    8 com.apple.applescript 0x997fa684 TASParser::Parse(TTerminology*, TUASValue*, char const*, unsigned long) + 1184
    9 com.apple.applescript 0x997f3654 ASCompile(AEDesc const*, long, unsigned long*) + 524
    10 com.apple.applescript 0x997f3408 ASCompileExecute(AEDesc const*, unsigned long, long, unsigned long*) + 72
    11 ...ple.CoreServices.CarbonCore 0x90bdc090 CallComponentFunctionCommon + 1112
    12 com.apple.applescript 0x997e9418 AppleScriptComponent + 1712
    13 ...ple.CoreServices.CarbonCore 0x90bdbbd4 CallComponent + 260
    14 com.apple.applescript 0x997e8694 AGenericManager::HandleOSACall(ComponentParameters*) + 72
    15 com.apple.applescript 0x997e82e4 GenericComponent + 216
    16 ...ple.CoreServices.CarbonCore 0x90bdbbd4 CallComponent + 260
    17 com.apple.openscripting 0x930d7bc4 OSACompileExecute + 52
    18 com.apple.iTunes 0x002f6e58 0x1000 + 3104344
    19 com.apple.iTunes 0x002f726c 0x1000 + 3105388
    20 com.apple.iTunes 0x0025b8a4 0x1000 + 2468004
    21 com.apple.iTunes 0x00249f90 0x1000 + 2396048
    22 com.apple.CoreFoundation 0x907f1578 __CFRunLoopDoTimer + 184
    23 com.apple.CoreFoundation 0x907ddef8 __CFRunLoopRun + 1680
    24 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    25 com.apple.HIToolbox 0x9329bb20 RunCurrentEventLoopInMode + 264
    26 com.apple.HIToolbox 0x9338048c GetNextEventMatchingMask + 400
    27 com.apple.HIToolbox 0x93380238 WNEInternal + 152
    28 com.apple.HIToolbox 0x9338018c WaitNextEvent + 76
    29 com.apple.iTunes 0x001a5180 0x1000 + 1720704
    30 com.apple.iTunes 0x0024a43c 0x1000 + 2397244
    31 com.apple.iTunes 0x0024aed0 0x1000 + 2399952
    32 com.apple.iTunes 0x0003be20 0x1000 + 241184
    33 com.apple.iTunes 0x0024b58c 0x1000 + 2401676
    34 com.apple.iTunes 0x0000a25c 0x1000 + 37468
    35 com.apple.iTunes 0x00009f60 0x1000 + 36704
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.unsanity.ape 0xc0002afc _apeinternal + 3300 (icplusplus.c:28)
    3 com.unsanity.ape 0xc0001910 _apeagent + 64 (icplusplus.c:28)
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145763c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914573dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.iTunes 0x00232658 0x1000 + 2299480
    3 com.apple.iTunes 0x0031f16c 0x1000 + 3268972
    4 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f0434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90befdc8 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x90be5a30 YieldToThread + 372
    4 ...ple.CoreServices.CarbonCore 0x90be58ac YieldToAnyThread + 20
    5 com.apple.iTunes 0x0025b710 0x1000 + 2467600
    6 com.apple.iTunes 0x00233244 0x1000 + 2302532
    7 com.apple.iTunes 0x0017936c 0x1000 + 1540972
    8 com.apple.iTunes 0x0017dbb8 0x1000 + 1559480
    9 com.apple.iTunes 0x0017e0cc 0x1000 + 1560780
    10 com.apple.iTunes 0x0017e59c 0x1000 + 1562012
    11 com.apple.iTunes 0x0017e6d0 0x1000 + 1562320
    12 com.apple.iTunes 0x0017ed84 0x1000 + 1564036
    13 com.apple.iTunes 0x0017f93c 0x1000 + 1567036
    14 com.apple.iTunes 0x001824d8 0x1000 + 1578200
    15 com.apple.iTunes 0x001826b0 0x1000 + 1578672
    16 com.apple.iTunes 0x0025b258 0x1000 + 2466392
    17 ...ple.CoreServices.CarbonCore 0x90befe6c InvokeThreadEntryUPP + 24
    18 ...ple.CoreServices.CarbonCore 0x90befa8c CooperativeThread + 220
    19 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ec90c CFRunLoopRun + 52
    5 com.apple.iTunes 0x00219254 0x1000 + 2196052
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90befdc8 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x90be5a30 YieldToThread + 372
    4 ...ple.CoreServices.CarbonCore 0x90befd10 SetThreadState + 192
    5 com.apple.iTunes 0x00233218 0x1000 + 2302488
    6 com.apple.iTunes 0x00254a10 0x1000 + 2439696
    7 com.apple.iTunes 0x0025b258 0x1000 + 2466392
    8 ...ple.CoreServices.CarbonCore 0x90befe6c InvokeThreadEntryUPP + 24
    9 ...ple.CoreServices.CarbonCore 0x90befa8c CooperativeThread + 220
    10 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x000000009980516c srr1: 0x100000000208f030 vrsave: 0x0000000000000000
    cr: 0x28822224 xer: 0x0000000020000000 lr: 0x0000000099804f0c ctr: 0x0000000000000000
    r0: 0x0000000000000000 r1: 0x00000000bfffcd70 r2: 0x000000001fe00000 r3: 0x0000000001999d60
    r4: 0x00000000982020c8 r5: 0x0000000000000002 r6: 0x0000000000000007 r7: 0x0000000000000000
    r8: 0x0000000001a0333e r9: 0x0000000001999d80 r10: 0x0000000001a0133a r11: 0x0000000084824222
    r12: 0x0000000090129660 r13: 0x0000000000000000 r14: 0x0000000000000006 r15: 0x0000000000000002
    r16: 0x00000000bfffde36 r17: 0x00000000000000fa r18: 0x0000000000000002 r19: 0x0000000002502ffc
    r20: 0x0000000000000001 r21: 0x0000000007f23350 r22: 0x00000000024fc200 r23: 0x0000000099808be8
    r24: 0x000000009980421b r25: 0x0000000001999d60 r26: 0x0000000001999d60 r27: 0x0000000000000000
    r28: 0x0000000001999d60 r29: 0x0000000000000000 r30: 0x00000000982020c8 r31: 0x0000000099804ea8
    Binary Images Description:
    0x1000 - 0xa02fff com.apple.iTunes 7.3.2 /Applications/iTunes.app/Contents/MacOS/iTunes
    0xe05000 - 0xea3fff com.apple.iTunes.iPodUpdater 7.1 /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0x1c59000 - 0x1ccafff com.DivXInc.DivXDecoder 6.2.2 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1cd8000 - 0x1dfcfff com.elgato.mpegsupport EyeTV MPEG Support 1.0.4 (build 35) (1.0.4) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x1ec8000 - 0x1ee2fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1ee7000 - 0x1f60fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x4788000 - 0x4986fff net.telestream.wmv.import 2.1.1.70 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x49b5000 - 0x4b56fff net.telestream.wmv.advanced 2.1.1.70 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x4fec320 - 0x4fec3f0 CFMPriv_CarbonSound PEF binary: CFMPriv_CarbonSound
    0x4fec460 - 0x4fec533 CFMPriv_CommonPanels PEF binary: CFMPriv_CommonPanels
    0x4feca40 - 0x4fecab7 CFMPriv_System PEF binary: CFMPriv_System
    0x4fecd90 - 0x4fece42 CFMPriv_CoreFoundation PEF binary: CFMPriv_CoreFoundation
    0x4fed2e0 - 0x4fed39b CFMPriv_Help PEF binary: CFMPriv_Help
    0x4fed3a0 - 0x4fed46a CFMPriv_HIToolbox PEF binary: CFMPriv_HIToolbox
    0x4fed470 - 0x4fed546 CFMPriv_HTMLRendering PEF binary: CFMPriv_HTMLRendering
    0x4fefc80 - 0x4fefd53 CFMPriv_ImageCapture PEF binary: CFMPriv_ImageCapture
    0x4fefdd0 - 0x4fefeb5 CFMPriv_NavigationServices PEF binary: CFMPriv_NavigationServices
    0x4feff20 - 0x4fefff6 CFMPriv_OpenScriptingMacBLib PEF binary: CFMPriv_OpenScriptingMacBLib
    0x4ff00c0 - 0x4ff017e CFMPriv_Print PEF binary: CFMPriv_Print
    0x4ff0190 - 0x4ff025d CFMPriv_SecurityHI PEF binary: CFMPriv_SecurityHI
    0x4ff02d0 - 0x4ff03b2 CFMPriv_SpeechRecognition PEF binary: CFMPriv_SpeechRecognition
    0x4ff04d0 - 0x4ff05a3 CFMPriv_CarbonCore PEF binary: CFMPriv_CarbonCore
    0x4ff05b0 - 0x4ff0683 CFMPriv_OSServices PEF binary: CFMPriv_OSServices
    0x4ff0750 - 0x4ff0812 CFMPriv_AE PEF binary: CFMPriv_AE
    0x4ff0820 - 0x4ff08e5 CFMPriv_ATS PEF binary: CFMPriv_ATS
    0x4ff1180 - 0x4ff1257 CFMPriv_ColorSync PEF binary: CFMPriv_ColorSync
    0x4ff12d0 - 0x4ff13b3 CFMPriv_FindByContent PEF binary: CFMPriv_FindByContent
    0x4ff1420 - 0x4ff14fa CFMPriv_HIServices PEF binary: CFMPriv_HIServices
    0x4ff1560 - 0x4ff1640 CFMPriv_LangAnalysis PEF binary: CFMPriv_LangAnalysis
    0x4ff16c0 - 0x4ff17a6 CFMPriv_LaunchServices PEF binary: CFMPriv_LaunchServices
    0x4ff1870 - 0x4ff1947 CFMPriv_PrintCore PEF binary: CFMPriv_PrintCore
    0x4ff1950 - 0x4ff1a12 CFMPriv_QD PEF binary: CFMPriv_QD
    0x4ff1b00 - 0x4ff1be9 CFMPriv_SpeechSynthesis PEF binary: CFMPriv_SpeechSynthesis
    0x51c5000 - 0x51c7fff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6be2000 - 0x6be3fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x6dc3000 - 0x6ea1fff com.apple.audio.codecs.Components 1.4.9 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x7898000 - 0x7898fff com.apple.applescript.component 1.10.7 /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
    0x789b000 - 0x789bfff com.apple.osax.digihub 1.0 /System/Library/ScriptingAdditions/Digital Hub Scripting.osax/Contents/MacOS/Digital Hub Scripting
    0x7a39000 - 0x7a3a7b6 Adobe Unit Types PEF binary: Adobe Unit Types
    0x7a3c000 - 0x7a3efff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x7c69000 - 0x7c6cfff Adobe Unit Types a2.0.0 (2.0.0) /Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
    0x7cf1000 - 0x7d2efff com.apple.osax.standardadditions 1.10.7 (???) /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/Standa rdAdditions
    0x7d3c000 - 0x7d8b3c7 CarbonLibpwpc PEF binary: CarbonLibpwpc
    0x3c390000 - 0x3c3b4fff com.apple.mobiledevice 1.01 (1.0) /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x41410000 - 0x414affff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x41840000 - 0x41866fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x419b0000 - 0x419effff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x41a30000 - 0x41a35fff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x70000000 - 0x700fcfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b59fff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b6f000 - 0x90b81fff libauto.dylib /usr/lib/libauto.dylib
    0x90b88000 - 0x90e5ffff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec5000 - 0x90f45fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f8f000 - 0x90fd1fff com.apple.CFNetwork 4.0 (129.21) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe6000 - 0x90ffefff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100e000 - 0x9108ffff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d5000 - 0x910fffff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91110000 - 0x9111efff libz.1.dylib /usr/lib/libz.1.dylib
    0x91121000 - 0x912dcfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913db000 - 0x913e4fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913eb000 - 0x913f3fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f7000 - 0x9141ffff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91432000 - 0x9143dfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91442000 - 0x914bdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fa000 - 0x914fafff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fc000 - 0x91534fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9154f000 - 0x91621fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91674000 - 0x91705fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174c000 - 0x91803fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91840000 - 0x9189efff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918cd000 - 0x918f1fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91905000 - 0x9192afff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193d000 - 0x9197ffff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199b000 - 0x919affff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bd000 - 0x91a03fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1a000 - 0x91ae1fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2f000 - 0x91b44fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b49000 - 0x91b67fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6d000 - 0x91c24fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c73000 - 0x91c77fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c79000 - 0x91ce1fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce6000 - 0x91d23fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d2a000 - 0x91d43fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d48000 - 0x91d4bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4d000 - 0x91e2bfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e4b000 - 0x91e4bfff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4d000 - 0x91f32fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f3a000 - 0x91f59fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc5000 - 0x92033fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203e000 - 0x920d3fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920ed000 - 0x92675fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a8000 - 0x929d3fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a03000 - 0x92af1fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af4000 - 0x92b7cfff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbd000 - 0x92de8fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f06000 - 0x92f10fff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92f15000 - 0x92f33fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3e000 - 0x92f98fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb6000 - 0x92fb6fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb8000 - 0x92fccfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe4000 - 0x92ff4fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93000000 - 0x93015fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93027000 - 0x930aefff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c2000 - 0x930cdfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d7000 - 0x93104fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311e000 - 0x9312efff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9313a000 - 0x931a0fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931d1000 - 0x93220fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324e000 - 0x9326bfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327d000 - 0x9328afff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93293000 - 0x935a1fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936f1000 - 0x936fdfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93702000 - 0x93722fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93796000 - 0x937b6fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x937bc000 - 0x937bcfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937be000 - 0x93df1fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9417e000 - 0x941f0fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94229000 - 0x942edfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9433f000 - 0x9433ffff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94341000 - 0x94501fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9454b000 - 0x94588fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94590000 - 0x945e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945e9000 - 0x94603fff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x947ae000 - 0x947bdfff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947c5000 - 0x947d1fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94817000 - 0x9482ffff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94836000 - 0x94b55fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c39000 - 0x94caafff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94e1f000 - 0x94f4ffff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fe1000 - 0x94ff0fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94ff8000 - 0x95025fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9502c000 - 0x9503cfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x95040000 - 0x9506ffff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9507f000 - 0x9509cfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x9559a000 - 0x956c8fff edu.mit.Kerberos 5.5.25 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95bcf000 - 0x95c5dfff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95cb9000 - 0x95d4efff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95d8b000 - 0x96098fff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x96221000 - 0x9624afff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96252000 - 0x962cefff com.apple.syncservices 2.5 (194) /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x9663c000 - 0x96641fff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
    0x9728b000 - 0x97290fff com.apple.iPod 1.3 (13) /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0x976fb000 - 0x9771afff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97f20000 - 0x97f2dfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x981ed000 - 0x98203fff com.apple.AppleShareClient 1.5.2 /System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClie nt
    0x9820d000 - 0x9824bfff com.apple.AppleShareClientCore 1.5.2 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x997e7000 - 0x99891fff com.apple.applescript 1.10.7 /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
    0x99a2f000 - 0x9a5f5fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a84e000 - 0x9a852fff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9aada000 - 0x9aba7fff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9b67b000 - 0x9b681fff com.apple.ipodsynchronization 2.2 (36.0) /System/Library/PrivateFrameworks/iPodSync.framework/Versions/A/iPodSync
    0xc0000000 - 0xc000ffff com.unsanity.ape 1.5.1 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac8,2, BootROM 5.2.5f1, 1 processors, PowerPC G5 (3.0), 2 GHz, 2 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J4000, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J4001, 1 GB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: Maxtor 7Y250M0, 233.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-845
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: USB Receiver, Logitech, Up to 1.5 Mb/sec, 500 mA

    ShapeShifter is only installed on the account that doesn't crash. I tried disabling ApplicationEnhancer, and that didn't help. Maybe uninstalling ShapeShifter completely from the system would help.

  • You want to know the amount of space the transaction log for the Customer database is using. Which T-SQL command would you use?

    You want to know the amount of space the transaction log for the Customer database is using. Which T-SQL command would you use?

    Forced me to do a little research.
    DBCC SQLPERF(logspace)
    See also
    http://stackoverflow.com/questions/198343/how-can-i-get-the-size-of-the-transaction-log-in-sql-2005-programmatically
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

Maybe you are looking for

  • I can delete all photos except for one album where no trash can appears. How can I get rid of the album?

    I have an album of photos on my IPAD that I can not delete. It was imported from a camera card. I have managed to delete all other photos taken the same way but these appear to be stuck on the IPAD as no trash can icon appears. Also, my other photos

  • MSI-TI4800SE8X lack of support

    Dispite several pleas for help i got nowhere with msi on a solution with this card,my problem was the card was crashing and poor graphics,After trying other drivers from Nvidia i finally came close with drivers 4282,However i tried the new 4330 drive

  • Setting the buffer time on an flv

    My file displays an external flv using the flv component, no matter what I set the buffer to it still plays straight away. I want a 2 or 3 second pause while the video is loading before the movie plays - any ideas? gryllsie

  • CFL Return Values

    Hi, I have connected a CFL (Items) to a field by Screen Painter. But the values are not copied when I select an Item? Please help me How can I implement multiple values againt one item like itemcode,itemname,onhand qty Thank you for your time! Umer N

  • Can I save the audio from a MP4 video as an MP3

    HI all OK over the week end I needed to record some audio, all I had was my N70. I went to the voice recorder and found I could only record 1 minuet so I went to my video camera and found I could get an hours worth. well now I have 53 minuets of vide