Buffer_pool keep vs cache

Hi,
i've a 11.2 database.
I want to reduce Logical Reads of a table that has only 300 records and 5 blocks.
This table is used many times in full scan.
I know that the keep is a defined pool and the cache use the buffer cache default pool.
It preferred to put it in buffer keep or use the table cache option?
tnx

In general, a small table that is used a lot will automagically be kept in the buffer cache, so you don't have to do anything.
When you might consider doing something is if you have lots of thrashing in the buffer, so things are getting kicked out and having to be read back in, and you already have a large buffer. But even there, simply reducing logical reads may have a consequent effect of reducing the thrashing, even if it is simply because of fewer read consistent copies being created in the buffer. So in nearly all cases with SGA size at least in the ballpark, tune the sql first. The small table is likely to be the least of your worries. In general, better to let Oracle work out what's going on in the default buffer, rather than taking away some and giving to the keep buffer.
If you see this table being read into PGA (like a lot of direct reads), that might be a different issue.

Similar Messages

  • How to revert back from storage(buffer_pool keep) clause

    Hi,
    We have fired "alter TABLE APPLSYS.FND_CONCURRENT_PROGRAMS storage (buffer_pool keep);"
    But, now we dont want the specified table to be cached in keep pool. So, how to do the same ?
    Could anybody please suggest ?

    Like this.
    SQL> select BUFFER_POOL from user_tables where table_name = 'T1';
    BUFFER_
    DEFAULT
    SQL> alter table t1 storage(buffer_pool keep);
    Table altered.
    SQL> select BUFFER_POOL from user_tables where table_name = 'T1';
    BUFFER_
    KEEP
    SQL> alter table t1 storage(buffer_pool default);
    Table altered.
    SQL> select BUFFER_POOL from user_tables where table_name = 'T1';
    BUFFER_
    DEFAULT
    SQL>Asif Momen
    http://momendba.blogspot.com

  • BUFFER_POOL KEEP问题

    question from oracler:
    SYS@orcl>select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    TNS for 64-bit Windows: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    parameter set as :
    SYS@orcl>sho parameter cache_size
    NAME TYPE VALUE
    client_result_cache_size big integer 0
    db_16k_cache_size big integer 80M
    db_2k_cache_size big integer 0
    db_32k_cache_size big integer 0
    db_4k_cache_size big integer 0
    db_8k_cache_size big integer 0
    db_cache_size big integer 160M
    db_flash_cache_size big integer 0
    db_keep_cache_size big integer 128M
    db_recycle_cache_size big integer 0
    SYS@orcl>create table dna.t2 storage(buffer_pool keep) as select level id ,rpad('*',4000,'*') data from dual connect by
    level<=15000;
    表已创建。
    SYS@orcl>select count(*) from dna.t2;
    COUNT(*)
    15000
    SYS@orcl>set autotrace traceonly
    SYS@orcl>select count(*) from dna.t2;
    执行计划
    Plan hash value: 3321871023
    | Id | Operation | Name | Rows | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 4116 (1)| 00:00:50 |
    | 1 | SORT AGGREGATE | | 1 | | |
    | 2 | TABLE ACCESS FULL| T2 | 16126 | 4116 (1)| 00:00:50 |
    Note
    - dynamic sampling used for this statement (level=2)
    统计信息
    0 recursive calls
    0 db block gets
    15004 consistent gets
    15000 physical reads
    0 redo size
    528 bytes sent via SQL*Net to client
    519 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    SYS@orcl>select count(*) from dna.t2;
    执行计划
    Plan hash value: 3321871023
    | Id | Operation | Name | Rows | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 4116 (1)| 00:00:50 |
    | 1 | SORT AGGREGATE | | 1 | | |
    | 2 | TABLE ACCESS FULL| T2 | 16126 | 4116 (1)| 00:00:50 |
    Note
    - dynamic sampling used for this statement (level=2)
    统计信息
    0 recursive calls
    0 db block gets
    15004 consistent gets
    15000 physical reads
    0 redo size
    528 bytes sent via SQL*Net to client
    519 bytes received via SQL*Net from client
    2 SQL*Net roundtrips to/from client
    0 sorts (memory)
    0 sorts (disk)
    1 rows processed
    为什么会出现大量的physical reads现象,难道此存在于The KEEP buffer pool中的表,应该不会出现此现象?

    answered by maclean liu:
    SQL>
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    CORE    11.2.0.3.0      Production
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    SQL> show parameter db_keep
    NAME                                 TYPE                             VALUE
    db_keep_cache_size                   big integer                      128M
    SQL> create table maclean_tan2 storage(buffer_pool keep) as select level id ,rpad('*',4000,'*') data from dual connect by
      2  level<=15000;
    Table created.
    SQL>  select count(*) from maclean_tan2;
      COUNT(*)
         15000
    Execution Plan
    Plan hash value: 1229461046
    | Id  | Operation          | Name         | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |              |     1 |  4069   (1)| 00:00:49 |
    |   1 |  SORT AGGREGATE    |              |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| MACLEAN_TAN2 | 15476 |  4069   (1)| 00:00:49 |
    Note
       - dynamic sampling used for this statement (level=2)
    Statistics
              4  recursive calls
              0  db block gets
          15081  consistent gets
          15000  physical reads
              0  redo size
            527  bytes sent via SQL*Net to client
            523  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> select count(*) from maclean_tan2;
      COUNT(*)
         15000
    Execution Plan
    Plan hash value: 1229461046
    | Id  | Operation          | Name         | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |              |     1 |  4069   (1)| 00:00:49 |
    |   1 |  SORT AGGREGATE    |              |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| MACLEAN_TAN2 | 15476 |  4069   (1)| 00:00:49 |
    Note
       - dynamic sampling used for this statement (level=2)
    Statistics
              0  recursive calls
              0  db block gets
          15004  consistent gets
          15000  physical reads
              0  redo size
            527  bytes sent via SQL*Net to client
            523  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> alter session set events '10046 trace name context forever,level 8';
    Session altered.
    SQL> select count(*) from maclean_tan2;
      COUNT(*)
         15000
    SQL> oradebug setmypid;
    Statement processed.
    SQL> oradebug tracefile_name
    /s01/orabase/diag/rdbms/vprod/VPROD1/trace/VPROD1_ora_29876.trc        
    PARSING IN CURSOR #140118795641360 len=33 dep=0 uid=0 oct=3 lid=0 tim=1340511245212199 hv=486583032 ad='76883110' sqlid='drryzcwfh1ars'
    select count(*) from maclean_tan2
    END OF STMT
    PARSE #140118795641360:c=6000,e=35195,p=0,cr=77,cu=0,mis=1,r=0,dep=0,og=1,plh=1229461046,tim=1340511245212192
    EXEC #140118795641360:c=0,e=54,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=1229461046,tim=1340511245212328
    WAIT #140118795641360: nam='SQL*Net message to client' ela= 13 driver id=1650815232 #bytes=1 p3=0 obj#=79780 tim=1340511245212395
    WAIT #140118795641360: nam='asynch descriptor resize' ela= 11 outstanding #aio=0 current aio limit=235 new aio limit=265 obj#=79780 tim=1340511245214369
    WAIT #140118795641360: nam='direct path read' ela= 140 file number=1 first dba=200555 block cnt=1 obj#=79780 tim=1340511245276928
    WAIT #140118795641360: nam='direct path read' ela= 124 file number=1 first dba=200683 block cnt=1 obj#=79780 tim=1340511245294008
    WAIT #140118795641360: nam='direct path read' ela= 126 file number=1 first dba=201707 block cnt=1 obj#=79780 tim=1340511245425743
    WAIT #140118795641360: nam='direct path read' ela= 170 file number=1 first dba=201835 block cnt=1 obj#=79780 tim=1340511245454308
    WAIT #140118795641360: nam='direct path read' ela= 126 file number=1 first dba=201963 block cnt=1 obj#=79780 tim=1340511245472445
    WAIT #140118795641360: nam='direct path read' ela= 113 file number=1 first dba=202091 block cnt=1 obj#=79780 tim=1340511245488926
    WAIT #140118795641360: nam='direct path read' ela= 116 file number=1 first dba=202219 block cnt=1 obj#=79780 tim=1340511245505475
    WAIT #140118795641360: nam='direct path read' ela= 116 file number=1 first dba=202475 block cnt=1 obj#=79780 tim=1340511245539057
    WAIT #140118795641360: nam='direct path read' ela= 157 file number=1 first dba=202603 block cnt=1 obj#=79780 tim=1340511245556950
    WAIT #140118795641360: nam='direct path read' ela= 31 file number=1 first dba=202987 block cnt=1 obj#=79780 tim=1340511245608673
    WAIT #140118795641360: nam='direct path read' ela= 131 file number=1 first dba=203115 block cnt=1 obj#=79780 tim=1340511245624922
    WAIT #140118795641360: nam='direct path read' ela= 113 file number=1 first dba=203755 block cnt=1 obj#=79780 tim=1340511245706298
    WAIT #140118795641360: nam='direct path read' ela= 28 file number=1 first dba=203883 block cnt=1 obj#=79780 tim=1340511245722656
    WAIT #140118795641360: nam='direct path read' ela= 13 file number=1 first dba=204011 block cnt=1 obj#=79780 tim=1340511245738218
    WAIT #140118795641360: nam='direct path read' ela= 31 file number=1 first dba=204523 block cnt=1 obj#=79780 tim=1340511245801733
    direct path read  而非 db file scattered read
    11g new feature 对于大表 的FULL SCAN 可以直接采用 direct path read   读入PGA 而不经过 buffer cache
    ALTER SESSION SET EVENTS '10949 TRACE NAME CONTEXT FOREVER';
    10949 event 可以禁止 11g 的这种特性;
    [oracle@vrh1 ~]$ oerr ora 10949
    10949, 00000, "Disable autotune direct path read for full table scan"
    // *Cause:
    // *Action:  Disable autotune direct path read for serial full table scan.
    _small_table_threshold 设置为较大值  避免 optimizer 将这个表视为大表 buffer 被flush
    SQL>
    SQL> alter session set "_small_table_threshold"=999999;
    Session altered.
    SQL> ALTER SESSION SET EVENTS '10949 TRACE NAME CONTEXT FOREVER';
    Session altered.
    SQL> select count(*) from maclean_tan2;
      COUNT(*)
         15000
    SQL> set autotrace on;
    SQL> select count(*) from maclean_tan2;
      COUNT(*)
         15000
    Execution Plan
    Plan hash value: 1229461046
    | Id  | Operation          | Name         | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |              |     1 |  4069   (1)| 00:00:49 |
    |   1 |  SORT AGGREGATE    |              |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| MACLEAN_TAN2 | 15476 |  4069   (1)| 00:00:49 |
    Note
       - dynamic sampling used for this statement (level=2)
    Statistics
              0  recursive calls
              0  db block gets
          15011  consistent gets
              0  physical reads
              0  redo size
            527  bytes sent via SQL*Net to client
            523  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    SQL> select count(*) from maclean_tan2;
      COUNT(*)
         15000
    Execution Plan
    Plan hash value: 1229461046
    | Id  | Operation          | Name         | Rows  | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |              |     1 |  4069   (1)| 00:00:49 |
    |   1 |  SORT AGGREGATE    |              |     1 |            |          |
    |   2 |   TABLE ACCESS FULL| MACLEAN_TAN2 | 15476 |  4069   (1)| 00:00:49 |
    Note
       - dynamic sampling used for this statement (level=2)
    Statistics
              0  recursive calls
              0  db block gets
          15011  consistent gets
              0  physical reads
              0  redo size
            527  bytes sent via SQL*Net to client
            523  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    http://www.oracledatabase12g.com/archives/script-list-buffer-cache-details.html
    参考以上网址的脚本
    set pages 999
    set lines 92
    column c0 heading "Owner"                                    format a12
    column c1 heading "Object|Name"                              format a30
    column c2 heading "Object|Type"                              format a8
    column c3 heading "Number of|Blocks in|Buffer|Cache"         format 99,999,999
    column c4 heading "Percentage|of object|blocks in|Buffer"    format 999
    column c5 heading "Buffer|Pool"                              format a7
    column c6 heading "Block|Size"                               format 99,999
    select
       buffer_map.owner                                          c0,
       object_name                                       c1,
       case when object_type = 'TABLE PARTITION' then 'TAB PART'
            when object_type = 'INDEX PARTITION' then 'IDX PART'
            else object_type end c2,
       sum(num_blocks)                                     c3,
       (sum(num_blocks)/greatest(sum(blocks), .001))*100 c4,
       buffer_pool                                       c5,
       sum(bytes)/sum(blocks)                            c6
    from
       buffer_map,
       dba_segments s
    where
       s.segment_name = buffer_map.object_name
    and
       s.owner = buffer_map.owner
    and
       s.segment_type = buffer_map.object_type
    and
       nvl(s.partition_name,'-') = nvl(buffer_map.subobject_name,'-')
    group by
       buffer_map.owner,
       object_name,
       object_type,
       buffer_pool
    having
       sum(num_blocks) > 10
    order by
       sum(num_blocks) desc
                                                           Number of Percentage
                                                           Blocks in  of object
                 Object                         Object        Buffer  blocks in Buffer    Block
    Owner        Name                           Type           Cache     Buffer Pool       Size
    SYS          MACLEAN_TAN2                   TABLE         15,001         98 KEEP      8,192
    SYS          C_TOID_VERSION#                CLUSTER        1,765         57 DEFAULT   8,192
    SYS          C_OBJ#                         CLUSTER        1,428         93 DEFAULT   8,192
    SYS          OBJ$                           TABLE            931         91 DEFAULT   8,192
    SYS          I_OBJ2                         INDEX            760         99 DEFAULT   8,192
    SYS          C_FILE#_BLOCK#                 CLUSTER          198         77 DEFAULT   8,192
    SYS          I_FILE#_BLOCK#                 INDEX             40        100 DEFAULT   8,192
    SYS          I_OBJ1                         INDEX             37         14 DEFAULT   8,192
    SYS          INDPART$                       TABLE             16        100 DEFAULT   8,192
    SYS          I_HH_OBJ#_INTCOL#              INDEX             15         12 DEFAULT   8,192
    SYS          HIST_HEAD$                     TABLE             15          4 DEFAULT   8,192
    SYS          AQ$_SYS$SERVICE_METRICS_TAB_S  TABLE             14         88 DEFAULT   8,192
    SYS          C_TS#                          CLUSTER           13         81 DEFAULT   8,192
    SYS          I_DEPENDENCY1                  INDEX             13          2 DEFAULT   8,192
    SYS          I_ACCESS1                      INDEX             12          2 DEFAULT   8,192
    15 rows selected.
    可以看到 MACLEAN_TAN2 表在 keep buffer pool中的详细信息, 15,001 blocks=  117MB
                     

  • Buffer_pool keep

    From oracle 10g we are using db_keep_cache, I am really interest to know on which condition I have to use buffer_pool keep while creating tables in database.

    If your SGA is large enough to hold your table data, then you can use this.
    ALTER TABLE EMPLOYEE CACHE;
    would move the data to the keep pool.
    Basically if the application runs multiple queries on a large single table, it would be better to keep the table in buffer cache (keep pool) thru which the quries can run faster multiple folds.
    It can be used either on large or small data tables.

  • Mail app keeps re-caching all messages when it starts

    Hello
    In past 10 days i have a very big problem which gives me headaches already. The problem is ( i did not change anything!) mail.app keeps re-caching all messages and attachments everytime i start the app. I have over 40.000+ mails so you do the math about how my bandwith eaten by the app. As i said i did not change anything. Anyway after searching dozens of forums and suggestions i did these steps:
    - removed MessageUidsAlreadyDownloaded3 files. No fix alsa mail.app won't create new ones since then
    - removed whole cache, files, folders and accounts and re add them. No fix
    - Clean install of mavericks. No fix
    - Tried other apps like airmail, sparrow. Kinda no fix because airmail wont download whole messages only 1 month period even i choose to have all messages. Sparrow keeps giving error of unable to locate folders on the server. Only my windows thunderbird client works like a charm, there is no any issue at all but i hate windows.
    - some terminal commands before clean install which i really dont remember due to high number of commands. By the way i am using IMAP settings
    I really need a help here. I am talking about huge number of mails which are very important for me.
    Thank you

    Please read this whole thread:
    Mail keeps downloading everything over and over.

  • I keep accumulating Cache files on my C drive. This never happenned before. How do I stop it.

    I have noticed that I keep accumulating cache files on my C drive. This just started happening and I have to keep deleting them. How do I stop this?
    Robert

    hello, you can limit the size of your disk cache in firefox > options > advanced > network!

  • Keep Buffer Cache Not Large Enough

    What happens if I pin a table/index in the keep buffer cache but the keep buffer cache is not large enough? How does oracle determine what to initially put into the keep buffer cache and what to leave out?

    >
    Well, I got some of them directly from the Oracle docs:
    “A good candidate for a segment to put into the KEEP
    pool is a segment that is smaller than 10% of the
    size of the DEFAULT buffer pool and has incurred at
    least 1% of the total I/Os in the system”.
    But the rules you quoted in your previous post were - not the rule you got from Oracle !
    - Use the KEEP pool if the object consumes more than 10% of the total size of the data buffer.
    - Use the KEEP pool if more than 50% of the objects blocks already resides in the data buffer, according to an x$bh query.
    But I agree, I use my own set of decision rules, which vary by system.
    There is no "one size fits all" set of rules . . . . . But you just said you use the rules you got from Oracle in the previous post that:
    The placement criteria for tables and indexes into the KEEP buffer are straightforward:
    Please make up your mind.
    By the way, your script hot_buffers.sql from the page you mentioned above has a few errors in it. The join between x$bh and dba_objects should be on data_object_id, not on object_id; and by joining dba_objects to dba_segments on object_name = segment_name you've introduced a lot of errors relating to index-organised tables, partitioned tables, clusters etc.
    Please see Metalink note: 135223.1. Although it's got a couple of things in it that appeared back in the days of 8i (the original document was written in 1998 I believe) it has a better analysis of the issues.
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Dimensions with buffer_pool = keep

    Hi,
    We have a data warehouse built with WareHouse Builder more than 5 years ago. At that time, on a 8i database, it was suggested that we put our dimensions with buffer_pool = keep to get a faster response in Discoverer.
    We have a fact table partitioned by month (3 years), with bitmap indexes + 4 dimensions without indexes.
    My question : is it still valuable to set buffer_pool = keep with a 10G database for dimensions?
    Would it be faster if we put the buffer_pool = default and add some indexes to the dimensions?
    Thanks.

    Fabrice, it would be very unusual to keep a 2G table and trying to do would be unlikely to aid performance in most environments I have every seen.
    In fact unless you have a very strong knowledge of how the application works and the processing logic is fairly static the great majority of sites are better off to not use a keep or recycle buffer pools and to allow Oracle to manage the buffer pool based on demand.
    You are probably trying to tune a specific query. You might want to look at the size of each table and the filter conditions available. Verify that the plain join order is correct. If not manipulate the plan to get what you believe should be the correct join order.
    If you are just trying to improve performance against one table then check to make sure that the right indexes exist to support the most important quries. This would also be a step in the process above.
    HTH -- Mark D Powell --

  • How can stageWebView  keep another cache as logging into my site through simulator on mac also logs me in safari

    how can stageWebView  keep another cache as logging into my site through simulator on mac also logs me in safari plz help with a solution or alternative??  thanks

    You could install Tab Mix Plus, which offers a Duplicate Tab feature you could use after logging in: this should keep the login state intact while creating the new tab.
    See https://addons.mozilla.org/en-US/firefox/addon/1122

  • Problem with Safari keeping a cache of my site...

    I'm trying to figure out why Safari is keeping a cache of my swf files which is causing some viewers to see old content.  I've tested in IE and Firefox and they seem to be working fine.  Is there a work around or another way to solve this issue with Safari wihout dumping the cache for the entire site everytime, and maybe just dumping the cache for the specific swf file that is being updated. Any help would be greatly appreciated...

    sorry for delay old toad. went down for the count with a flu.
    ok. web safe fonts? shux.  first time i'm hearing the expression.
    so i guess that means no.
    i used a font i got off the web for free called FAFERS Irregular Serif
    i have been quite attached to it, love the look it gives
    yes, please look.
    www.yemayayouthservices.com
    although i can't seem to access the site online without going through my linked in profile ?
    a million thank yous

  • Iphoto '08 keeps rebuilding cache every time i open it.

    Hi there, I'm currently using the Macbook late 2008 aluminium model. Recently I've reformatted my mac and then transferred my photos from a previous backup. However, after doing so, every time i open iPhoto, keeps on rebuilding the cache, not even asking my permission whether I want it to do so. Any suggestions on what to do? thanks!
    Jason

    Welcome to the Apple Discussions. aBackup the library and try the two fixes below in order as needed:
    Fix #1
    Delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your User/Library/Preferences folder.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key. You'll also have to reset the iPhoto's various preferences.
    Fix #2
    Launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select last three options.
    Click to view full size
    Lastly, if the above didn't help, try this:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    1 -Download iPhoto Library Manager and launch.
    2 -Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    4 - In the next window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be untouched for further attempts at fixing or in case the rebuilt library is not satisfactory.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    NOTE: this is not the same as routinely backing up your entire iPhoto library folder to protect your photos. It only protects the loss of your organizational efforts that the database file contains.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Firefox keeps loading cached site

    Firefox keeps loading a cached version of a website, specifically businessinsider.com. I have tried deleting my cache via tools>clear recent history>everything. And of course i did make sure all of the boxes were checked.
    I also have deleted the cache at
    C:\Users\Syntax Attack\AppData\Local\Mozilla\Firefox\Profiles\go9ce91m.default
    both the offline cache and the regular, and yet it is still loading a page from much earlier. This is an intermittent issue and does not always happen, it is pretty much just this site it happens with anymore but has happened to a few others in the past, this has persisted even after upgrades.
    Windows 7 64bit
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.21) Gecko/20110830 Firefox/3.6.21

    Reload web page(s) and bypass the cache.
    * Press and hold Shift and left-click the Reload button.
    * Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    * Press "Cmd + Shift + R" (MAC)

  • Keeping the Cache

    I want to know how i can keep a copy of my cache because there are times where the cache is being deleted without my knowledge. I would like to find a way to have it saved to another file or some other way of keeping a record of it. Please let me know a good way to do this. I just checked today and my cache now only has items from today on it and I did not do anything to delete the cache. This is a problem please help me find a way to save this data.

    The documentation on Cache synch can be found starting on page 8-3 on the 10g (9.0.4) release.

  • Safari 5.0.6, OS 10.5.8, crashes continually. I keep trashing cache.db, have used Samit's and Klaus's suggestions, temporarily disabled updated Flash (root level), and would like to submit my Console report. Could it be Microsoft's Converter?

    I also disabled DirectorShockwave.plugin. Crashes have increased exponentially in the months since installing it (for docx files).
    Process:         Safari [432]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.0.6 (5533.22.3)
    Build Info:      WebBrowser-75332203~3
    Code Type:       X86 (Native)
    Parent Process:  launchd [72]
    Date/Time:       2013-01-21 13:32:47.961 -0700
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID:  D38D784F-FDE6-4096-942D-F531848AE9BA
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0
    Thread 0 Crashed:
    0   ???                               0000000000 0 + 0
    1   com.apple.WebKit                  0x9626f8fe -[WebNetscapePluginPackage _tryLoad] + 894
    2   com.apple.WebKit                  0x9626f357 -[WebNetscapePluginPackage load] + 39
    3   com.apple.WebKit                  0x96278e6a -[WebNetscapePluginDocumentView initWithFrame:pluginPackage:URL:baseURL:MIMEType:attributeKeys:attributeValues: loadManually:element:] + 346
    4   com.apple.WebKit                  0x9620dcfb WebFrameLoaderClient::createPlugin(WebCore::IntSize const&, WebCore::HTMLPlugInElement*, WebCore::KURL const&, ***::Vector<***::String, 0ul> const&, ***::Vector<***::String, 0ul> const&, ***::String const&, bool) + 2363
    5   com.apple.WebCore                 0x9240e48f WebCore::SubframeLoader::loadPlugin(WebCore::HTMLPlugInImageElement*, WebCore::KURL const&, ***::String const&, ***::Vector<***::String, 0ul> const&, ***::Vector<***::String, 0ul> const&, bool) + 479
    6   com.apple.WebCore                 0x9240e1cd WebCore::SubframeLoader::requestPlugin(WebCore::HTMLPlugInImageElement*, WebCore::KURL const&, ***::String const&, ***::Vector<***::String, 0ul> const&, ***::Vector<***::String, 0ul> const&, bool) + 189
    7   com.apple.WebCore                 0x9240d53c WebCore::SubframeLoader::requestObject(WebCore::HTMLPlugInImageElement*, ***::String const&, ***::AtomicString const&, ***::String const&, ***::Vector<***::String, 0ul> const&, ***::Vector<***::String, 0ul> const&) + 236
    8   com.apple.WebCore                 0x9240ba08 WebCore::HTMLObjectElement::updateWidget(WebCore::PluginCreationOption) + 664
    9   com.apple.WebCore                 0x9240dd83 WebCore::FrameView::updateWidget(WebCore::RenderEmbeddedObject*) + 131
    10  com.apple.WebCore                 0x9225eb2c WebCore::FrameView::updateWidgets() + 268
    11  com.apple.WebCore                 0x9225e722 WebCore::FrameView::performPostLayoutTasks() + 98
    12  com.apple.WebCore                 0x9223b5bf WebCore::FrameView::layout(bool) + 3647
    13  com.apple.WebCore                 0x9223a760 WebCore::Document::updateLayout() + 112
    14  com.apple.WebCore                 0x9223a66e WebCore::Document::updateLayoutIgnorePendingStylesheets() + 46
    15  com.apple.WebCore                 0x9254e905 WebCore::HTMLObjectElement::renderWidgetForJSBindings() const + 21
    16  com.apple.WebCore                 0x924e19be WebCore::HTMLPlugInElement::pluginWidget() const + 30
    17  com.apple.WebCore                 0x92c63116 __ZN7WebCoreL36pluginScriptObjectFromPluginViewBaseEPNS_17HTMLPlugInElementEPN3 JSC14JSGlobalObjectE + 22
    18  com.apple.WebCore                 0x924e18f1 WebCore::pluginScriptObject(JSC::ExecState*, WebCore::JSHTMLElement*) + 129
    19  com.apple.WebCore                 0x9252c927 WebCore::runtimeObjectCustomGetOwnPropertySlot(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&, WebCore::JSHTMLElement*) + 39
    20  com.apple.WebCore                 0x9254e8e6 WebCore::JSHTMLObjectElement::getOwnPropertySlotDelegate(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) + 38
    21  com.apple.WebCore                 0x9254e7ff WebCore::JSHTMLObjectElement::getOwnPropertySlot(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) + 47
    22  com.apple.JavaScriptCore          0x97d8c2c2 JSC::JSValue::get(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) const + 434
    23  com.apple.JavaScriptCore          0x97d8c009 cti_op_get_by_id + 153
    24  ???                               0x17d49a06 0 + 399809030
    25  com.apple.JavaScriptCore          0x97d6d945 JSC::Interpreter::executeCall(JSC::ExecState*, JSC::JSObject*, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 1413
    26  com.apple.JavaScriptCore          0x97d6d3b1 JSC::call(JSC::ExecState*, JSC::JSValue, JSC::CallType, JSC::CallData const&, JSC::JSValue, JSC::ArgList const&) + 81
    27  com.apple.WebCore                 0x922d5ce0 WebCore::JSEventListener::handleEvent(WebCore::ScriptExecutionContext*, WebCore::Event*) + 2560
    28  com.apple.WebCore                 0x922d51ff WebCore::EventTarget::fireEventListeners(WebCore::Event*, WebCore::EventTargetData*, ***::Vector<WebCore::RegisteredEventListener, 1ul>&) + 207
    29  com.apple.WebCore                 0x921ccb57 WebCore::EventTarget::fireEventListeners(WebCore::Event*) + 119
    30  com.apple.WebCore                 0x921cc400 WebCore::EventDispatcher::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 1232
    31  com.apple.WebCore                 0x921cbee9 WebCore::EventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 41
    32  com.apple.WebCore                 0x921cbd69 WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, WebCore::EventDispatchMediator const&) + 41
    33  com.apple.WebCore                 0x921cbce7 WebCore::Node::dispatchEvent(***::PassRefPtr<WebCore::Event>) + 55
    34  com.apple.WebCore                 0x9222aa65 WebCore::Document::finishedParsing() + 181
    35  com.apple.WebCore                 0x921d0b7d WebCore::HTMLDocumentParser::prepareToStopParsing() + 93
    36  com.apple.WebCore                 0x92308598 WebCore::HTMLDocumentParser::executeScriptsWaitingForStylesheets() + 104
    37  com.apple.WebCore                 0x92308056 WebCore::Document::removePendingSheet() + 86
    38  com.apple.WebCore                 0x92307ff0 WebCore::HTMLLinkElement::sheetLoaded() + 32
    39  com.apple.WebCore                 0x92307eff WebCore::CSSStyleSheet::checkLoaded() + 63
    40  com.apple.WebCore                 0x92306ea1 WebCore::HTMLLinkElement::setCSSStyleSheet(***::String const&, WebCore::KURL const&, ***::String const&, WebCore::CachedCSSStyleSheet const*) + 561
    41  com.apple.WebCore                 0x923069e4 WebCore::CachedCSSStyleSheet::checkNotify() + 164
    42  com.apple.WebCore                 0x92306526 WebCore::CachedCSSStyleSheet::data(***::PassRefPtr<WebCore::SharedBuffer>, bool) + 326
    43  com.apple.WebCore                 0x923062f8 WebCore::CachedResourceRequest::didFinishLoading(WebCore::SubresourceLoader*, double) + 184
    44  com.apple.WebCore                 0x9230619c WebCore::SubresourceLoader::didFinishLoading(double) + 60
    45  com.apple.WebCore                 0x9229b6e7 -[WebCoreResourceHandleAsDelegate connectionDidFinishLoading:] + 87
    46  com.apple.Foundation              0x938fa497 -[NSURLConnection(NSURLConnectionReallyInternal) sendDidFinishLoading] + 87
    47  com.apple.Foundation              0x938fa403 _NSURLConnectionDidFinishLoading + 147
    48  com.apple.CFNetwork               0x94510ba4 URLConnectionClient::_clientDidFinishLoading(URLConnectionClient::ClientConnect ionEventQueue*) + 212
    49  com.apple.CFNetwork               0x945118fa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 310
    50  com.apple.CFNetwork               0x94511baa URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 998
    51  com.apple.CFNetwork               0x94510370 URLConnectionClient::processEvents() + 104
    52  com.apple.CFNetwork               0x944bdc2b MultiplexerSource::perform() + 189
    53  com.apple.CoreFoundation          0x94ddc3c5 CFRunLoopRunSpecific + 3141
    54  com.apple.CoreFoundation          0x94ddcaa8 CFRunLoopRunInMode + 88
    55  com.apple.HIToolbox               0x953b02ac RunCurrentEventLoopInMode + 283
    56  com.apple.HIToolbox               0x953b00c5 ReceiveNextEventCommon + 374
    57  com.apple.HIToolbox               0x953aff39 BlockUntilNextEventMatchingListInMode + 106
    58  com.apple.AppKit                  0x9754d6d5 _DPSNextEvent + 657
    59  com.apple.AppKit                  0x9754cf88 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    60  com.apple.Safari                  0x000166ad 0x1000 + 87725
    61  com.apple.AppKit                  0x97545f9f -[NSApplication run] + 795
    62  com.apple.AppKit                  0x975131d8 NSApplicationMain + 574
    63  com.apple.Safari                  0x0000acee 0x1000 + 40174
    Thread 1:
    0   libSystem.B.dylib                 0x967ec34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x96841d81 sleep$UNIX2003 + 63
    2   com.apple.JavaScriptCore          0x97ec5ab1 ***::TCMalloc_PageHeap::scavengerThread() + 145
    3   com.apple.JavaScriptCore          0x97ec5d8f ***::TCMalloc_PageHeap::runScavengerThread(void*) + 15
    4   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    5   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 2:
    0   libSystem.B.dylib                 0x967ec34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x96816ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.WebCore                 0x9218f587 WebCore::IconDatabase::syncThreadMainLoop() + 279
    3   com.apple.WebCore                 0x9218ce19 WebCore::IconDatabase::iconDatabaseSyncThread() + 761
    4   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    5   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                 0x967e5166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x967ec95c mach_msg + 72
    2   com.apple.CoreFoundation          0x94ddbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x94ddcaa8 CFRunLoopRunInMode + 88
    4   com.apple.CFNetwork               0x9449118c CFURLCacheWorkerThread(void*) + 388
    5   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    6   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                 0x967ec34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x96816ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x97d1a6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                 0x921a877c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    5   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                 0x967e5166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x967ec95c mach_msg + 72
    2   com.apple.CoreFoundation          0x94ddbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x94ddcaa8 CFRunLoopRunInMode + 88
    4   com.apple.Safari                  0x0002f33d 0x1000 + 189245
    5   com.apple.Safari                  0x0002f08a 0x1000 + 188554
    6   com.apple.Safari                  0x0002f023 0x1000 + 188451
    7   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    8   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 6:
    0   libSystem.B.dylib                 0x967e5166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x967ec95c mach_msg + 72
    2   com.apple.CoreFoundation          0x94ddbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x94ddcaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation              0x938f8520 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5   com.apple.Foundation              0x93894dfd -[NSThread main] + 45
    6   com.apple.Foundation              0x938949a4 __NSThread__main__ + 308
    7   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    8   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                 0x9683460a select$DARWIN_EXTSN + 10
    1   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    2   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                 0x967ec34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x96816ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x97d1a6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.Safari                  0x001ae478 0x1000 + 1758328
    4   com.apple.Safari                  0x00044cdd 0x1000 + 277725
    5   com.apple.Safari                  0x00044c2d 0x1000 + 277549
    6   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    7   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 9:
    0   libSystem.B.dylib                 0x967ec34e __semwait_signal + 10
    1   libSystem.B.dylib                 0x96816ccd pthread_cond_wait$UNIX2003 + 73
    2   com.apple.JavaScriptCore          0x97d1a6b1 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    3   com.apple.WebCore                 0x921a877c WebCore::LocalStorageThread::threadEntryPoint() + 188
    4   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    5   libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                 0x967e5166 mach_msg_trap + 10
    1   libSystem.B.dylib                 0x967ec95c mach_msg + 72
    2   com.apple.CoreFoundation          0x94ddbe7e CFRunLoopRunSpecific + 1790
    3   com.apple.CoreFoundation          0x94ddcaa8 CFRunLoopRunInMode + 88
    4   com.apple.Foundation              0x938c93d5 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5   com.apple.Foundation              0x938d54f4 -[NSRunLoop(NSRunLoop) run] + 84
    6   com.apple.Safari                  0x00087fe4 0x1000 + 552932
    7   com.apple.Foundation              0x93894dfd -[NSThread main] + 45
    8   com.apple.Foundation              0x938949a4 __NSThread__main__ + 308
    9   libSystem.B.dylib                 0x96816055 _pthread_start + 321
    10  libSystem.B.dylib                 0x96815f12 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x1e5de139  ecx: 0x0001c75d  edx: 0x00000000
      edi: 0x1e5de120  esi: 0x169d7fdc  ebp: 0xbfffd8a8  esp: 0xbfffd88c
       ss: 0x0000001f  efl: 0x00010246  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -   0x5d3ffc  com.apple.Safari 5.0.6 (5533.22.3) <79731a26a77704fb4831e3adc020a381> /Applications/Safari.app/Contents/MacOS/Safari
      0x644000 -   0x64ffff  libxar.1.dylib ??? (???) /usr/lib/libxar.1.dylib
      0x657000 -   0x681fe8  com.apple.framework.Apple80211 5.2.8 (528.1) <97dfd0c2d44d3c5839dd96f74e43d9c2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
      0x692000 -   0x6a1ffc  SyndicationUI ??? (???) <4cb2f7ffaf3185ff4e036082064e7121> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x11d5c000 - 0x11f64fef  com.apple.RawCamera.bundle 2.1.3 (537) <ef9996f5ec0caf58dc832a4153196a1e> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x147ca000 - 0x147cdfef  com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x14e6e000 - 0x14eb4fc3  com.apple.motion.component 1.0 (1.0) <017170f3efb641809e992b1cd226ff1e> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x14eb9000 - 0x14ebc02f +Motion ??? (???) <7f9650afc9fa4a4aa4ae799eb836cc57> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x14fe6000 - 0x1504bfde  com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x157bf000 - 0x157c4ff3  libCGXCoreImage.A.dylib ??? (???) <30bd95e38c8a203ee387013527cfd9d0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1a9f8000 - 0x1a9f9ff3  ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1ae39000 - 0x1ae3afff  com.apple.JavaPluginCocoa 12.9.0 (12.9.0) <5451adf6a77e3088b1a096fe1e16b189> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bundle/C ontents/MacOS/JavaPluginCocoa
    0x1ae40000 - 0x1ae44ffd  JavaLaunching ??? (???) <41aa04fadb9589ab9c249284090b2ef7> /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunch ing
    0x1e5dc000 - 0x1e5dfff7 +com.macromedia.Flash Player.plugin 10.3.183.50 (10.3.183.50) <5df4d420e742f4aef810bcefe2373e39> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x8fe00000 - 0x8fe2db43  dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x900a8000 - 0x90105ffb  libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x90106000 - 0x9016cffb  com.apple.ISSupport 1.8 (38.3) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9016d000 - 0x90170fff  com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9017b000 - 0x901f5ff8  com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x901f6000 - 0x902a8ffb  libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x902a9000 - 0x902c7ff3  com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9030a000 - 0x90340fef  libtidy.A.dylib ??? (???) <7f0b8a7837bd7f8039d06fc042acf85b> /usr/lib/libtidy.A.dylib
    0x90386000 - 0x9040dff7  libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x9040e000 - 0x9040effe  com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x90414000 - 0x907d2fea  libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x907d3000 - 0x9082fff7  com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x90830000 - 0x90831ffc  libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x90bff000 - 0x90c40fe7  libRIP.A.dylib ??? (???) <cd04df9e8993c51312c8cbcfe2539914> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90c76000 - 0x90c7ffff  com.apple.speech.recognition.framework 3.7.24 (3.7.24) <d3180f9edbd9a5e6f283d6156aa3c602> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x90c80000 - 0x90c80ffd  com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90c81000 - 0x90c83ffd  com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90c84000 - 0x90dbdff7  libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x90dbe000 - 0x90dbeff8  com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90dbf000 - 0x91cbefe6  com.apple.QuickTimeComponents.component 7.6.6 (1674) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x91cbf000 - 0x91d49ff7  com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91d4a000 - 0x91d8afef  com.apple.CoreMedia 0.484.2 (484.2) <37461ff47cb25ad434a8544c97271d28> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91d8b000 - 0x920b6ff6  com.apple.QuickTime 7.6.6 (1674) <3ebc05dcaf5857bc3d33a04ebabf5c1a> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x920b7000 - 0x920bbfff  libGIF.dylib ??? (???) <ade6d93abe118569a7a39d11f81eb9bf> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x920bc000 - 0x92163feb  com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92164000 - 0x9216afff  com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9216b000 - 0x92186ff3  libPng.dylib ??? (???) <e0c3bdc3144e1ed91f1e4d00d147ff3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92187000 - 0x92ef5fe3  com.apple.WebCore 5534 (5534.50.1) <bef6f01e56834f2498918b264f0acbf7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x92fdd000 - 0x93006fff  libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x93007000 - 0x93094ff7  com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x93095000 - 0x930c2feb  libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x931a6000 - 0x931e0ffe  com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x931e1000 - 0x9323aff7  libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93280000 - 0x932cffff  com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x932d0000 - 0x932ddfe7  com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9332d000 - 0x9333dfff  com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9333e000 - 0x9338fff7  com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x93390000 - 0x93392fff  com.apple.securityhi 3.0 (30817) <2b2854123fed609d1820d2779e2e0963> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93393000 - 0x933a2ffe  com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x933a3000 - 0x933ecfef  com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x933ed000 - 0x933edffb  com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x933ee000 - 0x933f9fe7  libCSync.A.dylib ??? (???) <f3228c803584320fde5e1bb9f04b4d44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93429000 - 0x93468fef  libTIFF.dylib ??? (???) <2afd7f6079224311d67ab427e10bf61c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x93469000 - 0x93471fff  com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x93472000 - 0x93496fff  libxslt.1.dylib ??? (???) <c372568bd2f7169efa0faee6546eead3> /usr/lib/libxslt.1.dylib
    0x93497000 - 0x93853ff4  com.apple.VideoToolbox 0.484.2 (484.2) <35f2d177796ebb3b61f9d06593d1787a> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x93884000 - 0x93889fff  com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9388a000 - 0x93b06fe7  com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x93b07000 - 0x93b1ffff  com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93b20000 - 0x93c58fe7  com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93c59000 - 0x93c60ff7  libCGATS.A.dylib ??? (???) <8875cf11c0de0579423ac6b6ce80336d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93c61000 - 0x93c6dff9  com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x93c6e000 - 0x9430efff  com.apple.CoreGraphics 1.409.8 (???) <25020feb388637ee860451c19b613c48> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9430f000 - 0x94316fff  com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x94317000 - 0x94317ffc  com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94318000 - 0x9431cfff  libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9431d000 - 0x94324ffe  libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9441a000 - 0x9448cfff  com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9448d000 - 0x9448dfff  com.apple.Carbon 136 (136) <98a5e3bc0c4fa44bbb09713bb88707fe> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9448e000 - 0x94535fec  com.apple.CFNetwork 438.16 (438.16) <0a2f633dc532b176109547367f209ced> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94536000 - 0x94542fff  libbz2.1.0.dylib ??? (???) <d355415c89c383330697a7b73d6dbc2e> /usr/lib/libbz2.1.0.dylib
    0x94543000 - 0x94561fff  libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x94562000 - 0x94593ffb  com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x94594000 - 0x945d2fff  libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945d3000 - 0x9461efe1  com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9461f000 - 0x947aefe7  com.apple.CoreAUC 3.08.0 (3.08.0) <9043e2896f6c99d96932ff86fc5142a7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x947af000 - 0x94b4cfef  com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94b4d000 - 0x94be0ff3  com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x94be1000 - 0x94bf1ffc  com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94bf2000 - 0x94c0eff3  com.apple.CoreVideo 1.6.1 (48.6) <f1837beeefc81964abf7b58075edea2f> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94c0f000 - 0x94c69ff7  com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x94c6a000 - 0x94d35fef  com.apple.ColorSync 4.5.4 (4.5.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94d36000 - 0x94d68fff  com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94d69000 - 0x94e9cfe7  com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94e9d000 - 0x9506efef  com.apple.security 5.0.7 (1) <44e26a9c40630a54d5a9f70c18483411> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9506f000 - 0x950ecfeb  com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x950ed000 - 0x95115ff7  com.apple.shortcut 1.0.1 (1.0) <131202e7766e327d02d55c0f5fc44ad7> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95116000 - 0x9511dfe9  libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x9511e000 - 0x95142feb  libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x95143000 - 0x951fefe3  com.apple.CoreServices.OSServices 228.1 (228.1) <9c640e79ad97f335730d8a49f6cb2032> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x95251000 - 0x952d0ff5  com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x95345000 - 0x9537ffe7  com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x95380000 - 0x95688fe7  com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95689000 - 0x956cbfef  com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x956cc000 - 0x956d8ffe  libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x956d9000 - 0x9585dfef  com.apple.MediaToolbox 0.484.2 (484.2) <a5110a7d3bcb02c45ad8fca1f4957917> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9585e000 - 0x95863fff  com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95864000 - 0x95944fff  libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x95945000 - 0x95a33fef  com.apple.PubSub 1.0.5 (65.23) <7d496f89df21f6b9ecf99a7727469c2a> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95a34000 - 0x95a3efeb  com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95a3f000 - 0x95af0fff  edu.mit.Kerberos 6.0.15 (6.0.15) <28005ea82ba82307f185c255c25bfdd3> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95af1000 - 0x95af1ffd  com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95af2000 - 0x95dccff3  com.apple.CoreServices.CarbonCore 786.16 (786.16) <d2af3f75c3500c518c39fd00aed7f9b9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x95dcd000 - 0x961ddfef  libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x961de000 - 0x962fbff7  com.apple.WebKit 5534 (5534.50.2) <643ffe6446c331210a74f896f0804eb2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x962fc000 - 0x967cdfbe  libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x967ce000 - 0x967e3ffb  com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x967e4000 - 0x9694bff3  libSystem.B.dylib ??? (???) <be7a9fa5c8a925578bddcbaa72e5bf6e> /usr/lib/libSystem.B.dylib
    0x9694c000 - 0x96977fe7  libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x96978000 - 0x969a7fe3  com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x969a8000 - 0x96b28fff  com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96b29000 - 0x96b29ffd  com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96b2a000 - 0x96b2ffff  com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96b30000 - 0x96badfef  libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96bba000 - 0x96c08fe3  com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x96c21000 - 0x96c3eff7  com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96c3f000 - 0x96d20ff7  libxml2.2.dylib ??? (???) <f274ba384fb55203873f9c17569ef131> /usr/lib/libxml2.2.dylib
    0x96d21000 - 0x96eddff3  com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96ede000 - 0x96fa5ff2  com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96fa6000 - 0x96fa6ffe  com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96fa7000 - 0x9703afff  com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9703b000 - 0x970c8ff7  com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x970c9000 - 0x970d8fff  libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x970d9000 - 0x9722bff3  com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9722c000 - 0x97263fff  com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x97264000 - 0x9734cff3  com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9734d000 - 0x9734fff5  libRadiance.dylib ??? (???) <73169d8c3fc31df4005e8eaa0d16bde5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x97350000 - 0x9735effd  libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x9735f000 - 0x973aaff7  com.apple.CoreMediaIOServices 130.0 (935) <4ee695edd53f5aa200021a2f69d24f76> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x973ab000 - 0x974f5feb  com.apple.QTKit 7.6.6 (1674) <ff784c2169c4214493a2b5153d80bd25> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x974f6000 - 0x9750cfff  com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9750d000 - 0x97d0bfef  com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97d0f000 - 0x97f26ff7  com.apple.JavaScriptCore 5534 (5534.49) <b6a2c99482d55a354e6281cd4dd82518> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x97f9b000 - 0x97fbaffa  libJPEG.dylib ??? (???) <6d61215d5adfd74f75fed2e4db29a21c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97fbb000 - 0x98104ff7  com.apple.ImageIO.framework 2.0.9 (2.0.9) <717938c4837f88bbe8ec613d4d25bc52> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x98105000 - 0x98105ffa  com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98106000 - 0x98106ff8  com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0xba900000 - 0xba916fff  libJapaneseConverter.dylib ??? (???) <b9aea83b1cd97f3230999ebfcbf63e7c> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xfffe8000 - 0xfffebfff  libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780  libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    Hey, Klaus,
    1. Interesting that you ask about Netscape. In my research, I noticed it could mess proper operability. It is not in Apps; however, I did see files containing netscape, but I believe they pertained to Developer files. Yes, here they are:
    NetscapeMoviePlugIn.xcodeproj [folder]
    NetscapeMoviePlugIn [folder]
    Both folders show examples for developers in the WeKit.
    2. Ownership sequence of events: Wiener first owned, sold to Pinson, likely fully loaded, but particularly with Final Cut Pro, which was my daughter's main high school interest. Before she gave me the MBP, Pinson reinstalled most of the original files, sans Final Cut, and I believe residual files remained, thereby causing muckups.
    3. Model is 2006, I believe. most of the files indicate that year or 2007. Here is System Profiler info:
    Model Name:          MacBook Pro 15"
      Model Identifier:          MacBookPro2,2
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.33 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          4 MB
      Memory:          2 GB
      Bus Speed:          667 MHz
      Boot ROM Version:          MBP22.00A5.B07
      SMC Version (system):          1.12f5
    4.Can I upgrade to another system with this MBP/processor?
    Answer: I'm broke. Editing from my major client, Random House, went into the tubes with the rest of the economy, along with the other publishers I edited for, so I am writing my two books. My home has required major repairs, and though everyone finds it big and lovely, to me it's a money pit. Just sayin'. Wanna buy a brick house in Colorado Springs ;  ) Leigh

  • Page Expire - How to keep in cach from post request !!!

    I have a big problem with the back button resulting in Page Expired message. The system framework is to call servlets from any page. A servlets will perform necessary computations and forward the request with additional objects to a jsp page, which will in turn construct the page and display it to a user. Some of the constracted pages have back button, which simply redirects to the previous page.
    The problem that I have has been described in multiple forums before, but still appears to be not solved. When I press the back button that shall display previous page, generated by the Post request, I get Page Expired message. Note that this occurs only in IE (I am using 6.0 with SP1) and not in Mozilla (I am using 1.3). I did my homework and tried the following code in different combinations, but unsuccessful:
    resp.setHeader("Cache-Control", "public");
    res.setHeader("Pragma", "Cache");
    res.setHeader("Expires", "Fri, 30 May 2003 12:00:00 GMT");
    or directly in jsp page
    <META HTTP-EQUIV="Pragma" CONTENT="cache">
    <META http-equiv="expires" CONTENT=" Fri, 30 May 2003 12:00:00 GMT ">
    None seems to work in IE. It appears that the IE refuses to cache the page generated by the post request at all times.
    The application that I am working is huge and this is a big problem for us, we need to support IE with back buttons.
    Please help.

    I believe this is a requirement of the HTTP
    specification.Yep - section 13.10 for anyone who can't sleep. I believe the idea is that methods such as POST, PUT and DELETE cause an update at the server and so caching makes no sense - the client needs to view a new copy.
    To quote the spec:
    Some HTTP methods MUST cause a cache to invalidate an entity. This is either the entity referred to by the Request-URI, or by the Location or Content-Location headers (if present). These methods are:
    - PUT
    - DELETE
    - POST

Maybe you are looking for

  • How maintain pricing conditions in CCM 2.0

    Hi, We are using CCM 2.0, and SRM 5.0. Please let us know how should we maintain the pricing conditions in CCM, say when we enter item price in the individual item attributes, we want to maintain different prices, say if 10 items are purchased they c

  • How can I add table fields with existing structure ?

    I like to add PSTLZ field to stucture KOMGG.Is it possible to add table field with the existind structure.If yes how can I do this?kindly help me on this.

  • Aironet 1100 Default Username and Password not working

    I have a Cisco Aironet 1100 series access point (AP1120B) that after resetting to factory defaults the default username and password (Cisco and Cisco) aren't working in the web GUI.  I am able to telnet to the AP's IP and log in with Cisco and Cisco

  • My Hp X1000 Mouse won't work on my desktop after installing.

    As stated above, I recently bought a HP X1000 Mouse, plugged it into my desktop. It says that the drivers have all installed correctly but the mouse fails to work. Can anyone please tell me what the problem is? Or if there is a way to fix this. I wil

  • IFRIO QUESTIONS

    Hello, I have the following queries regarding IF RIO. Could you please help me out with the following questions. 1. In the driver example "Stream from Disk.vi" how would I know in  which mode DAC is working and In case of interpolation mode where i