Progress Bar of a Database Transaction

Hi,
Is it possible to have a progress bar showing the progress a Database Transaction?
I use MS Access and a PreparedStatement which I fill up with addBatch() and then I execute with executeBatch().
Inserting in an Access Table 10.000 new entries takes about a minute...
Instead of having the user wait with a message "Please wait..."
can I track its progress somehow?
Thanks!!!

Unfortunately, I don't think that there's a standard way to get asynchronous responses back from the database on the status of your batches. You could fake it by figuring out the "standard" time it takes, but otherwise you're in the dark about your statement's status.

Similar Messages

  • Progress bar according to databases status?

    Helo frens........
    i need to display progress bar according to database status i.e. as one programm is taking data (mobile no ) and sending msg to that mobile no how to display it

    Helo frens........
    i need to display progress bar according to database
    status i.e. as one programm is taking data (mobile no
    ) and sending msg to that mobile no how to display itI don't know of a way to estimate how much of your query job is done, nor do I know of a database tool that is sufficiently accurate to allow a percentabe type of update progress to be shown, but you could make a moving bar that resets when it hits the end--make it fairly rapidly moving to not confuse anyone looking at it--so they don't think it is an actual one time through and your are done progress type.
    The progress bar needs to run in a seperate thread then and when your process returns from it's call, then you shut down your progress bar.

  • Progress bar conditional issue

    hi,
    I'm using the following code to two things. First, progress bar and second, database connection. Both process are working fine but, not simultaneously.
    Code:
    ================
    On Error GoTo Err_cmdDisconnect_Click
        Dim dbs As DAO.Database
        Dim tdf As DAO.TableDef
        Dim strMessage As String, strDatabaseName As String
        Dim retval
        Dim FullLength As Integer
        Dim PercentComplete As Integer
        Dim Timing As String
    Set dbs = CurrentDb()
    strDatabaseName = CurrentProject.Path & "\BE\" & Dbase
    If IsNull(Dbase) Then
        MsgBox ("Please select the database."), , "Error"
        Me.Dbase.SetFocus
    Exit Sub
    End If
        strMessage = "Are you sure to connect " & _
        strDatabaseName & " as the Auto Evolution database?"
    If MsgBox(strMessage, vbYesNo + vbQuestion, "Connection Confirmation") = vbNo Then
    Exit Sub
    End If
    If Dir(strDatabaseName) = "" Then
        MsgBox "The Auto Evolution database you have specified as the " & _
        "source was not found.", vbInformation, "Connection Error"
    Exit Sub
    End If
    DoCmd.Hourglass True
    'Declare timing
    Timing = 0.01
    'Declare the maximum length of the progress bar
    FullLength = 8050
    'Hourglass
    Screen.MousePointer = 11
        'Remove transparancy of progress bar
    If Me.txtProgress.Width <> 0 Then
        Me.txtProgress.BackStyle = 1
    End If
    Do While Me.txtProgress.Width <> FullLength
        Me.txtProgress.Width = Me.txtProgress.Width + 25
        PercentComplete = (Me.txtProgress.Width / FullLength) * 100
        Me.txtStatus.Caption = PercentComplete & " % Complete"
        Call Pause(Timing)
    Loop
    If Me.txtProgress.Width = FullLength Then
        Me.CmdClose.Enabled = True
    End If
        retval = SysCmd(acSysCmdSetStatus, "Connecting to previous Database")
    For Each tdf In dbs.TableDefs
        If tdf.Connect <> "" Then
        tdf.Connect = ";DATABASE=" & strDatabaseName & (";PWD=zujan")
        tdf.RefreshLink
    End If
        Next tdf
    Screen.MousePointer = 0
    DoCmd.Hourglass False
    retval = SysCmd(acSysCmdClearStatus)
    MsgBox "Auto Evolution database is now connected with " & _
            "'" & Me.Dbase & "'", vbInformation, "Connection Successful"
    DoCmd.Close acForm, Me.NAME
    Exit_cmdConnect_Click:
        Exit Sub
    Err_cmdConnect_Click:
        DoCmd.Hourglass False
        If Err.Number <> 2467 Then
        MsgBox ("Unable to execute database switch now."), vbCritical, "Error"
        Me.CmdClose.Enabled = True
        Resume Exit_cmdConnect_Click
    End If
    ===============
    Any help will be appreciable.
    Thanks & Regards, Anuj Mehrotra

    Do While Me.txtProgress.Width <> FullLength
        Me.txtProgress.Width = Me.txtProgress.Width + 25
        PercentComplete = (Me.txtProgress.Width / FullLength) * 100
        Me.txtStatus.Caption = PercentComplete & " % Complete"
        Call Pause(Timing)
    Loop
    If Me.txtProgress.Width = FullLength Then
        Me.CmdClose.Enabled = True
    End If
        retval = SysCmd(acSysCmdSetStatus, "Connecting to previous Database")
    For Each tdf In dbs.TableDefs
        If tdf.Connect <> "" Then
        tdf.Connect = ";DATABASE=" & strDatabaseName & (";PWD=zujan")
        tdf.RefreshLink
    End If
        Next tdf
    Screen.MousePointer = 0
    Hi Anuj,
    What I see in your code is that you first have your progress bar run from 0 to 100%, and after that step through the TableDefs to connect.
    I assume you want to increase the progress bar during the connecting process. So you have to merge the two loops. First you count the total number of TableDefs (your 100%), and then increment Me.txtProgress.Width for each tdf in equal steps.
    Instead of building the progress bar on "each" form, you could also make a dedicated progress bar form. At the start of a loop you open the form, and assign the form to an variable of type form (e.g. progr_form):  Set progr_form = Forms("Progress_form").
    This form has the control txtProgress to display the progress bar, a (hidden) control with the maximum number of steps, and a (hidden) control with the current number of executed steps. After the update of this latter control (e.g. progr_form!CurrentCount
    = x), the width of the progress bars is recalculated. After finishing the loop, the form is closed.
    The advantage of a dedicated progress bar form is that you can use the same form for quite different progress displays, under quite different circumstances.
    Imb.

  • Progress bar for database connection

    hi all,
    while connecting to databse the application is frozen for some time. i want to display progress bar to let the user know what is happening.
    how to display progress bar while connecting to database. help me out with sample code.
    Thanks n regards
    suresh

    http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html

  • Animated Progress Bar issues

    I am working with the animated progress bar from the late Carl Backstrom's demo applicaiton but to my amazement, the bar refuses to animate unless the javascript is triggered from a button press. This is not really acceptable for my purposes as I need to have it fire and work though an onLoad on the body attributes. Any Sugestions? I know some people are going to probably say ExtJS and JQuery but our development rules here will not allow us include either of these libraries at this time.

    It is actually an intermediate page with a PL/SQL process that runs on submit to cache database information from a remote db. I actually have a button on another page that routes into the page in question so that I can clear everything in the background to prevent people from being able to go to another page while loading process is under way. The way I have it setup now is you click a button to start a multistage process and you are taken to a loading page which basically takes away other links on the page and gives you a blank page with the progress bar. Once loading is finished, it branches the person to the next step.

  • How to determine a sql query size to display a progress bar

    I would like to show a progress of an sql query within a jsp page.
    Background:
    I have a reporting web application, where over 500 contacts can run reports based on different criteria such as date range....
    I current display a message stating 'executng query please wait', however the users (hate users) do not seem to wait, thereofore they decide to run the query all over again which affected my reportign sever query size (eventually this crashes, stopping all reports)
    Problem:
    The progress bar is not a problem, how would I determine the size of the query at runtime therefore adding the time onto my progress bar.

    Yes it's doable (we do it) but it sure ain't easy.
    We've got about 23,500,000 features (and counting) in a geodata database. Precise spatial selection algorithms are expensive. Really expensive.
    We cannot impose arbitrary limits on search criteria. If the client requires the whole database we are contractually obligated to provide it...
    For online searches We use statistics to approximate the number of features which a given query is likely to return... more or less the same way that the query optimiser behind any half decent (not mysql (5 alteast)) database management system does.
    We have a batch job which records how many features are linked to each distinct value of each search criteria... we just do the calculations (presuming a normal (flat) distribution) and...
    ... if the answer is more than a 100,000 we inform the user that the request must be "batched", and give them a form to fill out confirming there contact details. We run the extract overnight and send the user an email containing a link which allows them to download the result the next morning.
    ... if the answer is more than a million features we inform the user that the request must batched over the weekend... same deal as above, except we do it over the weekend to (a) discourage this; and (b) the official version ensure we have enough time to run the extract without impinging upon the maintenance window.
    ... if the answer is more than 5 million we display our brilliant "subscribe to our DVD service to get the latest version of the whole shebang every three months (or so), so you can kill your own blooody server with these ridiculous searches" form.
    Edited by: corlettk on Dec 5, 2007 11:12 AM

  • Creating progress bar in oracle forms 6i

    Hii
    I have a push-button (pb_submit)
    when when_button_pressed trigger fired...I have a database main procedure to be called.
    inside that procedure i am calling 25 procedures.
    and all 25 Procedures will be executed sequencially.
    I want to use a Progress bar...
    so that user will get to know hw much % completed
    if main procedure(total 25 procedures inside) is completed successfully then progress bar should show 100%
    like wise if 1 procedure completed then 4 %
                 if 2 procedure completed then 8 %
    total 25 procedure completed then 100%
    how to implement this logic.
    and if in between 1 procedure failed then progress bar should stop at that incident.
    and it should start from dat instant only if again that failed procedure run successfully.
    should i post my codes here.ok...here is the codes written in the button(when_button_pressed trigger)
    DECLARE
      l_Last_Record      NUMBER  := 0  ;
      l_Prg_Process_Id    NUMBER     ;
      l_Prg_Process_Id_1  NUMBER     ;
      l_Prg_Id       VARCHAR2(15)  ;
      l_Alert_Result    VARCHAR2(1)   ;
      l_Validation_Msg   VARCHAR2(500) ;
      l_Path        VARCHAR2(240) ;
      File_Name       VARCHAR2(250) ;
      l_file_exists     BOOLEAN       ;
      l_file_len        NUMBER     ;
      l_blocksize       BINARY_INTEGER;
      o_Status       VARCHAR2(1)  ;
      o_User_Selection_Ca1 VARCHAR2(1)  ;
      o_User_Selection_Ca2 VARCHAR2(1)  ;
      o_User_Selection_Ca3 VARCHAR2(1)  ;
      CURSOR C_Validation IS
      SELECT Cpv_Validation_Type     ,
             Cpv_Validation_Input    ,
             Cpv_Validation_Action  ,
             Cpv_Validation_Active_Flag
      FROM   Config_Process_Validation
      WHERE  Cpv_Program_Id = l_Prg_Id
      AND   Nvl(Cpv_Validation_Active_Flag, 'N') = 'Y'
      ORDER BY Cpv_Validation_Sequence;
    BEGIN
    SELECT RV_HIGH_VALUE
    INTO   l_Path
    FROM   CG_REF_CODES
    WHERE  Rv_Domain    = 'DERV_DATA_FILES'
    AND   Rv_Low_Value = 'DRV_FILES';
    Go_Block('Process');
      Last_Record;
      l_Last_Record := :System.Cursor_Record; 
      First_Record;
      FOR i IN 1 .. l_Last_Record
      LOOP
      Go_Record(i);
      l_Prg_Id := :Prog_Id;
      IF NVL(:Process.Cb_Select,'N') = 'Y' THEN
       :Query.Current_Status := 'Current Process: ' || :Process.Prog_Desc;
       Synchronize;
       --Validate if program is already in running mode or already completed
       SELECT NVL(MAX(DECODE(Prg_Status, 'R', 999999999, 'C', Prg_Process_Id)), 0)
       INTO   l_Prg_Process_Id
       FROM   Program_Status,
           Parameter_Master
       WHERE  Prg_Dt      = Pam_Curr_Dt
       AND    Prg_Cmp_Id  = l_Prg_Id
       AND    Prg_Exm_Id  IN ('ALL', :Query.Exchange)
       AND    Prg_Status  IN ('R', 'C');
       IF l_Prg_Process_Id = 999999999 THEN
         P_Show_Alert(l_Prg_Id||' Process is already running.','A',l_Alert_Result);
        --RAISE Form_Trigger_Failure;
       ELSIF l_Prg_Process_Id > 0 AND :Execution_Flag <> 'M' THEN
        P_Show_Alert(l_Prg_Id||' Process already run. It can not run twice. ','A',l_Alert_Result);
        RAISE Form_Trigger_Failure;
       END IF;
       --Validate mandataory process, process specific validation and message
       FOR i IN C_Validation
       LOOP
        IF i.Cpv_Validation_Type = 'MANDATORY' AND i.Cpv_Validation_Active_Flag = 'Y' THEN
           SELECT Count(1)
           INTO   l_Prg_Process_Id_1
           FROM   Program_Status,
               Parameter_Master
         WHERE  Prg_Dt      = Pam_Curr_Dt
         AND    Prg_Cmp_Id  = i.Cpv_Validation_Input
         AND    Prg_Exm_Id  IN ('ALL', :Query.Exchange)
         AND    Prg_Status  = 'C'
         AND    Prg_Process_Id IN (SELECT MAX(Prg_Process_Id)
                      FROM   Program_Status,
                          Parameter_Master
                      WHERE  Prg_Dt      = Pam_Curr_Dt
                      AND    Prg_Cmp_Id  = i.Cpv_Validation_Input
                      AND    Prg_Exm_Id  IN ('ALL',:Query.Exchange)
                      AND    Prg_Status  = 'C');
         IF l_Prg_Process_Id_1 = 0 THEN
          P_Show_Alert(i.Cpv_Validation_Input||' Mandatory Process NOT completed successfully.','A',l_Alert_Result);
          RAISE Form_Trigger_Failure;
         END IF;
        ELSIF i.Cpv_Validation_Type = 'MESSAGE' THEN
         P_Show_Alert(i.Cpv_Validation_Input, i.Cpv_Validation_Action, l_Alert_Result);
         IF l_Alert_Result = 'N' THEN
          RAISE Form_Trigger_Failure;
         END IF;
        ELSE   
         --- OTHER PROCESS SPECIFIC VALIDATION
         l_Validation_Msg := Null;
         Pkg_Process_Automation.P_Pre_Process_Validation(l_Prg_Id,
                                 :Query.Exchange,
                                 :Query.Segment,
                                 i.Cpv_Validation_Type,
                                 l_Validation_Msg);
         IF l_Validation_Msg IS NOT NULL THEN
          P_Show_Alert(l_Validation_Msg,i.Cpv_Validation_Action,l_Alert_Result);
          IF l_Alert_Result = 'N' THEN
           RAISE Form_Trigger_Failure;
          END IF;
         END IF;  
        END IF; 
       END LOOP;
       --Validating whether file exists or not
       IF :Process.File_Input_Format IS NOT NULL THEN
        Pkg_Process_Automation.P_Gen_File_Name(:Process.File_Input_Format,
                            :Query.Exchange,
                            :Query.Segment,
                            File_Name);
        Utl_File.FGetAttr(
         location    => l_Path,
         filename    => File_Name,
         fexists     => l_file_exists,
         file_length => l_file_len,
         block_size  => l_blocksize);
        IF NOT l_File_Exists THEN
         --MESSAGE('The file does not exist.');
         P_Show_Alert('The file does not exist.','A',l_Alert_Result);
         RAISE Form_Trigger_Failure;
        END IF;
       END IF;
       Set_Application_Property(Cursor_Style, 'BUSY');
       SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_YELLOW');
       :Process.Status := 'R';
       Synchronize;
       IF l_Prg_Id = 'DTMBCORP' THEN
        P_Show_Alert('Do you want to do Final Settlement Corporate Action ?(Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca1 := l_Alert_Result;
        P_Show_Alert('Enable Round-To-Tick ? (Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca2 := l_Alert_Result;
        --P_Show_Alert('Do you want to Rollback ? (Y/N)','I',l_Alert_Result);
        --o_User_Selection_Ca3 := l_Alert_Result;
       END IF;
       ----   Calling of Main Procedure
       Pkg_Process_Automation.P_Run_Process(l_Prg_Id,
                          :Query.Exchange,
                          :Query.Segment,
                          :Query.Entity_Id,
                          File_Name,
                          o_User_Selection_Ca1,
                          o_User_Selection_Ca2,
                          o_User_Selection_Ca3,
                          o_Status);
       IF l_Prg_Id = 'DTMBCORP' THEN
        P_Show_Alert('Do you want to Rollback (Y/N)','I',l_Alert_Result);
        o_User_Selection_Ca3 := l_Alert_Result;
        Pkg_Process_Automation.P_Run_Process(l_Prg_Id,
                            :Query.Exchange,
                            :Query.Segment,
                            :Query.Entity_Id,
                            File_Name,
                            o_User_Selection_Ca1,
                            o_User_Selection_Ca2,
                            o_User_Selection_Ca3,
                            o_Status);
       END IF;                 
       Set_Application_Property(Cursor_Style, 'DEFAULT');                  
       Message(o_Status);
       Message(o_Status);
       IF o_Status = 'Y' THEN
        :Process.Status := 'C';
        SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_GREEN');
       ELSE
        :Process.Status := 'E';
        SET_ITEM_INSTANCE_PROPERTY('Process.Status', CURRENT_RECORD, VISUAL_ATTRIBUTE, 'VA_RED');
       END IF;
       SELECT Prg_Log_File
       INTO   :Process.Log_File
       FROM   Program_Status ,
              Parameter_Master
         WHERE  Prg_cmp_id = l_Prg_Id
         AND    Prg_dt     = Pam_Curr_Dt
          AND   (Prg_Cmp_Id,Prg_Strt_Time)  IN (SELECT   Prg_Cmp_Id,max(Prg_Strt_Time) 
                                   FROM   Program_Status b,
                                                        Parameter_Master
                                                 WHERE  Prg_Cmp_Id =  l_Prg_Id
                                   AND    Prg_Dt     =  Pam_Curr_Dt
                                                  GROUP BY Prg_Cmp_Id);
       Synchronize;
       Set_Application_Property(Cursor_Style, 'DEFAULT');   
      END IF;
    END LOOP;
    :Query.Current_Status := '';
    Synchronize;
    EXCEPTION
      WHEN OTHERS THEN
      :Query.Current_Status := 'Error found';
      Set_Application_Property(Cursor_Style, 'DEFAULT');
      MESSAGE(sqlerrm );
      --MESSAGE(sqlerrm );
      Synchronize;
    END;
    inside p_run_process there are other 25 database procedures.
    help me !!!

    Create a procedure as like,
    PROCEDURE show_progress(x number) IS
    y number;
    BEGIN
      set_item_property('PART_DISP',VISIBLE,PROPERTY_TRUE);
      set_item_property('PART_DISP',WIDTH,x);
      set_item_property('PART_DISP',VISIBLE,PROPERTY_TRUE);
    END;
    PART_DISP is a display_item.
    After completion of each procedures call the above procedure like,
    cntr:=cntr+1;
    show_progress(round(cntr/25*287,0));
    synchronize;
    where cntr is a counter it will be incremented 1 to 25, the constant value 287 is the maximum width of PART_DISP (you can change for your need).
    The local variable cntr's initial value is 0 and maximum value is 25.    
    cntr                   part_disp          % of progress
    1
    11.48
    4
    2
    22.96
    8
    3
    34.44
    12
    4
    45.92
    16
    5
    57.4
    20
    6
    68.88
    24
    7
    80.36
    28
    8
    91.84
    32
    9
    103.32
    36
    11
    126.28
    44
    12
    137.76
    48
    13
    149.24
    52
    14
    160.72
    56
    15
    172.2
    60
    16
    183.68
    64
    17
    195.16
    68
    18
    206.64
    72
    19
    218.12
    76
    20
    229.6
    80
    21
    241.08
    84
    22
    252.56
    88
    23
    264.04
    92
    24
    275.52
    96
    25
    287
    100
    Hope this will help.

  • Progress bar on startup

    Hi Guys,
    I keep getting a progress bar on startup. Not every time, but at least every few days. I've had this before since installing Mavericks and eventually my drive was not reparable in disk utility and I had to do a clean install and start from scratch.
    I'm using a Macbook Pro 2012 with a Sandisk Ultra Plus SSD.
    One thing I've noticed is that it seems to happen when I shutdown and close the lid of the macbook overnight and leave it unplugged. I'm not sure if this is a coincidence or not.
    I'm not sure exactly what is causing this issue and I can't seem to find what it is from the log files. I've pasted my log file in below, hopefully there's someone out there who can see what it is!
    22/11/13 8:50:32.000 am bootlog[0]: BOOT_TIME 1385081432 0
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.bookstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.eventmonitor" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.install" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.iokit.power" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.mail" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.MessageTracer" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am syslogd[20]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    22/11/13 8:51:08.000 am kernel[0]: Longterm timer threshold: 1000 ms
    22/11/13 8:51:08.000 am kernel[0]: PMAP: PCID enabled
    22/11/13 8:51:08.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    22/11/13 8:51:08.000 am kernel[0]: Darwin Kernel Version 13.0.0: Thu Sep 19 22:22:27 PDT 2013; root:xnu-2422.1.72~6/RELEASE_X86_64
    22/11/13 8:51:08.000 am kernel[0]: vm_page_bootstrap: 3908857 free pages and 252679 wired pages
    22/11/13 8:51:08.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    22/11/13 8:51:08.000 am kernel[0]: zone leak detection enabled
    22/11/13 8:51:08.000 am kernel[0]: "vm_compressor_mode" is 4
    22/11/13 8:51:08.000 am kernel[0]: standard timeslicing quantum is 10000 us
    22/11/13 8:51:08.000 am kernel[0]: standard background quantum is 2500 us
    22/11/13 8:51:08.000 am kernel[0]: mig_table_max_displ = 74
    22/11/13 8:51:08.000 am kernel[0]: TSC Deadline Timer supported and enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Sandbox
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    22/11/13 8:51:08.000 am kernel[0]: calling mpo_policy_init for Quarantine
    22/11/13 8:51:08.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    22/11/13 8:51:08.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    22/11/13 8:51:08.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    22/11/13 8:51:08.000 am kernel[0]: MAC Framework successfully initialized
    22/11/13 8:51:08.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    22/11/13 8:51:08.000 am kernel[0]: AppleKeyStore starting (BUILT: Sep 19 2013 22:20:34)
    22/11/13 8:51:08.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    22/11/13 8:51:08.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 22:16:38 Sep 19 2013) initialization complete
    22/11/13 8:51:08.000 am kernel[0]: pci (build 22:16:29 Sep 19 2013), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration begin ]
    22/11/13 8:51:08.000 am kernel[0]: console relocated to 0xf80000000
    22/11/13 8:51:08.000 am kernel[0]: [ PCI configuration end, bridges 11, devices 15 ]
    22/11/13 8:51:08.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    22/11/13 8:51:08.000 am kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    22/11/13 8:51:08.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    22/11/13 8:51:08.000 am kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 10ddb1fffe8da9e6; max speed s800.
    22/11/13 8:51:08.000 am kernel[0]: rooting via boot-uuid from /chosen: 159A8D24-BC1B-3397-A3F5-A6F84517DC1A
    22/11/13 8:51:08.000 am kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    22/11/13 8:51:08.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    22/11/13 8:51:08.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    22/11/13 8:51:08.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT1@1/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/SanDisk SDSSDHP128G Media/IOGUIDPartitionScheme/Mavericks@2
    22/11/13 8:51:08.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    22/11/13 8:51:08.000 am kernel[0]: BTCOEXIST off
    22/11/13 8:51:08.000 am kernel[0]: BRCM tunables:
    22/11/13 8:51:08.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    22/11/13 8:51:08.000 am kernel[0]: hfs: mounted Mavericks on device root_device
    22/11/13 8:51:08.000 am kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    22/11/13 8:50:32.326 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    22/11/13 8:51:08.100 am com.apple.SecurityServer[17]: Session 100000 created
    22/11/13 8:51:08.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    22/11/13 8:51:08.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    22/11/13 8:51:10.261 am com.apple.SecurityServer[17]: Entering service
    22/11/13 8:51:10.000 am kernel[0]: Previous Shutdown Cause: 5
    22/11/13 8:51:10.000 am kernel[0]: init
    22/11/13 8:51:10.000 am kernel[0]: probe
    22/11/13 8:51:10.000 am kernel[0]: start
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe
    22/11/13 8:51:10.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821D FirmwareVersion - 0x0131
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0x6400
    22/11/13 8:51:10.428 am UserEventAgent[14]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:10.440 am UserEventAgent[14]: Captive: CNPluginHandler en1: Inactive
    22/11/13 8:51:10.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    22/11/13 8:51:10.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0x1400 -- 0xe800 -- 0x6400 ****
    22/11/13 8:51:10.000 am kernel[0]: DSMOS has arrived
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: m_tail has not been written to hardware: m_tail = 0x00000000, hardare tail register = 0x00000060
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:10.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: VM Swap Subsystem is ON
    22/11/13 8:51:11.108 am hidd[69]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    22/11/13 8:51:11.110 am hidd[69]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    22/11/13 8:51:11.156 am mDNSResponder[61]: mDNSResponder mDNSResponder-522.1.11 (Aug 24 2013 23:49:34) starting OSXVers 13
    22/11/13 8:51:11.000 am kernel[0]: en2: promiscuous mode enable succeeded
    22/11/13 8:51:11.247 am digest-service[86]: label: default
    22/11/13 8:51:11.247 am digest-service[86]:           dbname: od:/Local/Default
    22/11/13 8:51:11.247 am digest-service[86]:           mkey_file: /var/db/krb5kdc/m-key
    22/11/13 8:51:11.247 am digest-service[86]:           acl_file: /var/db/krb5kdc/kadmind.acl
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.253 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.345 am digest-service[86]: digest-request: netr probe 0
    22/11/13 8:51:11.348 am digest-service[86]: digest-request: init request
    22/11/13 8:51:11.432 am digest-service[86]: digest-request: init return domain: BUILTIN server: LOCALHOST indomain was: <NULL>
    22/11/13 8:51:11.463 am com.apple.usbmuxd[45]: usbmuxd-323.1 on Oct  3 2013 at 12:43:24, running 64 bit
    22/11/13 8:51:11.540 am loginwindow[64]: Login Window Application Started
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2D_IPC: Loaded
    22/11/13 8:51:11.587 am mDNSResponder[61]: D2DInitialize succeeded
    22/11/13 8:51:11.592 am mDNSResponder[61]:   4: Listening for incoming Unix Domain Socket client requests
    22/11/13 8:51:11.606 am mDNSResponder[61]: mDNSMacOSXGetEtcHostsFD etc hosts does not exist, watching etc
    22/11/13 8:51:11.692 am mds[60]: (Normal) FMW: FMW 0 0
    22/11/13 8:51:11.729 am WindowServer[107]: Server is starting up
    22/11/13 8:51:11.745 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.746 am WindowServer[107]: Session 256 released (1 references)
    22/11/13 8:51:11.789 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028209798 MessageCount is 1
    22/11/13 8:51:11.798 am awacsd[81]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    22/11/13 8:51:11.803 am WindowServer[107]: Session 256 retained (2 references)
    22/11/13 8:51:11.808 am WindowServer[107]: init_page_flip: page flip mode is on
    22/11/13 8:51:11.811 am awacsd[81]: InnerStore CopyAllZones: no info in Dynamic Store
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][SuspendDevice] -- Suspend -- suspendDeviceCallResult = 0x0000 (kIOReturnSuccess) -- 0x6400 ****
    22/11/13 8:51:11.000 am kernel[0]: Network delay is not specified! Defaulting to 0x384
    22/11/13 8:51:11.923 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.926 am apsd[83]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    22/11/13 8:51:11.930 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.934 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.937 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.943 am WindowServer[107]: mux_initialize: Couldn't find any matches
    22/11/13 8:51:11.946 am WindowServer[107]: Found 16 modes for display 0x00000000 [8, 8]
    22/11/13 8:51:11.952 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.953 am WindowServer[107]: Found 1 modes for display 0x00000000 [1, 0]
    22/11/13 8:51:11.972 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:11.989 am WindowServer[107]: WSMachineUsesNewStyleMirroring: true
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f0040: GL mask 0x10; bounds (0, 0)[1920 x 1200], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:11.990 am WindowServer[107]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.002 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.003 am WindowServer[107]: WSSetWindowTransform: Singular matrix
    22/11/13 8:51:12.018 am WindowServer[107]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 16 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x4f159f59a71d63aefce94e26fc6d6edd
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f0040: GL mask 0x10; bounds (2304, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 4, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003f: GL mask 0x8; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003e: GL mask 0x4; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: Display 0x003f003d: GL mask 0x2; bounds (2307, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    22/11/13 8:51:12.019 am WindowServer[107]: CGXPerformInitialDisplayConfiguration
    22/11/13 8:51:12.019 am WindowServer[107]:   Display 0x042732c0: Unit 0; Vendor 0x610 Model 0x9ccb S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f0040: Unit 4; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    22/11/13 8:51:12.020 am WindowServer[107]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    22/11/13 8:51:12.021 am WindowServer[107]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2307,0)[1 x 1], Rotation 0, Resolution 1
    22/11/13 8:51:12.027 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.033 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:12.058 am systemkeychain[91]: done file: /var/run/systemkeychaincheck.done
    22/11/13 8:51:12.061 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210070 MessageCount is 2
    22/11/13 8:51:12.068 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:12.080 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, accelerator 0x000048bb, unit 0, caps QEX|MIPMAP, vram 1024 MB
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor: GL renderer id 0x01024400, GL mask 0x0000001f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    22/11/13 8:51:12.081 am WindowServer[107]: GLCompositor enabled for tile size [256 x 256]
    22/11/13 8:51:12.081 am WindowServer[107]: CGXGLInitMipMap: mip map mode is on
    22/11/13 8:51:12.093 am loginwindow[64]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:12.185 am networkd[119]: networkd.119 built Aug 24 2013 22:08:46
    22/11/13 8:51:12.199 am locationd[66]: NBB-Could not get UDID for stable refill timing, falling back on random
    22/11/13 8:51:12.229 am airportd[85]: airportdProcessDLILEvent: en1 attached (down)
    22/11/13 8:51:12.232 am locationd[66]: Location icon should now be in state 'Inactive'
    22/11/13 8:51:12.000 am kernel[0]: createVirtIf(): ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    22/11/13 8:51:12.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    22/11/13 8:51:12.000 am kernel[0]: Created virtif 0xffffff8044e81400 p2p0
    22/11/13 8:51:12.254 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:12.333 am launchctl[122]: com.apple.findmymacmessenger: Already loaded
    22/11/13 8:51:12.378 am mDNSResponder[61]: mDNSPlatformSendUDP: sendto(8) failed to send packet on InterfaceID 0000000000000001   lo0/4 to 224.0.0.251:5353 skt 8 error -1 errno 51 (Network is unreachable) 5028210387 MessageCount is 3
    22/11/13 8:51:12.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    22/11/13 8:51:12.418 am com.apple.SecurityServer[17]: Session 100004 created
    22/11/13 8:51:12.497 am loginwindow[64]: Setting the initial value of the magsave brightness level 1
    22/11/13 8:51:12.552 am loginwindow[64]: Login Window Started Security Agent
    22/11/13 8:51:12.565 am configd[21]: dhcp_arp_router: en1 SSID unavailable
    22/11/13 8:51:12.565 am configd[21]: [bootp_transmit.c:213] bootp_transmit(): bpf_write(en1) failed: Network is down (50)
    22/11/13 8:51:12.566 am configd[21]: DHCP en1: INIT-REBOOT transmit failed
    22/11/13 8:51:12.606 am configd[21]: network changed: DNS*
    22/11/13 8:51:12.607 am configd[21]: setting hostname to "Gareths-MacBook-Pro.local"
    22/11/13 8:51:12.000 am kernel[0]: hfs: mounted DATA on device disk1s3
    22/11/13 8:51:12.809 am SecurityAgent[140]: This is the first run
    22/11/13 8:51:12.809 am SecurityAgent[140]: MacBuddy was run = 0
    22/11/13 8:51:12.833 am WindowServer[107]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042732c0 device: 0x7fa22341bd70  isBackBuffered: 1 numComp: 3 numDisp: 3
    22/11/13 8:51:12.834 am WindowServer[107]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fa22341bd70) - enabling OpenGL
    22/11/13 8:51:12.840 am UserEventAgent[124]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:12.000 am kernel[0]: NTFS driver 3.11 [Flags: R/W].
    22/11/13 8:51:12.929 am SecurityAgent[140]: User info context values set for gareth
    22/11/13 8:51:13.000 am kernel[0]: hfs: mounted Recovery HD on device disk0s3
    22/11/13 8:51:13.236 am mds[60]: (Normal) Volume: volume:0x7f8bb2053800 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/Recovery HD
    22/11/13 8:51:13.290 am fseventsd[70]: Logging disabled completely for device:1: /Volumes/Recovery HD
    22/11/13 8:51:13.386 am loginwindow[64]: Login Window - Returned from Security Agent
    22/11/13 8:51:13.428 am loginwindow[64]: USER_PROCESS: 64 console
    22/11/13 8:51:13.000 am kernel[0]: nspace-handler-set-snapshot-time: 1385081475
    22/11/13 8:51:13.441 am com.apple.mtmd[59]: Set snapshot time: 2013-11-22 08:51:15 +0800 (current time: 2013-11-22 08:51:13 +0800)
    22/11/13 8:51:13.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    22/11/13 8:51:13.000 am kernel[0]: hfs: unmount initiated on Recovery HD on device disk0s3
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:13.608 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:13.626 am com.apple.launchd.peruser.501[158]: Background: Aqua: Registering new GUI session.
    22/11/13 8:51:13.664 am com.apple.launchd.peruser.501[158]: (com.apple.cmfsyncagent) Ignored this key: UserName
    22/11/13 8:51:13.665 am com.apple.launchd.peruser.501[158]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    22/11/13 8:51:13.666 am com.apple.launchd.peruser.501[158]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    22/11/13 8:51:13.671 am launchctl[161]: com.apple.pluginkit.pkd: Already loaded
    22/11/13 8:51:13.672 am launchctl[161]: com.apple.sbd: Already loaded
    22/11/13 8:51:13.000 am kernel[0]: NTFS volume name BOOTCAMP, version 3.1.
    22/11/13 8:51:13.706 am distnoted[163]: # distnote server agent  absolute time: 42.115652323   civil time: Fri Nov 22 08:51:13 2013   pid: 163 uid: 501  root: no
    22/11/13 8:51:13.000 am kernel[0]: en1: 802.11d country code set to 'HK'.
    22/11/13 8:51:13.000 am kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    22/11/13 8:51:13.934 am com.apple.SecurityServer[17]: Session 100006 created
    22/11/13 8:51:13.976 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputerIndexed"
    22/11/13 8:51:14.003 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.101 am WindowServer[107]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    22/11/13 8:51:14.118 am mds[60]: (Normal) Volume: volume:0x7f8bb2833800 ********** Bootstrapped Creating a default store:1 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/BOOTCAMP
    22/11/13 8:51:14.394 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.435 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:14.690 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    22/11/13 8:51:14.691 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    22/11/13 8:51:14.692 am com.apple.audio.DriverHelper[184]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    22/11/13 8:51:14.810 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    22/11/13 8:51:14.811 am com.apple.audio.DriverHelper[184]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    22/11/13 8:51:14.895 am coreaudiod[173]: 2013-11-22 08:51:14.894059 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM,  44100 Hz, 16-bit, Stereo
    22/11/13 8:51:14.984 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:15.108 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:15.109 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:15.131 am sharingd[190]: Starting Up...
    22/11/13 8:51:15.244 am com.apple.IconServicesAgent[194]: IconServicesAgent launched.
    22/11/13 8:51:15.554 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f8551950 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    22/11/13 8:51:15.635 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f854dd30 </System/Library/CoreServices/Menu Extras/Battery.menu> (not loaded)
    22/11/13 8:51:15.636 am SystemUIServer[169]: Cannot find executable for CFBundle 0x7fb3f851a2a0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    22/11/13 8:51:15.788 am UserEventAgent[162]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    22/11/13 8:51:15.847 am WindowServer[107]: Display 0x042732c0: Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 12)
    22/11/13 8:51:15.880 am revisiond[53]: objc[53]: Class GSLockToken is implemented in both /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Supp ort/revisiond and /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage. One of the two will be used. Which one is undefined.
    22/11/13 8:51:16.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=218[GoogleSoftwareUp] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.140 am SystemUIServer[169]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    22/11/13 8:51:16.609 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:16.610 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:16.887 am com.apple.SecurityServer[17]: Session 100009 created
    22/11/13 8:51:16.896 am accountsd[229]: assertion failed: 13A603: liblaunch.dylib + 25164 [FCBF0A02-0B06-3F97-9248-5062A9DEB32C]: 0x25
    22/11/13 8:51:17.009 am xpcproxy[232]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.037 am PlexHelper[217]: PlexHelper 0.7 starting up...
    22/11/13 8:51:17.079 am com.apple.launchd.peruser.501[158]: (com.apple.mrt.uiagent[205]) Exited with code: 255
    22/11/13 8:51:17.223 am apsd[83]: Unexpected connection from logged out uid 501
    22/11/13 8:51:17.392 am xpcproxy[235]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:17.960 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:17.966 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:18.110 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:18.144 am com.apple.dock.extra[195]: <NSXPCConnection: 0x7ff2a363a550>: received an undecodable message (no exported object to receive message). Dropping message.
    22/11/13 8:51:18.245 am com.apple.SecurityServer[17]: Session 100012 created
    22/11/13 8:51:18.252 am mtmfs[58]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:18.504 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    22/11/13 8:51:18.505 am WiFiKeychainProxy[201]: [NO client logger] <Aug 30 2013 23:40:46> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    22/11/13 8:51:18.558 am accountsd[229]: /SourceCache/Accounts/Accounts-336.9/ACDAuthenticationPluginManager.m - -[ACDAuthenticationPluginManager credentialForAccount:client:handler:] - 230 - The authentication plugin for account "[email protected]" (F14ADF42-657D-4C7F-B172-209A645CFA51) could not be found!
    22/11/13 8:51:18.558 am accountsd[229]: /SourceCache/Accounts/Accounts-336.9/ACDAccountStore.m - __62-[ACDAccountStore credentialForAccountWithIdentifier:handler:]_block_invoke389 - 857 - No plugin provides credentials for account [email protected]. Falling back to legacy behavior.
    22/11/13 8:51:18.891 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:18.000 am kernel[0]: MacAuthEvent en1   Auth result for: f8:1a:67:be:21:7a  MAC AUTH succeeded
    22/11/13 8:51:18.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    22/11/13 8:51:18.000 am kernel[0]: AirPort: Link Up on en1
    22/11/13 8:51:18.000 am kernel[0]: en1: BSSID changed to f8:1a:67:be:21:7a
    22/11/13 8:51:18.000 am kernel[0]: AirPort: RSN handshake complete on en1
    22/11/13 8:51:19.112 am com.apple.internetaccounts[235]: com.apple.internetaccounts(235,0x1165e5000) malloc: *** error for object 0x9000000000000006: pointer being freed was not allocated
    *** set a breakpoint in malloc_error_break to debug
    22/11/13 8:51:19.210 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0c3a1f0 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    22/11/13 8:51:19.253 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.284 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.286 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:19.307 am gamed[227]: CKSoftwareMap: Registering with Daemon
    22/11/13 8:51:19.383 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:19.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    22/11/13 8:51:19.610 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9bd74760 {NSUnderlyingError=0x7feb9bf4cf60 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server retrying ...
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:19.752 am mtmfs[58]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs[58]) Exited with code: 99
    22/11/13 8:51:19.761 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 2 seconds
    22/11/13 8:51:19.786 am com.apple.iCloudHelper[232]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<MacBookPro9,2> <Mac OS X;10.9;13A603> <com.apple.AOSKit/176>";
        "X-Mme-Country" = HK;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = HKT;
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7fc5b0e02510 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The Internet connection appears to be offline., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    22/11/13 8:51:19.790 am com.apple.iCloudHelper[232]: AOSKit ERROR: Setup request failed, appleID=1021024264, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7fc5b0c3b950 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    22/11/13 8:51:19.856 am ReportCrash[244]: DebugSymbols was unable to start a spotlight query: spotlight is not responding or disabled.
    22/11/13 8:51:20.335 am airportd[85]: _doAutoJoin: Already associated to “Hawking”. Bailing on auto-join.
    22/11/13 8:51:20.461 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:20.498 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.221 am Dropbox[223]: PyObjCPointer created: at 0xaf3fc88 of type {OpaqueJSContext=}
    22/11/13 8:51:21.279 am mds[60]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    22/11/13 8:51:21.854 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:22.929 am syncdefaultsd[224]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.931 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.932 am CalendarAgent[213]: *** remoteObjectProxyWithErrorHandler failed: Error Domain=NSCocoaErrorDomain Code=4097 "Couldn’t communicate with a helper application."; {
    22/11/13 8:51:22.936 am com.apple.launchd[1]: (com.apple.internetaccounts[235]) Job appears to have crashed: Abort trap: 6
    22/11/13 8:51:23.191 am ReportCrash[244]: Saved crash report for com.apple.internetaccounts[235] version 1.0 (1) to /Library/Logs/DiagnosticReports/com.apple.internetaccounts_2013-11-22-085123_Ga reths-MacBook-Pro.crash
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:23.402 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:23.674 am mds_stores[114]: (Error) SecureStore: Access token 6 changed uid from -1 to 501
    22/11/13 8:51:24.971 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:24.972 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:26.529 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:26.698 am parentalcontrolsd[266]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    22/11/13 8:51:26.821 am awacsd[81]: Exiting
    22/11/13 8:51:28.094 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:28.095 am mtmfs[254]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:29.149 am AddressBookSourceSync[225]: [CardDAVPlugin-ERROR] -getPrincipalInfo:[_controller supportsRequestCompressionAtURL:https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/] Error Domain=NSURLErrorDomain Code=-1009 "The Internet connection appears to be offline." UserInfo=0x7feb9be40570 {NSUnderlyingError=0x7feb9bf34660 "The Internet connection appears to be offline.", NSErrorFailingURLStringKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSErrorFailingURLKey=https://gareth%[email protected]/1021024264/principal///gareth%[email protected]/1021024264/principal/, NSLocalizedDescription=The Internet connection appears to be offline.}
    22/11/13 8:51:29.668 am mtmfs[254]: MTM fs Mount server retrying ...
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed to start because of too many retries
    22/11/13 8:51:29.669 am mtmfs[254]: MTM fs Mount server failed, last error -1
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs[254]) Exited with code: 99
    22/11/13 8:51:29.671 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 3 seconds
    22/11/13 8:51:30.316 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x211] flags: 0x8 binding: FileInfoBinding [0x111] - extension: jpg, UTI: public.jpeg, fileType: ????.
    22/11/13 8:51:30.317 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0xe03] flags: 0x8 binding: FileInfoBinding [0xd03] - extension: jpg, UTI: public.jpeg, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:31.251 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 1
    22/11/13 8:51:31.461 am com.apple.InputMethodKit.UserDictionary[273]: -[PFUbiquitySwitchboardEntryMetadata setUseLocalStorage:](760): CoreData: Ubiquity:  gareth~BC4B5F87-774E-5569-BE83-2926411DBD09:UserDictionary
    Using local storage: 0
    22/11/13 8:51:32.416 am com.apple.SecurityServer[17]: Session 100016 created
    22/11/13 8:51:32.810 am mtmfs[275]: MTM fs Mount server failed to start because of error -1
    22/11/13 8:51:33.957 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x115] flags: 0x8 binding: FileInfoBinding [0x215] - extension: mp3, UTI: public.mp3, fileType: MPG3.
    22/11/13 8:51:33.957 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1403] flags: 0x8 binding: FileInfoBinding [0x1303] - extension: mp3, UTI: public.mp3, fileType: MPG3 request size:16 scale: 1
    22/11/13 8:51:34.043 am configd[21]: network changed: DNS* Proxy
    22/11/13 8:51:34.043 am UserEventAgent[14]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Hawking' making interface primary (protected network)
    22/11/13 8:51:34.045 am UserEventAgent[14]: Captive: CNPluginHandler en1: Evaluating
    22/11/13 8:51:34.047 am UserEventAgent[14]: Captive: en1: Probing 'Hawking'
    22/11/13 8:51:34.058 am configd[21]: network changed: v4(en1!:192.168.1.107) DNS+ Proxy+ SMB
    22/11/13 8:51:34.077 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x217] flags: 0x8 binding: FileInfoBinding [0x117] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF .
    22/11/13 8:51:34.078 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1603] flags: 0x8 binding: FileInfoBinding [0x1503] - extension: ai, UTI: com.adobe.illustrator.ai-image, fileType: PDF  request size:16 scale: 1
    22/11/13 8:51:34.086 am configd[21]: setting hostname to "gareths-mbp"
    22/11/13 8:51:34.104 am UserEventAgent[14]: Captive: CNPluginHandler en1: Authenticated
    22/11/13 8:51:34.314 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:34.355 am ntpd[109]: proto: precision = 1.000 usec
    22/11/13 8:51:34.370 am mtmfs[275]: MTM fs Mount server retrying ...
    22/11/13 8:51:34.845 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21b] flags: 0x8 binding: FileInfoBinding [0x119] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ????.
    22/11/13 8:51:34.845 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1803] flags: 0x8 binding: FileInfoBinding [0x1703] - extension: m4a, UTI: com.apple.m4a-audio, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.294 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x11b] flags: 0x8 binding: FileInfoBinding [0x21d] - extension: mp4, UTI: public.mpeg-4, fileType: ????.
    22/11/13 8:51:37.295 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1a03] flags: 0x8 binding: FileInfoBinding [0x1903] - extension: mp4, UTI: public.mpeg-4, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.307 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x21f] flags: 0x8 binding: FileInfoBinding [0x11d] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ????.
    22/11/13 8:51:37.308 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1c03] flags: 0x8 binding: FileInfoBinding [0x1b03] - extension: pptx, UTI: org.openxmlformats.presentationml.presentation, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:37.581 am syncdefaultsd[224]: [AOSAccounts] : IAAppProvider::CopyAccountUIDForUser Timed out waiting
    22/11/13 8:51:37.000 am kernel[0]: fsevents: watcher dbfseventsd (pid: 288) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.328 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.335 am digest-service[86]: digest-request: init return domain: MACBOOKPRO-BFDB server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.360 am com.apple.IconServicesAgent[194]: main Failed to composit image for binding VariantBinding [0x223] flags: 0x8 binding: FileInfoBinding [0x11f] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ????.
    22/11/13 8:51:39.360 am quicklookd[193]: Warning: Cache image returned by the server has size range covering all valid image sizes. Binding: VariantBinding [0x1e03] flags: 0x8 binding: FileInfoBinding [0x1d03] - extension: ppt, UTI: com.microsoft.powerpoint.ppt, fileType: ???? request size:16 scale: 1
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: uid=0
    22/11/13 8:51:39.380 am digest-service[86]: digest-request: init request
    22/11/13 8:51:39.385 am digest-service[86]: digest-request: init return domain: GARETHS-MBP server: GARETHS-MBP indomain was: <NULL>
    22/11/13 8:51:39.585 am mtmfs[275]: mount failed for /Volumes/MobileBackups
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs[275]) Exited with code: 22
    22/11/13 8:51:39.588 am com.apple.launchd[1]: (com.apple.mtmfs) Throttling respawn: Will start in 4 seconds
    22/11/13 8:51:41.759 am Dropbox[223]: ICARegisterForEventNotification-Has been deprecated since 10.5.  Calls to this function in the future may crash this application.  Please move to ImageCaptureCore
    22/11/13 8:51:45.429 am Google Chrome[308]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=310[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=312[ksadmin] final status 0x0, allow (remove VALID)ing page
    22/11/13 8:51:45.719 am Google Chrome Helper[311]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:45.924 am Google Chrome Helper[313]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.092 am Google Chrome Helper[313]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.093 am Google Chrome Helper[313]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.112 am Google Chrome Helper[313]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.147 am Google Chrome Helper[314]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.349 am Google Chrome Helper[314]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.361 am Google Chrome Helper[314]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.542 am Google Chrome Helper[315]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.597 am Google Chrome Helper[316]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.677 am Google Chrome Helper[317]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.682 am Google Chrome Helper[315]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.683 am Google Chrome Helper[315]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.694 am Google Chrome Helper[315]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.732 am Google Chrome Helper[316]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.744 am Google Chrome Helper[316]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:46.823 am Google Chrome Helper EH[318]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:46.826 am Google Chrome Helper[317]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:46.837 am Google Chrome Helper[317]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.060 am Google Chrome Helper[319]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:47.083 am xpcproxy[320]: assertion failed: 13A603: xpcproxy + 3438 [EE7817B0-1FA1-3603-B88A-BD5E595DA86F]: 0x2
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd. : LSXPCClient.cp #426 ___ZN26LSClientToServerConnection21setupServerConnectionEiPK14__CFDictionary_bl ock_invoke() q=com.apple.main-thread
    22/11/13 8:51:47.241 am Google Chrome Helper[319]: Process unable to create connection because the sandbox denied the right to lookup com.apple.coreservices.launchservicesd and so this process cannot talk to launchservicesd.
    22/11/13 8:51:47.252 am Google Chrome Helper[319]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1100)
    22/11/13 8:51:47.566 am com.apple.NotesMigratorService[242]: Joined Aqua audit session
    22/11/13 8:51:47.599 am com.apple.time[162]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBLocalDictionary writeLocalMapping:]: Status: Ending writing out local mapping to disk
    22/11/13 8:51:47.719 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Writing out of devices
    22/11/13 8:51:47.720 am icbaccountsd[267]: -[ICBRemoteDictionary writeDevices]: Status: Ending writing out of device
    22/11/13 8:51:48.003 am Google Chrome Helper[321]: Internals of CFAllocator not known; out-of-memory failures via CFAllocator will not result in termination. http://crbug.com/45650
    22/11/13 8:51:48.135 am fontd[187]: BUG in libdispatch client: dispatch_mig_server: mach_msg() failed (ipc/send) invalid memory - 0x1000000c
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.135 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.137 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.147 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.148 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:51:48.152 am Google Chrome Helper[314]: CoreText CopyFontsForRequest received mig IPC error (FFFFFECC) from font server
    22/11/13 8:

    The progress bar usually means your Mac is booting into the Safe Boot startup, Safe Mode.
    Do you see "Safe Boot" in the upper right hand corner of the screen.

  • How to use progress bar

    Hi
    I am using jdev11.1.1.5.0
    I have created an adf application in which i have a select many shuttle to display data from database.
    On the radio button change event i am setting another where clause on associated vo and re-executing vo.
    Now the problem is that the processing takes few seconds to fetch data from database according to where condition. For the time being I want to display a progress bar to user.
    How it is possible....?
    Thanks...

    Read http://myjdeveloperhints.blogspot.de/2010/12/add-glass-pane-to-long-running-db-job.html...
    Here it's an example http://myjdeveloperhints.blogspot.de/2010/12/add-glass-pane-to-long-running-db-job.html
    Timo

  • Progress bar in forms procedure

    Dear
    i want to use the progress bar in one of my processing form the problem is that my processing button use 6 procedures example
    Update_Week_WIse_Location(:Week_Code); -- Database Procedure;
    SIngle_field; -- forms procedure
    Cumm_field_cust_wIse; -- forms procedure
    CumMingled_field; -- forms procedure
    Insert_local_customer_For_exch; -- forms procedure
    Insert_nonexIst_sp; -- forms procedure
    now i could not know which procedure take how much time i and the whole process takes little time i want to add the progress bar so the user
    feel easy that the process is running not stuck
    can anybody tell me the whole code for the progress bar
    early reply will be appreciatble
    Thanks
    Junaid

    Hello,
    Did you simply enter "progress bar" in the search box ? You will find tens of answers.
    Francois

  • How to show progress bar in java???

    Hey guys!!! can any one tell me how to show the progress bar when a processing is going on???Is it done by multithreading?? I have to import data from database kept in another machine into my database.It would take quite a longer time especially when database is quite large.I want to show the progress and every data being imported to the user so that user does not think that system has hanged on...Please help...

    i answered here:
    http://forum.java.sun.com/thread.jspa?messageID=9739423&#9739423

  • Progress Bar using HTP.DIV -Help please

    Hi,
    Below is my Code to get a progress bar on the screen writen as a package
    PROCEDURE lp_progress_bar IS
    BEGIN
    htp.htmlOpen;
    htp.headOpen;
    -- Create Link to Style Sheet
    htp.linkrel(crel => 'stylesheet',
    curl => pk_constant.PATH_STATIC||'internal_body.css',
    ctitle => 'text/css');
    --Include the Javascript to Call the Progress Bar
    lp_js_copy();
    htp.headClose;
    htp.bodyOpen;
    --Define Attributes for the DIV tags to print the Progress bar
    htp.div(cattributes => 'id="bar"');
    htp.div(cattributes => 'id="progress"');
    htp.bodyClose;
    htp.htmlClose();
    END lp_progress_bar;
    and the JS for the progress bar
    NL CONSTANT VARCHAR2(2) := CHR(13) || CHR(10);
    PROCEDURE lp_js_copy
    IS
    vBodyCode VARCHAR2(500);
    BEGIN
    pk_js.js
    'var time = 10000;'
    || NL ||'var aCopy = 5;'
    || NL ||'var aCopyDone = 1;'
    || NL ||'function progress() {'
    || NL ||'parent.fr_buttons.btnCancel.disabled= true;'
    || NL ||'var bar = document.getElementById("bar");'
    || NL || 'alert(bar);'
    || NL ||'var aStep = (bar.offsetWidth -2) /aCopy;'
    || NL ||'var x = Math.round( aStep *aCopyDone); '
    || NL ||'var progress = document.getElementById("progress");'
    || NL ||'progress.style.width = x +"px";'
    || NL ||'aCopyDone++;'
    || NL ||'if( aCopyDone > aCopy) redir();'
    || NL ||'else setTimeout( "progress();", time /aCopy);'
    || NL ||'}'
    || NL
    || NL ||'function redir() {'
    || NL ||'alert("Copy Successfully Completed");'
    || NL ||'parent.fr_buttons.btnCancel.disabled= false;'
    || NL ||'parent.fr_buttons.btnSave.disabled=true;'
    || NL ||'}'
    END lp_js_copy;
    The stlye for bar and progress aere defined in the stylesheet internal_body.css as
    #bar
    MARGIN: 0 auto;
    WIDTH: 250px;
    TEXT-ALIGN: left;
    BORDER: 1px solid black;
    #progress {
    WIDTH: 0;
    BACKGROUND: darkblue;
    but I am not getting anything on the screen. What should I do to get it pop up on the existing screen.
    I had posted it on a the database thread too. But I guess it was th wrong category.Hence posting it new here.
    Please Help.
    Message was edited by:
    ora newbie

    Hi Dwijesh,
    U can use a OCX control. Make a OCX control and insert microsoft progress bar object into it. Then you can write codes into it accordingly to incerease the bar.

  • Progress bar in my JSP

    I HAVE A JSP THAT TAKE SOMETHING OF TIME IN RUN DATABASE QUERIES, I NEED TO SHOW A PROGRESS BAR WHILE ITS RUN .
    HOW I DO THIS ? IN JAVASWING OR JAVASCRIPT? I NEED IT URGENT.
    I NEED TO KNOW HOW DO MY PROGRESS BAR.
    THANKS

    stop yelling...
    This thread:
    http://forum.java.sun.com/thread.jsp?forum=45&thread=443328
    the 1st reply has some code I've used to do something similar. You could have it write out some Javascript stuff to update a progress display if you wanted. Otherwise it'll just block til the thread is done. You'd have to write the worker thread. It also uses struts stuff, but you should be able to figure out how to remove those parts.

  • Progress Bar visibility issue

    I'm a bit of a newbie when it comes to components, but I'm
    hoping there's an easy answer that I'm simply missing.
    I have 4 nested files, the first and third of which are files
    that contain sections of loadable content (menu pages,
    essentially). I've followed some simple tutorials about how to make
    the progress bars disappear once a file completely loads and all
    seemed to be working fine when I previewed the third file (a
    sub-menu) in the chain, but when I previewed the first file (the
    main menu), the progress bars that were working as they should the
    third file are still visible once its respective files load.
    The error only seems to take place in the first file and only
    in relaton to the progress bars in the third file, although the
    parameters and actionscript for all the progress bars follow the
    same formula. Is there a reason why a progress bar that disappears
    in one file remains visible in a file further up the chain and if
    so, is there any way to correct this?

    Do While Me.txtProgress.Width <> FullLength
        Me.txtProgress.Width = Me.txtProgress.Width + 25
        PercentComplete = (Me.txtProgress.Width / FullLength) * 100
        Me.txtStatus.Caption = PercentComplete & " % Complete"
        Call Pause(Timing)
    Loop
    If Me.txtProgress.Width = FullLength Then
        Me.CmdClose.Enabled = True
    End If
        retval = SysCmd(acSysCmdSetStatus, "Connecting to previous Database")
    For Each tdf In dbs.TableDefs
        If tdf.Connect <> "" Then
        tdf.Connect = ";DATABASE=" & strDatabaseName & (";PWD=zujan")
        tdf.RefreshLink
    End If
        Next tdf
    Screen.MousePointer = 0
    Hi Anuj,
    What I see in your code is that you first have your progress bar run from 0 to 100%, and after that step through the TableDefs to connect.
    I assume you want to increase the progress bar during the connecting process. So you have to merge the two loops. First you count the total number of TableDefs (your 100%), and then increment Me.txtProgress.Width for each tdf in equal steps.
    Instead of building the progress bar on "each" form, you could also make a dedicated progress bar form. At the start of a loop you open the form, and assign the form to an variable of type form (e.g. progr_form):  Set progr_form = Forms("Progress_form").
    This form has the control txtProgress to display the progress bar, a (hidden) control with the maximum number of steps, and a (hidden) control with the current number of executed steps. After the update of this latter control (e.g. progr_form!CurrentCount
    = x), the width of the progress bars is recalculated. After finishing the loop, the form is closed.
    The advantage of a dedicated progress bar form is that you can use the same form for quite different progress displays, under quite different circumstances.
    Imb.

  • Show Progress Bar while Accessing data from Server

    Hi,
    I need a Progress bar to be displayed when my application triggers database to backup, As the data would be large progress bar makes sense to display the time span.
    I need a progress bar in place to show the progress of the task,
    Can anyone suggest me how to do this? This should be shown when i backup my database from WPF.
    I have code written for server side and just need a progress bar and timer.
    Thanks,
    Shreyas M

    You could use a BackgroundWorker. There is a complete code sample available on MSDN here:
    https://msdn.microsoft.com/en-us/library/cc221403(v=vs.95).aspx. You do the long-running work, i.e. the actual backup, in the DoWork event handler.
    Note that you will need to report the progress (by calling the ReportProgress method of the BackgroundWorker) and calculate the total time it will take to complete the backup operation yourself.
    It might be easier to just display some "waiting" element and no progress bar during the time it takes for the operation to complete:
    <!-- replace this with any element like for example an Image -->
    <TextBlock x:Name="loadingElement" Visibility="Collapsed">please wait...</TextBlock>
    loadingElement.Visibility = System.Windows.Visibility.Visible;
    System.Threading.Tasks.Task.Factory.StartNew(() =>
    //call your backup method here (this code is being run on a background thread....
    .ContinueWith((t) =>
    loadingElement.Visibility = System.Windows.Visibility.Collapsed;
    }, System.Threading.CancellationToken.None, TaskContinuationOptions.None, TaskScheduler.FromCurrentSynchronizationContext());
    After all you probably don't know how long time it will take for the method to complete, right? If you want to display a ProgressBar, the backup method should report the progress somehow. If you just call a method and wait for it to complete, you have no
    idea of how long time it will take for the method to return. You will then have to estimate the actual time and then increase the value of the progress bar accordingly.
    There is no way to find out before hand exactly how long time it will take until a method returns so it is the responsibility of the (backup) method to report to the caller how long time it needs and how long time is left until it is done. Far from all API:s
    support reporting progress.
    As you see in the BackgroundWorker example on MSDN, you could call the ReportProgress once in each iteration of a loop but if there is no loop in your Backup method you better just display a busy indicator without a progress bar since you don't know anything
    about the progress anyway.
    Edit: You could of course also display a ProgressBar element with its IsIndeterminate set to True. Just replace the TextBlock and use the sample code above:
    <ProgressBar x:Name="loadingElement" IsIndeterminate="True" Height="50"/>
    Setting this property to true is useful when you don't know how long time the operation will take: 
    https://msdn.microsoft.com/en-us/library/system.windows.controls.progressbar.isindeterminate(v=vs.110).aspx
    Hope that helps.
    Please remember to mark helpful posts as answer to close your threads and then start a new thread if you have a new question. Please don't ask several questions in the same thread.

Maybe you are looking for

  • Pages documents will no longer open in Microsoft Word.

    IWork 08 -- Microsoft Office 2004 Any ideas? Thanks.

  • Event CREATED is not triggered for objects of type USER

    Dear all, I'm currently configuring a workflow, which should be started when new user account is created. I took event CREATE for object type USER as a start event, but the workflow does not start, when I create new user account via transaction code

  • Pause music in SWF file?

    When I play back SWF files from Newgrounds that have background music, and I pause the movie with Enter, the music pauses as well to keep in synch with the animation. Yet when I play back test movies in Flash, the music keeps playing even when I paus

  • I can't find accessories for the nokia 520

    I live in Texas and I have yet to find a phone case for my phone. I have looked on amazon and other sites. I even bought a few off eBay and all were designed for the 521. The 521 is about an eight of an inch taller that the 520. They just start carry

  • Regarding trip expense amount eligibility

    hi friends , i have a scenario like this when ever an employee is creating trip expense report through TC-TRIP,a check sud be there which will checks his eligibility amount against individual expense type it must come in a message or in a seperate fi