Layout taking more space than necessary...

Hi folks...my applet has two panels inside it arranged in a flowlayout. The first panel is a 5 row x 1 col gridlayout, and the second is working fine. The problem with the first one is that that it is taking more space than necessary and going out the bottom of the applet. Now if I do this in appletviewer, resizing the window by a few pixels will make it relayout the panel and everything looks fine, but of course you can't ask people to do that =) What's the problem here? I've tried validating both the applet and the problem panel, and tried invalidating it first. Any ideas? thanks!

Here is the first half of it...it has all the relevant info. I took out the validate stuff 'cause it wasn't helping.
import java.applet.Applet;
import java.awt.*;
import java.awt.event.*;
import java.util.Hashtable;
public class Spit extends Applet implements KeyListener {
     Hashtable images = new Hashtable();
     CardPacket myPacket;
     PlayerCardPile[] myPiles;
     Hand myHand;
     CardPacket oppPacket;
     PlayerCardPile[] oppPiles;
     Hand oppHand;
     MainCardPile[] mainPiles;
     CardPile takenFrom;
     private final int WIDTH = 700;
     private final int HEIGHT= 800;
     Graphics offscreen;
     Image image;
     ChatPanel theChatPanel = new ChatPanel(this);
     public final int HAND = -1;
     public final int PACKET = -2;
     public final int LEFT_MAIN_PILE = 0;
     public final int RIGHT_MAIN_PILE = 1;
     boolean pendingMainPileMove = false;
     Panel gameSpace = new Panel();
     public void init() {
          loadImages();
          initPiles();
          placePiles();
          addKeyListener( this );
          myPacket.addKeyListener( this );
          mainPiles[0].addKeyListener( this );
          mainPiles[1].addKeyListener( this );
          for( int i = 0 ; i < 5 ; i++ )
               myPiles.addKeyListener( this );
          image = createImage( WIDTH, HEIGHT );
          offscreen = image.getGraphics();
          myPacket.requestFocus();
     public void loadImages() {
          MediaTracker t = new MediaTracker(this);
          for( int i = Card.CLUB; i <= Card.SPADE ; i++ )
               for( int j = Card.ACE; j <= Card.KING; j++ )
                    images.put( Card.toString(i,j),
                         getImage(getCodeBase(),"images/"+Card.toString(i,j)+".gif") );
          images.put( "back", getImage(getCodeBase(),"images/back.gif") );
          // wait for all images to finish loading
          try {
               t.waitForAll();
          }catch (InterruptedException e) {}
          // check for errors //
          if (t.isErrorAny()) {
               showStatus("Error Loading Images!");
          else if (t.checkAll()) {
               showStatus("Images successfully loaded");
     public void dealNewGame() {
          emptyPiles();
          Deck theDeck = new Deck( images );
          for( int i = 0 ; i < 26 ; i++ )
               oppPacket.add( theDeck.getCard(i) );
          for( int i = 26 ; i < 52 ; i++ )
               myPacket.add( theDeck.getCard(i) );
          theChatPanel.sendCardPackets( oppPacket.toString() , myPacket.toString() );
          dealMyPacket();
          dealOppPacket();
          repaint();
     public void dealMyPacket() {
          for( int i = 0 ; i < 5 && myPacket.numCards() > 0 ; i++ ) {
               for( int j = i ; j < 5 && myPacket.numCards() > 0 ; j++ ) {
                    Card temp = myPacket.remove();
                    if( j == i )
                         temp.flip();
                    myPiles[j].deal( temp );
               myPiles[i].repaint();
     public void dealOppPacket() {
          for( int i = 0 ; i < 5 && oppPacket.numCards() > 0 ; i++ ) {
               for( int j = i ; j < 5 && oppPacket.numCards() > 0 ; j++ ) {
                    Card temp = oppPacket.remove();
                    if( j == i )
                         temp.flip();
                    oppPiles[j].deal( temp );
               oppPiles[i].repaint();
     public void setPackets( String strMyPack , String strOppPack ) {
          emptyPiles();
          myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
          oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
          dealMyPacket();
          dealOppPacket();
     public void setOppPacket( String strOppPack ) {
          String strMyPack = myPacket.toString();
          emptyPiles();
          myPacket.replaceWith( CardPacket.parseString( strMyPack , images ) );
          oppPacket.replaceWith( CardPacket.parseString( strOppPack , images ) );
          dealMyPacket();
          dealOppPacket();
     public void emptyPiles() {
          myPacket.makeEmpty();
          oppPacket.makeEmpty();
          myHand.makeEmpty();
          oppHand.makeEmpty();
          for( int i = 0 ; i < 5 ; i++ ) {
               myPiles[i].makeEmpty();
               oppPiles[i].makeEmpty();
          mainPiles[0].makeEmpty();
          mainPiles[1].makeEmpty();
     public void initPiles() {
          myPacket = new CardPacket();
          myPiles = new PlayerCardPile[5];
          myHand = new Hand();
          oppPacket = new CardPacket();
          oppPiles = new PlayerCardPile[5];
          oppHand = new Hand();
          mainPiles = new MainCardPile[2];
          for( int i = 0 ; i < 5 ; i++ ) {
               oppPiles[i] = new PlayerCardPile();
               myPiles[i] = new PlayerCardPile();
          mainPiles[0] = new MainCardPile();
          mainPiles[1] = new MainCardPile();
     public void placePiles() {
          Panel row1 = new Panel();
          row1.add( (Component)oppHand );
          row1.add( (Component)oppPacket );
          Panel row2 = new Panel();
          for( int i = 4 ; i >= 0 ; i-- )
               row2.add((Component)oppPiles[i]);
          Panel row3 = new Panel();
          row3.add( mainPiles[0] = new MainCardPile() );
          row3.add( mainPiles[1] = new MainCardPile() );
          Panel row4 = new Panel();
          for( int i = 0 ; i < 5 ; i++ )
               row4.add((Component)myPiles[i]);
          Panel row5 = new Panel();
          row5.add((Component)myPacket);
          row5.add((Component)myHand);
          gameSpace.setLayout( new GridLayout(5,1) );
          gameSpace.add(row1);
          gameSpace.add(row2);
          gameSpace.add(row3);
          gameSpace.add(row4);
          gameSpace.add(row5);
          this.add( gameSpace );
          this.add( theChatPanel );
          this.setBackground( Color.white );
          gameSpace.setBackground( Color.white );
          theChatPanel.setBackground( Color.white );
public void paint( Graphics g ) {
          super.paint( offscreen );
          offscreen.setColor(Color.white);
          offscreen.fillRect(0,0,WIDTH,HEIGHT);
          g.drawImage(image,0,0,this);

Similar Messages

  • Time machine need more space than necessary.

    Hi.
    Can anyone help. I have a two 1TB external hard drives one backs the other up. Until now it has been fine but suddenly time machine has decided theres not enough room even though there the same size drives. Ive deleted the backup drive and the time machine preferences but it still wont work. I have one drive with 930GB on and time machine says it needs 1.1TB of space. Why dose it need an extra 170GB. Help?
    Thanks

    Since Time Machine keeps copies of previous versions of things you've changed or deleted, it needs much more space than the data it's backing-up.
    The extra 170 GB is for "padding" -- workspace on the backup volume, and in case the original estimate isn't accurate, or more files are changed or added while the backup is running.
    #1 in the link Carolyn supplied explains this a bit more, and recomends that your backup drive be 2-3 times the size of the data it's backing-up.

  • Time Machine requiring more space than necessary?

    Hi all,
    Since I only have a 60gb external drive (whereas my laptop has 250gb) I burned some files to DVDs and then excluded them from the Time Machine backup so the backup would fit in 60gb (~56gb, really).
    Anyways, when I managed to reduce the size of my backup to around 51gb, I got a message saying that the backup would require 64.7gb. I thought it was okay, maybe TM needs a bit more space for whatever reason. But even after shrinking by backup to only 41gb, it still says 64.7gb are needed!
    I'm desperate because I haven't been able to find a solution and thus I've been unable to backup my files.
    Thanks in advance

    Thanks for your replies, but I am perfectly aware of how TM works and that I need a bigger hard disk to back up.
    A friend also has a computer with a 250 HDD and he backs up perfectly around 50gb of files in a 60gb hard disk.
    I've formatted my disk and I'm doing this as my first backup, so I know there are no 'extra files' to be backed up besides those I've chosen not to exclude.
    But my question is why does TM require exactly the same disk space (64.6GB) with different backup sizes (from 35GB to 53GB), it's ALWAYS the same space!
    I really appreciate your replies, though. =)

  • Why are my apps taking up more space than what the appstore says they will? Like were talking a full GB more than what it should.

    Why are my apps taking up more space than what the appstore says they will? Like were talking a half a GB more than what it should.
    For example the app Modern Combat 4 says it should only be 1.58 GB on the appstore but when i go into settings>general>usage it says it takes up 2.0 GB.
    Ive tried deleting the apps and then reinstalling them but they still take up so much more space.
    This happens for multiple apps of mine. Some I have never even opened before.
    I have an ipod touch (4th Gen)(32GB).
    I link to a mac computer.
    I have IOS version 6.1.3
    I noticed this a long time ago but didnt need the space, Now i need the space!!
    Please help!!

    Because you see the file size of the compuressed file. The file gets expanded when installed and that takes up more space. Also, data is kept in the app.

  • "Manually manage music and videos" takes up more space than syncing?

    Hello all,
    I fear that I am just stupid and unseeing an obvious answer to this query, but ask I shall, because it is frustrating me to no end.
    I recently downloaded a few audiobooks from my local library to listen to on my iPod Touch; the app in question requires that you "manually manage music and videos" rather than syncing. Fine.
    I switch over to iTunes, check the box, and now my music--without changing anything, mind--is now taking up an additional 1.8 (or more) gigs on my iPod. I toggle the option to "manually manage" on and off, and with it "on", my music takes up more space than with it "off", even though it's the same music, same podcasts.
    Can someone please explain to me why syncing manually takes up more space than syncing automatically and where the extra gigs are coming from? There's not that much audio on my iPod--1.52 gb of music, 1.97 gb of podcasts and .69 gb of apps--which only adds up to 4.18 gb, and on an 8g touch, should leave me with about 4 gb of "wiggle room", so to speak, rather than .27 gb.
    Help, please!

    iTunes will normally put just one copy of each file on the iPod and link it to multiple playlists. If your iPod's database has been corrupted at some point however, there may be unattached copies of your meadia from earlier sync attempts, taking up space on the drive, but not visible in the library. How much space does iTunes report for Other? Excluding files placed manually & intentionally on the iPod, "other" is typically an overhead of 1%-2% of the size of the media and represents the iPod database, artwork, games etc. If you have significantly larger amounts of "other" then you will need to restore your iPod in order to reclaim the space.
    tt2

  • Query in timesten taking more time than query in oracle database

    Hi,
    Can anyone please explain me why query in timesten taking more time
    than query in oracle database.
    I am mentioning in detail what are my settings and what have I done
    step by step.........
    1.This is the table I created in Oracle datababase
    (Oracle Database 10g Enterprise Edition Release 10.2.0.1.0)...
    CREATE TABLE student (
    id NUMBER(9) primary keY ,
    first_name VARCHAR2(10),
    last_name VARCHAR2(10)
    2.THIS IS THE ANONYMOUS BLOCK I USE TO
    POPULATE THE STUDENT TABLE(TOTAL 2599999 ROWS)...
    declare
    firstname varchar2(12);
    lastname varchar2(12);
    catt number(9);
    begin
    for cntr in 1..2599999 loop
    firstname:=(cntr+8)||'f';
    lastname:=(cntr+2)||'l';
    if cntr like '%9999' then
    dbms_output.put_line(cntr);
    end if;
    insert into student values(cntr,firstname, lastname);
    end loop;
    end;
    3. MY DSN IS SET THE FOLLWING WAY..
    DATA STORE PATH- G:\dipesh3repo\db
    LOG DIRECTORY- G:\dipesh3repo\log
    PERM DATA SIZE-1000
    TEMP DATA SIZE-1000
    MY TIMESTEN VERSION-
    C:\Documents and Settings\dipesh>ttversion
    TimesTen Release 7.0.3.0.0 (32 bit NT) (tt70_32:17000) 2007-09-19T16:04:16Z
    Instance admin: dipesh
    Instance home directory: G:\TimestTen\TT70_32
    Daemon home directory: G:\TimestTen\TT70_32\srv\info
    THEN I CONNECT TO THE TIMESTEN DATABASE
    C:\Documents and Settings\dipesh> ttisql
    command>connect "dsn=dipesh3;oraclepwd=tiger";
    4. THEN I START THE AGENT
    call ttCacheUidPwdSet('SCOTT','TIGER');
    Command> CALL ttCacheStart();
    5.THEN I CREATE THE READ ONLY CACHE GROUP AND LOAD IT
    create readonly cache group rc_student autorefresh
    interval 5 seconds from student
    (id int not null primary key, first_name varchar2(10), last_name varchar2(10));
    load cache group rc_student commit every 100 rows;
    6.NOW I CAN ACCESS THE TABLES FROM TIMESTEN AND PERFORM THE QUERY
    I SET THE TIMING..
    command>TIMING 1;
    consider this query now..
    Command> select * from student where first_name='2155666f';
    < 2155658, 2155666f, 2155660l >
    1 row found.
    Execution time (SQLExecute + Fetch Loop) = 0.668822 seconds.
    another query-
    Command> SELECT * FROM STUDENTS WHERE FIRST_NAME='2340009f';
    2206: Table SCOTT.STUDENTS not found
    Execution time (SQLPrepare) = 0.074964 seconds.
    The command failed.
    Command> SELECT * FROM STUDENT where first_name='2093434f';
    < 2093426, 2093434f, 2093428l >
    1 row found.
    Execution time (SQLExecute + Fetch Loop) = 0.585897 seconds.
    Command>
    7.NOW I PERFORM THE SIMILAR QUERIES FROM SQLPLUS...
    SQL> SELECT * FROM STUDENT WHERE FIRST_NAME='1498671f';
    ID FIRST_NAME LAST_NAME
    1498663 1498671f 1498665l
    Elapsed: 00:00:00.15
    Can anyone please explain me why query in timesten taking more time
    that query in oracle database.
    Message was edited by: Dipesh Majumdar
    user542575
    Message was edited by:
    user542575

    TimesTen
    Hardware: Windows Server 2003 R2 Enterprise x64; 8 x Dual-core AMD 8216 2.41GHz processors; 32 GB RAM
    Version: 7.0.4.0.0 64 bit
    Schema:
    create usermanaged cache group factCache from
    MV_US_DATAMART
    ORDER_DATE               DATE,
    IF_SYSTEM               VARCHAR2(32) NOT NULL,
    GROUPING_ID                TT_BIGINT,
    TIME_DIM_ID               TT_INTEGER NOT NULL,
    BUSINESS_DIM_ID          TT_INTEGER NOT NULL,
    ACCOUNT_DIM_ID               TT_INTEGER NOT NULL,
    ORDERTYPE_DIM_ID          TT_INTEGER NOT NULL,
    INSTR_DIM_ID               TT_INTEGER NOT NULL,
    EXECUTION_DIM_ID          TT_INTEGER NOT NULL,
    EXEC_EXCHANGE_DIM_ID TT_INTEGER NOT NULL,
    NO_ORDERS               TT_BIGINT,
    FILLED_QUANTITY          TT_BIGINT,
    CNT_FILLED_QUANTITY          TT_BIGINT,
    QUANTITY               TT_BIGINT,
    CNT_QUANTITY               TT_BIGINT,
    COMMISSION               BINARY_FLOAT,
    CNT_COMMISSION               TT_BIGINT,
    FILLS_NUMBER               TT_BIGINT,
    CNT_FILLS_NUMBER          TT_BIGINT,
    AGGRESSIVE_FILLS          TT_BIGINT,
    CNT_AGGRESSIVE_FILLS          TT_BIGINT,
    NOTIONAL               BINARY_FLOAT,
    CNT_NOTIONAL               TT_BIGINT,
    TOTAL_PRICE               BINARY_FLOAT,
    CNT_TOTAL_PRICE          TT_BIGINT,
    CANCELLED_ORDERS_COUNT          TT_BIGINT,
    CNT_CANCELLED_ORDERS_COUNT     TT_BIGINT,
    ROUTED_ORDERS_NO          TT_BIGINT,
    CNT_ROUTED_ORDERS_NO          TT_BIGINT,
    ROUTED_LIQUIDITY_QTY          TT_BIGINT,
    CNT_ROUTED_LIQUIDITY_QTY     TT_BIGINT,
    REMOVED_LIQUIDITY_QTY          TT_BIGINT,
    CNT_REMOVED_LIQUIDITY_QTY     TT_BIGINT,
    ADDED_LIQUIDITY_QTY          TT_BIGINT,
    CNT_ADDED_LIQUIDITY_QTY     TT_BIGINT,
    AGENT_CHARGES               BINARY_FLOAT,
    CNT_AGENT_CHARGES          TT_BIGINT,
    CLEARING_CHARGES          BINARY_FLOAT,
    CNT_CLEARING_CHARGES          TT_BIGINT,
    EXECUTION_CHARGES          BINARY_FLOAT,
    CNT_EXECUTION_CHARGES          TT_BIGINT,
    TRANSACTION_CHARGES          BINARY_FLOAT,
    CNT_TRANSACTION_CHARGES     TT_BIGINT,
    ORDER_MANAGEMENT          BINARY_FLOAT,
    CNT_ORDER_MANAGEMENT          TT_BIGINT,
    SETTLEMENT_CHARGES          BINARY_FLOAT,
    CNT_SETTLEMENT_CHARGES          TT_BIGINT,
    RECOVERED_AGENT          BINARY_FLOAT,
    CNT_RECOVERED_AGENT          TT_BIGINT,
    RECOVERED_CLEARING          BINARY_FLOAT,
    CNT_RECOVERED_CLEARING          TT_BIGINT,
    RECOVERED_EXECUTION          BINARY_FLOAT,
    CNT_RECOVERED_EXECUTION     TT_BIGINT,
    RECOVERED_TRANSACTION          BINARY_FLOAT,
    CNT_RECOVERED_TRANSACTION     TT_BIGINT,
    RECOVERED_ORD_MGT          BINARY_FLOAT,
    CNT_RECOVERED_ORD_MGT          TT_BIGINT,
    RECOVERED_SETTLEMENT          BINARY_FLOAT,
    CNT_RECOVERED_SETTLEMENT     TT_BIGINT,
    CLIENT_AGENT               BINARY_FLOAT,
    CNT_CLIENT_AGENT          TT_BIGINT,
    CLIENT_ORDER_MGT          BINARY_FLOAT,
    CNT_CLIENT_ORDER_MGT          TT_BIGINT,
    CLIENT_EXEC               BINARY_FLOAT,
    CNT_CLIENT_EXEC          TT_BIGINT,
    CLIENT_TRANS               BINARY_FLOAT,
    CNT_CLIENT_TRANS          TT_BIGINT,
    CLIENT_CLEARING          BINARY_FLOAT,
    CNT_CLIENT_CLEARING          TT_BIGINT,
    CLIENT_SETTLE               BINARY_FLOAT,
    CNT_CLIENT_SETTLE          TT_BIGINT,
    CHARGEABLE_TAXES          BINARY_FLOAT,
    CNT_CHARGEABLE_TAXES          TT_BIGINT,
    VENDOR_CHARGE               BINARY_FLOAT,
    CNT_VENDOR_CHARGE          TT_BIGINT,
    ROUTING_CHARGES          BINARY_FLOAT,
    CNT_ROUTING_CHARGES          TT_BIGINT,
    RECOVERED_ROUTING          BINARY_FLOAT,
    CNT_RECOVERED_ROUTING          TT_BIGINT,
    CLIENT_ROUTING               BINARY_FLOAT,
    CNT_CLIENT_ROUTING          TT_BIGINT,
    TICKET_CHARGES               BINARY_FLOAT,
    CNT_TICKET_CHARGES          TT_BIGINT,
    RECOVERED_TICKET_CHARGES     BINARY_FLOAT,
    CNT_RECOVERED_TICKET_CHARGES     TT_BIGINT,
    PRIMARY KEY(ORDER_DATE, TIME_DIM_ID, BUSINESS_DIM_ID, ACCOUNT_DIM_ID, ORDERTYPE_DIM_ID, INSTR_DIM_ID, EXECUTION_DIM_ID,EXEC_EXCHANGE_DIM_ID),
    READONLY);
    No of rows: 2228558
    Config:
    < CkptFrequency, 600 >
    < CkptLogVolume, 0 >
    < CkptRate, 0 >
    < ConnectionCharacterSet, US7ASCII >
    < ConnectionName, tt_us_dma >
    < Connections, 64 >
    < DataBaseCharacterSet, AL32UTF8 >
    < DataStore, e:\andrew\datacache\usDMA >
    < DurableCommits, 0 >
    < GroupRestrict, <NULL> >
    < LockLevel, 0 >
    < LockWait, 10 >
    < LogBuffSize, 65536 >
    < LogDir, e:\andrew\datacache\ >
    < LogFileSize, 64 >
    < LogFlushMethod, 1 >
    < LogPurge, 0 >
    < Logging, 1 >
    < MemoryLock, 0 >
    < NLS_LENGTH_SEMANTICS, BYTE >
    < NLS_NCHAR_CONV_EXCP, 0 >
    < NLS_SORT, BINARY >
    < OracleID, NYCATP1 >
    < PassThrough, 0 >
    < PermSize, 4000 >
    < PermWarnThreshold, 90 >
    < PrivateCommands, 0 >
    < Preallocate, 0 >
    < QueryThreshold, 0 >
    < RACCallback, 0 >
    < SQLQueryTimeout, 0 >
    < TempSize, 514 >
    < TempWarnThreshold, 90 >
    < Temporary, 1 >
    < TransparentLoad, 0 >
    < TypeMode, 0 >
    < UID, OS_OWNER >
    ORACLE:
    Hardware: Sunos 5.10; 24x1.8Ghz (unsure of type); 82 GB RAM
    Version 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    Schema:
    CREATE MATERIALIZED VIEW OS_OWNER.MV_US_DATAMART
    TABLESPACE TS_OS
    PARTITION BY RANGE (ORDER_DATE)
    PARTITION MV_US_DATAMART_MINVAL VALUES LESS THAN (TO_DATE(' 2007-11-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_NOV_D1 VALUES LESS THAN (TO_DATE(' 2007-11-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_NOV_D2 VALUES LESS THAN (TO_DATE(' 2007-11-21 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_NOV_D3 VALUES LESS THAN (TO_DATE(' 2007-12-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_DEC_D1 VALUES LESS THAN (TO_DATE(' 2007-12-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_DEC_D2 VALUES LESS THAN (TO_DATE(' 2007-12-21 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_07_DEC_D3 VALUES LESS THAN (TO_DATE(' 2008-01-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_08_JAN_D1 VALUES LESS THAN (TO_DATE(' 2008-01-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_08_JAN_D2 VALUES LESS THAN (TO_DATE(' 2008-01-21 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_08_JAN_D3 VALUES LESS THAN (TO_DATE(' 2008-02-01 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS,
    PARTITION MV_US_DATAMART_MAXVAL VALUES LESS THAN (MAXVALUE)
    LOGGING
    NOCOMPRESS
    TABLESPACE TS_OS
    NOCACHE
    NOCOMPRESS
    NOPARALLEL
    BUILD DEFERRED
    USING INDEX
    TABLESPACE TS_OS_INDEX
    REFRESH FAST ON DEMAND
    WITH PRIMARY KEY
    ENABLE QUERY REWRITE
    AS
    SELECT order_date, if_system,
    GROUPING_ID (order_date,
    if_system,
    business_dim_id,
    time_dim_id,
    account_dim_id,
    ordertype_dim_id,
    instr_dim_id,
    execution_dim_id,
    exec_exchange_dim_id
    ) GROUPING_ID,
    /* ============ DIMENSIONS ============ */
    time_dim_id, business_dim_id, account_dim_id, ordertype_dim_id,
    instr_dim_id, execution_dim_id, exec_exchange_dim_id,
    /* ============ MEASURES ============ */
    -- o.FX_RATE /* FX_RATE */,
    COUNT (*) no_orders,
    -- SUM(NO_ORDERS) NO_ORDERS,
    -- COUNT(NO_ORDERS) CNT_NO_ORDERS,
    SUM (filled_quantity) filled_quantity,
    COUNT (filled_quantity) cnt_filled_quantity, SUM (quantity) quantity,
    COUNT (quantity) cnt_quantity, SUM (commission) commission,
    COUNT (commission) cnt_commission, SUM (fills_number) fills_number,
    COUNT (fills_number) cnt_fills_number,
    SUM (aggressive_fills) aggressive_fills,
    COUNT (aggressive_fills) cnt_aggressive_fills,
    SUM (fx_rate * filled_quantity * average_price) notional,
    COUNT (fx_rate * filled_quantity * average_price) cnt_notional,
    SUM (fx_rate * fills_number * average_price) total_price,
    COUNT (fx_rate * fills_number * average_price) cnt_total_price,
    SUM (CASE
    WHEN order_status = 'C'
    THEN 1
    ELSE 0
    END) cancelled_orders_count,
    COUNT (CASE
    WHEN order_status = 'C'
    THEN 1
    ELSE 0
    END
    ) cnt_cancelled_orders_count,
    -- SUM(t.FX_RATE*t.NO_FILLS*t.AVG_PRICE) AVERAGE_PRICE,
    -- SUM(FILLS_NUMBER*AVERAGE_PRICE) STAGING_AVERAGE_PRICE,
    -- COUNT(FILLS_NUMBER*AVERAGE_PRICE) CNT_STAGING_AVERAGE_PRICE,
    SUM (routed_orders_no) routed_orders_no,
    COUNT (routed_orders_no) cnt_routed_orders_no,
    SUM (routed_liquidity_qty) routed_liquidity_qty,
    COUNT (routed_liquidity_qty) cnt_routed_liquidity_qty,
    SUM (removed_liquidity_qty) removed_liquidity_qty,
    COUNT (removed_liquidity_qty) cnt_removed_liquidity_qty,
    SUM (added_liquidity_qty) added_liquidity_qty,
    COUNT (added_liquidity_qty) cnt_added_liquidity_qty,
    SUM (agent_charges) agent_charges,
    COUNT (agent_charges) cnt_agent_charges,
    SUM (clearing_charges) clearing_charges,
    COUNT (clearing_charges) cnt_clearing_charges,
    SUM (execution_charges) execution_charges,
    COUNT (execution_charges) cnt_execution_charges,
    SUM (transaction_charges) transaction_charges,
    COUNT (transaction_charges) cnt_transaction_charges,
    SUM (order_management) order_management,
    COUNT (order_management) cnt_order_management,
    SUM (settlement_charges) settlement_charges,
    COUNT (settlement_charges) cnt_settlement_charges,
    SUM (recovered_agent) recovered_agent,
    COUNT (recovered_agent) cnt_recovered_agent,
    SUM (recovered_clearing) recovered_clearing,
    COUNT (recovered_clearing) cnt_recovered_clearing,
    SUM (recovered_execution) recovered_execution,
    COUNT (recovered_execution) cnt_recovered_execution,
    SUM (recovered_transaction) recovered_transaction,
    COUNT (recovered_transaction) cnt_recovered_transaction,
    SUM (recovered_ord_mgt) recovered_ord_mgt,
    COUNT (recovered_ord_mgt) cnt_recovered_ord_mgt,
    SUM (recovered_settlement) recovered_settlement,
    COUNT (recovered_settlement) cnt_recovered_settlement,
    SUM (client_agent) client_agent,
    COUNT (client_agent) cnt_client_agent,
    SUM (client_order_mgt) client_order_mgt,
    COUNT (client_order_mgt) cnt_client_order_mgt,
    SUM (client_exec) client_exec, COUNT (client_exec) cnt_client_exec,
    SUM (client_trans) client_trans,
    COUNT (client_trans) cnt_client_trans,
    SUM (client_clearing) client_clearing,
    COUNT (client_clearing) cnt_client_clearing,
    SUM (client_settle) client_settle,
    COUNT (client_settle) cnt_client_settle,
    SUM (chargeable_taxes) chargeable_taxes,
    COUNT (chargeable_taxes) cnt_chargeable_taxes,
    SUM (vendor_charge) vendor_charge,
    COUNT (vendor_charge) cnt_vendor_charge,
    SUM (routing_charges) routing_charges,
    COUNT (routing_charges) cnt_routing_charges,
    SUM (recovered_routing) recovered_routing,
    COUNT (recovered_routing) cnt_recovered_routing,
    SUM (client_routing) client_routing,
    COUNT (client_routing) cnt_client_routing,
    SUM (ticket_charges) ticket_charges,
    COUNT (ticket_charges) cnt_ticket_charges,
    SUM (recovered_ticket_charges) recovered_ticket_charges,
    COUNT (recovered_ticket_charges) cnt_recovered_ticket_charges
    FROM us_datamart_raw
    GROUP BY order_date,
    if_system,
    business_dim_id,
    time_dim_id,
    account_dim_id,
    ordertype_dim_id,
    instr_dim_id,
    execution_dim_id,
    exec_exchange_dim_id;
    -- Note: Index I_SNAP$_MV_US_DATAMART will be created automatically
    -- by Oracle with the associated materialized view.
    CREATE UNIQUE INDEX OS_OWNER.MV_US_DATAMART_UDX ON OS_OWNER.MV_US_DATAMART
    (ORDER_DATE, TIME_DIM_ID, BUSINESS_DIM_ID, ACCOUNT_DIM_ID, ORDERTYPE_DIM_ID,
    INSTR_DIM_ID, EXECUTION_DIM_ID, EXEC_EXCHANGE_DIM_ID)
    NOLOGGING
    NOPARALLEL
    COMPRESS 7;
    No of rows: 2228558
    The query (taken Mondrian) I run against each of them is:
    select sum("MV_US_DATAMART"."NOTIONAL") as "m0"
    --, sum("MV_US_DATAMART"."FILLED_QUANTITY") as "m1"
    --, sum("MV_US_DATAMART"."AGENT_CHARGES") as "m2"
    --, sum("MV_US_DATAMART"."CLEARING_CHARGES") as "m3"
    --, sum("MV_US_DATAMART"."EXECUTION_CHARGES") as "m4"
    --, sum("MV_US_DATAMART"."TRANSACTION_CHARGES") as "m5"
    --, sum("MV_US_DATAMART"."ROUTING_CHARGES") as "m6"
    --, sum("MV_US_DATAMART"."ORDER_MANAGEMENT") as "m7"
    --, sum("MV_US_DATAMART"."SETTLEMENT_CHARGES") as "m8"
    --, sum("MV_US_DATAMART"."COMMISSION") as "m9"
    --, sum("MV_US_DATAMART"."RECOVERED_AGENT") as "m10"
    --, sum("MV_US_DATAMART"."RECOVERED_CLEARING") as "m11"
    --,sum("MV_US_DATAMART"."RECOVERED_EXECUTION") as "m12"
    --,sum("MV_US_DATAMART"."RECOVERED_TRANSACTION") as "m13"
    --, sum("MV_US_DATAMART"."RECOVERED_ROUTING") as "m14"
    --, sum("MV_US_DATAMART"."RECOVERED_ORD_MGT") as "m15"
    --, sum("MV_US_DATAMART"."RECOVERED_SETTLEMENT") as "m16"
    --, sum("MV_US_DATAMART"."RECOVERED_TICKET_CHARGES") as "m17"
    --,sum("MV_US_DATAMART"."TICKET_CHARGES") as "m18"
    --, sum("MV_US_DATAMART"."VENDOR_CHARGE") as "m19"
              from "OS_OWNER"."MV_US_DATAMART" "MV_US_DATAMART"
    where I uncomment a column at a time and rerun. I improved the TimesTen results since my first post, by retyping the NUMBER columns to BINARY_FLOAT. The results I got were:
    No Columns     ORACLE     TimesTen     
    1     1.05     0.94     
    2     1.07     1.47     
    3     2.04     1.8     
    4     2.06     2.08     
    5     2.09     2.4     
    6     3.01     2.67     
    7     4.02     3.06     
    8     4.03     3.37     
    9     4.04     3.62     
    10     4.06     4.02     
    11     4.08     4.31     
    12     4.09     4.61     
    13     5.01     4.76     
    14     5.02     5.06     
    15     5.04     5.25     
    16     5.05     5.48     
    17     5.08     5.84     
    18     6     6.21     
    19     6.02     6.34     
    20     6.04     6.75

  • Level1 backup is taking more time than Level0

    The Level1 backup is taking more time than Level0, I really am frustated how could it happen. I have 6.5GB of database. Level0 took 8 hrs but level1 is taking more than 8hrs . please help me in this regard.

    Ogan Ozdogan wrote:
    Charles,
    By enabling the block change tracking will be indeed faster than before he have got. I think this does not address the question of the OP unless you are saying the incremental backup without the block change tracking is slower than a level 0 (full) backup?
    Thank you in anticipating.
    OganOgan,
    I can't explain why a 6.5GB level 0 RMAN backup would require 8 hours to complete (maybe a very slow destination device connected by 10Mb/s Ethernet) - I would expect that it should complete in a couple of minutes.
    An incremental level 1 backup without a block change tracking file could take longer than a level 0 backup. I encountered a good written description of why that could happen, but I can't seem to locate the source at the moment. The longer run time might have been related to the additional code paths required to constantly compare the SCN of each block, and the variable write rate which may affect some devices, such as a tape device.
    A paraphrase from the book "Oracle Database 10g RMAN Backup & Recovery"
    "Incremental backups must check the header of each block to discover if it has changed since the last incremental backup - that means an incremental backup may not complete much faster than a full backup."
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Why fixed layout is more expensive than reflow?

    Hi
    i'm a beginner in epub and css.
    I noticed that fixed layout is more expensive than reflow and i do not understand why.
    To my mind, the work is the same : modify css and some other pages (toc etc.)
    so the price should be the same.
    sorry for this question which must be stupid, but i need to know:)
    Ced

    Fixed Layout EPUB with InDesign currently requires knowledge of custom plug-ins to precisely position objects on the page. You're not getting any help from InDesign. It can be quite time consuming.
    Reflowable EPUB with InDesign CC can be mostly done by properly formatting the document with styles, by using the Articles panel, by customizing objects with Object Export Options, by mapping styles to tags, etc. Most of the work is done in InDesign and it requires less time.
    I can say publicly that Douglas Waterfall, InDesign's software architect, has hinted that he is leading work on the Fixed Layout area and we may see big changes before long.

  • Movie files take up more space than they should

    Hi! I'm new to iDVD, and I wanted to take about 20 .mp4 files and put them on a DVD that a DVD player hooked to my TV will be able to read. The combined size of all the files is under 4GB and will fit on a burnable DVD. But when I drag them into iDVD, it only lets me have like 5 before it says it is full. Why is this happening? Why should the video take up more space than the file's actual size? If anyone can help, I'd appreciate it!

    iDVD works on time and NOT on RAW file size!!
    All video is converted to MPG-2 by the encoding process in iDVD. With a single layer disc, you can get UP TO 60 minutes of content in Best Performance mode and UP TO 120 minutes in Best Quality mode.

  • Firevault: "Your homefolder is using more space than required"

    I would like to ask for some help. After every log-out, Firevault tells me that "Your homefolder is using more space than required" (or something between that lines). What can I do?
    Thank you for the help.

    Hi Morales,
    Unless you have a need for military-level security, FileVault is overkill. It slows your computer because all sorts of cache and preference files are repeatedly encrypted and decrypted, and because filevault is saving all your files in a big "container file," disk and directory errors that would otherwise be minor can cause massive data loss on a filevault-ed computer.
    To keep SOME files secure, an encrypted, password protected disk image is a better idea. You can make encrypted disk images with Applications/Utilities/Disk Utility. Do File > New > Disk Image from Folder.
    John

  • OLAP taking 5 time more space than RDBMS?

    Hello,
    I have been investigating Oracle's OLAP capabilities for about 2 weeks now in an effort to determine whether OLAP would be a feasible solution for my company's data warehousing needs.
    I have created an extremely simple analytic workspace that is based on a single relational fact table. The fact table contains both the dimension values (integers) and the measuers (floats). There are a total of about 300,000 dimension values all of which reference measures (the data is perfectly dense).
    I created a dimension and a data cube using the Enterprise Manager OLAP interface. Next, I created the analytic workspace using the Analytic Workspace Manager wizard. This AW building step took an extraordinary amount of time considering the simplicity of the data. In fact, I started it on a Friday afternoon, monitored it for about 2 hours, and it still hadn't finished, so I let it run over the weekend (for this reason, I am not sure how much time exactly it took, but it's definitely quite a few hours). Is this normal? Copying the relational table takes 10 seconds, and I find it hard to believe that building an AW with the same data would take so much time.
    Finally, coming back on Monday I see that the AW was created successfully. I went into the tablespace map to look at how big the binary blob is. To my great surprise, the AW was taking up about 5 times more extents than my relational table (contrary to what I've read so far about OLAP and its supposedly very storage-efficient data cubes).
    I was wondering if anybody could advise me on what I could have done wrong and/or inefficiently? Am I missing something here, or is OLAP really consuming much more space comapred to relational tables?
    Thanks!
    Dobo Radichkov

    Gotcha.
    Well, here are a few ideas:
    1) There is a bug in the 9i OLAP where dimension loads take WAY too long. I have a dimension with approx 77,000 members. On 9i, it took hours to load. On 10g 10.1.0.3 it loads in under 1 minute. You might want to open a TAR, the bug was something about one of the patch sets not being applied right
    2) From a space standpoing, I wouldn't worry about this too much. When the AW wizard creates an "empty" workspace, it already has lots of items in it that support the metadata, etc. Also, there is the concept of "free pages" that get allocated but end up not being used (they are "temp")
    To check this out, attach your AW and then fire up the OLAP worksheet. To see "free" pages vs. "used" pages, do the following:
    show aw(pages)
    show aw(freepages)
    One last thing you can do, to see the size of all items in the AW:
    attach AWname ro first
    limit name to all
    sort name d obj(disksize)
    rpr w 40 obj(disksize)
    This will show the "relative" size of the items, I think in "pages" (to see how big a page is just do a
    show aw(pagesize)
    Hope this helps!

  • About My Mac is telling me that I'm using more space than I think I am

    Hi there,
    I've only had problems with storage once before, so I bought DaisyDisk and used it - it cleared out a lot of space and I loved it - this was months ago by the way. Then, I checked my storage today and suddenly my 'Apps' tab was taking up about 130GB of data. I knew that my 'Apps' area was only taking up about 10GB so I got spotlight to check my drive again so that I could find out what was actually taking up all of this space. After this, I checked About My Mac again and the 'Other' tab was suddenly taking up loads of room. I opened up DaisyDisk and deleted some old files and managed to get from about 40GB of free space to about 90GB. I'm happy with this so far but I want to know what is in that 'Other' tab. DaisyDisk isn't helping me as it says that my user is taking up about 90GB of space but when I look on Finder it says that it isn't as big as that. I really want help so that I can clear out all the unnecessary junk off of my Mac before I go back to school. Also, I know that I have 20GB of files in my user (shows when I copy everything from the All My Files section in to a new folder), so I don't think this 'Other' section should be as big as it is.
    I have a 2013 13" Macbook Pro with Retina Display with a 256GB Hard Drive.
    A picture of the About My Mac section:
    http://i.imgur.com/Xl6wE0o.png
    Thanks for any help.

    For information about the Other category in the Storage display, see this support article. If the Storage display seems to be inaccurate, try rebuilding the Spotlight index.
    Empty the Trash if you haven't already done so. If you use iPhoto, empty its internal Trash first:
              iPhoto ▹ Empty Trash
    Do the same in other applications, such as Aperture, that have an internal Trash feature. Then restart the computer. That will temporarily free up some space.
    According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation—not the mythical 10%, 15%, or any other percentage. You also need enough space left over to allow for growth of the data. There is little or no performance advantage to having more available space than the minimum Apple recommends. Available storage space that you'll never use is wasted space.
    When Time Machine backs up a portable Mac, some of the free space will be used to make local snapshots, which are backup copies of recently deleted files. The space occupied by local snapshots is reported as available by the Finder, and should be considered as such. In the Storage display of System Information, local snapshots are shown as  Backups. The snapshots are automatically deleted when they expire or when free space falls below a certain level. You ordinarily don't need to, and should not, delete local snapshots yourself. If you followed bad advice to disable local snapshots by running a shell command, you may have ended up with a lot of data in the Other category. Ask for instructions in that case.
    See this support article for some simple ways to free up storage space.
    You can more effectively use a tool such as OmniDiskSweeper (ODS) or GrandPerspective (GP) to explore the volume and find out what's taking up the space. You can also delete files with it, but don't do that unless you're sure that you know what you're deleting and that all data is safely backed up. That means you have multiple backups, not just one. Note that ODS only works with OS X 10.8 or later. If you're running an older OS version, use GP.
    Deleting files inside an iPhoto or Aperture library will corrupt the library. Any changes to a photo library must be made from within the application that created it. The same goes for Mail files.
    Proceed further only if the problem isn't solved by the above steps.
    ODS or GP can't see the whole filesystem when you run it just by double-clicking; it only sees files that you have permission to read. To see everything, you have to run it as root.
    Back up all data now.
    If you have more than one user account, make sure you're logged in as an administrator. The administrator account is the one that was created automatically when you first set up the computer.
    Install the app you downloaded in the Applications folder as usual. Quit it if it's running.
    Triple-click anywhere in the corresponding line of text below on this page to select it, then copy the selected text to the Clipboard by pressing the key combination command-C:
    sudo /Applications/OmniDiskSweeper.app/Contents/MacOS/OmniDiskSweeper
    sudo /Applications/GrandPerspective.app/Contents/MacOS/GrandPerspective
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator. Ignore any other messages that appear in the Terminal window.
    The application window will open, eventually showing all files in all folders, sorted by size. It may take a few minutes for the app to finish scanning.
    I don't recommend that you make a habit of doing this. Don't delete anything as root. If something needs to be deleted, make sure you know what it is and how it got there, and then delete it by other, safer, means. When in doubt, leave it alone or ask for guidance.
    When you're done with the app, quit it and also quit Terminal.

  • Apple pro res 422 file consuming more space than usual

    hi everyone!
    I've been  working with FCP 7 since 2008 and at the same time I started working with Canon T2 from 2 years ago and I haven't had any problems with my FCP workflow files, editing and output used to be H. 264 based files until I started to  have problems with my hd DSRL projects. Recently when editing the audio went out of sync and  I was suggested to change the Quicktime video settings from FCP 7 to imovie (which is th application I commonly use to create chapters and share to iDVD) this worked perfectly. It was the  first time I which I had  to  change the Quictime Settings to Apple Pro Res 422 The Out of sync problem was resolved but the space consumed by the file was enourmosly ncreased instead. ie. A 5 min project usually would take like a 500 mbs quicktime  file  and now using the Apple Pro Res 422 this 5 min project went up to 5.3 Ggs!! And also the exporting process is taking forever!! For instance I'm working  with a 30 min project and the Quicktime conversion never ends. It's taking about 12 hrs and is not taking  more than the 20% of the process. Is there something I'm doing wrong? I need help in a extremely urgent way!  Thank you all guys! And best regards from Mexico!!
    Mac Pro early 2008
    Processor  2.8 GHz Quad-Core Intel Xeon
    Memory  10 GB 800 MHz DDR2 FB-DIMM
    Graphics  ATI Radeon HD 2600 XT 256 MB
    Software  OS X 10.8.4 (12E55)

    >using the Apple Pro Res 422 this 5 min project went up to 5.3 Ggs
    That's about right for a ProRes 422 file. High quality video takes a lot of space. It's sufficient to use the lighter ProRes LT for the footage from your T2 by the way. Your MacPro can also have up to 4 hard drives for plenty of storage.
    Why are you using QuickTime Conversion?
    Exporting to QuickTime with current settings and self contained is the better way. Then you use Compressor to make your delivery format from that master. Compressor is faster because it can take advantage of multiple cores - FCP doesn't. It will also give you far more control and choice over the encoding.

  • Wait Step is taking more time than specified

    Hi All,
    I have included wait step for 1 minute in BPM. But it is taking more than 30 minutes instead of 1 minute.
    Could any one help me on this?
    Help will be rewarded.
    Thanks & Regards,
    Jyothi.

    Hi,
    Chech if all the jobs are scheduled correctly in SWF_XI_CUSTOMIZING if u find any jobs in error status just perform an Automatic BPM Customizing.
    refer my wiki... [BPM Trouble Shooting Deadline Step|https://wiki.sdn.sap.com/wiki/display/XI/BPMTroubleShootingDeadlineStep]
    ~SaNv...

  • 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

Maybe you are looking for

  • ASP and BI Publisher

    Hi, We are migrating an Oracle Forms/ Reports over to ASP.NET and want the new system to use BI Publisher. Does any one have any guidance of how to launch BI Publisher from an ASP.NET application. Thanks.

  • Server 2012 R2 DC and File Server on the same server

    alexthefourth wrote: what i plan on doing is running esxi as the hypervisor and running a vm with server 2012 r2 and another server with windows 7 due to a fax application not being able to run on server editions. You can still run two Windows 2012R2

  • Field selection for confirmation

    Hi Experts, I have select radio button display for field AFRUD-ISDD,AFRUD-IEDD,AFRUD-ISDZ,AFRUD-IEDZ in CO86 for getting display mode in COR6 for EXecution start,finish & time. Eventhough when I go for confirmation I found that these field in edit mo

  • Game Programming help needed!

    Hi, I'm new to these forums just as i am fairly new to Flash Pro 8, anyway i was mid way through creating my first flash game when i encountered this error message... **Error** Scene=Scene 2, layer=Layer 2, frame=25:Line 2: ')' or ',' expected gotoAn

  • Photoshop elemnts 12 is a %%^&*(*().

    This is the **&&^%$% most stupid community I've ever used.  All I want is my photoshop elements 12 to work.  Maybe somebody will ready this rant and fix this *(*&^%%$&**I damn web site. It's useless.  Why do we the buyers of your software have to be