Oracle XDB XML requires 10 times the space

Issue:
Oracle XDB uses a lot of disk space. I persisted 10000 records of 24kb each.
Expected size = 24kb * 10000 = 235 MB
Actual size = 2.1G for XMLType table & 633M for CLOB table. Tablespace showed utilization of 91%.
Pls suggest ways to reduce disk usage ?
XMLTYPE table –
Structure = CREATE TABLE mytable OF XMLType XMLTYPE store AS SECUREFILE BINARY XML
Record size = 24kb ( xml measured as bytes )
Rows = 10000
Size of table space on file system (.dbf) = 2.1 GB
CLOB Table –
Structure = Create table mytable ( event CLOB)
Record size = 24kb ( xml measured as bytes )
Rows = 10000
Size of table space on file system (.dbf) = 633 MB
So a CLOB is about 2X and XMLType is 10X.
Is this expected? Can XMLType be tweeked to use less space?

The size of the datafile does not necessarily reflect the size of the object(s) within. How did you load the data? Did you perform any updates?
What is the value of bytes in user_segments for the table and the lob segment? How many extents have been allocated to each segment? Try running these queries before the data load against empty tables and then again after the load and note the diff in sizes.
select tablespace_name, segment_name, segment_type, blocks, bytes from user_segments order by tablespace_name, segment_name;
select * from user_extents order by tablespace_name, segment_name, extent_id;What are the attributes of the tablespaces that contain the table and lob segment? Extent sizes, extent allocation method?
select * from user_tablespaces;
select * from user_lobs;

Similar Messages

  • Double Publishing - 2X the space?

    I am missing a key principle here that I someone can set me straight on...
    If I already have photos published at gallery.mac.com BUT want to also create some photo pages on my iweb site, am I eating up 2x times the space since it appears I am publishing the same images twice?
    Is there a way to point to the "already" published images on my gallery and create photo pages in iweb without re-publishing the images? I want to create the photo pages in iweb just as I would by selected the photos from iphoto.
    iweb08
    Thanks

    John Gaddy wrote:
    ...am I eating up 2x times the space since it appears I am publishing the same images twice?
    John ~ Yes.
    Is there a way to point to the "already" published images on my gallery and create photo pages in iweb without re-publishing the images?
    I believe the only way you can avoid re-publishing the same images is to embed your MobileMe Gallery in your iWeb site...
    "In iWeb, you can view a list of all the albums and movies in your MobileMe Gallery, and incorporate any of them in an iWeb page. Visitors can click to go directly to your MobileMe Gallery."
    See half-way through this video tutorial, where it says: +"To embed a MobileMe Gallery..."+

  • What are the space requirements for creation of a Oracle database.

    Hi,
    How much space do we require to create a database, say the data
    size is 2GB.., is there any estimate like the space should be 3
    times or 4 times of the data size..?
    Regards,
    G. Rajakumar.

    It really depends on how you set up your tables. Storage
    parameters, block size, etc etc.

  • Oracle Apps.XML reports ending with warning when the report output contains

    Hi I have XML reports. When we run these reports as concurrent program through Oracle Apps. window and if the report output contains special characters(like Chineese data) in between of English, then the concurrent program is ending with warning. If we remove special characters then it is working fine or when we run the report query directly from backend it is working fine.
    We are importing this data from legacy system into oracle apps. and we can't control these characters or decode them with some other charactes.
    Can any one guide me how to get the XML report output with special characters.
    Thanks in advance.
    Chandra Babu Lankipalli.

    Hi Hussein,
    The concurrent program is ending with Warning. It is unable to publish output file.
    For the same when we remove special characters and run the program it is completing and generating the
    output. The log fine is as follows when the data file contains special characters.
    Custom Application: Version : UNKNOWN
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XXFA_AR_WIN_EXCEPTION module: XXFA AR Wintrack Customer Interface Exception Report
    Current system time is 23-MAR-2009 05:33:19
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_CUST_ERRORED='3'
    P_CUST_SUCCESS='0'
    P_CUST_TOTAL='3'
    P_REQUEST_ID='4661283'
    P_USER_NAME='SYSADMIN'
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /d01/oracle/fadevora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Report Builder: Release 6.0.8.25.0 - Production on Mon Mar 23 05:33:19 2009
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 4661284 on node FAHQSNA01SFTD03 at 23-MAR-2009 05:33:20.
    Post-processing of request 4661284 failed at 23-MAR-2009 05:33:21 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    ------------- 2) PRINT   -------------
    Not printing the output of this request because post-processing failed.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 23-MAR-2009 05:33:21
    Thanks in advance.
    Chandra

  • How to tune the performance of Oracle SQL/XML query?

    Hi all,
    I am running Oracle 9i and like to run the following Oracle SQL/XML query. It takes about 3+ hour and still not finish. If I get rid all the XML stuffs it only take minutes to run. Does anybody know how to what's the reason of this slow and how to tune it?
    SELECT XMLElement("CUSTOMER",
    XMLForest(C_CUSTKEY "C_CUSTKEY", C_NAME "C_NAME", C_ADDRESS "C_ADDRESS", C_PHONE "C_PHONE", C_MKTSEGMENT "C_MKTSEGMENT", C_COMMENT "C_COMMENT"),
    (SELECT XMLAgg(XMLElement("ORDERS",
    XMLForest(O_ORDERKEY "O_ORDERKEY", O_CUSTKEY "O_CUSTKEY", O_ORDERSTATUS "O_ORDERSTATUS", O_ORDERPRIORITY "O_ORDERPRIORITY", O_CLERK "O_CLERK", O_COMMENT "O_COMMENT"),
    (SELECT XMLAgg(XMLElement("LINEITEM",
    XMLForest(L_ORDERKEY "L_ORDERKEY", L_RETURNFLAG "L_RETURNFLAG", L_LINESTATUS "L_LINESTATUS", L_SHIPINSTRUCT "L_SHIPINSTRUCT", L_SHIPMODE "L_SHIPMODE", L_COMMENT "L_COMMENT")
    FROM LINEITEM
    WHERE LINEITEM.L_ORDERKEY = ORDERS.O_ORDERKEY)
    FROM ORDERS
    WHERE ORDERS.O_CUSTKEY = CUSTOMER.C_CUSTKEY)
    FROM CUSTOMER ;
    Thanks very much in advance for your time,
    Jinghao Liu

    ajallen wrote:
    Why not something more like
    SELECT *
    FROM fact1 l,
    FULL OUTER JOIN fact1 d
    ON l.company = d.company
    AND l.transactiontypeid = 1
    AND d.transactiontypeid = 2;
    Because this is not an equivalent of the original query.
    drop table t1 cascade constraints purge;
    drop table t2 cascade constraints purge;
    create table t1 as select rownum t1_id from dual connect by level <= 5;
    create table t2 as select rownum+2 t2_id from dual connect by level <= 5;
    select * from (select * from t1 where t1_id > 2) t1 full outer join t2 on (t1_id = t2_id);
    select * from t1 full outer join t2 on (t1_id = t2_id and t1_id > 2);
         T1_ID      T2_ID
             3          3
             4          4
             5          5
                        6
                        7
         T1_ID      T2_ID
             1
             2
             3          3
             4          4
             5          5
                        6
                        7

  • Oracle dictionary view 2 find the queries run and it's execution time

    Hi All,
    I s there any oracle dictionary view which captures the queries being run by users on the database and time taken to execute those queries?
    We need to find out the OS user not the database user since we have to identify the users who are executing long running queries.
    We require this basically to monitor the long running queries on the database.
    Thanks in Advance

    Hi,
    welcome to the forum!
    Oracle doesn't store information about individual executions of SQL queries (that would've been too expensive), but you can find cumulative query execution stats in V$SQL. If you are interested in queries by a specific OS user, then Active Session History can help you (provided you have the Diagnostic Pack License).
    Best regards,
    Nikolay

  • Using Oracle Transport Agent to get the XML File

    Hi,
    This is Vishal and I have setup XML Gateway to make my Supplier's specific site XML Enabled. When I am approving the PO, the PO Communication method is XML and once the PO is approved, through "Workflow administrator Web Application" responsibility, I am able to view my XML File.
    Our requirement is: we are currently using NuBridges and I want to transfer this XML file to the pre-defined location. But as per Oracle User guide, I understood that this is Blob message and I can't download it. To download it, I need to configure Transport Agent.
    Can anyone throw more light on this? I am new to Transport Agenet configuration. Please guide me, how to get the XML file generated?

    Hi Siva
    Just to clarify, rather than the short name of the conc program there is a shipped data definition that just uses the product short name? What is the data def so I can check it.
    Regards, Tim

  • XSQL Error. Missing class: oracle.xdb.XMLType XML

    I am using OC4J and XSQL to publish information and most of the normal stuff runs fine. When I try to run the following query, I get errors. I copied the following example from XML developer's kit manual and work fine in SQL*Plus.
    =============================
    <?xml version="1.0"?>
    <xsql:query connection="demo" xmlns:xsql="urn:oracle-xsql">
    select XmlElement("DepartmentList",
    XmlAgg(
    XmlElement("Department",
    XmlAttributes(deptno as "Id"),
    XmlForest(dname as "Name"),
    (select XmlElement("Employees",
    XmlAgg(
    XmlElement("Employee",
    XmlAttributes(empno as "Id"),
    XmlForest(ename as "Name",
    sal as "Salary",
    job as "Job")
    from emp e
    where e.deptno = d.deptno
    ) as result
    from dept d
    order by dname
    </xsql:query>
    ====================
    Following is the header portion of the errors shown.
    XML-25017: Unexpected Error Occurred
    oracle.classloader.util.AnnotatedNoClassDefFoundError:
    Missing class: oracle.xdb.XMLType
    Dependent class: oracle.xml.sql.core.OracleXMLConvert
    Loader: oracle.xml:10.1.0_2
    Code-Source: /C:/oracle/oc4j_1013/lib/xsu12.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\oracle\oc4j_1013\j2ee\home\oc4j.jar
    The missing class is available from the following locations:
    1. Code-Source: /C:/oracle/oc4j_1013/j2ee/home/applications/xsql/xsql/WEB-INF/lib/xdb.jar (from WEB-INF/lib/ directory in C:\oracle\oc4j_1013\j2ee\home\applications\xsql\xsql\WEB-INF\lib)
    This code-source is available in loader xsql.web.xsql:0.0.0.
    I tried to search several forums but was unable to find any solution to resolve this issue. Any help is appreciated.
    Thanks,

    I am using OC4J and XSQL to publish information and most of the normal stuff runs fine. When I try to run the following query, I get errors. I copied the following example from XML developer's kit manual and work fine in SQL*Plus.
    =============================
    <?xml version="1.0"?>
    <xsql:query connection="demo" xmlns:xsql="urn:oracle-xsql">
    select XmlElement("DepartmentList",
    XmlAgg(
    XmlElement("Department",
    XmlAttributes(deptno as "Id"),
    XmlForest(dname as "Name"),
    (select XmlElement("Employees",
    XmlAgg(
    XmlElement("Employee",
    XmlAttributes(empno as "Id"),
    XmlForest(ename as "Name",
    sal as "Salary",
    job as "Job")
    from emp e
    where e.deptno = d.deptno
    ) as result
    from dept d
    order by dname
    </xsql:query>
    ====================
    Following is the header portion of the errors shown.
    XML-25017: Unexpected Error Occurred
    oracle.classloader.util.AnnotatedNoClassDefFoundError:
    Missing class: oracle.xdb.XMLType
    Dependent class: oracle.xml.sql.core.OracleXMLConvert
    Loader: oracle.xml:10.1.0_2
    Code-Source: /C:/oracle/oc4j_1013/lib/xsu12.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\oracle\oc4j_1013\j2ee\home\oc4j.jar
    The missing class is available from the following locations:
    1. Code-Source: /C:/oracle/oc4j_1013/j2ee/home/applications/xsql/xsql/WEB-INF/lib/xdb.jar (from WEB-INF/lib/ directory in C:\oracle\oc4j_1013\j2ee\home\applications\xsql\xsql\WEB-INF\lib)
    This code-source is available in loader xsql.web.xsql:0.0.0.
    I tried to search several forums but was unable to find any solution to resolve this issue. Any help is appreciated.
    Thanks,

  • Time Machine backup requires significantly more space than size of hard drive + external

    I can't seem to figure out what is going on here. I recently purchased a new Macbook Pro with a 1T SSD hard drive, upgrading from an older MB Pro with a 500 GB hard drive. In the past I've used Time Machine to back up my hard drive and an external hard drive with RAW format photos and video footage that totals 441.56 GB. My internal internal hard drive currently is 487 GB, and I've used a 1TB time machine back up without problem to date.
    I used Time Machine to install on the new system and it worked flawlessly, except that the Time Machine backups wouldn't continue. Time Machine--even when left overnight--would get hung up on Preparing Files to Back Up. So, I reformatted the Time Machine disk (lost the old backups) and attempted to back up from scratch. I then got a message that I need 3.37 TB to complete my new Time Machine back up, though the total size of the back up on disk is ~930 GB. I've read that Time Machine needs 20% - 30% overhead on disk to work well, but I can't figure out why it would require 3x the back up size. I'm hesitant to purchase a new 4 TB external hard drive as I suspect this is a software issue. I've tried reformatting the disk twice more (three total), rebooting my computer, etc. but I keep getting the 3.37 TB message. I'm operating Mavericks OS 10.9.4.
    I would be grateful for insight on this.
    Best,
    Alex

    Hi Linc, thanks for taking a look at this problem. I just reinitiated a backup to make sure it's most up-to-date. Without the external hard drive, I was able to complete a simple backup. After plugging the external in again, here's the log I got:
    8/6/14 11:34:03.228 PM com.apple.backupd[78806]: Starting automatic backup
    8/6/14 11:34:03.660 PM com.apple.backupd[78806]: Backing up to /dev/disk2s2: /Volumes/Time Machine/Backups.backupdb
    8/6/14 11:34:04.538 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78808]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:04.538 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:04.556 PM ReportCrash[78796]: Saved crash report for MessageCenter[78808] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233404_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:34:10.462 PM com.apple.backupd[78806]: Forcing deep traversal on source: "Media" (device: /dev/disk1s2 mount: '/Volumes/Media' fsUUID: BB6ACCE1-B004-3647-9721-0CE726FAA059 eventDBUUID: 0AC9DC0D-5BE3-4574-94C6-4B041C9C4A26)
    8/6/14 11:34:10.469 PM com.apple.backupd[78806]: Deep event scan at path:/Users/Alex/Pictures/Aperture Library.aplibrary/Database/apdb reason:contains changes|must scan subdirs|fsevent|missed reservation|file event|
    8/6/14 11:34:10.573 PM com.apple.backupd[78806]: Finished scan
    8/6/14 11:34:10.573 PM com.apple.backupd[78806]: Not using file event preflight for Macintosh HD
    8/6/14 11:34:14.674 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78820]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:14.674 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:14.693 PM ReportCrash[78796]: Saved crash report for MessageCenter[78820] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233414_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:34:24.815 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78821]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:24.815 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:24.835 PM ReportCrash[78796]: Saved crash report for MessageCenter[78821] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233424_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:34:34.954 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78822]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:34.954 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:34.978 PM ReportCrash[78796]: Saved crash report for MessageCenter[78822] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233434_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:34:45.091 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78823]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:45.091 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:45.109 PM ReportCrash[78796]: Saved crash report for MessageCenter[78823] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233445_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:34:55.119 PM ReportCrash[78825]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:34:55.242 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78824]) Job appears to have crashed: Bus error: 10
    8/6/14 11:34:55.242 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:34:55.275 PM ReportCrash[78825]: Saved crash report for MessageCenter[78824] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233455_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:05.377 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78826]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:05.377 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:05.395 PM ReportCrash[78825]: Saved crash report for MessageCenter[78826] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233505_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:15.514 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78828]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:15.514 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:15.533 PM ReportCrash[78825]: Saved crash report for MessageCenter[78828] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233515_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:25.653 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78829]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:25.653 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:25.672 PM ReportCrash[78825]: Saved crash report for MessageCenter[78829] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233525_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:35.789 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78830]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:35.789 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:35.809 PM ReportCrash[78825]: Saved crash report for MessageCenter[78830] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233535_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:45.923 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78831]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:45.923 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:45.942 PM ReportCrash[78825]: Saved crash report for MessageCenter[78831] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233545_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:35:55.950 PM ReportCrash[78833]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:35:56.071 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78832]) Job appears to have crashed: Bus error: 10
    8/6/14 11:35:56.071 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:35:56.105 PM ReportCrash[78833]: Saved crash report for MessageCenter[78832] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233556_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:06.210 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78834]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:06.210 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:06.229 PM ReportCrash[78833]: Saved crash report for MessageCenter[78834] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233606_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:10.023 PM WindowServer[109]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    8/6/14 11:36:10.135 PM WindowServer[109]: CGXMuxCapture: Starting
    8/6/14 11:36:10.136 PM WindowServer[109]: CGXMuxCapture: Acquired
    8/6/14 11:36:10.136 PM WindowServer[109]: Display 0x4280882 captured by conn 0xdf03
    8/6/14 11:36:14.010 PM WindowServer[109]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280882 device: 0x7f8682f01ec0  isBackBuffered: 1 numComp: 3 numDisp: 3
    8/6/14 11:36:16.346 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78836]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:16.346 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:16.365 PM ReportCrash[78833]: Saved crash report for MessageCenter[78836] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233616_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:19.883 PM WindowServer[109]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 10.86 seconds (server forcibly re-enabled them after 1.00 seconds)
    8/6/14 11:36:20.172 PM com.apple.SecurityServer[15]: Killing auth hosts
    8/6/14 11:36:20.172 PM com.apple.SecurityServer[15]: Session 100055 destroyed
    8/6/14 11:36:20.213 PM WindowServer[109]: CGXMuxCapture: Released
    8/6/14 11:36:20.213 PM WindowServer[109]: Display 0x4280882 released by conn 0xdf03
    8/6/14 11:36:20.237 PM WindowServer[109]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280882 device: 0x7f8682f01ec0  isBackBuffered: 1 numComp: 3 numDisp: 3
    8/6/14 11:36:26.343 PM com.apple.prefs.backup.remoteservice[78837]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/6/14 11:36:26.396 PM com.apple.prefs.backup.remoteservice[78837]: assertion failed: 13E28: liblaunch.dylib + 25164 [A40A0C7B-3216-39B4-8AE0-B5D3BAF1DA8A]: 0x25
    8/6/14 11:36:26.512 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78838]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:26.512 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:26.536 PM ReportCrash[78833]: Saved crash report for MessageCenter[78838] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233626_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:26.614 PM com.apple.prefs.backup.remoteservice[78837]: Bogus event received by listener connection:
    <error: 0x7fff74e8fb50> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff74e8fe60> { length = 18, contents = "Connection invalid" }
    8/6/14 11:36:30.840 PM iTunes[637]: Entered:_AMMuxedDeviceDisconnected, mux-device:840
    8/6/14 11:36:30.840 PM iTunes[637]: Entered:__thr_AMMuxedDeviceDisconnected, mux-device:840
    8/6/14 11:36:30.841 PM iTunes[637]: tid:1aa47 - Mux ID not found in mapping dictionary
    8/6/14 11:36:30.841 PM iTunes[637]: tid:1aa47 - Can't handle disconnect with invalid ecid
    8/6/14 11:36:36.647 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78842]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:36.647 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:36.666 PM ReportCrash[78833]: Saved crash report for MessageCenter[78842] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233636_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:46.781 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78843]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:46.781 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:46.800 PM ReportCrash[78833]: Saved crash report for MessageCenter[78843] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233646_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:36:56.814 PM ReportCrash[78845]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:36:56.936 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78844]) Job appears to have crashed: Bus error: 10
    8/6/14 11:36:56.936 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:36:56.997 PM ReportCrash[78845]: Saved crash report for MessageCenter[78844] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233656_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:07.081 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78846]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:07.081 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:07.099 PM ReportCrash[78845]: Saved crash report for MessageCenter[78846] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233707_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:17.224 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78847]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:17.224 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:17.243 PM ReportCrash[78845]: Saved crash report for MessageCenter[78847] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233717_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:27.361 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78849]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:27.361 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:27.379 PM ReportCrash[78845]: Saved crash report for MessageCenter[78849] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233727_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:35.193 PM com.apple.usbmuxd[40]: _SendAttachNotification Device fc:25:3f:70:c5:7c@fe80::fe25:3fff:fe70:c57c._apple-mobdev2._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    8/6/14 11:37:37.496 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78851]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:37.496 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:37.515 PM ReportCrash[78845]: Saved crash report for MessageCenter[78851] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233737_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:47.636 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78852]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:47.636 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:47.656 PM ReportCrash[78845]: Saved crash report for MessageCenter[78852] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233747_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:37:57.665 PM ReportCrash[78855]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:37:57.785 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78854]) Job appears to have crashed: Bus error: 10
    8/6/14 11:37:57.785 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:37:57.845 PM ReportCrash[78855]: Saved crash report for MessageCenter[78854] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233757_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:07.920 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78856]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:07.920 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:07.939 PM ReportCrash[78855]: Saved crash report for MessageCenter[78856] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233807_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:18.056 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78859]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:18.056 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:18.076 PM ReportCrash[78855]: Saved crash report for MessageCenter[78859] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233818_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:28.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=78861[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    8/6/14 11:38:28.205 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78860]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:28.205 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:28.225 PM ReportCrash[78855]: Saved crash report for MessageCenter[78860] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233828_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:38.341 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78862]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:38.341 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:38.360 PM ReportCrash[78855]: Saved crash report for MessageCenter[78862] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233838_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:48.481 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78863]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:48.481 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:48.499 PM ReportCrash[78855]: Saved crash report for MessageCenter[78863] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233848_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:38:58.507 PM ReportCrash[78865]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:38:58.628 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78864]) Job appears to have crashed: Bus error: 10
    8/6/14 11:38:58.628 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:38:58.664 PM ReportCrash[78865]: Saved crash report for MessageCenter[78864] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233858_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:08.768 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78866]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:08.768 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:08.787 PM ReportCrash[78865]: Saved crash report for MessageCenter[78866] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233908_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:18.907 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78868]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:18.907 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:18.926 PM ReportCrash[78865]: Saved crash report for MessageCenter[78868] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233918_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:29.043 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78869]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:29.043 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:29.063 PM ReportCrash[78865]: Saved crash report for MessageCenter[78869] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233929_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:33.045 PM com.apple.backupd[78806]: Deep event scan at path:/Volumes/Media reason:must scan subdirs|require scan|
    8/6/14 11:39:33.046 PM com.apple.backupd[78806]: Finished scan
    8/6/14 11:39:33.046 PM com.apple.backupd[78806]: Not using file event preflight for Media
    8/6/14 11:39:35.803 PM com.apple.backupd[78806]: Found 70992 files (587.73 GB) needing backup
    8/6/14 11:39:35.834 PM com.apple.backupd[78806]: 611.31 GB required (including padding), 518.88 GB available
    8/6/14 11:39:35.834 PM com.apple.backupd[78806]: No expired backups exist - deleting oldest backups to make room
    8/6/14 11:39:39.185 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78870]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:39.185 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:39.204 PM ReportCrash[78865]: Saved crash report for MessageCenter[78870] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233939_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:47.777 PM com.apple.backupd[78806]: Deleted backup /Volumes/Time Machine/Backups.backupdb/Alex Edmunds’s MacBook Pro/2014-08-06-041205 containing 29.2 MB; 518.92 GB now available, 611.31 GB required
    8/6/14 11:39:47.777 PM com.apple.backupd[78806]: Removed 1 expired backups so far, more space is needed - deleting oldest backups to make room
    8/6/14 11:39:49.315 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78872]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:49.315 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:49.334 PM ReportCrash[78865]: Saved crash report for MessageCenter[78872] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233949_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:39:50.722 PM com.apple.backupd[78806]: Deleted backup /Volumes/Time Machine/Backups.backupdb/Alex Edmunds’s MacBook Pro/2014-08-06-050217 containing 16.4 MB; 518.93 GB now available, 611.31 GB required
    8/6/14 11:39:50.722 PM com.apple.backupd[78806]: Removed 2 expired backups so far, more space is needed - deleting oldest backups to make room
    8/6/14 11:39:54.321 PM com.apple.backupd[78806]: Deleted backup /Volumes/Time Machine/Backups.backupdb/Alex Edmunds’s MacBook Pro/2014-08-06-060415 containing 37.3 MB; 518.97 GB now available, 611.31 GB required
    8/6/14 11:39:54.321 PM com.apple.backupd[78806]: Removed 3 expired backups so far, more space is needed - deleting oldest backups to make room
    8/6/14 11:39:59.342 PM ReportCrash[78874]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    8/6/14 11:39:59.381 PM com.apple.backupd[78806]: Deleted backup /Volumes/Time Machine/Backups.backupdb/Alex Edmunds’s MacBook Pro/2014-08-06-070639 containing 108.3 MB; 519.09 GB now available, 611.31 GB required
    8/6/14 11:39:59.381 PM com.apple.backupd[78806]: Removed 4 expired backups so far, more space is needed - deleting oldest backups to make room
    8/6/14 11:39:59.467 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78873]) Job appears to have crashed: Bus error: 10
    8/6/14 11:39:59.467 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:39:59.507 PM ReportCrash[78874]: Saved crash report for MessageCenter[78873] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-233959_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:40:02.467 PM com.apple.backupd[78806]: Deleted backup /Volumes/Time Machine/Backups.backupdb/Alex Edmunds’s MacBook Pro/2014-08-06-080909 containing 91.3 MB; 519.18 GB now available, 611.31 GB required
    8/6/14 11:40:02.467 PM com.apple.backupd[78806]: Removed 5 expired backups so far, more space is needed - deleting oldest backups to make room
    8/6/14 11:40:02.467 PM com.apple.backupd[78806]: Deleted 5 backups containing 282.4 MB total; 519.18 GB now available, 611.31 GB required
    8/6/14 11:40:02.467 PM com.apple.backupd[78806]: Backup date range was shortened: oldest backup is now Aug 6, 2014
    8/6/14 11:40:03.163 PM com.apple.backupd[78806]: Backup failed with error 7: Not enough available disk space on the target volume.
    8/6/14 11:40:09.597 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78877]) Job appears to have crashed: Bus error: 10
    8/6/14 11:40:09.597 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:40:09.616 PM ReportCrash[78874]: Saved crash report for MessageCenter[78877] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-234009_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:40:19.731 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78878]) Job appears to have crashed: Bus error: 10
    8/6/14 11:40:19.731 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:40:19.749 PM ReportCrash[78874]: Saved crash report for MessageCenter[78878] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-234019_Alex-Edmundss-M acBook-Pro.crash
    8/6/14 11:40:29.863 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist[78879]) Job appears to have crashed: Bus error: 10
    8/6/14 11:40:29.863 PM com.apple.launchd[1]: (cn.com.zte.MessageCenter.plist) Throttling respawn: Will start in 10 seconds
    8/6/14 11:40:29.882 PM ReportCrash[78874]: Saved crash report for MessageCenter[78879] version ??? to /Library/Logs/DiagnosticReports/MessageCenter_2014-08-06-234029_Alex-Edmundss-M acBook-Pro.crash

  • The space required for backup suddenly doubled

    I'm running TC to backup my Macbook Pro (400GB in use of 500GB HD) and an external USB Drive (1TB in use of 2TB HD) since march this year.
    The Space required on the TC (3TB) has been roughly 1.6 TB an didn't change much over the months.
    A few days ago, TC reported it has deleted all backups prior to September because of low Space. Free Space on the TC is now only 750GB.
    The Data on the USB Drive has not changed and nothing significantly on the Macbook.
    Any ideas what's going on?

    Alright, so FileVault is not enabled and you see 1 sparsebundle on the Time Capsule's drive. Are you able to open this sparsebundle by doubleclicking?
    If you can, you should either see a "time machine"-drive appear on your Desktop, a "Time Machine"-drive in your Finder underneath "Devices" (or both)
    If you browse around your back-up this way, you should chance upon a list of folders with date-notations. Is there a file called something similar to "inprogress"? If so, this is an incompleted back-up. If Time Machine isn't performing a back-up right there and then, this is a failed back-up attempt. Does this file account for the extra space?
    If the file is small, you can simply trash it without consequence. If it's huge, you'll experience trouble emptying your trash in the future. If so, let us know and we can provide a Terminal-command that can do the job.
    If you can't open the sparsebundle, let is know the error.

  • Org.xml.sax.SAXParseException: White spaces are required between publicId

    Hi,
    Im migrating an application from weblogic to tomcat 5.5.23 with java 1.5. application involved PDF generation using xalan.jar for transformation. tht pdf generation part is not working in tomcat. Im getting a "org.xml.sax.SAXParseException: White spaces are required between public-Id and system id" error.
    so i replaced the old xalan.jar with latest one ( xalan 2.7.1 ) still no use. I have also explicitly defined the property "javax.xml.transform.TransformerFactory" to "org.apache.xalan.processor.TransformerFactoryImpl" still getting the same exception.
    plz help
    Thanks in Advance.

    I have had good results using JTidy to parse HTML into a DOM.

  • I just had to reformat the external hard drive that houses my iPhoto library, then restore it from a backup. Now Time Machine is telling me my backup hard drive suddenly does not have the space to complete a backup. I also noticed when I go in to Time Mac

    I just had to reformat the external hard drive that houses my iPhoto library, then restore it from a backup. Now Time Machine is telling me my backup hard drive suddenly does not have the space to complete a backup. I also noticed when I go in to Time Machine, there are only about 5 backups recorded on the ext. hard drive. There were many more before. Any idea what happened and if I have to buy a new back up hard drive?

    Hallo  Kieth ,
    I am not quite ready to restore the full iphoto library , as I have days of work re - imputting titles,descriptions and enhancement . I hope that your suggestion works , as I use my Macbook basically to work with digital photography. Through time , I will need to delete my library to recover more disc space and I would hate to have to spend more time re - imputting titles and descriptions all over again .
    Thanks for your interest and advice.
    regards  - Alan

  • To find the time required by the process chain to complete

    Hi Experts,
    I am calulating the average time required by the process chain to compete.
    Is there any way to find the time required by the process chain to complete..
    Thanks in advance.
    Regards,
    Ashwin

    Hi,
    There is a Tool provided by SAP to do the Process Chain Analysis.
    It is basically a ABAP Program /SSA/BWT which provides the following BW Tools:
    a)Process Chain Analysis : this tool is used to perform the Runtime analysis of the Process Chains. The analysis can be performed not only at Process Chain level but also at the Process Type level.
    b)Detailed Request Analysis
    c)Aggregate Toolset
    d)Infoprovider BPPO Analysis
    So you can go through the program and analyse the runtime of your Process Chains.
    Regards,
    Abhishek
    Edited by: Abhishek Dutta on Aug 13, 2008 7:13 AM

  • Limit Time Machine backup/sparsebundle so one machine doesn't hog all the time capsule space?

    Is this possible?
    I have a brand new time capsule, my wife and I will be backing up our computers to it using Time Machine. Is it possible to limit the storage size of the sparsebundles so one of us (probably me) wont hog all the space?
    My wife doesn't use her's as much, while my computer is on almost everyday, so I'm affraid my computer will limit the amount of states, or versions, that she can back up before her time machine has to start deleting old files.
    I'm trying to avoid a situation where my time machine goes back a year while her's only goes back a few months.
    Thanks!

    No. That is not how a Time Capsule and Time Machine work. All backups are adding to existing backups.
    About TM "Backup Drive is Full"
    Alert TM only deletes older files if they have been deleted from the source and when TM needs space on the backup drive for a new incremental backup. Time Machine "thins" it's backups; hourly backups over 24 hours old, except the first of the day; those "daily" backups over 30 days old, except the first of the week. The weeklies are kept as long as there's room.
    So, how long a backup file remains depends on how long it was on your Mac before being deleted, assuming you do at least one backup per day. If it was there for at least 24 hours, it will be kept for at least a month. If it was there for at least a week, it will be kept as long as there's room.
    Note, that on a Time Capsule the sparsebundle grows in size as needed, but doesn't shrink. Thus, from the user's view of the TC it appears that no space has been freed, although there may be space in the sparsebundle.
    Once TM has found it cannot free up enough space for a new backup it reports the disk is full. You can either erase the backup drive and start your backups anew or replace the drive with a larger drive.
    To accomplish what you want would mean using just an external backup drive partitioned with volumes for each of you to use, and the use of a different backup utility that overwrites old files rather than saving them as does Time Machine.

  • I just got a new MacBook Pro, and I tried to bring across my files from my last mac using time machine. After it was done copying I can't find my files anywhere but the space (about 130gb) has been used on my hard drive. Help please!!

    I just got a new MacBook Pro, and I tried to bring across my files from my last mac using time machine. After it was done copying I can't find my files anywhere but the space (about 130gb) has been used on my hard drive. Does anyone know how I can get to them? I did change my user name from 'user' while it was copying, could this have something to do with it?

    You don't want to do that by copying.
    Your best bet, by far, is to use Setup Assistant.  If your Mac is running Snow Leopard, see Using Setup Assistant on Snow Leopard or Leopard.
    If it came with Lion, it's a bit different: Using Setup Assistant on Lion

Maybe you are looking for

  • Also due to the implementation

    Even though e-commerce has brought a large amount of benefits to the user, it also poses a series of disadvantages. Hackers can gain access to sensitive information when these online transactions are made. In addition to the losses sustained by the u

  • What is the content of oracle  success kit?

    Please I need to know all the thIngs that are contained in the oracle success kit. My OCA certificate arrived my post office box in nigeria today. When I went to pick it up I discovered that it had been opened by mail agents. In order to be sure noth

  • UPGRADE ELIGIBILTY PROBLEMS or GLITCHES?

    *WARNING - THIS IS A LONG POST SO GET READY TO READ* Last night i had checked my upgrade eligiblity on the AT&T website and for some reason it had changed from me being eligible just a few days ago and even the day before to saying i should call into

  • Stored Procedures in Oracle 8i

    Can I Create a Stored Procedure that access table from two different schemas? For Example I have created this Stored Procedure on SCHEMA_ONE CREATE OR REPLACE PROCEDURE SP_DEMO IS BEGIN INSERT INTO SCHEMA_ONE.COUNTRY_ONE(COUNTRY_NAME) SELECT COUNTRY_

  • Unable to load photos from iPhoto library

    I have around 8400 photos in my iPhoto library. I was having difficulty importing photos. It would freeze during import. Also was acting very sluggish. I reinstalled iPhoto 4.0.3 from a dvd. I also drug to the iPhoto library to my desktop so when iPh