Restore Differential Backup

Hi Balmukund,
We are  using Sql server 2005 in production server.we are maintaining  two servers.. one for current day & another for Archive data .For the past few months we taking the full backup & restoring the same in the Archive sever.Now the volume
got increased & it takes too much time to restore the full backup.So i am planning to restore the differential backup on the daily basis.I am planning as mentioned below,
Weekly once (say Sunday)- Full backup
Daily backup say Monday  to Saturday) - Differential backup.
So i can restore the full backup on day 1 morning.
and can restore differential backup on day 2 morning.
From day 3 to day 6 onwards,how can i restore the same.
Kindly send the script for the same or give me any other idea for the same.

Hi... Balmukund
Restored the full backup on day 1 morning.
and restored differential backup on day 2 morning
From day 3 onwards restored the latest differential backup and
changed the database to Standby / No recovery mode
for some reasons, I changed the database mode using the following script.
ALTER DATABASE [DatabaseName] SET READ_WRITE WITH NO_WAIT
Now my question is ,
Kindly  confirm Is it possible to restore differential backup in that database
What was the output of your alter database command? Also, if your db is still in restoring mode, you can restore additional diff backups on it. You can check the status of your db with the below query. If the status = online and is_in_standy = 0 then
you have recovered the db and cannot restore additional backups. Will need to restart from full and lates diff again. HTH
select
name,
state_desc,is_in_standby
from sys.databases
HTH...

Similar Messages

  • Procedure restore Differential backup and to restore windows 2003 server

    Hello All,
      i am sticking at some of the points
    1. As per company policy they want to take full SAP offline + Redo log files backup once every two week and twice a week the differential backup. I suggested them the differential backup twice a week but now i have a question in mind since i never done it practically Do i need to have anything else like Log file to restore the Differential backup apart from full SAP backup or i can restore data with only Full SAP backup and differential backup.
    2. I am not much familiar with Windows 2003 server backup, If i take full Widows 2003 server backup will i be able to restore windows server along with installed SAP and all other software in case something happen to my server.
    if the answer is yes what are the pre-requisite if there be any to do the same. from the pre-requisite i mean do i need to be on same hardware as my previous server was or i can restore it on any other system too?
    i will appreciate any reply on the same.
    Mani

    Hi Mandy,
          I am not sure weather you are treating  Windows 2003 and SAP Backup i.e SQL Backup as two seperate things.
       SQL Backup : If you take MS SQL Backup ( directly from MSSQL or Schdule it from SAP DB13) and take full backup once a week or twice a week eg: Sunday full backup followed by monday, tuesday differential(Midnight) backups and Wednesday full backup again followed by Thursday and Friday differential(midnight).
         Should the database need to be restored to thursday @ 4:30 AM, you will restore Wednesday full backup + Thursday diffential + any log files backup taken there after.
    Windows 2003 Backup:
                Regarding this, You do not have to take Full Windows backup every day. You may take backup of few files / network drives, which can be restored directly while you are logged in to Server. It is sright forward.
               Sienario: When whole C drives of Windows crashed. To prepare for this sicenaro, you should take Windows system backup when ever you make chnages to kernal, SQL upgrade or before and after Windows patching.
             If the server crashes due to hardware failure, you should restore the server from backup .. ( for this there are different methods, like boot from boot disk and attach tape drive and restore or boot from disk and attach to NAS device and restore, you have to refer Windows 2003 restoration methods or consult your Windows specilist) which will bring back OS, kernal and SQL to normal state. and followed by SQL restore.
           Hope this helps.
    Krishna

  • Restore one full backup(need to move), 1 differential backup,2 transaction log backup

    Is following script correct? I don't need to add "move" when do restore differential, log later. Correct?
    RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK'
    WITH
    MOVE
    'Adventureworks_DB'
    TO
    'C:\test\Adventureworks.mdf',
    MOVE
    'AdventureWorks_Log'
    TO
    'C:\Adventureworks_Log.ldf',
    WITH NORECOVERY
    GO
    RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.DIF'
    WITH NORECOVERY
    GO
    RESTORE LOG AdventureWorks FROM DISK = 'C:\AdventureWorks.TRN'
    WITH NORECOVERY
    GO
    RESTORE LOG AdventureWorks FROM DISK = 'C:\AdventureWorks2.TRN'
    WITH RECOVERY
    GO

    Yes, that would be fine. It will work without move filename as well. You can add replace parameter incase.
    Also, make sure to check the mentioned path they must exist and SQL is able to access
    Before running the restore run below to check the backup file path:
    Corrected the script with needed only once in full backup restore
    Restore filelistonly from disk= 'C:\AdventureWorks.BAK'
    RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK'
    WITH MOVE'Adventureworks_DB'TO'C:\test\Adventureworks.mdf',
    MOVE'AdventureWorks_Log'TO'C:\Adventureworks_Log.ldf',
    NORECOVERY, replace
    GO
    RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.DIF'
    WITH NORECOVERY, replace
    GO
    RESTORE LOG AdventureWorks FROM DISK = 'C:\AdventureWorks.TRN'
    WITH NORECOVERY, replace
    GO
    RESTORE LOG AdventureWorks FROM DISK = 'C:\AdventureWorks2.TRN'
    WITH RECOVERY, replace
    GO
    Please let us know if you face any issue
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • Restoration of Differential Backup

    Hi,
    I am running Microsoft SQL server 2008 in our environment. I have created one new database and configured Full and differential Backups.Full backup on every week and differential backup on every day.Now the database went to recovery mode accidentally.
    I have not yet taken Full backup for that particular database.I have only the Differential backup.
    While i am trying to restore that differential backup its showing an error.Its not allowing me to restore.
    Please help me to solve this problem.
    Vinodh Selvaraj

    Hi,
    I am running Microsoft SQL server 2008 in our environment. I have created one new database and configured Full and differential Backups.Full backup on every week and differential backup on every day.Now the database went to recovery mode accidentally.
    I have not yet taken Full backup for that particular database.I have only the Differential backup.
    While i am trying to restore that differential backup its showing an error.Its not allowing me to restore.
    Please help me to solve this problem.
    Regards,
    vinodh selvaraj.
    Vinodh Selvaraj
    Hello,
    You cannot take differential backup without taking full backup.You have to first restore full backup with no recovery and then latest differential backup taken after full backup with recovery.
    What is the error which you are facing?
    Duplicate post
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/91c2ac7e-b122-426a-8a52-62ad452551c0/restoration-of-differential-backup?forum=sqldatabaseengine
    Please mark this reply as the answer or vote as helpful, as appropriate, to make it useful for other readers

  • Restore log and differential backups on a Publication database.

    Hi, i have the following issue, i have to restore a log backup and a differential backup in a publication database, the problem is that i want to keep the publications and the subscriptions without recreate the subscriptions.
    So how can i perform this goal :/ is somebody know how can i do that please let me know :D !!! thanks in advance.
    In my case is a merge replication....

    For merge replication you do not need to worry about the log reader agent - in fact there should not be one. Ensure that you use the keep_replication switch when doing the restore.
    Note that for merge replication the subscriber will backfill the publisher with changes in the publisher which are not in the subscriber. After this is done you might want to do a tablediff, but it should not be necessary, depending on how recent your full
    and differential backups were done.
    looking for a book on SQL Server 2008 Administration?
    http://www.amazon.com/Microsoft-Server-2008-Management-Administration/dp/067233044X looking for a book on SQL Server 2008 Full-Text Search?
    http://www.amazon.com/Pro-Full-Text-Search-Server-2008/dp/1430215941

  • Restoring the Differential backup file after the full back up restore

    Hi All,
    This is my full back up restore script
    RESTORE DATABASE VSO 
    FROM DISK = 'C:\DBbackup\\\VSO.bak' WITH 
    MOVE N'VSO' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.mdf',
    MOVE N'VSO_log' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.ldf', 
     NOUNLOAD,  REPLACE,  STATS = 10;
    After that i want restore Differential back up file on top of that , what   is the script?
    Thiru

    So below will workout, Am I correct?
    RESTORE DATABASE VSO 
    FROM DISK = 'C:\DBbackup\\\VSO.bak' WITH 
    MOVE N'VSO' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.mdf',
    MOVE N'VSO_log' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.ldf', 
     REPLACE,  STATS = 10,NORECOVERY;
    RESTORE DATABASE VSO 
    FROM DISK = 'C:\DBbackup\\\VSO_Diff.bak' WITH 
    MOVE N'VSO' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.mdf',
    MOVE N'VSO_log' TO N'C:\PrestageRestoreTest\DATA_LOG\\VSO_Primary.ldf', 
     REPLACE,  STATS = 10,RECOVERY;
    Thiru

  • Differential backup and tlog backup

    Hi,
    What is the advantage of doing a differential backup along with transactional log backup? For instance, if I'm planning on doing a weekly full backup and daily transactional log backups what does doing an differential backup get me? Does it make restoring
    faster? Is it better to have that differential in case one of the transactional log backups are corrupt? 
    Please advise.
    Thanks,
    Phil

    What is the advantage of doing a differential backup along with transactional log backup? For instance, if I'm planning on doing a weekly full backup and daily transactional log backups what does doing an differential backup get me? Does it make restoring
    faster
    Phil,
    The best use of Differential backup is to reduce the RTO. It does not have any much special meaning. There is no disadvantage as such apart from disk getting filled with too many diff backups.
    It makes restoring faster in sense that you have to restore fewer numbers of backup and this decreases time to bring DB online when disaster strikes.
     Is it better to have that differential in case one of the transactional log backups are corrupt?
    If transaction log is corrupt there are chances that differential backup could also be corrupt. Your question does not have actual meaning. I guess you wanted to ask can we skip transaction log backup and restore latest Diff backup. Well you can as long
    as it is not corrupt.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Veritas MS SQL differential backup interrupt MS SQL Native differential backup

    I have MS SQL 2005 Enterprise edition and I am taking weekly(Every Sunday) full backup and daily differential backup using Veritas backup tool.
    Now I got request from application team to take SQL native full backup on Tuseday  and daily differential backup till next 2 days(i.e., till Thursday.) and keep intact current veritas backup strategy of daily differential and weekly full backup
    Now my question is will My MS SQL differential native backup will hamper by daily Veritas SQL differential backup or vice versa.
    Thanks in Advance!!!!!

    Hi,
    You should ask Veritas about this question whether Veritas backup would affect SQL Server backup or not I guess it will do.
    Now a solution here can be
    copy only backup. But unfortunately there is no meaning of differential copy only backup but you can take copy only log backup. What copy only backup does is it does not affect the current backup sequence which is occurring neither effects the restore.
    Now since you already have full and diff backup in place why cant you use Veritas backup.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • Differential backup files are almost the same size as full backups.

    Hello All,
    I have done a little research on this topic and feel like we are not doing anything to cause this issue. Any assistance is greatly appreciated. 
    The details: Microsoft SQL Server 2008 R2 (SP2) - 10.50.4297.0 (X64)   Nov 22 2013 17:24:14   Copyright (c) Microsoft Corporation  Web Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor).  The
    database I am working with it 23GB. The full backup files are 23GB, differentials are 16GB (and growing) and transaction logs bounce between 700KB to 20MB. The backup schedules with T-SQL follow:
    T-Log: daily every four hours
    BACKUP LOG [my_dabase] TO  DISK = N'F:\Backup\TLog\my_dabase_backup_2015_03_23_163444_2725556.trn' WITH NOFORMAT, NOINIT,  NAME = N'my_dabase_backup_2015_03_23_163444_2725556', SKIP, REWIND, NOUNLOAD,  STATS = 10
    GO
    Diff: once daily
    BACKUP DATABASE [my_database] TO  DISK = N'F:\Backup\Diff\my_database_backup_2015_03_23_163657_1825556.dif' WITH  DIFFERENTIAL , NOFORMAT, NOINIT,  NAME = N'my_database_backup_2015_03_23_163657_1825556', SKIP, REWIND, NOUNLOAD,  STATS =
    10
    GO
    declare @backupSetId as int
    select @backupSetId = position from msdb..backupset where database_name=N'my_database' and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'my_database' )
    if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''my_database'' not found.', 16, 1) end
    RESTORE VERIFYONLY FROM  DISK = N'F:\Backup\Diff\my_database_backup_2015_03_23_163657_1825556.dif' WITH  FILE = @backupSetId,  NOUNLOAD,  NOREWIND
    GO
    Full: once weekly
    BACKUP DATABASE [my_database] TO  DISK = N'F:\Backup\Full\my_database_backup_2015_03_23_164248_7765556.bak' WITH NOFORMAT, NOINIT,  NAME = N'my_database_backup_2015_03_23_164248_7765556', SKIP, REWIND, NOUNLOAD,  STATS = 10
    GO
    declare @backupSetId as int
    select @backupSetId = position from msdb..backupset where database_name=N'my_database' and backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'my_database' )
    if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''my_database'' not found.', 16, 1) end
    RESTORE VERIFYONLY FROM  DISK = N'F:\Backup\Full\my_database_backup_2015_03_23_164248_7765556.bak' WITH  FILE = @backupSetId,  NOUNLOAD,  NOREWIND
    GO
    As you can probably tell we are not doing anything special in the backups, they are simply built out in MSSQL Management Studio. All databases are set to full recovery mode. We do not rebuild indexes but do reorganize indexes once weekly and also update
    statistics weekly.
    Reorganize Indexes T-SQL (there are 255 indexes on this database)
    USE [my_database]
    GO
    ALTER INDEX [IDX_index_name_0] ON [dbo].[table_name] REORGANIZE WITH ( LOB_COMPACTION = ON )
    GO
    Update Statistics T-SQL (there are 80 tables updated)
    use [my_database]
    GO
    UPDATE STATISTICS [dbo].[table_name]
    WITH FULLSCAN
    GO
    In a different post I saw a request to run the following query:
    use msdb
    go
    select top 10 bf.physical_device_name, bs.database_creation_date,bs.type
    from  dbo.backupset bs
    inner join dbo.backupmediafamily bf on bf.media_set_id=bs.media_set_id
    where   bs.database_name='my_database'
    order by bs.database_creation_date
    Results of query:
    physical_device_name database_creation_date type
    F:\Backup\Full\my_database_backup_2015_03_07_000006_2780149.bak 2014-02-08 21:14:36.000 D
    F:\Backup\Diff\Pre_Upgrade_OE.dif 2014-02-08 21:14:36.000 I
    F:\Backup\Diff\my_database_backup_2015_03_11_160430_7481022.dif 2015-03-07 02:58:26.000 I
    F:\Backup\Full\my_database_backup_2015_03_11_160923_9651022.bak 2015-03-07 02:58:26.000 D
    F:\Backup\Diff\my_database_backup_2015_03_11_162343_7071022.dif 2015-03-07 02:58:26.000 I
    F:\Backup\TLog\my_database_backup_2015_03_11_162707_4781022.trn 2015-03-07 02:58:26.000 L
    F:\Backup\TLog\my_database_backup_2015_03_11_164411_5825904.trn 2015-03-07 02:58:26.000 L
    F:\Backup\TLog\my_database_backup_2015_03_11_200004_1011022.trn 2015-03-07 02:58:26.000 L
    F:\Backup\TLog\my_database_backup_2015_03_12_000005_4201022.trn 2015-03-07 02:58:26.000 L
    F:\Backup\Diff\my_database_backup_2015_03_12_000005_4441022.dif 2015-03-07 02:58:26.000 I
    Is your field ready?

    INIT basically intializes the backup file, in other words, it will overwrite the contents of the existing backup file with the new backup information. 
    basically, what  you have now is you are appending all you backup files  (differentials) one after the other (like chain).
    you do not necessarily have to do it.  these differential backups can exist as different files.
    Infact, I would prefer them to separate, as it gives quick insight on the file, instead doing a  "restore filelist" command to read the contents of the backup file.
    The point Shanky, was mentioning is that : he wants to make sure that you are not getting confused between the actual differential backup file size to the physicial file size(since you are appending the backups) example : if you differential backup is 2
    gb, and over the next five you take a differential backup and append to a single file,like you are doing now,  the differential backup file size is 2gb but you physicial file size is 10Gb.  he is trying to make sure you are confused between these
    two.
    Anyways, did you get a chance to run the below query and also did you refer to the link I posted above. It talks a case when differential backups can be bigger than full backups and ' inex reorganize' or 'dbcc shrinks' can cause this. 
    --backup size in GB
    select database_name,backup_size/1024/1024/1024,Case WHEN type='D' then 'FULL'
    WHEN type='L' then 'Log'
    When type='I' then 'Differential' End as [BackupType],backup_start_date,backup_finish_date, datediff(minute,backup_start_date,backup_finish_date) as [BackupTime]
    from msdb.dbo.backupset where database_name='mydatabase' and type in ('D','I')
    order by backup_set_id desc
    Hope it Helps!!

  • Snapshots interfering with differential backups

    1- Setup full backs to happen Saturday nights.
    2- Setup differential backups to happen every night, execpt Saturdays
    3- This is on a VM machine, and we take a snapshot of it every Wednesday night.
    4- SQL Server records the snapshot as a valid, full backup, although it is marked as is_snapshot = 1.
    5- All differential backups after the snapshot are rendered useless. They are done based on the snapshot backup, not on the actual valid full backup done on Saturday.
    After research I found KB article 951288 (http://support.microsoft.com/kb/951288). Apparently this is a Microsoft issue.
    So, how do we tell SQL server to ignore the snapshot backup when doing the differential backups? And no, we do not want to stop doing our snapshots on Wednesdays. Is there a solution or a work around to this?
    This is really annoying and dangerous that SQL Server would consider these snapshots as valid, viable full backups on which to base its differential backups.
    Help much appreciated,
    Raphael
    rferreira

    Hi Raphael,
    According to the following document, virtualization Snapshots for Hyper-V or for any virtualization vendor are not supported to use with SQL Server in a virtual machine. I want to confirm whether there is any other important application running on the VM
    machine. If not, we can turn off VM Snapshot, if the VM machine failed, we just need to restore the database backup. For more detail information, please refer to the following link:
    Support policy for Microsoft SQL Server products that are running in a hardware virtualization environment
    http://support.microsoft.com/?id=956893
    Allen Li
    TechNet Community Support

  • Installation as restore from backup fails

    Dear all,
    after changing my harddisk in my iMac I want to reinstall Mac OS X using my TimeMachine Backup.
    I'm starting installation process from my original OS X CD's (Version 10.6.3)
    My Backup is from current Mountain Lion Version.
    After a short time installation fails with below stated report, see 10:37:35 marked bold. Does anyone knows anything what to do now?
    Many thanks in advance.
    Kind regards,
    Rainer
    Nov 15 10:34:16 localhost Unknown[81]: Launching the Language Chooser for an OS Install
    Nov 15 10:35:12 localhost configd[65]: subnet_route_if_index: can't get interface name
    Nov 15 10:35:13 localhost LCA[85]: Folder Manager is being asked to create a folder (cach) while running as uid 0
    Nov 15 10:35:19 localhost LCA[85]: Using keyboard layout 3
    Nov 15 10:35:24 localhost LCA[85]: Found primary language hint "de"
    Nov 15 10:35:30 localhost LCA[85]: Launching the Installer using language code "German"
    Nov 15 10:35:31 localhost OSInstaller[146]: Mac OS X Installer application started
    Nov 15 10:35:31 localhost OSInstaller[146]: 1 display(s) found.
    Nov 15 10:35:31 localhost OSInstaller[146]: Display[1] is using OpenGL acceleration.
    Nov 15 10:35:31 localhost OSInstaller[146]: @(#)PROGRAM:Install  PROJECT:Install-580
    Nov 15 10:35:31 localhost OSInstaller[146]: @(#)PROGRAM:Mac OS X Installer  PROJECT:OSInstaller-262
    Nov 15 10:35:31 localhost OSInstaller[146]: Hardware: iMac11,3 @ 2.80 GHz (x 4), 4096 MB RAM
    Nov 15 10:35:31 localhost OSInstaller[146]: Running OS Build: Mac OS X 10.6.3 (10D2322a)
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: DYLD_NO_FIX_PREBINDING=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: PWD=/
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: SHLVL=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: OS_INSTALL=1
    Nov 15 10:35:31 localhost OSInstaller[146]: Env: _=/System/Installation/CDIS/LCA.app/Contents/MacOS/LCA
    Nov 15 10:35:34 localhost OSInstaller[146]: Using install media product at /System/Installation/Packages
    Nov 15 10:35:34 localhost OSInstaller[146]: Opening OSInstall package '/System/Installation/Packages/OSInstall.mpkg'.
    Nov 15 10:35:41 localhost OSInstaller[146]: Memory statistics for 'Mac OS X Installation' pane:
    Nov 15 10:35:41 localhost OSInstaller[146]: Physical Memory Allocation:   545 MB wired,     3 MB trapped,    75 MB active,    64 MB inactive,  3409 MB free,  3548 MB usable,  4096 MB total
    Nov 15 10:36:08 localhost OSInstaller[146]: Memory statistics for 'Backup-Quelle auswählen' pane:
    Nov 15 10:36:08 localhost OSInstaller[146]: Physical Memory Allocation:   534 MB wired,     4 MB trapped,    84 MB active,    73 MB inactive,  3401 MB free,  3558 MB usable,  4096 MB total
    Nov 15 10:36:18 localhost OSInstaller[146]: Memory statistics for 'Backup auswählen' pane:
    Nov 15 10:36:18 localhost OSInstaller[146]: Physical Memory Allocation:   535 MB wired,     5 MB trapped,    85 MB active,    75 MB inactive,  3396 MB free,  3556 MB usable,  4096 MB total
    Nov 15 10:36:42 localhost OSInstaller[146]: Using cached backup size 245265096704
    Nov 15 10:36:43 localhost OSInstaller[146]: Memory statistics for 'Zielvolume auswählen' pane:
    Nov 15 10:36:43 localhost OSInstaller[146]: Physical Memory Allocation:   565 MB wired,     3 MB trapped,    88 MB active,    92 MB inactive,  3348 MB free,  3528 MB usable,  4096 MB total
    Nov 15 10:36:53 localhost OSInstaller[146]: Memory statistics for 'Wiederherstellen' pane:
    Nov 15 10:36:53 localhost OSInstaller[146]: Physical Memory Allocation:   591 MB wired,     2 MB trapped,    89 MB active,    95 MB inactive,  3319 MB free,  3503 MB usable,  4096 MB total
    Nov 15 10:36:53 localhost OSInstaller[146]: [RESTORE] erasing disk 'Macintosh HD'
    Nov 15 10:36:53 localhost OSInstaller[146]: [RESTORE] erase started
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] erase completed
    Nov 15 10:37:11 localhost OSInstaller[146]: Physical memory statistics immediately before turning on virtual memory backing store:
    Nov 15 10:37:11 localhost OSInstaller[146]: Physical Memory Allocation:   554 MB wired,     3 MB trapped,    86 MB active,    91 MB inactive,  3362 MB free,  3539 MB usable,  4096 MB total
    Nov 15 10:37:11 localhost OSInstaller[146]: Activated virtual memory backing store at mount point '/Volumes/Macintosh HD'
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] started vm on target disk.
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] ensuring permissions on /Volumes/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] restoring from: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] restoring to: /Volumes/Macintosh HD
    Nov 15 10:37:11 localhost OSInstaller[146]: [RESTORE] filelist: (\n    ".com.apple.backupd.mvlist.plist",\n    ".com.apple.timemachine.supported (vom alten Mac)",\n    ".DocumentRevisions-V100",\n    ".DS_Store",\n    ".file",\n    ".vol",\n    Applications,\n    bin,\n    cores,\n    etc,\n    "Handbu\U0308cher & Informationen",\n    "iPodless.log",\n    Library,\n    "mach_kernel",\n    Network,\n    opt,\n    sbin,\n    System,\n    tmp,\n    Users,\n    usr,\n    var,\n    Volumes,\n    "~",\n    "private/etc",\n    "private/tftpboot",\n    "private/tmp",\n    "private/var"\n)
    Nov 15 10:37:12 localhost OSInstaller[146]: Constructing critical restore paths
    Nov 15 10:37:12 localhost OSInstaller[146]: [RESTORE] 1:      restoring .com.apple.backupd.mvlist.plist
    Nov 15 10:37:12 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.com.apple.backupd.mvlist.plist
    Nov 15 10:37:12 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:13 localhost OSInstaller[146]: [RESTORE] 2:      restoring .com.apple.timemachine.supported (vom alten Mac)
    Nov 15 10:37:13 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.com.apple.timemachine.supported (vom alten Mac)
    Nov 15 10:37:13 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:13 localhost OSInstaller[146]: [RESTORE] 3:      restoring .DocumentRevisions-V100
    Nov 15 10:37:13 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100
    Nov 15 10:37:13 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/5/com.apple.documentVersions/BA945D81-E06 F-4BCD-B189-F64089A3D97F.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/5/com.apple.documentVersions/DD403257-35A C-469F-B4E4-C0B7915D4D85.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/6/com.apple.documentVersions/385B9FB6-FA0 0-4DE4-B279-033627796C6C.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/6/com.apple.documentVersions/D4FEACB2-D2A D-4656-AA58-4D7160575D45.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] Error -36 while restoring /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DocumentRevisions-V100/PerUID/501/7/com.apple.documentVersions/0337BF11-043 8-4132-A301-25518B387A8A.pdf to (null)
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 4:      restoring .DS_Store
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.DS_Store
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 5:      restoring .file
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.file
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 6:      restoring .vol
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/.vol
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:14 localhost OSInstaller[146]: [RESTORE] 7:      restoring Applications
    Nov 15 10:37:14 localhost OSInstaller[146]:             from source path: /Volumes/iMac/Backups.backupdb/iMac/2012-11-12-183717/Macintosh HD/Applications
    Nov 15 10:37:14 localhost OSInstaller[146]:          to destination path: /Volumes/Macintosh HD
    Nov 15 10:37:35 localhost Unknown[87]: 2012-11-15 10:37:35.556 Mac OS X Installer[146:9f47] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.
    Nov 15 10:47:44 localhost LCA[85]: Child exited with status 11
    Nov 15 10:47:45 localhost Unknown[199]: Launching the Installer Crash Log Viewer
    Nov 15 10:48:26 localhost ReportCrash[198]: Process:         Mac OS X Installer [146]
    Nov 15 10:48:26 localhost ReportCrash[198]: Path:            /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]: Identifier:      Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]: Version:         ??? (???)
    Nov 15 10:48:26 localhost ReportCrash[198]: Code Type:       X86-64 (Native)
    Nov 15 10:48:26 localhost ReportCrash[198]: Parent Process:  LCA [85]
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Date/Time:       2012-11-15 10:47:15.029 -0800
    Nov 15 10:48:26 localhost ReportCrash[198]: OS Version:      Mac OS X 10.6.3 (10D2322a)
    Nov 15 10:48:26 localhost ReportCrash[198]: Report Version:  6
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Nov 15 10:48:26 localhost ReportCrash[198]: Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]: Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Application Specific Information:
    Nov 15 10:48:26 localhost ReportCrash[198]: objc_msgSend() selector name: release
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libobjc.A.dylib                   0x0000000100583120 objc_msgSend + 44
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.CoreFoundation          0x000000010067cd56 _CFAutoreleasePoolPop + 230
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x00000001008ff308 -[NSAutoreleasePool drain] + 158
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.AppKit                  0x0000000100cdb187 -[NSApplication run] + 543
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.AppKit                  0x0000000100cd3e14 NSApplicationMain + 364
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.MacOSXInstaller         0x00000001000048de 0x100000000 + 18654
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   com.apple.MacOSXInstaller         0x0000000100001540 0x100000000 + 5440
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 1:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x00000001003b5b14 sleep + 61
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.installframework        0x00000001000b8413 do_log_watch + 53
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 2:  Dispatch queue: com.apple.libdispatch-manager
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010034708a kevent + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100348f5d _dispatch_mgr_invoke + 154
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x0000000100348c34 _dispatch_queue_invoke + 185
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   libSystem.B.dylib                 0x000000010034875e _dispatch_worker_thread2 + 252
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   libSystem.B.dylib                 0x0000000100348088 _pthread_wqthread + 353
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100347f25 start_wqthread + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 3:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e2fa mach_msg_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010032e96d mach_msg + 59
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.CoreFoundation          0x0000000100694452 __CFRunLoopRun + 1698
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.CoreFoundation          0x00000001006938df CFRunLoopRunSpecific + 575
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.Foundation              0x00000001009694df +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 297
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 4:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e35a semaphore_timedwait_signal_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036cbc2 _pthread_cond_wait + 1015
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x0000000100923d73 -[NSCondition waitUntilDate:] + 399
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.Foundation              0x00000001009170c2 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.installframework        0x000000010008ce71 -[IFSession(Jobs) _runMetaQueueEngine] + 88
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 5:  JavaScriptCore: FastMalloc scavenger
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x00000001003b5b14 sleep + 61
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.JavaScriptCore          0x0000000103573380 ***::TCMalloc_PageHeap::scavengerThread() + 96
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.JavaScriptCore          0x0000000103573569 ***::TCMalloc_PageHeap::runScavengerThread(void*) + 9
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 6:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010032e35a semaphore_timedwait_signal_trap + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036cbc2 _pthread_cond_wait + 1015
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x0000000100923d73 -[NSCondition waitUntilDate:] + 399
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.Foundation              0x00000001009170c2 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.installframework        0x000000010007de77 +[IFDTargetController(WorkerThread) _handleTargetRequests] + 774
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 7:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x0000000100368d45 nanosleep + 148
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.Foundation              0x000000010096ef4c +[NSThread sleepForTimeInterval:] + 101
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.SystemMigration         0x0000000101dd9750 -[SMManager _suppressSpotlightThread:] + 104
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.Foundation              0x00000001008e9ea9 __NSThread__main__ + 1429
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 8:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100371dce select$DARWIN_EXTSN + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.CoreFoundation          0x00000001006b5ef2 __CFSocketManager + 818
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 9:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x000000010036ff3a pread + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   com.apple.DesktopServices         0x0000000105c48bf9 TCopyReader::ReadDataFork() + 187
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   com.apple.DesktopServices         0x0000000105c49df5 TCopyReader::Read(unsigned long long, TCountedPtr<TCFURLInfo> const&, TCountedPtr<TCFURLInfo> const&) + 161
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   com.apple.DesktopServices         0x0000000105c34b13 TFSCopyOperation::CopyToTarget() + 607
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   com.apple.DesktopServices         0x0000000105c3698b TFSCopyOperation::DoCopy(TCountedPtr<TCFURLInfo> const&) + 595
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.DesktopServices         0x0000000105c2c706 _NodeOperation + 469
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   ...ple.CoreServices.CarbonCore    0x0000000102b7f5db _FSFileOperationOperate + 438
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 8   libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 10:
    Nov 15 10:48:26 localhost ReportCrash[198]: 0   libSystem.B.dylib                 0x0000000100368eb6 __semwait_signal + 10
    Nov 15 10:48:26 localhost ReportCrash[198]: 1   libSystem.B.dylib                 0x000000010036ccd1 _pthread_cond_wait + 1286
    Nov 15 10:48:26 localhost ReportCrash[198]: 2   ...ple.CoreServices.CarbonCore    0x0000000102bc860f TSWaitOnCondition + 118
    Nov 15 10:48:26 localhost ReportCrash[198]: 3   ...ple.CoreServices.CarbonCore    0x0000000102b37e0c TSWaitOnConditionTimedRelative + 177
    Nov 15 10:48:26 localhost ReportCrash[198]: 4   ...ple.CoreServices.CarbonCore    0x0000000102b31d17 MPWaitOnQueue + 215
    Nov 15 10:48:26 localhost ReportCrash[198]: 5   com.apple.DesktopServices         0x0000000105c46f2e TCopyQueue::Dequeue() + 54
    Nov 15 10:48:26 localhost ReportCrash[198]: 6   com.apple.DesktopServices         0x0000000105c4c668 TCopyWriter::WriteDataFork() + 250
    Nov 15 10:48:26 localhost ReportCrash[198]: 7   com.apple.DesktopServices         0x0000000105c4d520 TCopyWriter::Write() + 158
    Nov 15 10:48:26 localhost ReportCrash[198]: 8   com.apple.DesktopServices         0x0000000105c4d79e TCopyWriter::WriteTaskProc(void*) + 72
    Nov 15 10:48:26 localhost ReportCrash[198]: 9   ...ple.CoreServices.CarbonCore    0x0000000102b0a009 PrivateMPEntryPoint + 63
    Nov 15 10:48:26 localhost ReportCrash[198]: 10  libSystem.B.dylib                 0x0000000100367456 _pthread_start + 331
    Nov 15 10:48:26 localhost ReportCrash[198]: 11  libSystem.B.dylib                 0x0000000100367309 thread_start + 13
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Thread 0 crashed with X86 Thread State (64-bit):
    Nov 15 10:48:26 localhost ReportCrash[198]:   rax: 0x000000010783ce00  rbx: 0x000000011e6fbb00  rcx: 0x000000011e6fbab0  rdx: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]:   rdi: 0x000000011e6fbb00  rsi: 0x00000001005997e2  rbp: 0x00007fff5fbffa70  rsp: 0x00007fff5fbffa38
    Nov 15 10:48:26 localhost ReportCrash[198]:    r8: 0x0000000000000000   r9: 0x000000012072cd40  r10: 0x00000001206c9d80  r11: 0x000000011e6fbab0
    Nov 15 10:48:26 localhost ReportCrash[198]:   r12: 0x0000000107852a00  r13: 0x0000000107852a00  r14: 0x00000001007f43a0  r15: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]:   rip: 0x0000000100583120  rfl: 0x0000000000010206  cr2: 0x0000000000000000
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: Binary Images:
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100000000 -        0x10000efff  com.apple.MacOSXInstaller 230.1.1 (262) <990CB5E5-76A8-EC2B-E004-5F566553000C> /System/Installation/CDIS/Mac OS X Installer.app/Contents/MacOS/Mac OS X Installer
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100018000 -        0x10003cfff  com.apple.osinstallframework 518.1.2 (580) <F9DA8A6F-26B0-41CC-9290-7F2CC0C278AC> /System/Library/PrivateFrameworks/Install.framework/Frameworks/OSInstall.framew ork/Versions/A/OSInstall
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10005a000 -        0x10005aff7  com.apple.Cocoa 6.6 (???) <C69E895A-1C66-3DA9-5F63-8BE85DB9C4E1> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10005d000 -        0x100068ff7  com.apple.framework.Assistant 1.6.0 (14) <123B4B11-5010-E6CB-1A30-F1682ADC9D7D> /System/Library/PrivateFrameworks/Assistant.framework/Versions/A/Assistant
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100075000 -        0x100139fff  com.apple.installframework 518.1.2 (580) <7E077B14-EE5C-5EC1-C22C-3B82DDD1A312> /System/Library/PrivateFrameworks/Install.framework/Versions/A/Install
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1001ba000 -        0x1001d2ff7  com.apple.InstallerPlugins 4.0 (430.1) <36397131-FA5D-211E-570F-2C8E93E1A845> /System/Library/Frameworks/InstallerPlugins.framework/Versions/A/InstallerPlugi ns
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1001e8000 -        0x100229fff  com.apple.SystemConfiguration 1.10.2 (1.10.2) <C86D8BD3-B4C7-2C15-05EB-E8B7F8FA7F14> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10024d000 -        0x1002abff7  com.apple.framework.IOKit 2.0 (???) <A5C63ACA-8159-36EC-384B-49047CB6940C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1002cd000 -        0x1002d3ff7  com.apple.DiskArbitration 2.3 (2.3) <AAB5CC56-334A-3C60-3C27-54E8F34D754E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1002dc000 -        0x100311ff7  com.apple.DiskManagement 3.3 (354) <B5FFE5D8-EDC2-FB4D-5E25-8D4027AC1B00> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10032d000 -        0x1004edfef  libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <39D14F74-5D42-5807-1DBD-18DBEF1F9E46> /usr/lib/libSystem.B.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10057e000 -        0x100634fff  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <1960E662-D35C-5D98-EB16-D43166AE6A22> /usr/lib/libobjc.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100648000 -        0x1007bdfef  com.apple.CoreFoundation 6.6.1 (550.19) <47D9567E-1D29-80CD-C9B4-761BCD7261FB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1008d6000 -        0x1008d6ff7  com.apple.ApplicationServices 38 (38) <0E2FC75E-2BE2-D04D-CA78-76E38A89DD30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1008d9000 -        0x100b5afe7  com.apple.Foundation 6.6.2 (751.21) <56F582C4-EDF6-F6E6-B03D-1E306A9B5110> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x100cd2000 -        0x1016c7fe7  com.apple.AppKit 6.6.5 (1038.29) <AFE260A6-8FA6-030C-2BC9-E2A468999D71> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101cbc000 -        0x101cf1fef  com.apple.framework.Apple80211 6.2.3 (623.1) <F84FD70E-E432-1B1F-532C-79303ADE76C9> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101d05000 -        0x101d3ffff  com.apple.bom 10.0 (164) <316D9EB3-6D33-6E57-F63A-BA4DCFCE9941> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101d4f000 -        0x101d9dfe7  com.apple.PackageKit 1.0.2 (73) <FFCC5D88-BED9-A1F2-7364-2C5F5E6FCDAF> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x101dd3000 -        0x101e7bfe7  com.apple.SystemMigration 300.3 (373) <E823F09F-943A-D3F5-3A93-8AB42645C23F> /System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/SystemMi gration
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102069000 -        0x102069ff7  com.apple.CoreServices 44 (44) <616722B1-5E79-DCCF-BF5E-0DD5802CCBD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10206c000 -        0x10207bfff  libxar.1.dylib ??? (???) <B0FB9448-F310-C656-215D-2F5FB993B61A> /usr/lib/libxar.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102083000 -        0x102308fef  com.apple.security 6.1.1 (37594) <9E77A468-2140-9C5D-B5EF-76C51C857D4A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1023fe000 -        0x10240fff7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <5BAFAE5C-2307-C27B-464D-582A10A6990B> /usr/lib/libz.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102414000 -        0x102422ff7  libkxld.dylib ??? (???) <7E91FA6A-6E0C-F595-FF31-80D0BD5804FC> /usr/lib/system/libkxld.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102426000 -        0x102472fff  libauto.dylib ??? (???) <9B1DB6E8-4D79-B79C-D9EC-85592478F632> /usr/lib/libauto.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10247f000 -        0x10263dfff  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <3D9313BF-97A4-6B65-E583-F6173E64C3C2> /usr/lib/libicucore.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1026ac000 -        0x102729fef  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C> /usr/lib/libstdc++.6.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10278a000 -        0x10278eff7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102791000 -        0x10284afff  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <73E3FA58-51C0-ED7B-C5EB-E8F62AED386B> /usr/lib/libsqlite3.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10285a000 -        0x102867ff7  com.apple.AppleFSCompression 24.3 (1.0) <B1FFA9F9-9473-9EEB-D446-44330652D6A8> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10286f000 -        0x10287bfff  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <ECA200F9-9C46-579A-6447-16B8BFB93D96> /usr/lib/libbz2.1.0.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102880000 -        0x102997fef  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <AFE91118-DBF3-6313-37B8-8A2002C6A46B> /usr/lib/libxml2.2.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1029c0000 -        0x102a90fff  com.apple.CFNetwork 454.9.4 (454.9.4) <D872444D-8A84-1583-4633-767CE10DB4BA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102b03000 -        0x102e36fef  com.apple.CoreServices.CarbonCore 861.6 (861.8) <8622D612-E3BE-C4E9-3253-129790E77F2E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102eaf000 -        0x102ef9ff7  com.apple.Metadata 10.6.3 (507.8) <CABBB8CF-AB18-1C01-DBF7-ADE002967249> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x102f23000 -        0x102fe0ff7  com.apple.CoreServices.OSServices 357 (357) <8D588EB3-92CC-3DB8-61E7-637CECCF7688> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10303a000 -        0x1030cafff  com.apple.SearchKit 1.3.0 (1.3.0) <45BA1053-9196-3C2F-2421-AFF5E09627CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103108000 -        0x103143fff  com.apple.AE 496.4 (496.4) <CB905496-4D6B-F26A-399D-840D26DBEE5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10315d000 -        0x1031fdfff  com.apple.LaunchServices 362.1 (362.1) <CC3BE120-AF3C-FE7E-342D-EB2A208AE20E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103243000 -        0x10326bfff  com.apple.DictionaryServices 1.1.1 (1.1.1) <FBE782D5-F5F5-DA3B-EE10-8D6B24BD6C03> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103285000 -        0x10329bfef  libbsm.0.dylib ??? (???) <0321D32C-9FE1-3919-E03E-2530A0C1191B> /usr/lib/libbsm.0.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032a4000 -        0x1032b3fff  com.apple.NetFS 3.2.1 (3.2.1) <DE59FB56-8536-9999-352A-2016ADCF4FCF> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032bc000 -        0x1032e7ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <6589F0FC-41DB-8494-CA8B-487F4E328EB9> /usr/lib/libxslt.1.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1032f2000 -        0x103401fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <804D3424-EB13-4E87-D721-3A0511110A95> /usr/lib/libcrypto.0.9.8.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103466000 -        0x1035ecfe7  com.apple.JavaScriptCore 6531.22 (6531.22.5) <AF2C47DA-4E57-5EC2-8F51-9827C802CFFA> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103657000 -        0x103658ff7  com.apple.TrustEvaluationAgent 1.1 (1) <A91CE5B9-3C63-5F8C-5052-95CCAB866F72> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10365c000 -        0x103667fff  com.apple.CrashReporterSupport 10.6.3 (250) <C6ADB9F6-5BC8-C45F-2FD4-35AE42367975> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103674000 -        0x103d71067  com.apple.CoreGraphics 1.544.1 (???) <4CFF2265-A2DF-CA9E-9DFB-1F044276A9BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x103e63000 -        0x10401dfff  com.apple.ImageIO.framework 3.0.2 (3.0.1) <4178D2C4-CD81-564A-DCB8-EEB52EF56C12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104083000 -        0x104101fff  com.apple.CoreText 3.1.0 (???) <E83F0CB9-B937-FE97-A6B3-9466BA560C8B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10413f000 -        0x1041d9fff  com.apple.ApplicationServices.ATS 4.2 (???) <9A9A4671-D498-7C1F-7DBD-3FE4B1A2A276> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104202000 -        0x1042b7fe7  com.apple.ColorSync 4.6.3 (4.6.3) <412C460A-C792-5A15-FD42-1FBE20FC4E3F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1042f4000 -        0x104345fe7  com.apple.HIServices 1.8.0 (???) <2D0D9100-B712-ED4B-7622-BBA92053F446> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104371000 -        0x104386ff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <8327481D-1C88-4085-2F74-72CD92196120> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104394000 -        0x104419fff  com.apple.print.framework.PrintCore 6.2 (312.5) <2BA9CEF6-CCF4-6719-9642-E9667F815C66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10444f000 -        0x104490fef  com.apple.QD 3.35 (???) <6B7D6A89-2578-5C40-C0DE-A5BCB0AA6FD8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044a8000 -        0x1044bcff7  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <574C1BE0-5E5E-CCAF-06F8-92A69CB2892D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044cd000 -        0x1044cdff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1044d0000 -        0x10451ffef  libTIFF.dylib ??? (???) <8A8AF1CB-80E6-1457-E52A-1271733CBF7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10452c000 -        0x104531fff  libGIF.dylib ??? (???) <5AD1D618-2C1D-AD00-7EA4-D8EC6A1773A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104536000 -        0x104554fff  libPng.dylib ??? (???) <4EFA6B07-6613-BC33-11D7-CF2D9B967511> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10455c000 -        0x10455efff  libRadiance.dylib ??? (???) <3DAD870E-B3AE-B998-AA36-9D6B940D44C2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104562000 -        0x104588fe7  libJPEG.dylib ??? (???) <F0FD3FDA-432D-9920-6AA9-3AE1191D6AEA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104590000 -        0x10466afff  com.apple.vImage 4.0 (4.0) <B5A8B93B-D302-BC30-5A18-922645DB2F56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104679000 -        0x104679ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10467c000 -        0x1046c4ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1046cc000 -        0x104736fe7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <7BD7F19B-ACD4-186C-B42D-4DEBA6795628> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104740000 -        0x104f4afe7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x104f93000 -        0x1053d6fef  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105563000 -        0x105623fe7  libFontParser.dylib ??? (???) <A79479ED-819A-2B63-4900-D4790E74006F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10571a000 -        0x10574fff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <CE664505-29D1-3634-A055-99D2874FA671> /usr/lib/libcups.2.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10575e000 -        0x10580dfff  edu.mit.Kerberos 6.5.9 (6.5.9) <D6C7CD0A-EA9E-1B7F-2D7E-4CC08A78B678> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105833000 -        0x105854fff  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9B7AEE96-D18E-5ECF-9837-BD5CFD397831> /usr/lib/libresolv.9.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10585e000 -        0x105983fef  com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <72149B5E-BEC7-B6E9-3B34-0E0620827542> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1059f2000 -        0x1059f3ff7  com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <65C333FF-3F7A-AD36-DC36-D3F2F46727C5> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1059f8000 -        0x105b36fff  com.apple.CoreData 102.1 (251) <96C5E9A6-C28C-E9CC-A0DB-27801A22A49F> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105bce000 -        0x105cb4fe7  com.apple.DesktopServices 1.5.5 (1.5.5) <5130409F-082D-B3F3-B567-C52638FF483C> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x105d03000 -        0x106001fef  com.apple.HIToolbox 1.6.2 (???) <193A3F85-A1F8-2FD7-A8BD-D6AE722C8BA9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10612d000 -        0x1064c5fe7  com.apple.QuartzCore 1.6.1 (227.18) <00EED230-F7BA-6455-2C9D-A65B590E6E13> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1065f2000 -        0x1065fdff7  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <C359B93B-CC9B-FC0B-959E-FB10674103A7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106607000 -        0x10664eff7  com.apple.coreui 2 (114) <31118426-355F-206A-65AB-CCA2D2D3EBD7> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106673000 -        0x1066f2fef  com.apple.audio.CoreAudio 3.2.2 (3.2.2) <03D4DAA6-E987-F51B-93AE-3C2D91AA570A> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106728000 -        0x106729fff  liblangid.dylib ??? (???) <D0666597-B331-C43C-67BB-F2E754079A7A> /usr/lib/liblangid.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10672d000 -        0x106743ff7  com.apple.MultitouchSupport.framework 204.13 (204.13) <D015924C-4282-B5EF-7190-340F46FB6F18> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106750000 -        0x106750ff7  com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106753000 -        0x1067a8fef  com.apple.framework.familycontrols 2.0.1 (2010) <23A6340F-D798-C8C0-93A7-384E964297CF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1067c5000 -        0x10687afe7  com.apple.ink.framework 1.3.3 (107) <A68339AA-909D-E46C-35C0-72808EE3D043> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1068ad000 -        0x1068d2ff7  com.apple.CoreVideo 1.6.1 (45.5) <EEAD844B-D846-F27B-6BFF-D97D3FC31BBC> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1068eb000 -        0x1068faff7  com.apple.opengl 1.6.8 (1.6.8) <A4784A50-F306-61A7-3638-96D538CBC934> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106903000 -        0x106934fff  libGLImage.dylib ??? (???) <27565CDD-3A12-6DA7-23C1-E2A21216CB2B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10693b000 -        0x10695efff  com.apple.opencl 12.1 (12.1) <E92CDD8E-5B2C-209B-7C85-79605E3BDB01> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106967000 -        0x10696dff7  IOSurface ??? (???) <4FFF6BA6-785C-DC57-6E4A-4D0156972BB2> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106976000 -        0x1069bffef  libGLU.dylib ??? (???) <41CE0600-B36C-7C5D-85F4-68A5F2E3CCD8> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1069ce000 -        0x1069e2fff  libGL.dylib ??? (???) <5AD69545-D1A3-C017-C7AF-B4AFD6F08FA2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1069f2000 -        0x106b0bfef  libGLProgrammability.dylib ??? (???) <39A6A60E-5B7A-89B0-5CBF-99FD62C37F30> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b2c000 -        0x106b2fff7  libCoreVMClient.dylib ??? (???) <305BFF0D-6C64-AFEE-68F7-FECA17199860> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b34000 -        0x106b39fff  libGFXShared.dylib ??? (???) <8D5BE6C3-A830-54A5-5371-575293D31B0A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106b3e000 -        0x106bcafef  SecurityFoundation 36840.0.0 (compatibility 1.0.0) <105C82B6-A1C7-9082-ECA6-AEA08C1948C6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c0e000 -        0x106c15fff  com.apple.OpenDirectory 10.6 (10.6) <D72FD8AB-B328-B27B-DA16-3BBB7BC0C08C> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c1e000 -        0x106c37fff  com.apple.CFOpenDirectory 10.6 (10.6) <E98F7642-7F87-C3B4-18FB-3D3947E53CD0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c4c000 -        0x106c6cff7  com.apple.DirectoryService.Framework 3.6 (621.3) <8FBCBA30-5BB6-E447-8146-08486933AEB8> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106c76000 -        0x106cb7ff7  com.apple.MediaKit 10.3 (485) <779F7525-0F11-0FAA-9E3B-3F22DD975CC5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106cca000 -        0x106da2fe7  com.apple.DiscRecording 5.0.5 (5050.4.6) <4B3F20F9-7966-66C3-8C5F-E2D482184EA2> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106e02000 -        0x106e1cff7  com.apple.NetInfo 1.0.0 (???) <7348D6F9-9EB3-7E93-9F98-B6D690B95226> /System/Library/PrivateFrameworks/NetInfo.framework/Versions/A/NetInfo
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106e28000 -        0x106f28ff7  com.apple.DiskImagesFramework 10.6.4 (285) <6B33176A-CF2B-8052-1556-D163E8DDC097> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106f85000 -        0x106f85ff7  com.apple.Carbon 150 (152) <586B20CD-AEB9-57F1-F2C1-BB14BE70C5B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106f88000 -        0x106fc4fe7  libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <EABCA30B-B900-0BCC-84A1-5C1F3F13D221> /usr/lib/libcurl.4.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x106fd2000 -        0x10700aff7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D98473F3-AF4F-B2C0-E597-637033EE3111> /usr/lib/libssl.0.9.8.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10701f000 -        0x107024ff7  com.apple.CommonPanels 1.2.4 (91) <8B088D78-E508-6622-E477-E34C22CF2F67> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10702c000 -        0x10702ffff  com.apple.help 1.3.1 (41) <AEDDF93F-BAC0-0308-68FD-039A99F3A158> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107035000 -        0x10704bfff  com.apple.ImageCapture 6.0 (6.0) <01E09982-7DD2-0868-0180-42E7D298B35A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107065000 -        0x107080ff7  com.apple.openscripting 1.3.1 (???) <DC329CD4-1159-A40A-A769-70CAA70F601A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107091000 -        0x107093fff  com.apple.print.framework.Print 6.1 (237.1) <87A5BEEC-2D37-5CB7-8B13-7B605397573F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107098000 -        0x10709bff7  com.apple.securityhi 4.0 (36638) <0234B95B-A339-4576-BB0D-A568634B50F5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1074c3000 -        0x1074d0fe7  libCSync.A.dylib 544.1.0 (compatibility 64.0.0) <46F00644-B0B4-1214-A17E-70F4F1702048> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107622000 -        0x107629fff  com.apple.TIMCore 1.2.0 (1.2.0) <040AADAE-E9BD-167A-9B07-E65E7C82A5F2> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedSupport/TIMCore.bundle/Contents/MacOS/TIMC ore
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107632000 -        0x107643ff7  com.apple.TextInputUI 1.0 (1.0) <7F16CC61-2F8D-8C43-50F9-A1B493C407C8> /System/Library/CoreServices/Menu Extras/TextInput.menu/Contents/SharedFrameworks/TextInputUI.framework/Versions/ A/TextInputUI
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107655000 -        0x107670ff7  com.apple.airport.clientbundle 6.2.1 (621.1) <4567D8C0-9321-F90C-E71B-5DFAA195CC9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/Cli entController.bundle/Contents/MacOS/ClientController
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x107788000 -        0x1077cbff7  libRIP.A.dylib 544.1.0 (compatibility 64.0.0) <D1DB9F39-1510-9DB3-B14D-A15879328CC2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1077dc000 -        0x1077e0ff7  libCGXType.A.dylib 544.1.0 (compatibility 64.0.0) <C141864F-9475-4E48-FDF6-B11518560F2D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x10dde1000 -        0x10dde7fff  libCGXCoreImage.A.dylib 544.1.0 (compatibility 64.0.0) <A7D4D3BE-393C-2D09-41C1-623A59B76066> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11e300000 -        0x11e3cbfe7  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <A34CE62D-4733-B8BF-A9B2-09933AA467C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11e59f000 -        0x11e5dcff7  libFontRegistry.dylib ??? (???) <D82C0359-D761-79ED-09F5-00A1F9108076> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f675000 -        0x11f693ff7  com.apple.menuextra.airport 6.2.1 (621.1) <0FF0765C-F601-3915-8852-688F71238C45> /System/Library/CoreServices/Menu Extras/AirPort.menu/Contents/MacOS/AirPort
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f6a6000 -        0x11f6c9ff7  com.apple.SystemConfiguration.EAP8021X 10.0.1 (1.0) <4856F0D0-8DBE-BB58-7B59-371AC2783969> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x11f6d5000 -        0x11f71eff7  com.apple.securityinterface 4.0.1 (37214) <08DB37D6-A716-DC37-536C-7889999EF395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x1205a0000 -        0x1205cfff7  com.apple.XInstall.InstallAssistant 230.1.1 (262) <CBBC52A9-E10A-8A4B-EC22-41C3F5551443> /System/Installation/CDIS/Mac OS X Installer.app/Contents/Resources/OSXInstallAssistant.bundle/Contents/MacOS/OSXI nstallAssistant
    Nov 15 10:48:26 localhost ReportCrash[198]:        0x120baa000 -        0x120bdbfef  libTrueTypeScaler.dylib ??? (???) <3F09E12E-1A3F-E592-31EF-52D77E968FB2> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]:     0x7fff5fc00000 -     0x7fff5fc3bdef  dyld 132.1 (???) <DB8B8AB0-0C97-B51C-BE8B-B79895735A33> /usr/lib/dyld
    Nov 15 10:48:26 localhost ReportCrash[198]:     0x7fffffe00000 -     0x7fffffe01fff  libSystem.B.dylib ??? (???) <39D14F74-5D42-5807-1DBD-18DBEF1F9E46> /usr/lib/libSystem.B.dylib
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:48:26 localhost ReportCrash[198]: 
    Nov 15 10:50:27 localhost Viewer[200]: NetworkBrowser failed to launch "/usr/bin/nmblookup" (No such file or directory)

    You can't restore a backup made by Time Machine in Mountain Lion using 10.6 discs! You need to start up in Mountain Lion's recovery mode. See How do I restore my entire system?
    Since you have replaced the hard drive, that means (unfortunately) that the recovery partition is gone. However, I believe that the recovery partition gets backed up on your Time Machine backups, if you're backing up to a directly-connected hard drive. Try starting up while holding option with the Time Machine drive connected. If you see any recovery "drives" show up, boot from that and you're good.
    If that doesn't work, since your machine didn't ship with Mountain Lion (which it obviously didn't if you're able to install Snow Leopard on it), it may not be capable of internet recovery. You could always try internet recovery (hold command-option-R at startup), as there was a firmware update for certain machines a while back that added this capability... though that might only give you Lion, I'm not entirely sure how it works.
    If all else fails, you'll need to install Snow Leopard, then update to Mountain Lion. (Save a copy of the installer for the future, and make a bootable Mountain Lion disk from it.) That will give you back the recovery partition so you can restore.

  • After iOS 8 upgrade restore from backup not working

    Hi,
    yesterday I've upgraded to iOS8. After three tries it worked.
    But now I'm not able to restore my iPhone5 from Backup. It starts restoring. But the when it's done I've receive the error message without an error nr.
    "itunes could not restore the iphone because an error occurred"
    Thats it
    I've rewetted the iphone, tried on another computer to restore the backup, tried a different internet connection. Nothing. Everywhere the same issue. I've also tried to use a half year old backup just for fun. But the same issue.
    I've disconnected other USB devices. No chance
    Does anybody has a useful idea?
    Thanks.

    Hello becksen,
    Thanks for using Apple Support Communities.
    To troubleshoot this issue with restoring an iTunes backup to your iPhone please follow the steps in the article linked to below.
    iOS: If you can't back up or restore from a backup in iTunes
    Take care,
    Alex H.

  • Hello, I want to restore a backup on my Iphone 4S, but in i-tunes it's not vissable. When I'll look on te pc: (username)\Application Data\Apple Computer\MobileSync\Backup\ it's there! How can I get this backup to my iphone or itunes? Thanks in advance!

    Hello, I want to restore a backup from this afternoobut in i-tunes it is not visseble. When I'll look on te pc: (username)\Application Data\Apple Computer\MobileSync\Backup\ it's there! How can I get this backup to my iphone or itunes? Thanks in advance!

    Follow the steps in this article to restore from iTunes back up:
    http://support.apple.com/kb/HT1766
    Since you say you cant see the back up in iTunes you should be able to see it when following the last step where it says for iTunes 10.7 or earlier. Dont worry as this step also works for iTunes 11.

  • I am trying to update and restore a backup of an iPad.  I ended up in an infinite loop of restoring and re-setting up the iPad.  Help???? Suggestions?

    This iPad had iOS 4.3.3 and I wanted to update it to the most recent software, 7.1.  The first thing I did was I backed it up to my computer so I would be able to restore all of the photos and data after I had updated.  At first, I tryed just clicking Update.  It kept failing with error 9006.  Then, I tryed the Restore and Update.  This timed out even though it seemed to be moving alone just fine.  The last thing I tried was to wipe the iPad and then update it.  This worked.  When it came up on my computer, it asked if I wanted to restore from a backup.  I said yes and selected the backup that I made.  It said Restoring.  Afterwards, it took me through the normal process that you would go through to set up a new iPad.  at the end of the setup, it asked if I would like to set it up as a new iPad, or restore from a backup.  ????????  I tried to restore from backup and it started and endless loop of restoring and setting up, and restoring again.  I eventually selected to set up as a new iPad.  I cannot firgure out how to get the pictures back onto the iPad from the backup if the restore won't work.  I was wondering if it is possible to find the picture files on my computer??? Does anybody have any suggestions or ran into the same problem???
    FYI: I was a bit disapointed to learn that the online support chat now costs $20

    Restore from iTune Backup
    1. Settings>General>Reset>Erase all content and settings
    2. You will be asked twice if you want to erase iPad
    3. Slide to set up
    4. Select Language
    5. Select Country
    6. (a) Use Location Service   (b) Don't use Location Service
    7. Choose Wi-Fi Network
    8. Enter Wi-Fi password
    9. (a) Setup as new (b) Restore from iCloud Backup (c) Restore from iTune Backup
    10. Select "Restore from iTune Backup"
    11. You will be instructed to connect to iTune (computer)
    On computer
    12. Two options offered
    13. (a) Set up as new iPad (b) Restore from backup (a list of backup will be shown)
    14. Select Restore from backup and select the backup
    15. Continue
    16. Restoring iPad from backup
    17. The settings for iPad restored

  • HT1386 i am trying to restore a backup og my iphone 4 from itunes on my macbook, it asks me for a password which i do not recall setting up, is there any way of getting this password.

    i am trying to restore a backup og my iphone 4 from itunes on my macbook, it asks me for a password which i do not recall setting up, is there any way of getting this password.

    No there's not.  Otherwise that wouldn't be very secure, would it?

Maybe you are looking for

  • How do i use web sharing?

    i have been trying to set up a web page using the built in Apache server. I have turned on websharing. it says "View this computer's website at http://10.0.1.7/ or your personal website at http://10.0.1.7/~williamgates/" but my actual IP is not that.

  • How can I avoid a full scan when ...

    Hello How can I avoid a full scan with I apply the aggregate function "MIN" SQL> select min(c1) from hh;    MIN(C1)          1 Execution Plan    0      SELECT STATEMENT Optimizer=CHOOSE    1    0   SORT (AGGREGATE)    2    1     TABLE ACCESS (FULL) O

  • Blackberry user ID

    I have a problem with my blackberry ID. I know my username and password are correct , but when I downloaded the new bbm that required the blackberry id information, everytime I type the correct information a message appears saying (Please enter the u

  • Joining three tables to get specific data set

    table1 id seq dat table2 id seq empid taxid Table3 empid taxid I want to find out records That have same id,seq,empid having different taxid column Common to three of the tables . Please help me

  • Merge datasets in a select

    Hello Everyone I have the following situation: We have a table that tracks all changes in the storage. If someone moves an article from one storage to another there are to line inserted. I want to merge the two line to one. LFDLBNR from to 26088640