Resetting MacBook to a previous day to retrieve document

Sunday night I wrote a very important document. On Monday, I accidentally saved something else in its place. Is there anyway I can reset my computer to Sunday night and retrieve the original document? Please help!

You have daily backups don't you? If not you could try resetting the clock to just a few minutes before you saved over your important document. It could reappear magically. . . . . . . . . . . . Not!
Basic Backup
Get an external Firewire drive at least equal in size to the internal hard drive and make (and maintain) a bootable clone/backup. You can make a bootable clone using the Restore option of Disk Utility. You can also make and maintain clones with good backup software. My personal recommendations are (order is not significant):
1. Retrospect Desktop (Commercial - not yet universal binary)
2. Synchronize! Pro X (Commercial)
3. Synk (Backup, Standard, or Pro)
4. Deja Vu (Shareware)
5. PsynchX 2.1.1 and RsyncX 2.1 (Freeware)
6. Carbon Copy Cloner (Freeware - 3.0 is a Universal Binary)
7. SuperDuper! (Commercial)
The following utilities can also be used for backup, but cannot create bootable clones:
1. Backup (requires a .Mac account with Apple both to get the software and to use it.)
2. Toast
3. Impression
4. arRSync
Apple's Backup is a full backup tool capable of also backing up across multiple media such as CD/DVD. However, it cannot create bootable backups. It is primarily an "archiving" utility as are the other two.
Impression and Toast are disk image based backups, only. Particularly useful if you need to backup to CD/DVD across multiple media.
Visit The XLab FAQs and read the FAQs on maintenance, optimization, virus protection, and backup and restore. Also read How to Back Up and Restore Your Files.

Similar Messages

  • SQL Server - Previous day data retrieval + conditions

    Hi Guys,
    I am retrieving data from a view for a dashboard and I need some help with my query to retrieve yesterday's data where the following conditions meet:
    When 'Monday' retrieve JUST friday's data. When 'Tuesday' retrieve data from Saturday until Monday, When 'other days' JUST retrieve previous day,
    But there is another condition: Exclude 'previous day' data WHERE "DESP_PostedDate..." column is empty. (as this will skew the percentages)
    This is what I have so far:
    SELECT CORD_DocumentCode
    ,OpenDate
    ,datedue
    ,DESP_PostedDate
    ,COUNT(CORD_DocumentCode) AS Order_Count
    ,SUM(CASE WHEN InFullAndOneTime = 2 THEN 1 ELSE 0 END) AS Difot_count
    ,SUM(CASE WHEN InFullAndOneTime = 2 THEN 1 ELSE 0 END) * 1.0 /COUNT(CORD_DocumentCode) AS DIFOT
    FROM DIFOTIS_View
    WHERE (OpenDate >= CASE
    WHEN DATENAME(dw, CONVERT(CHAR(8), GETDATE(), 112)) LIKE 'Monday' THEN CONVERT(CHAR(8), DATEADD(dd, - 2, GETDATE()), 112)
    WHEN DATENAME(dw, CONVERT(CHAR(8), GETDATE(), 112)) LIKE 'Tuesday' THEN CONVERT(CHAR(8), DATEADD(dd, - 3, GETDATE()), 112) ELSE CONVERT(CHAR(8),
    DATEADD(dd, - 1, GETDATE()), 112) END) GETDATE(), 112))
    GROUP BY OpenDate
    ,CORD_DocumentCode
    ,datedue
    ,DESP_PostedDate
    ORDER BY OpenDate
    This will show you last week's date from "Wednesday" and the result is 15.4 % (or 4/26) whereas I would like it to show 80% (or 4 / 5)
    I have tried adding
    ((Datediff(day,Opendate,getdate())=1) and DESP_PostedDate is not null)
    but it shows then ONLY data from the previous day.
    What do you suggest I should do? Please find below Data from friday for your perusal.
    All help is appreciated. Thanks
    Eric
    CORD_DocumentCode OpenDate datedue DESP_PostedDate Order_Count Difot_count DIFOT
    CASW92195 2014-10-19 2014-10-19 2014-10-20 1 1 1.000000000000
    CASW92196 2014-10-19 2014-10-19 2014-10-20 1 1 1.000000000000
    CASW92197 2014-10-19 2014-10-19 2014-10-20 1 1 1.000000000000
    CASW92198 2014-10-19 2014-10-19 2014-10-20 1 1 1.000000000000
    CASW92199 2014-10-19 2014-10-19 2014-10-20 1 1 1.000000000000
    CASW92200 2014-10-19 2014-10-19 NULL 1 0 0.000000000000
    CASW92201 2014-10-20 2014-10-20 2014-10-20 1 1 1.000000000000
    CASW92202 2014-10-20 2014-10-20 2014-10-20 1 1 1.000000000000
    CASW92203 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CASW92204 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CASW92205 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CASW92206 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CORD37188 2014-10-20 2014-10-20 NULL 1 0 0.000000000000
    CORD37189 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37190 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37191 2014-10-20 2014-10-20 2014-10-21 1 0 0.000000000000
    CORD37192 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37193 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37195 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37196 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37197 2014-10-20 2014-10-20 2014-10-21 1 0 0.000000000000
    CORD37198 2014-10-20 2014-10-20 2014-10-21 1 0 0.000000000000
    CORD37199 2014-10-20 2014-10-20 2014-10-20 1 0 0.000000000000
    CORD37200 2014-10-20 2014-10-20 NULL 1 0 0.000000000000
    CORD37211 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CORD37216 2014-10-20 2014-10-20 2014-10-21 1 1 1.000000000000
    CASW92207 2014-10-21 2014-10-21 2014-10-21 1 1 1.000000000000
    CASW92208 2014-10-21 2014-10-21 2014-10-21 1 1 1.000000000000
    CASW92209 2014-10-21 2014-10-21 2014-10-21 1 1 1.000000000000
    CASW92210 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CASW92211 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CASW92212 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CASW92213 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37218 2014-10-21 2014-10-21 2014-10-21 1 1 1.000000000000
    CORD37220 2014-10-21 2014-10-20 2014-10-21 1 0 0.000000000000
    CORD37221 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37222 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37225 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37227 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37228 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37229 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37230 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37231 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37232 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37233 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37234 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37235 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37236 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37237 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37238 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37239 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    CORD37241 2014-10-21 2014-10-21 NULL 1 0 0.000000000000
    Thanks
    Eric

    Hi Eric,
    Pleas try below code ,Hope this help you
    As per My understanding you were looking for below logic
    If Monday --> Friday only
     Tuesday --> Saturday,sunday, Monday
    Rest Days-->only Preovious Day
    plus additional rule desp_posted date is null then exclude yestreday's data.
    /*Main Query */
    declare @ReportDate datetime
    set @ReportDate='2014-10-22 00:00:00.000'
    select
    OpenDate,cast(datepart(dw,OpenDate) as varchar),DESP_PostedDate
    from base
    where cast(datepart(dw,OpenDate) as varchar)
    in ( SELECT * FROM dbo.CSVToTable(
    case
    when datepart(dw,@ReportDate) =7 then '6'
    when datepart(dw,@ReportDate) =6 then '5'
    when datepart(dw,@ReportDate) =5 then '4'
    when datepart(dw,@ReportDate) =4 then '3'
    when datepart(dw,@ReportDate) =2 then '6'
    when datepart(dw,@ReportDate) =3 and DESP_PostedDate is not null then '7,1,2'
    when datepart(dw,@ReportDate) =3 and DESP_PostedDate is null then '7,1'
    when datepart(dw,@ReportDate) =1 then '7' Else NULL END )) and opendate>=DATEADD(day, -7,@ReportDate)
    /* Table Creation & Sample data */
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    CREATE FUNCTION [dbo].[CSVToTable] (@InStr VARCHAR(MAX))
    RETURNS @TempTab TABLE
    (id int not null)
    AS
    BEGIN
    ;-- Ensure input ends with comma
    SET @InStr = REPLACE(@InStr + ',', ',,', ',')
    DECLARE @SP INT
    DECLARE @VALUE VARCHAR(1000)
    WHILE PATINDEX('%,%', @INSTR ) <> 0
    BEGIN
    SELECT @SP = PATINDEX('%,%',@INSTR)
    SELECT @VALUE = LEFT(@INSTR , @SP - 1)
    SELECT @INSTR = STUFF(@INSTR, 1, @SP, '')
    INSERT INTO @TempTab(id) VALUES (@VALUE)
    END
    RETURN
    END
    GO
    /****** Object: Table [dbo].[base] Script Date: 10/28/2014 6:07:17 PM ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    SET ANSI_PADDING ON
    GO
    CREATE TABLE [dbo].[base](
    [CORD_DocumentCode] [varchar](50) NULL,
    [OpenDate] [datetime] NULL,
    [datedue] [datetime] NULL,
    [DESP_PostedDate] [datetime] NULL,
    [Order_Count] [int] NULL,
    [Difot_count] [int] NULL,
    [DIFOT] [numeric](18, 2) NULL
    ) ON [PRIMARY]
    GO
    SET ANSI_PADDING ON
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92195', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92196', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92197', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92198', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92199', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92200', CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3C900000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92201', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92202', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92203', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92204', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92205', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92206', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37188', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37189', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37190', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37191', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37192', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37193', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37195', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37196', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37197', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37198', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37199', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37200', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37211', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37216', CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92207', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92208', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92209', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92210', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92211', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92212', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CASW92213', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37218', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37220', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CA00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37221', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37222', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37225', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37227', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37228', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37229', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37230', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37231', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37232', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37233', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37234', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37235', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37236', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37237', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37238', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37239', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37241', CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37985', CAST(0x0000A3C800000000 AS DateTime), CAST(0x0000A3C800000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 2, 0, CAST(1.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD379865', CAST(0x0000A3C700000000 AS DateTime), CAST(0x0000A3C700000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 1, CAST(3.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37875', CAST(0x0000A3C600000000 AS DateTime), CAST(0x0000A3C600000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37241', CAST(0x0000A3C500000000 AS DateTime), CAST(0x0000A3C500000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 1, 0, CAST(0.00 AS Numeric(18, 2)))
    GO
    INSERT [dbo].[base] ([CORD_DocumentCode], [OpenDate], [datedue], [DESP_PostedDate], [Order_Count], [Difot_count], [DIFOT]) VALUES (N'CORD37263', CAST(0x0000A3C400000000 AS DateTime), CAST(0x0000A3C500000000 AS DateTime), CAST(0x0000A3CB00000000 AS DateTime), 2, 0, CAST(3.00 AS Numeric(18, 2)))
    GO
    Shiv
    please mark as Answer if helpfull

  • I reset my macbook pro a few days ago.. and when i started to use it again i noticed all my apps were gone (keynote, iMovie, garage band, etc) i don't know how to get them all back and every time i try it tells me i must buy them.. what do i do?

    I reset my macbook pro a few days ago.. and when i started to use it again i noticed all my apps were gone (keynote, iMovie, garage band, etc) i don't know how to get them all back and every time i try it tells me i must buy them.. what do i do?
    should i come into the actual apple store or can you help online ?

    Hi vickkjayy11 and welcome to Apple Support Communities,
    Just to be clear, we are a peer to peer support community and have nothing official to do with Apple.
    So to your problem, when you say:
    "I reset my macbook pro a few days ago"
    What exactly happened? Did you have a Time Machine backup?
    Read this:
    OS X: About OS X Recovery - Apple Support
    It would help to know the exact model (size and year) and which OS you're using.

  • My macbook pro shutsdown every day! What do the following log messages mean?     kernel    Previous Shutdown Cause: -112

    My macbook pro shutsdown every day.
    I did everything, SMC, PRAM, hardware test, reinstall Os X, and all this didn't work!
    Where is the problem? Is it in the software or hardware?
    What I have to do?
    kernel:    Previous Shutdown Cause: -112
    PLEASE, HELP ME!

    i think it`s this, or not? Well, i found this in the System Diagnostic Messages... Is that mean something?
    27/08/13 22:37:09,717
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.activetime
    com.apple.message.value: 3425
    com.apple.message.value2: 3420
    com.apple.message.value4: 1
    com.apple.message.value5: 2
    com.apple.message.summarize: YES
    27/08/13 22:37:09,717
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: iTunes
    com.apple.message.signature2: com.apple.iTunes ||| 11.0.5 (11.0.5)
    com.apple.message.value: 3410
    com.apple.message.value2: 582
    com.apple.message.value3: 1
    com.apple.message.value4: 1
    com.apple.message.value5: 15
    com.apple.message.value6: 2
    com.apple.message.value7: 1817
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,717
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: WebProcess
    com.apple.message.signature2: com.apple.WebProcess ||| 8536 (8536.30.1)
    com.apple.message.value: 1312
    com.apple.message.value2: 0
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,718
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 52
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,718
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: App Store
    com.apple.message.signature2: com.apple.appstore ||| 1.2.2 (129.15)
    com.apple.message.value: 2161
    com.apple.message.value2: 1569
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 18
    com.apple.message.value6: 1
    com.apple.message.value7: 2160
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,718
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: loginwindow
    com.apple.message.signature2: com.apple.loginwindow ||| 8.2 (8.2)
    com.apple.message.value: 3425
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,718
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.ShareKitHelper
    com.apple.message.signature2: com.apple.ShareKitHelper ||| 1.0 (119.13)
    com.apple.message.value: 2682
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,719
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: TextEdit
    com.apple.message.signature2: com.apple.TextEdit ||| 1.8 (301)
    com.apple.message.value: 5
    com.apple.message.value2: 5
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 1
    com.apple.message.value6: 1
    com.apple.message.value7: 5
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,719
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CCleaner
    com.apple.message.signature2: com.piriform.ccleaner ||| 1.03.131 (1.03.131)
    com.apple.message.value: 59
    com.apple.message.value2: 54
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 2
    com.apple.message.value6: 1
    com.apple.message.value7: 59
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,720
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Activity Monitor
    com.apple.message.signature2: com.apple.ActivityMonitor ||| 10.8.0 (806)
    com.apple.message.value: 168
    com.apple.message.value2: 168
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 1
    com.apple.message.value6: 1
    com.apple.message.value7: 168
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,720
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: iTunesHelper
    com.apple.message.signature2: com.apple.iTunesHelper ||| 11.0.5 (11.0.5)
    com.apple.message.value: 3412
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,720
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Dock
    com.apple.message.signature2: com.apple.dock ||| 1.8 (1168.8)
    com.apple.message.value: 3421
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,721
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CPULed
    com.apple.message.signature2: com.agileroute.cpuled ||| 1.3 (1.3)
    com.apple.message.value: 1365
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,721
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Safari
    com.apple.message.signature2: com.apple.Safari ||| 6.0.5 (8536.30.1)
    com.apple.message.value: 2869
    com.apple.message.value2: 612
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 16
    com.apple.message.value6: 1
    com.apple.message.value7: 2319
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,721
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: UserEventAgent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 3391
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,722
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: NotificationCenter
    com.apple.message.signature2: com.apple.notificationcenterui ||| 1.0 (111.6)
    com.apple.message.value: 3418
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,722
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: quicklookd
    com.apple.message.signature2: com.apple.QuickLookDaemon ||| 4.0 (555.5)
    com.apple.message.value: 656
    com.apple.message.value2: 0
    com.apple.message.value3: 4
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,722
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: talagent
    com.apple.message.signature2: com.apple.talagent ||| ???
    com.apple.message.value: 3422
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,722
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: PluginProcess
    com.apple.message.signature2: com.apple.WebKit.PluginProcess ||| 8536 (8536.30.1)
    com.apple.message.value: 2435
    com.apple.message.value2: 0
    com.apple.message.value3: 3
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,723
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Finder
    com.apple.message.signature2: com.apple.finder ||| 10.8.3 (10.8.3)
    com.apple.message.value: 3421
    com.apple.message.value2: 40
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 5
    com.apple.message.value6: 2
    com.apple.message.value7: 945
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,724
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.dock.extra
    com.apple.message.signature2: com.apple.dock.extra ||| 1.0 (1)
    com.apple.message.value: 3416
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,724
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: UserNotificationCenter
    com.apple.message.signature2: com.apple.UserNotificationCenter ||| 3.3.0 (28)
    com.apple.message.value: 60
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,724
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: QuickLookSatellite
    com.apple.message.signature2: com.apple.quicklook.satellite ||| 4.0 (521.1)
    com.apple.message.value: 54
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,724
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: mdworker
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 2113
    com.apple.message.value2: 0
    com.apple.message.value3: 11
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,725
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: AirPlayUIAgent
    com.apple.message.signature2: com.apple.AirPlayUIAgent ||| 1.7 (170.20)
    com.apple.message.value: 3420
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,725
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CoreLocationAgent
    com.apple.message.signature2: com.apple.CoreLocationAgent ||| 12.1 (12.1)
    com.apple.message.value: 2
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,725
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: SystemUIServer
    com.apple.message.signature2: com.apple.systemuiserver ||| 1.7 (369.2)
    com.apple.message.value: 3421
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,726
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: universalaccessd
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 30
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,726
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: MRTAgent
    com.apple.message.signature2: com.apple.mrt.uiagent ||| 1.1 (1)
    com.apple.message.value: 0
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,726
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: storeagent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 2690
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:09,726
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Console
    com.apple.message.signature2: com.apple.Console ||| 10.8 (414)
    com.apple.message.value: 3385
    com.apple.message.value2: 384
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 10
    com.apple.message.value6: 1
    com.apple.message.value7: 1766
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:09,727
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: QuickLookUIHelper
    com.apple.message.signature2: com.apple.quicklook.ui.helper ||| 4.0 (555.5)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,911
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.activetime
    com.apple.message.value: 3
    com.apple.message.value2: 3
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.summarize: YES
    27/08/13 22:37:12,912
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: loginwindow
    com.apple.message.signature2: com.apple.loginwindow ||| 8.2 (8.2)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,912
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.ShareKitHelper
    com.apple.message.signature2: com.apple.ShareKitHelper ||| 1.0 (119.13)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,912
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: iTunesHelper
    com.apple.message.signature2: com.apple.iTunesHelper ||| 11.0.5 (11.0.5)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,913
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Dock
    com.apple.message.signature2: com.apple.dock ||| 1.8 (1168.8)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,913
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CPULed
    com.apple.message.signature2: com.agileroute.cpuled ||| 1.3 (1.3)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,913
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: UserEventAgent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,914
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: NotificationCenter
    com.apple.message.signature2: com.apple.notificationcenterui ||| 1.0 (111.6)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,914
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: talagent
    com.apple.message.signature2: com.apple.talagent ||| ???
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,914
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Finder
    com.apple.message.signature2: com.apple.finder ||| 10.8.3 (10.8.3)
    com.apple.message.value: 3
    com.apple.message.value2: 3
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 3
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 22:37:12,915
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.dock.extra
    com.apple.message.signature2: com.apple.dock.extra ||| 1.0 (1)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,915
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: mdworker
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,915
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Install in Progress
    com.apple.message.signature2: com.apple.PackageKit.Install-in-Progress ||| 3.0 (260)
    com.apple.message.value: 0
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,916
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: AirPlayUIAgent
    com.apple.message.signature2: com.apple.AirPlayUIAgent ||| 1.7 (170.20)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,916
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: SystemUIServer
    com.apple.message.signature2: com.apple.systemuiserver ||| 1.7 (369.2)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,916
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: storeagent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 22:37:12,917
    UserEventAgent[130]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Console
    com.apple.message.signature2: com.apple.Console ||| 10.8 (414)
    com.apple.message.value: 3
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 23:02:26,083
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.activetime
    com.apple.message.value: 1404
    com.apple.message.value2: 1282
    com.apple.message.value4: 1
    com.apple.message.value5: 2
    com.apple.message.summarize: YES
    27/08/13 23:02:26,084
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: WebProcess
    com.apple.message.signature2: com.apple.WebProcess ||| 8536 (8536.30.1)
    com.apple.message.value: 945
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,084
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: loginwindow
    com.apple.message.signature2: com.apple.loginwindow ||| 8.2 (8.2)
    com.apple.message.value: 1404
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,084
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.ShareKitHelper
    com.apple.message.signature2: com.apple.ShareKitHelper ||| 1.0 (119.13)
    com.apple.message.value: 526
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,085
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: iTunesHelper
    com.apple.message.signature2: com.apple.iTunesHelper ||| 11.0.5 (11.0.5)
    com.apple.message.value: 1403
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,085
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Dock
    com.apple.message.signature2: com.apple.dock ||| 1.8 (1168.8)
    com.apple.message.value: 1404
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,085
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CPULed
    com.apple.message.signature2: com.agileroute.cpuled ||| 1.3 (1.3)
    com.apple.message.value: 1400
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,087
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Safari
    com.apple.message.signature2: com.apple.Safari ||| 6.0.5 (8536.30.1)
    com.apple.message.value: 945
    com.apple.message.value2: 665
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 14
    com.apple.message.value6: 1
    com.apple.message.value7: 945
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 23:02:26,087
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: UserEventAgent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 1374
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,087
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: NotificationCenter
    com.apple.message.signature2: com.apple.notificationcenterui ||| 1.0 (111.6)
    com.apple.message.value: 1404
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,088
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: quicklookd
    com.apple.message.signature2: com.apple.QuickLookDaemon ||| 4.0 (555.5)
    com.apple.message.value: 544
    com.apple.message.value2: 0
    com.apple.message.value3: 3
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,088
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: talagent
    com.apple.message.signature2: com.apple.talagent ||| ???
    com.apple.message.value: 1404
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,088
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: PluginProcess
    com.apple.message.signature2: com.apple.WebKit.PluginProcess ||| 8536 (8536.30.1)
    com.apple.message.value: 628
    com.apple.message.value2: 0
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,089
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Finder
    com.apple.message.signature2: com.apple.finder ||| 10.8.3 (10.8.3)
    com.apple.message.value: 1403
    com.apple.message.value2: 340
    com.apple.message.value3: 1
    com.apple.message.value4: 1
    com.apple.message.value5: 5
    com.apple.message.value6: 2
    com.apple.message.value7: 838
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 23:02:26,089
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.dock.extra
    com.apple.message.signature2: com.apple.dock.extra ||| 1.0 (1)
    com.apple.message.value: 1402
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,089
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: QuickLookSatellite
    com.apple.message.signature2: com.apple.quicklook.satellite ||| 4.0 (521.1)
    com.apple.message.value: 289
    com.apple.message.value2: 0
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,089
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature2: com.apple.securityagent ||| 7.0 (55116.10)
    com.apple.message.value: 0
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,090
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: mdworker
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 1124
    com.apple.message.value2: 0
    com.apple.message.value3: 5
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,090
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: DashboardClient
    com.apple.message.signature2: com.apple.dashboard.client ||| 1.8 (1.8)
    com.apple.message.value: 734
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,090
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CoreLocationAgent
    com.apple.message.signature2: com.apple.CoreLocationAgent ||| 12.1 (12.1)
    com.apple.message.value: 1
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,091
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: SystemUIServer
    com.apple.message.signature2: com.apple.systemuiserver ||| 1.7 (369.2)
    com.apple.message.value: 1404
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,091
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: qtkittrustedmoviesservice
    com.apple.message.signature2: com.apple.qtkittrustedmoviesservice ||| 1.0 (1)
    com.apple.message.value: 24
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,091
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: universalaccessd
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 30
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,091
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: MRTAgent
    com.apple.message.signature2: com.apple.mrt.uiagent ||| 1.1 (1)
    com.apple.message.value: 0
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,092
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: com.apple.qtkitserver
    com.apple.message.signature2: com.apple.qtkitserver ||| 1.0 (1)
    com.apple.message.value: 25
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,092
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: storeagent
    com.apple.message.signature2: UNBUNDLED ||| ???
    com.apple.message.value: 1400
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    27/08/13 23:02:26,092
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Console
    com.apple.message.signature2: com.apple.Console ||| 10.8 (414)
    com.apple.message.value: 695
    com.apple.message.value2: 276
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 16
    com.apple.message.value6: 1
    com.apple.message.value7: 695
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    27/08/13 23:02:26,092
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: QuickLookUIHelper
    com.apple.message.signature2: com.apple.quicklook.ui.helper ||| 4.0 (555.5)
    com.apple.message.value: 4
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 06:59:39,264
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.activity_stats
    com.apple.message.apps_per_activity_min: 1.000000
    com.apple.message.apps_per_activity_max: 8.000000
    com.apple.message.apps_per_activity_median: 2.000000
    com.apple.message.apps_per_activity_mean: 2.857143
    com.apple.message.apps_per_activity_count: 7
    28/08/13 07:09:31,677
    syspolicyd[233]
    assessment denied for rar but overridden
    com.apple.message.domain: com.apple.security.assessment.outcome
    com.apple.message.signature2: bundle:UNBUNDLED
    com.apple.message.signature4: 3
    com.apple.message.signature: override:_XProtect
    com.apple.message.signature3: rar
    28/08/13 10:55:39,260
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.activetime
    com.apple.message.value: 14160
    com.apple.message.value2: 1860
    com.apple.message.value4: 3
    com.apple.message.value5: 3
    com.apple.message.summarize: YES
    28/08/13 10:55:39,261
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: QuickLookUIHelper
    com.apple.message.signature2: com.apple.quicklook.ui.helper ||| 4.0 (555.5)
    com.apple.message.value: 8
    com.apple.message.value2: 0
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 10:55:39,261
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: WebProcess
    com.apple.message.signature2: com.apple.WebProcess ||| 8536 (8536.30.1)
    com.apple.message.value: 734
    com.apple.message.value2: 0
    com.apple.message.value3: 5
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 10:55:39,262
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: loginwindow
    com.apple.message.signature2: com.apple.loginwindow ||| 8.2 (8.2)
    com.apple.message.value: 14160
    com.apple.message.value2: 0
    com.apple.message.value3: 0
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 10:55:39,262
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: CoreServicesUIAgent
    com.apple.message.signature2: com.apple.coreservices.uiagent ||| 95.1 (95.1)
    com.apple.message.value: 31
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 10:55:39,262
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: Activity Monitor
    com.apple.message.signature2: com.apple.ActivityMonitor ||| 10.8.0 (806)
    com.apple.message.value: 13405
    com.apple.message.value2: 73
    com.apple.message.value3: 2
    com.apple.message.value4: 0
    com.apple.message.value5: 3
    com.apple.message.value6: 1
    com.apple.message.value7: 376
    com.apple.message.result: YES
    com.apple.message.summarize: YES
    28/08/13 10:55:39,263
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: iTunesHelper
    com.apple.message.signature2: com.apple.iTunesHelper ||| 11.0.5 (11.0.5)
    com.apple.message.value: 14159
    com.apple.message.value2: 0
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 0
    com.apple.message.value6: 0
    com.apple.message.value7: 0
    com.apple.message.result: NO
    com.apple.message.summarize: YES
    28/08/13 10:55:39,263
    UserEventAgent[132]
    com.apple.message.domain: com.apple.usage.app_activetime
    com.apple.message.signature: StuffIt Expander
    com.apple.message.signature2: com.stuffit.StuffIt-Expander ||| 15.0.7 (4781)
    com.apple.message.value: 4
    com.apple.message.value2: 3
    com.apple.message.value3: 1
    com.apple.message.value4: 0
    com.apple.message.value5: 1
    com.apple.message.value6: 1
    com.apple.message.value7: 4
    com.apple.message.result: YES
    com.apple.me

  • To retrieve previous day's data-ods

    Hi friends,
    i got a requirement like we should get the previous days data in to our ods.
    i.e. we are extracting the data daily into our ods from crm (the data related to the daily complaints.i.e. if the user enters the complaint on 25.06.2008, then the officer who is related to that particular department can see the report on 26.06.2008)
    now my requirement is if the user enters the data on 25.06.2008 the should see the corresponding data on 27.06.2008).
    we are extracting the data using function module.
    is there any way to extract the data od day before's.
    please help me
    regards
    sridath
    Edited by: sridath on Jun 27, 2008 11:28 AM

    Hi Sridath,
    Are u talking about the backend side or from the report side of issue..
    If its from the backend side then u cannt get the day before yesterdays data to load.. unless is there is no load has happend yesterday.. If there is no load has happend yesterday .. then u can delete the data before yesterdays load from ur ODS and then take a repeat delta.. in this repeat u can get total 3 days data including the new postings which is there in RSA7.
    Or u can look at the PSA data anyway will load only that particular day load only..
    Let us know the details..
    Thanks
    Assign points if this helps

  • How can I retrieve and print a previous day,s puzzle?

    Is it possible to retieve and print  a previous day,s Universal crssword puzzle?

    Unfortunately you are only able to print the puzzle on the day it is available.
    If I helped you at all it would be great if you clicked the blue kudos star!
    If I solved your post please mark it as solved to help others.
    I'm a printer tech with HP.

  • I just bought my first MacBook Pro a few days ago. I can't seem to get my PC to see my MacBook Pro on the network. Can anyone help me get my PC to see my MacBook Pro on my network t?

    I just bought my first MacBook Pro a few days ago. I can't seem to get my PC to see my MacBook Pro on the network. Can anyone help me get my PC to see my MacBook Pro on my network t?
    Thanks,
    Alex

    Forgot Your Account Password
    For Lion/Mountain Lion
        Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
         When the menubar appears select Terminal from the Utilities menu.
         Enter resetpassword at the prompt and press RETURN. Follow
         instructions in the dialog window that will appear.
         Or see Reset a Mac OS X 10.7 Lion Password and
         OS X Lion- Apple ID can be used to reset your user account password.

  • My printer is a Samsung ML-2010R.  Still looking for a driver solution to run Mac OS X Lion through a new Macbook Pro.  Previously, I was running Mac Os X version 10.5.8 through this printer  on a 4 yr old Macbook. Any further help is most appreciated:-)

    My printer is a Samsung ML-2010R.  Still looking for a driver solution to run Mac OS X Lion through a new Macbook Pro.  Previously, I was running Mac Os X version 10.5.8 through this printer  on a 4 yr old Macbook. Any further help is most appreciated:-)  Humbly, bowiej

    Apple seems to be naming their operating sytems usability based on the respective turd size of the feline in question. Lions are big, very, very, very big.
    I had a system that served me well for 2 years until I mistaking bought a new machine which runs mega-turd (Lion). Foolish me, now nothing works properly, its a daily struggle to get anything working smoothly using my NEW mac mini. All my other machines work fine, even the windows machines and my Android tablet see all the network components and can talk to each other.
    My Internet service is over 3g which I share to the house using internet sharing via my brand new €800 mac mini running POS Lion, everytime the service is interrupted, Kaboom, the mini resets the DHCP server, but doesn't seem to refresh any of the components so connections drop everywhere.
    Its amateur hour at Apple folks.
    There are several posts alone relating to internet sharing, I have submitted a bug report relating to the non user controllable DHCP server (which may be at fault), but the response / solution from Apple was lacklustre and ultimately didn't work.
    See this, there are some work around's in there;
    https://discussions.apple.com/thread/3771614?start=0&tstart=0

  • Time machine not performing housekeeping - previous days' & weeks' multiple backups remaining

    As you can see from this image, time machine stopped cleaning backups from previous days and weeks.
    A bit of background, this is a networked backup for a MacBook Pro. (Thus, the backups only happen when I'm at home on my home network.)  The MBP: OS 10.8.4 2.4 GHz, 8 Gb: 750 Gb drive, currently using 125 Gb - 625 Gb free.
    The time machine "drive" is a 350 Gb partition on a 1 Tb drive, 75 Gb free; the other parition has the time machine backup for another MBP, also OS X 10.8.4; this problem does not occur on that time machine partition with that computer.  The problem started on 5/12 with previous days multiple entries not being deleted. (The timing does not seem to align with a software update: 10.8.3 on 3/25 and 10.8.4 on 6/6.)
    One more thing, backups take much longer (around 25 minutes for just a few Mbs) than they do on the other MBP which uses the other partition. The other MBP has many more files and folders and the .sparsebundle is bigger (252 Gb).
    I have read through Pondini's wonderfully thorough website on time machine (pondini.org) and looked through discussions here. All seem to focus on ways in which time machine prunes old backups to make space. In my case, space is not (yet) a problem, but I am concerned that these problems indicate time machine is not working properly and that there may be other problems.

    I gave it a try last night. For the record it is item A4 at the pondini.org site. The result:
    - the back up was 1.43 Gb (rather large considering that the only activity on the MBP since the previous backup had been to read mail).
    - no change to the list of previous back up entries and the mulitple backups from the last few days were not pruned (that is, the problem perists).
    - I looked at the backups using the Time Machine interface and only the ones snce removing the .plst are visible. (All of the prior backups are still visible using the finder interface looking at the mounted virtual disk.)

  • HT201240 i dont know my macbook air password, how do i retrieve it??

    i dont know my macbook air password, how do i retrieve it??
    i dont remember setting a password, but now when i try to delete an app or do certain things it asks me for a password, where do i find this password??
    and i wnt to disable this password. I have tried users & groups in the system preferences, but i am only able to reset the password, but i dont know what my password so how can i retrieve it?

    OS X 10.7 Lion, 10.8 MountainLion & 10.9 Mavericks
    Reset Password using Recovery HD
    Boot into Recovery Partition.
    Start the computer,then press and hold down command and R keys to start into recovery partition.
    When you see the Apple logo, release the keys.
    Wait until  OS X Utilities window shows up.
    Move the mouse to the menubar at the top and click "Utilities", then select "Terminal"
    from the drop down.
    Terminal window will appear.
    Type in   resetpassword   and press enter on the keyboard.
    Leave the Terminal window open.
    Reset Password Utility window will open with Macintosh HD selected.
    Select the user account from the popup menu box.
    Enter a new password.
    Reenter the new password for the user.
    Enter a hint.
    Click the "Save" button.
    Click  in the menubar and select Restart.

  • HT4859 My phone some how deleted not all but most of my contacts and then backup to the iCloud can I go back to a previous backup and retrieve the contacts. If so how.

    My phone some how deleted not all but most of my contacts and then backup to the iCloud can I go back to a previous backup and retrieve the contacts. If so how.

    Hi Shero89,
    Thanks for the answer.  I am not new to IOS software but I don't really ever bother with it, have discovered how little I take advantage of the i-phones capability, in reality I still only really use it to phone, text, check emails, listen to music and look on internet.  I'm not keen on jailbreaking it as I don't trust it to work so normally just update and leave it at that.  Only reason I wanted to downgrade was because the update had stopped my bluetooth working but Kilted Tim solved that problem for me so am now not interested in downgrading software.  I quite liked the things that IOS 5.1 gave me but wasn't happy with fact that bluetooth stopped working in car as it caused me problems.  One day I might try and work out exactly what I-phones can do but on the basis that it's a phone all I really want it to do is phone, if that bit works I'm happy.

  • How to factory reset Macbook Air with Mavericks

    I work at a pawn shop and have a Macbook air with OS X 10.9 installed.  I need to be able to reset this, so the previous owner's information is not compromised before selling it.  When powering on the Mac I am unable to use any boot commands to get to terminal or recovery options because a screen with a lock and a password entry box show up.  How can I bypass this to reset the mac?
    Thanks

    I have addressed the issue with the other team members going forward, but I still have potentially 1-4 months of affected inventory...which is potentially a huge financial loss. 
    I don't doubt that this particular machine was tested before it was purchased, but if the general assumption was, passwords are no big deal, we can just boot to recoery mode and reset the mac later, then this would have been no cause for concern. 
    either way, I have to find away around this for my current inventory.  I will get some torx screw drivers and try removing the ram.
    thank you

  • How do I set iCal alerts to a specific time the previous day, regardless of their specific time (so I can get an overview of tomorrow)?

    I think it would be incredibly useful to be able to get at, say, 10pm each evening, a pop up overview of the next day's events. I'm hoping for a tick box somewhere to set my default reminder as a specific time on the previous day, in the same way that you can do '15 minutes before'. Currently you can set reminders for a specific time and date, but, entering this for every item – especially if you want them to coincide – is more than slightly tedious. Furthermore, I input a lot of my Calender events on my iPhone (they sync via iCloud), which has no such functionality, rendering this essentially defunct.
    Any ideas?

    apple don't have a version of windows
    only microsoft have windows
    as how one automatate windows to send mails at a time
    googled it for you
    http://www.howtogeek.com/125045/how-to-easily-send-emails-from-the-windows-task- scheduler/
    more options in the search
    https://www.google.dk/search?client=opera&q=automatically+send+email+in+windows& sourceid=opera&ie=UTF-8&oe=UTF-8

  • How to get previous day of the date

    Hi,
    for a given date I need one day minus as a result date
    my input would be any date
    for example :
    Input Date : 2006-03-22 ( yyyy-mm-dd)
    Output should be : 2006-03-21
    If my input is 1st of April 2006, output i would expect is 31st March 2006
    Please suggest how to achieve this
    Thanks in advance
    Nilesh

    Find below the code to get previous day of the current date
    import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    public class PreviosDay
    public static void main(String[] args)
    DateFormat dateFormat = new SimpleDateFormat( "MM/dd/yyyy");
    Calendar cl = Calendar.getInstance();
    // you can use a Date object's getTime() method , which is initialiazed
    // to desired date here directly ex: Date dt = new Date("10/10/2004");
    // cl.setTimeInMillis(dt.getTime());
    cl .setTimeInMillis(System.currentTimeMillis());
    cl.add(Calendar.DAY_OF_MONTH, -1);
    System.out.println("Previous date : "+dateFormat.format(
    new Date(cl.getTimeInMillis() ) ) );
    }

  • I have had my iMac for 55 days now and twice I had to power off/on and then It does not power up correctly.  I verified my disk and found errors that could not be repaired.  I erased the drive and restored system back to the previous day.

    I have had my iMac for 55 days now and twice I had to power off/on and then It does not power up correctly.  I verified my disk and found errors that could not be repaired (errors were associated with boot drive)  I erased the drive and restored system back to the previous day.  Has anyone else experienced this problem?

    Since it's a new machine, contact Apple's Support and let them deal with it. Allen's already recommended an Apple repair station visit. Do note that if you have AppleCare's protection plan and you're within 50 miles (80 KM) of an Apple repair station, you might be eligible for an onsite repair since yours is a desktop machine (depends on where you're located).  BTW, the AppleCare Protection Plan's the best warranty policy available for desktop machines. Get it if you don't have it before contacting Apple.
    27" i7 iMac (Mid 2011) refurb, OS X Mavericks (10.9.4), ML & SL, G4 450 MP w/Leopard, 9.2.2

Maybe you are looking for

  • Why Is The Menu On The Master Page BELOW The Objects In Other Pages?

    I added a menu on the master page using the Composition widget called featured news and it stays behind the other objects on normal pages. How do I fix this? Here are the pictures of the menu when it's closed and when it's open.

  • Changing My Disk Type.

    I have 4.7 GB disks but iDVD will not let me switch to that setting from 4.2 GB disks. How do i do it?

  • Outlook Calendar invites show up 16 hours behind when accepted on my iphone

    I am using Ms Outlook 2003 (work email) to send calendar invites to my Gmail (personal email which I receive on my iPhone4), and attempting to accept these calendar invites on my iPhone (via the .ics attachment) so that they appear on iCal. I am howe

  • Nokia X2-02 Software Update CRASHES ON WINDOWS 8.1

    I have been trying to Update/Repair my Nokia X2-02 on my windows 8.1 pro system. But after the backup process on the LATEST VERSION OF NOKIA SUITE, the System Crashes with Blue Screen. Tried on 3 more different systems with Windows 8.1 still the same

  • Why can't I open my video in imovie on my Ipad?

    I created a video in IMoive in my Mac but I cannot open it in my Ipad.  I have opened it in ITunes and moved it to the IPad but when I open IMovies on the IPad and try to download but it says the there is no file.  Any help would be appreciated.