Execute sp_executesql ... paramaterized queries coming out of SSRS Reporting Services

Looks like SSRS collects param values and sends the final query to SQL Server in a Paramaterized query.
That's what I found out .... when I did a SQL Profiler .... multiple select dropdown box with multiple values within itself...
ie. in a dropdown
ParamOption1 : checkbox + with param values ...... 101, 121, 155  or  '101', '121', '155'
ParamOption2 : checkbox + with param values ...... 222, 456, 888 or  '222', '456', '888'
because...we are fooling the .. if the user checks the second option together with the first option then SSRS concatenates the values .... '101, 121, 155 , 222, 456, 888'     or with the other creative method ''101', '121',
'155' , '222', '456', '888''
Here is the test table with the int param field :  create table testParams ( sParam int null )
insert testParams ( sParam ) select 101
insert testParams ( sParam ) select 222
we want to make this syntax work.... but cannot ... any help
execute sp_executesql N'select sParam from testParams where sParam in (@varParam),
'@varParam varchar(400)' ,
'@varParam = '101, 121, 155 , 222, 456, 888' '
or   
execute sp_executesql N'select sParam from testParams where convert(varchar(3),sParam) in (@varParam),
'@varParam varchar(400)' ,
'@varParam = ''101', '121', '155' , '222', '456', '888''
tried other string manipulations... with single quotes, etc.... nothing has worked.
Thank you for your help .... posting this to SSRS forum, too.... it must be a common scenario over there.... I know, there is a solution that is out there... because have seen SSRS Report Params being used this way.

Hi Cornelia,
Please refer to Katherine's solution in the thread below regarding how to split multi value parameter and use it at SSRS report level:
http://social.technet.microsoft.com/Forums/en-US/73a3da8b-11f9-46e7-a650-259ce08053d2/passing-multiselect-multivalue-param-dropdown-values-into-sql-server-via-paramaterized-query-from?forum=sqlreportingservices
Please feel free to let us know if you have any more question.
If you have any feedback on our support, please click
here.
Elvis Long
TechNet Community Support

Similar Messages

  • Execute Permission Denied on Stored Procedure for SSRS Report

    I have a report in SSRS 2008R2.  The report is running against a 2005 instance.  This report, encapsulated as a stored procedure, runs fine in BIDS.  When I deploy it to the Report Manager I suddenly get"
    The EXECUTE permission was denied on the object 'ticketStatus',database 'SomeDatabase', schema 'dbo'.
    I have granted the execute permission to the sql login, I'll call it 'bob', being used in the datasource.  I can run the stored procedure in SSMS as that sql login.  That SQL login is also assigned the db_datareader and db_denydatawriter database
    level roles in the database for the query.  The query makes use of a linked server to another database.  I have tested that I can run the query via the linked server using the SQL login.  I created a separate SSRS report and simply used the
    SELECT part of my stored proc.  I upload that to the Report Manager and it works fine.  I can't figure out why this report will not work when it is set up to use the Stored Proc.  Any help sorting this out would be appreciated.

    I have granted the execute permission to the sql login, I'll call it 'bob', being used in the datasource.  I can run the stored procedure in SSMS as that sql login.  That SQL login is also assigned the db_datareader and db_denydatawriter database
    level roles in the database for the query.  The query makes use of a linked server to another database.  ...
    You are saying you are using a linked server for a database that sits on the same server as the database where the Procedure resides? Is there any reason to do that instead of just using a 3-part name, possibly in combination with a synonym?
    Linked servers have a different security concept also
    Trustworthy should not be used then either as it can lead to privilege escalation/elevation attacks from inside that database
    Cross Database Ownership chaining is yet another and different problem
    The best woul be to have that Login as a user in both databases and have the necessary permissions like Execute on Schema/Database there. Deny should only be necvessary under the circumstances that the user is member of different groups/roles
    Andreas Wolter
    Microsoft Certified Master SQL Server 2008
    Microsoft Certified Solutions Master SQL Data Platform, SQL Server 2012
    Blog: www.insidesql.org/blogs/andreaswolter
    Web: www.andreas-wolter.com |
    www.SarpedonQualityLab.com

  • SSRS : Reporting Services - Multi-Value Parameter Issue

    Hi,
    This problem is been around the blogs and forums for while now but may be it's not answered to the fullest. I couldn't get any satisfactory or completed solution on the issue so far, any clues/help will be highly appreciated.
    My scenario is very simple :-
    I am using SQL Server 2005 and SSRS. I need to develop a report which has a parameter value called Customer Name. The users should be able to select multiple customers from the list and sometimes Select All also.  I tried the following :-
    Created two data sets : Second dataset is just to populate the Customer Name
    Created a Report Parameter and mapped with the query parameter where it says  "Where CName in (@Parameter1)"
    Nothing seems to be working although I tried to apply all the existing half-way solutions currently available in the forums. May be I am not getting to the right solution.
    Here is what's happening :-
    When used '?' like "where CName = ?" then it's working fine for the single value. {Multi value query cannot be used with ?}
    But for multiple values when used @Parameter1 like "where CName in (@Parameter1)" it's giving the following error
    Cannot add multi value query parameter '@Parameter1' for data set 'Dataset1' because it is not supported by the data extension.
    However if commented this line it's pulling all the values whether or not selected from the parameter list.
    This is the basic thing which I was not able to get the desired result, in addition I was looking to get the Customer Name parameter selected with a partial entry as we use LIKE. Example :- If the user enters 'St' in the text box the list should show all the names starting from those two letters
    Starter
    Steve
    Steven
    Stevenson etc.
    I am not sure whether I'll will be able to get to this extent or not but until the multi value parameter, I am desperate to get the solution. So any sort of help/advise is highly appreciated.
    Regards,

    Hi,
    This problem is been around the blogs and forums for while now but may be it's not answered to the fullest. I couldn't get any satisfactory or completed solution on the issue so far, any clues/help will be highly appreciated.
    My scenario is very simple :-
    I am using SQL Server 2005 and SSRS. I need to develop a report which has a parameter value called Customer Name. The users should be able to select multiple customers from the list and sometimes Select All also.  I tried the following :-
    Created two data sets : Second dataset is just to populate the Customer Name
    Created a Report Parameter and mapped with the query parameter where it says  "Where CName in (@Parameter1)"
    Nothing seems to be working although I tried to apply all the existing half-way solutions currently available in the forums. May be I am not getting to the right solution.
    Here is what's happening :-
    When used '?' like "where CName = ?" then it's working fine for the single value. {Multi value query cannot be used with ?}
    But for multiple values when used @Parameter1 like "where CName in (@Parameter1)" it's giving the following error
    Cannot add multi value query parameter '@Parameter1' for data set 'Dataset1' because it is not supported by the data extension.
    However if commented this line it's pulling all the values whether or not selected from the parameter list.
    This is the basic thing which I was not able to get the desired result, in addition I was looking to get the Customer Name parameter selected with a partial entry as we use LIKE. Example :- If the user enters 'St' in the text box the list should show all the names starting from those two letters
    Starter
    Steve
    Steven
    Stevenson etc.
    I am not sure whether I'll will be able to get to this extent or not but until the multi value parameter, I am desperate to get the solution. So any sort of help/advise is highly appreciated.
    Regards,
    you speak spanish

  • SSRS web services 401 if you pass "Authorization" http header

    We use both SSRS 2008 R2 and 2012. When i access a report using url access (direct ssrs server hit) and add a "Authorization: Bearer xyzelkalklsjsdfalsjdf" http header, i get a 401 from somewhere in the request pipeline. I have a custom httpmodule
    registered at the top of the chain which does some OAuth related security checks. But when this header is included, the request never reaches the httpmodule. If i change the header slightly ex: "YAuthorization: ljlxzcvc..", then the request reaches
    the httpmodule and everything works. So obviously SSRS is looking for a particular header named "Authorization" and does something with it. Point to note: we have implemented a custom forms authentication module and we are doing some rich authorization
    using the extensible ssrs api. 
    Now my questions are:
    1. What is happening here? Who is acting on my request before my HttpModule registered on top in ssrs\reporting service\web.config gets it?
    2. How do i ensure my httpmodule executes before whatever component is terminating my request with a 401

    Sorry if this sounds like I am new to this but I am.
    So, the extended version is the format that would be used if you were not utilizing the files that the wsdl2java function creates?
    And this is done to when you want more flexibiility for the user to call your service?
    So, you would push to have the stub files used when you want to control how the web service is used?
    thanks for the feedback.

  • Excel Services Reports v/s SSRS Reports Performance

    Hello All,
    I have used SSRS Reporting services to render Dashboard in PWA. 
    I have added the Report directly to the web page and then navigating to various SSRS reports with multiple data queries to multiple datasets. 
    This is making my Dashboard extremely slow. 
    So my question is that, If I use Excel Services Reports in the Dashboard instead of SSRS Reports, will it be any faster ?
    Also will it speed up if the reports are added to Performance Point services instead of directly adding to the webpage ?
    Please let me know if anybody had tried this.
    Thanks,
    Shanky

    Hello,
    It might be quicker it might be slower - it is probably the SQL queries that are running. Are you using Stored Procedures to get the data or just T-SQL queries in the SSRS Report? How long do the queries take to return the data directly in SQL Server
    Management Studio?
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Custom rendering extensions not working in SSRS Report Designer (rsreportdesigner.config)

    My custom rendering extension is working in Report Builder (in RSReportServer.config), but not in Report Designer (in RSReportDesigner.config):  instead of adding a "TXT" export option, it's just adding a duplicate "CSV" option.
    SUMMARY: 
    Is there a way to get these features working, with Report Designer?
    DETAILS:
    We are running SSRS (Reporting Services) under SQL Server 2008 R2.
    Here's my rendering section:
        <Render>
          <Extension Name="XML" Type="Microsoft.ReportingServices.Rendering.DataRenderer.XmlDataReport,Microsoft.ReportingServices.DataRendering" />
          <Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering" />
          <!-- TXT extension with help from:  http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d79845a8-17fb-4ec6-b121-2c40cf466d73/how-do-i-add-a-pipe-delimited-option-in-ssrs-2008-report-manager?forum=sqlreportingservices -->
          <Extension Name="TXT" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TXT(ASCII,NoColHds)</Name>
            </OverrideNames>
            <Configuration>
                 <DeviceInfo>
                     <FileExtension>txt</FileExtension>
                    <FieldDelimiter>,</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <NoHeader>true</NoHeader>
                </DeviceInfo>
            </Configuration>
          </Extension>
          <Extension Name="IMAGE" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="PDF" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PDFRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="HTML4.0" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.Html40RenderingExtension,Microsoft.ReportingServices.HtmlRendering" Visible="false" />
          <Extension Name="MHTML" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.MHtmlRenderingExtension,Microsoft.ReportingServices.HtmlRendering" />
          <Extension Name="RPL" Type="Microsoft.ReportingServices.Rendering.RPLRendering.RPLRenderer,Microsoft.ReportingServices.RPLRendering" Visible="false" />
          <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" />
          <Extension Name="WORD" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordDocumentRenderer,Microsoft.ReportingServices.WordRendering" />
        </Render>
    When I add the above "TXT" section to RSReportServer.config, then Report Builder (and production) both show an export option "TXT(ASCII,NoColHds)". 
    But when I add this "TXT" section to RSReportDesigner.config, and then (in Report Designer / BIDS) attempt to export from a "Preview" of the report, the export drop-down does not show a "CSV" option followed by a "TXT"
    option, but instead shows the "CSV" option twice.
    This simply limits testing of the export option, to Report Builder... or requires any reports be published from Report Designer before they can be tested with
    this export option.
    (FYI, why this export option:  compliance in our industry requires sending data to government agencies, in text files, with fixed-length columns, and ASCII encoding.  Also, we're attempting to give the production of these files to the *users* managing
    communication with those agencies... so we're putting them into SSRS.
    I worked around the fixed length columns (and no delimiters -- no commas), by writing a version of the report where all string columns are padded, and all columns are concatenated, to form ONE LONG COLUMN... but Reporting Services' CSV export format produces
    a Unicode file (UTF-8, which the agency rejected, because it had a leading "", or "EF BB BF" in hex), whereas the agency requires an ASCII file.)

    Hi Doug_atMidway,
    According to your description, you want to enable your custom render extension. Right?
    In Reporting Services, if you want to deploy the custom extension, you just need to add the extension into rsreportserver.config file.  The
    RSReportDesigner.config file stores settings about the rendering extensions available to Report Designer. Since you still use the csv rendering extension in your assembly, we don't need to do any modification in rsreportdesigner.config file. Pleaes
    refer to the links below:
    Thanks for attempting to help, Simon.  
    As my question states, I've *already done* both the above:  changed (1) rsreportserver.config and (2) rsreportdesigner.config.  I added the same code, shown above, to both files.  I did that so I could see the new "txt" extension
    both (1) when exporting in production and Report Builder, and (2) when exporting in Report Designer's "preview".  
    The change in (2) is not working:  I do not see the "TXT" extension in Report Designer, when I try to export from a preview.  Instead, Report Designer shows the CSV extension repeated.
    Thanks for the docs.  I consulted them (well, I consulted the EQUIVALENT pages, for SQL Server 2008 R2), when creating my block of code above.
    Do you see anything to correct, in my code?
    Are the features I'm using actually working, with rsreportdesigner.config?
    Thanks again, 
    -- Doug

  • How SSRS report export to Power Point (PPT)

    Hi,
    Is there any functionality within SSRS 2008R2 which allows exporting a report to Power Point (PPT) ? We are using SSRS reporting service(SqlServer2008R2). Please suggest, how can we export report in Power Point presentation (PPT).
    Below are the details about Server
    Sql Server:-SQLSERVER2008R2
    .Net:-C#, VS2012
    Thanks & Regards
    Gajendra Paliwal

    Hi Gajju,
    According to your description, you want to know if there is any functionality within SSRS 2008R2 which allows you to export a report to Power Point. I am afraid there is no such a functionality to achieve it. This is a known issue which you can see in the
    link below.
    http://connect.microsoft.com/SQLServer/feedback/details/310639/add-rendering-of-powerpoint-to-reporting-services-export-format
    If you can use SSRS 2012 SharePoint Integrated Mode, we can create a Powerview report, and export this report to PowerPoint.
    Export a Power View Report to PowerPoint
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • SSRS Report queries begin running slowly, have to stop and start report server to restore performance

    We have had a production issue crop up twice now where reports begin running slowly seemingly at random.  
    When this happens we can see from running SQL Profiler that the report queries are taking an extremely long time to execute.  The same queries when run directly in management studio run quickly.  
    Initially I suspected parameter sniffing, and tried using OPTION (RECOMPILE) in the reports, as well as clearing out the particular query from the plan cache and running the SQL in SSMS to try and get a better plan etc but no amount of jiggery pokery by
    me could get the queries to run any faster.
    The really weird thing - is that stopping and starting the report server via the reporting services configuration manager instantly cures the problem.  
    I'd really love to know - why this might be?  Is it something to do with the report server closing and re-opening its connections to the database? That's the only sort of thing I can think of...any ideas? Anyone? Any suggestions would be much appreciated.
    LucasF

    Hi LucasF,
    In your scenario, usually we can monitor the execution log in Report Database. If you run below query, you can get the results how long the report takes to render (TimeRendering), how long to process the report(TimeProcessing) and how long to retrieve data
    from Database(TimeData). You can check the starttime and endtime to know the total time for executing a report.
    SELECT TOP1000 *FROM[ReportServer].[dbo].[ExecutionLog2]
    More details information, please reference to similar thread below:
    Steps for troubleshooting a slow SSRS 2014 server
    Troubleshooting Reports: Report Performance
    In SQL Server Reporting Services, a job will be created by SQL Server Agent if any of the following processes is underway:
    query execution on a remote or local database server
    report processing
    report rendering
    To cancel a job that is running on the report server, we can cancel the job directly or reduce the report execution time-out value in the SQL Server Management Studio and then will stop query execution. Please refer to the steps below:
    Open SQL Server Management Studio, and connect to "Reporting Services".
    Under the Report Server node, right-click on the "Jobs" folder and select "Refresh". Then, right-click on "Jobs" again and click "Cancel All Jobs".
    Right-click on the Report Server node and open the "Server Properties" dialog.
    Click the "Execution" option, and set the "Limit report execution to the following number of seconds:" to a much smaller number. After this issue is resolved, this configuration should revert to the previous state.  
    Reference:
    Managing a Running Process
    Setting Time-out Values for Report and Shared Dataset Processing
    In addition, we can also use the KILL Transact-SQL statement to terminate a normal connection by terminating the transactions that are associated with the specified session ID. For the details information, you can refer to:
    KILL (Transact-SQL)
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • SSRS in SharePoint Mode: Reporting Services scale-out deployment is not supported in this edition of Reporting Services [not true]

    Hello,
    We are experiencing some issues with SharePoint 2013 which is driving me insane.
    We have a deployment with two SQL Servers (HA groups) and four SharePoint servers: 2 Application servers, and 2 Web FrontEnd servers.
    We installed SSRS for SharePoint in both application servers. The disc I have used is the MSDN image of SQL Enterprise 2012 w/ SP2.
    ISO name: en_sql_server_2012_enterprise_edition_with_service_pack_2_x64_dvd_4685849.iso
    MD5: 003e14c55fa648ad15f8be1e2439bd06
    The installation completes without any problems. We can start the SSRS SharePoint Service in the first application server without any issues. However when we try to start the second one, we get the following error:
    Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the sql reporting services service in the farm. The SQL Server Reporting Services cannot be started on
    this server unless it is stopped on all other servers in the farm.
    Now I am at a loss here. As I mentioned, we have used an image of SQL Server Enterprise. This is the same image we used on other environment, which worked as expected (we got no such error).
    I have included the text related to the correlation error from the SP logs below.
    Has anyone ever seen this issue before? Very, very strange!
    Regards,
    P.
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.22 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostAuthenticateRequestHandler). Execution Time=9.742 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 6t8h High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.23, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.28 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Web Controls 88wu High [Forced due to logging gap, Original Level: Verbose] SPGridView.OnRowCreated() - Row.RowType={0}, .RowState={1}, .RowIndex={2}, .DataItemIndex={3} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General af4yd High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.28, Original Level: Verbose] TenantAppEtag record requested but there is no sitesubscription or tenantId for site {0} so we will use the WebApp Id for the cache. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.37 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Asp Runtime aj1kp High [Forced due to logging gap, Original Level: Verbose] SPRequestModule.PreSendRequestHeaders 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.43 OWSTIMER.EXE (0x1F10) 0x0B40 SharePoint Foundation Health abire Medium Failed to Sql Query data XEvent collector on sql-01. The error is Object reference not set to an instance of an object.
    01/29/2015 14:13:26.51 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 7034 Critical An attempt to start/stop instance of service Microsoft SQL Server Reporting Services Shared Service on server SPAP-01 did not succeed. Re-run the action via UI or command line on the specified server. Additional information is below. Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.40, Original Level: Verbose] SQL connection time: 0.0821 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88b9 High [Forced due to logging gap, Original Level: Verbose] Determining if the current user is a SharePoint Farm Administrator 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.53 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 8xqz Medium Updating SPPersistedObject ReportingWebServiceInstance. Version: 1118292 Ensure: False, HashCode: 52212853, Id: 5a4058b9-2ecd-421e-b9ae-818bbc57c8c6, Stack: at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database ahjqp High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.57, Original Level: Verbose] SQL connection time: 0.0965 for Data Source=sql-01;Initial Catalog=SharePoint_Config;Integrated Security=True;Enlist=False;Pooling=True;Min Pool Size=0;Max Pool Size=100;Connect Timeout=15;Application Name=SharePoint[w3wp][2][SharePoint_Config] 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.79 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Database 8acb High [Forced due to logging gap, Original Level: VerboseEx] Reverting to process identity 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Topology 88ch High [Forced due to logging gap, cached @ 01/29/2015 14:13:26.84, Original Level: Verbose] {0} 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.86 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General 8nca Medium Application error when access /_admin/Server.aspx, Error=Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.87 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Runtime tkau Unexpected System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.89 w3wp.exe (0x0B94) 0x294C SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.InvalidOperationException: Reporting Services scale-out deployment is not supported in this edition of Reporting Services. This edition only supports one instance of the SQL Server Reporting Services Service in the farm. The SQL Server Reporting Services service cannot be started on this server unless it is stopped on all other servers in the farm. at Microsoft.ReportingServices.SharePoint.SharedService.Service.ReportingWebServiceInstance.Provision() at Microsoft.SharePoint.ApplicationPages.ServerPage.OnObjectModelAction(Object sender, ObjectModelActionEventArgs e) at Microsoft.SharePoint.WebControls.ActionLinkDataSourceControl.RaisePostBackEvent(String eventArgument) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 nasq,2 agb9s,9 b4ly,309 8xqz,331 8nca,15 tkau,8 ajlz0 6f83e49c-cc03-d049-90f4-81439b542cf8
    01/29/2015 14:13:26.92 w3wp.exe (0x0B94) 0x294C SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://spap-01:5555/_admin/Server.aspx?ServerId=7f7d5eec-3791-44cf-a992-673eaea90f48)). Execution Time=712.2145 6f83e49c-cc03-d049-90f4-81439b542cf8

    Hi Wynn,
    I appreciate your attempt to address my concerns, but even your reply seems to ignore the fact that I have not only provided the name of the ISO, but the MD5 checksum of the ISO as well. Also this is the first time I am being asked to double-check the version
    of SSRS. The first reply I got to my query simply disregarded the version mismatch.
    As per your request, I have checked under the folder you have specified (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\WebServices\LogFiles), but unfortunately there are no files under this folder in neither of my two application
    servers.
    We only have logfiles under C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\LOGS 
    Is there a way I can turn those logs on?
    In the meantime, we run the SQL Server Discovery tool and I have attached the summary for you to see that it finds the Enterprise Edition of SQL Server:
    Final result: Passed
    Exit code (Decimal): 0
    Start time: 2015-01-29 15:17:44
    End time: 2015-01-29 15:17:56
    Requested action: RunDiscovery
    Machine Properties:
    Machine name: SP-AP-02
    Machine processor count: 4
    OS version: Future Windows Version
    OS service pack:
    OS region: United States
    OS language: English (United States)
    OS architecture: x64
    Process architecture: 64 Bit
    OS clustered: No
    Product features discovered:
    Product Instance Instance ID Feature Language Edition Version Clustered Configured
    SQL Server 2012 Management Tools - Basic 1033 Enterprise Edition 11.2.5058.0 No Yes
    SQL Server 2012 Reporting Services - SharePoint 11.2.5058.0 No Yes
    Package properties:
    Description: Microsoft SQL Server 2012
    ProductName: SQL Server 2012
    Type: RTM
    Version: 11
    SPLevel: 0
    Installation edition:
    User Input Settings:
    ACTION: RunDiscovery
    CONFIGURATIONFILE:
    ENU: true
    HELP: false
    IACCEPTSQLSERVERLICENSETERMS: false
    INDICATEPROGRESS: false
    QUIET: false
    QUIETSIMPLE: false
    UIMODE: Normal
    X86: false
    Configuration file: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\Log\20150129_151743\ConfigurationFile.ini
    Rules with failures:
    Global rules:
    There are no scenario-specific rules.
    Rules report file: The rule result report file is not available.
    The \Setup Bootstrap\Log folder also has several log files that indicates the version of SQL Server that has been installed. For instance here is an entry of the Detail.txt file:
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : CreateSKUCookie succeeded, new checksum is 195 bytes.
    (01) 2015-01-28 19:10:27 Slp: -- SkuPublicConfigObject : Updated skuCheckSumInfo -> daysLeft=0 sqlEdition='ENTERPRISE' (0x6B9471A8) fileTimeInstalled=0 timeBombValue=0 editionType='Enterprise Edition' edition='Enterprise Edition' writeEditionStrings='True' checkSum=195bytes
    (01) 2015-01-28 19:10:27 Slp: Sco: Attempting to create base registry key HKEY_LOCAL_MACHINE, machine
    I hope this help while we don't have any logfiles in the folder you asked me to look into. Please advise me as in how to proceed if logfiles must be generated.
    Regards,
    P.

  • Executing Multiple Select Queries in a Single attempt

    HI,
    I executed two select queries in a single statement execute. It is executing without any error. Hence there must be two resultset objects within that single statement.
    What the problem is that I m able to fetch the first resultset and its data, But I execute stmt.getMoreResults() to move to the next resultset, it returns false, which means there is no more results. I want to know what is the problem ?? (Record exist in the database for both queries)
    And How can I rertieve both the resultsets. ??
    Plz help me asap.
    For ur convenience I m posting the Java code also which I m trying.
    sql.delete(0, sql.length());
    sql.append("select FIRST_NAME , MIDDLE_NAME , LAST_NAME from USER_MASTER where USER_ID=4;");
    sql.append("select producttransaction_id, product_type from product_transaction where transaction_id=102 order by product_type desc");
    Statement stmt = con.createStatement();
    stmt.execute(sql.toString());
    int resultsetcount =1;
    ArrayList arrlist = new ArrayList();
    rs = stmt.getResultSet();
    if(rs !=null)
    if(rs.next())
    .........// logic here working properly
    //Now when I move to next resultset using the below statement
    //it returns false indicating that there r no more results.
    // Why this is so ?????
    boolean moreresultsets = stmt.getMoreResults();
    System.out.println("MoreResultsets::"+moreresultsets);
    if(moreresultsets)
    rs = stmt.getResultSet();          
    if(rs!=null)
    while(rs.next())
    //...Logic.......
         rs.close();
    Thanks

    I've never seen this used the way you are using it. In my experience the only way to do this would be to execute a single SQL statement that returns multiple result sets - you are trying to append two SQL statements.
    You could define an in-line procedure wrapping your two select statements, or you could define a stored procedure to do the same thing. Then (either way) use CallableStatement to execute the call to the procedure.

  • Satellite A105-S4284 gets Blue Screen of Death when coming out of standby

    MySatellite A105-S4284 runnings Windows XP gets a BSOD after coming out of standby or hibernation. With standby, I'll see the login screen where I enter my password, and then it may show the desktop background or even the open app (Outlook or Word, typically) for a second, afterwhich the BSOC appears. For weeks I was getting a black screen sporadically after standby. Researched the problem and saw recommendations to update BIOS. So I updated the BIOS to the latest version, and then I started getting blue screens of death rather than a black screen. Thought the problem was McAfee, because I'd get crashes right after McAfee became active in the background, sometimes without going into standby. Cancelled McAfee, took it off with the cleaner, used Avast instead, and that seemed to help. But then BSODs came back. I uninstalled non-essential software, clearned registry with CC Cleaner, freed up more HD space and defragged, ran SpyBot, etc - but I still get the BSOD almost every time I go into standby or hibernate. 
    The stop messages on the BSOD don't show a driver. and all begin with 0x0000007E (0x000000C5, ... and then differ after that.  One recent one followed with 0x804E13D5, 0xAA6B9B8C, 0xAA6B9888). Does that mean anything?
    I've installed Microsoft's debugging tools to look at the dumps after a BSOD. Here is output for two recent crashes. Doesn't point to a driver. NTKRMLMP.exe is what crashes - do I need to replace that from the I386 folder somehow? I did have my Matsu**bleep**a DVD-CD drive suddenly quit a time or two until the computer was restarted. Should I reinstall the DVD driver? Or the graphics driver? Worried that I might break something by doing that. 
    Loading Dump File [C:\WINDOWS\Minidump\Mini030809-02.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*c:\symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows XP Kernel Version 2600 (Service Pack 3) MP (2 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 2600.xpsp_sp3_gdr.080814-1236
    Machine Name:
    Kernel base = 0x804d7000 PsLoadedModuleList = 0x805634c0
    Debug session time: Sun Mar  8 16:05:07.187 2009 (GMT-5)
    System Uptime: 0 days 4:22:53.890
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    BugCheck 1000007E, {c0000005, 804e13d5, a9860b8c, a9860888}
    Probably caused by : ntkrnlmp.exe ( nt!ExAllocatePoolWithTag+7a9 )
    Followup: MachineOwner<snip> 
    SYSTEM_THREAD_EXCEPTION_NOT_HANDLED_M (1000007e)
    This is a very common bugcheck.  <SNIP>
    Arguments:
    Arg1: c0000005, The exception code that was not handled
    Arg2: 804e13d5, The address that the exception occurred at
    Arg3: a9860b8c, Exception Record Address
    Arg4: a9860888, Context Record Address
    Debugging Details:
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s".
    FAULTING_IP:
    nt!IopfCallDriver+2d
    804e13d5 ff548638        call    dword ptr [esi+eax*4+38h]
    EXCEPTION_RECORD:  a9860b8c -- (.exr 0xffffffffa9860b8c)
    ExceptionAddress: 804e13d5 (nt!IopfCallDriver+0x0000002d)
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 2
       Parameter[0]: 00000000
       Parameter[1]: 00000070
    Attempt to read from address 00000070
    CONTEXT:  a9860888 -- (.cxr 0xffffffffa9860888)
    eax=0000000e ebx=00000001 ecx=87546020 edx=853fe1a0 esi=00000000 edi=f772471c
    eip=804e13d5 esp=a9860c54 ebp=a9860ca0 iopl=0         nv up ei ng nz ac po nc
    cs=0008  ss=0010  ds=0023  es=0023  fs=0030  gs=0000             efl=00010292
    nt!IopfCallDriver+0x2d:
    804e13d5 ff548638        call    dword ptr [esi+eax*4+38h] ds:0023:00000070=????????
    Resetting default scope
    CUSTOMER_CRASH_COUNT:  2
    PROCESS_NAME:  System
    ERROR_CODE: (NTSTATUS) 0xc0000005 - The instruction at "0x%08lx" referenced memory at "0x%08lx". The memory could not be "%s".
    EXCEPTION_PARAMETER1:  00000000
    EXCEPTION_PARAMETER2:  00000070
    READ_ADDRESS:  00000070
    FOLLOWUP_IP:
    nt!ExAllocatePoolWithTag+7a9
    805517b9 e9e4feffff      jmp     nt!ExAllocatePoolWithTag+0x7bf (805516a2)
    BUGCHECK_STR:  0x7E
    DEFAULT_BUCKET_ID:  NULL_CLASS_PTR_DEREFERENCE
    LAST_CONTROL_TRANSFER:  from 804e13d9 to 804e13d5
    STACK_TEXT: 
    a9860c6c 804e13d9 8753d018 853fe1a0 00000000 nt!IopfCallDriver+0x2d
    a9860ccc 805517b9 00000000 00000002 00000000 nt!IopfCallDriver+0x31
    a9860dac 80575723 a9f4533c 00000000 00000000 nt!ExAllocatePoolWithTag+0x7a9
    a9860ddc 804ec6d9 f7720ce2 a9f4533c 00000000 nt!PspSystemThreadStartup+0x34
    00000000 00000000 00000000 00000000 00000000 nt!KiThreadStartup+0x16
    SYMBOL_STACK_INDEX:  2
    SYMBOL_NAME:  nt!ExAllocatePoolWithTag+7a9
    FOLLOWUP_NAME:  MachineOwner
    MODULE_NAME: nt
    IMAGE_NAME:  ntkrnlmp.exe
    DEBUG_FLR_IMAGE_TIMESTAMP:  48a4044a
    STACK_COMMAND:  .cxr 0xffffffffa9860888 ; kb
    FAILURE_BUCKET_ID:  0x7E_nt!ExAllocatePoolWithTag+7a9
    BUCKET_ID:  0x7E_nt!ExAllocatePoolWithTag+7a9
    Followup: MachineOwner
    0: kd> lmvm nt
    start    end        module name
    804d7000 806ff000   nt       # (pdb symbols)          c:\symbols\ntkrnlmp.pdb\B883868B88CB415A92EC010CF6A115A52\ntkrnlmp.pdb
        Loaded symbol image file: ntkrnlmp.exe
        Mapped memory image file: c:\symbols\ntkrnlmp.exe\48A4044A228000\ntkrnlmp.exe
        Image path: ntkrnlmp.exe
        Image name: ntkrnlmp.exe
        Timestamp:        Thu Aug 14 05:09:14 2008 (48A4044A)
        CheckSum:         0021B760
        ImageSize:        00228000
        File version:     5.1.2600.5657
        Product version:  5.1.2600.5657
        File flags:       0 (Mask 3F)
        File OS:          40004 NT Win32
        File type:        1.0 App
        File date:        00000000.00000000
        Translations:     0401.04b0
        CompanyName:      Microsoft Corporation
        ProductName:      Microsoft® Windows® Operating System
        InternalName:     ntkrnlmp.exe
        OriginalFilename: ntkrnlmp.exe
        ProductVersion:   5.1.2600.5657
        FileVersion:      5.1.2600.5657 (xpsp_sp3_gdr.080814-1236)

    In safe mode it is not possible to standby. That is disabled. Tried to make it possible with Toshiba's power control service, but it is not available. 
    In a new account, the BSOD still occurs. I created a new account, logged out of my account, and went to the new one. Tried standby. It came out of standby for a second and then had the blue screen of death. 
    In checking the event manager, I seen errors shortly before crashes sometimes that involve the CD.
    So I went to Toshiba.com and downloaded the DVD RAM driver and ran it, reinstalling the driver, and then restarted.  I also saw that there was C-Dilla driver in my drivers. I uninstalled the SafeCast program that I think is associated with C-Dilla, moved the C-Dilla driver out of the drivers to a distant folder, unchecked C-Dilla in MSCONFIG so it won't load (it was still there after removing SafeCast), and then reinstarted. So with a new DVD Ram driver and neutering, I hope, of C-Dilla, I tried things again and the system appeared to be crash free - better than it had been. But then a crash occurred - BSOD - and upon restart, the CD locked up, and crashed again. 
    After restarting, there was a new dialog that popped up after Windows launched indicating that there had been an error with SONIC DLA. Before the crash, there was an event n the event viewer:
    My last error comes from the Plug and Play Manager:
    The device 'MAT**bleep**A DVD-RAM UJ-841S' (IDE\CdRomMAT**bleep**A_DVD-RAM_UJ-841S________________1.60____\5&226f6cf2&0&0.0.0) disappeared from the system without first being prepared for removal.
    Hmmm. So things are still vulnerable. Any ideas? Buy new CD drive? Or new computer?

  • Display issue coming out of sleep (w/ external display)

    Hey everyone,
    I've a MacBook Pro with Retina display. running 10.8.2 (and Win7 x64, via Bootcamp).
    I somtimes experience trouble coming out of sleep with no external display connected, if the MacBook was connected to an external display when I sent it to sleep and the integrated display's brightness was turned all the way down. Basically, the MacBook's integrated display won't light up. I then need to hold down the power button until the machine powers off, and start it up again. Only then will the display come on, and the machine start normally.
    I've been observing this with both an external Thunderbolt Display, and a TV connected through the HDMI port. I don't think this is a Mac OS issue, as I've seen similar behavior on this same machine, running Windows, under Bootcamp.
    An example scenario: I'll be using the Thunderbolt Display, or watching a movie on my TV, with the integrated display's brightness turned all the way down, and then, while the display is still connected, I will close the lid - The machine will go to sleep. I will then come the next day, and while the computer is asleep, disconnect the external display, and open the lid. The MacBook's integrated display will not light up, the brightness keys will not respond, and I will need to force-shutdown the machine, and start it again - it will then start up, and usually fall back to the lowest display resolution setting (even though I always use much higher resolutions on both the integrated and external displays).
    I'm guessing this is happening because the computer is expecting the external display that was connected to it, during its last operation, to still be available, and when it's not - it panics!
    Also, I had times where this happened, and a force-shutdown would not do the trick. I had to actually connect back to the external display, wait for the machine to start normally, take the integrated display's brightness back up, and disconnect the external display. The machine would then resume normal operation, and I would be able to disconnect the external display and work on the integrated display.
    Has anyone else experienced this, or anything similar?

    There we go. Here's the complete Console report, up until the reboot, which fixed things. I can't make anything out of this, but perhaps someone else can.
    13/10/12 8:37:29.010 AM loginwindow[535]: ERROR | -[LWScreenLock(Private) screenIsLockedTimeExpired:] | No lock state found, use built in check
    13/10/12 8:37:29.041 AM com.apple.launchd[1]: (com.apple.emond.aslmanager[2845]) Exited with code: 255
    13/10/12 8:37:29.468 AM hidd[540]: MultitouchHID: device bootloaded
    13/10/12 8:37:29.000 AM kernel[0]: Wake reason: EC.LidOpen EHC1 (User)
    13/10/12 8:37:29.000 AM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    13/10/12 8:37:29.000 AM kernel[0]: RTC: PowerByCalendarDate setting ignored
    13/10/12 8:37:29.000 AM kernel[0]: Previous Sleep Cause: 5
    13/10/12 8:37:29.000 AM kernel[0]: The USB device HubDevice (Port 1 of Hub at 0x1d000000) may have caused a wake by issuing a remote wakeup (2)
    13/10/12 8:37:29.000 AM kernel[0]: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    13/10/12 8:37:29.000 AM kernel[0]: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    13/10/12 8:37:29.000 AM kernel[0]: The USB device HubDevice (Port 8 of Hub at 0x1d100000) may have caused a wake by issuing a remote wakeup (3)
    13/10/12 8:37:29.000 AM kernel[0]: TBT W (2): 0x0100 [x]
    13/10/12 8:37:29.000 AM kernel[0]: The USB device BRCM20702 Hub (Port 1 of Hub at 0x1d180000) may have caused a wake by issuing a remote wakeup (3)
    13/10/12 8:37:29.000 AM kernel[0]: The USB device Bluetooth USB Host Controller (Port 3 of Hub at 0x1d181000) may have caused a wake by issuing a remote wakeup (3)
    13/10/12 8:37:29.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    13/10/12 8:37:30.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 68:7f:74:a1:24:96  MAC AUTH succeeded
    13/10/12 8:37:30.000 AM kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    13/10/12 8:37:30.000 AM kernel[0]: AirPort: Link Up on en0
    13/10/12 8:37:30.000 AM kernel[0]: en0: BSSID changed to 68:7f:74:a1:24:96
    13/10/12 8:37:30.000 AM kernel[0]: en0::IO80211Interface::postMessage bssid changed
    13/10/12 8:37:31.000 AM kernel[0]: AirPort: RSN handshake complete on en0
    13/10/12 8:37:31.982 AM airportd[2838]: _doAutoJoin: Already associated to “w00***”. Bailing on auto-join.
    13/10/12 8:37:32.459 AM configd[17]: network changed: v4(en0+:192.168.1.104) DNS+ Proxy+ SMB
    13/10/12 8:37:32.498 AM UserEventAgent[11]: Captive: en0: Not probing 'w00***' (protected network)
    13/10/12 8:37:32.514 AM configd[17]: network changed: v4(en0!:192.168.1.104) DNS Proxy SMB
    13/10/12 8:37:35.780 AM com.apple.usbmuxd[518]: SCEDeviceSocketCallback USBMuxRecvWithTimeout failed for 0x10020cb90-iTunes/com.apple.iTunes:0->0x3d-192.168.1.101:0:0: 54 - Connection reset by peer
    13/10/12 8:37:35.781 AM iTunes[2272]: _receive_message (thread 0x117992000): Could not securely receive message size: SSL_ERROR_SYSCALL (Early EOF reached)
    13/10/12 8:37:36.284 AM iTunes[2272]: _send_message (thread 0x117992000): Could not securely send message size 406: SSL_ERROR_SYSCALL errno (Broken pipe).
    13/10/12 8:37:36.286 AM iTunes[2272]: AMDeviceStopSession (thread 0x117992000): Could not stop session with device 61: kAMDSendMessageError
    13/10/12 8:37:57.165 AM com.apple.usbmuxd[518]: _handle_timer heartbeat detected detach for device 0x3d-192.168.1.101:0!
    13/10/12 8:38:14.000 AM kernel[0]: NVDA::setPowerState(0xffffff8026183800, 0 -> 2) timed out after 45406 ms
    13/10/12 8:39:25.000 AM bootlog[0]: BOOT_TIME 1350110365 0
    13/10/12 8:39:30.000 AM kernel[0]: PMAP: PCID enabled
    13/10/12 8:39:30.000 AM kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    13/10/12 8:39:30.000 AM kernel[0]: Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    13/10/12 8:39:30.000 AM kernel[0]: vm_page_bootstrap: 4043614 free pages and 117922 wired pages
    13/10/12 8:39:30.000 AM kernel[0]: kext submap [0xffffff7f80741000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000741000]
    13/10/12 8:39:30.000 AM kernel[0]: zone leak detection enabled
    13/10/12 8:39:30.000 AM kernel[0]: standard timeslicing quantum is 10000 us
    13/10/12 8:39:30.000 AM kernel[0]: standard background quantum is 2500 us
    13/10/12 8:39:30.000 AM kernel[0]: mig_table_max_displ = 74
    13/10/12 8:39:30.000 AM kernel[0]: TSC Deadline Timer supported and enabled
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto kext started!
    13/10/12 8:39:30.000 AM kernel[0]: Running kernel space in FIPS MODE
    13/10/12 8:39:30.000 AM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    13/10/12 8:39:30.000 AM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    13/10/12 8:39:28.977 AM com.apple.launchd[1]: *** launchd[1] has started up. ***
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    13/10/12 8:39:30.000 AM kernel[0]: corecrypto.kext FIPS POST passed!
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    13/10/12 8:39:30.000 AM kernel[0]: calling mpo_policy_init for TMSafetyNet
    13/10/12 8:39:30.000 AM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    13/10/12 8:39:30.000 AM kernel[0]: calling mpo_policy_init for Sandbox
    13/10/12 8:39:30.000 AM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    13/10/12 8:39:30.000 AM kernel[0]: calling mpo_policy_init for Quarantine
    13/10/12 8:39:30.000 AM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    13/10/12 8:39:30.000 AM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    13/10/12 8:39:30.000 AM kernel[0]: The Regents of the University of California. All rights reserved.
    13/10/12 8:39:30.000 AM kernel[0]: MAC Framework successfully initialized
    13/10/12 8:39:30.000 AM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    13/10/12 8:39:30.000 AM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    13/10/12 8:39:30.000 AM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    13/10/12 8:39:30.000 AM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 889A
    13/10/12 8:39:30.000 AM kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    13/10/12 8:39:30.000 AM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    13/10/12 8:39:30.000 AM kernel[0]: [ PCI configuration begin ]
    13/10/12 8:39:30.000 AM kernel[0]: Sleep failure code 0x00000002 0x27006c00
    13/10/12 8:39:30.000 AM kernel[0]: console relocated to 0xfd0020000
    13/10/12 8:39:30.000 AM kernel[0]: PCI configuration changed (bridge=17 device=5 cardbus=0)
    13/10/12 8:39:30.000 AM kernel[0]: [ PCI configuration end, bridges 12 devices 16 ]
    13/10/12 8:39:30.000 AM kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    13/10/12 8:39:30.000 AM kernel[0]: AppleThunderboltNHIType2::start - type 2 sleep enabled
    13/10/12 8:39:30.000 AM kernel[0]: AppleThunderboltNHIType2::start - SXFP method found
    13/10/12 8:39:30.000 AM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    13/10/12 8:39:30.000 AM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    13/10/12 8:39:30.000 AM kernel[0]: rooting via boot-uuid from /chosen: D6807041-7128-30C2-9A2D-BFEEC3331CEE
    13/10/12 8:39:30.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>
    13/10/12 8:39:30.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    13/10/12 8:39:30.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    13/10/12 8:39:30.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    13/10/12 8:39:30.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    13/10/12 8:39:30.000 AM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    13/10/12 8:39:30.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE SSD SM768E Media/IOGUIDPartitionScheme/Customer@2
    13/10/12 8:39:30.000 AM kernel[0]: BSD root: disk0s2, major 1, minor 3
    13/10/12 8:39:30.000 AM kernel[0]: jnl: unknown-dev: replay_journal: from: 4020736 to: 10443264 (joffset 0x12ada000)
    13/10/12 8:39:30.000 AM kernel[0]: BTCOEXIST off
    13/10/12 8:39:30.000 AM kernel[0]: BRCM tunables:
    13/10/12 8:39:30.000 AM kernel[0]: pullmode[1] txringsize[  256] reapmin[   32] reapcount[  128]
    13/10/12 8:39:30.000 AM kernel[0]: highWaterMark: VO[  192]  VI[  192]  BE[  192]  BK[  192]
    13/10/12 8:39:30.000 AM kernel[0]: jnl: unknown-dev: examining extra transactions starting @ 10443264 / 0x9f5a00
    13/10/12 8:39:30.000 AM kernel[0]: jnl: unknown-dev: Extra txn replay stopped @ 11364864 / 0xad6a00
    13/10/12 8:39:30.000 AM kernel[0]: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    13/10/12 8:39:30.000 AM kernel[0]: IOThunderboltSwitch(0x0)::listenerCallbackStatic - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    13/10/12 8:39:30.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    13/10/12 8:39:30.000 AM kernel[0]: jnl: unknown-dev: journal replay done.
    13/10/12 8:39:30.000 AM kernel[0]: Kernel is LP64
    13/10/12 8:39:30.000 AM kernel[0]: hfs: Removed 27 orphaned / unlinked files and 2233 directories
    13/10/12 8:39:28.977 AM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    13/10/12 8:39:30.783 AM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    13/10/12 8:39:31.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address 20:c9:d0:48:ea:41
    13/10/12 8:39:31.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    13/10/12 8:39:31.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    13/10/12 8:39:32.037 AM airportd[25]: _processDLILEvent: en0 attached (down)
    13/10/12 8:39:32.000 AM kernel[0]: createVirtIf(): ifRole = 1
    13/10/12 8:39:32.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    13/10/12 8:39:32.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff802247e400
    13/10/12 8:39:32.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    13/10/12 8:39:32.000 AM kernel[0]: Created virtif 0xffffff802247e400 p2p0
    13/10/12 8:39:32.080 AM com.apple.SecurityServer[15]: Session 100000 created
    13/10/12 8:39:32.000 AM kernel[0]: AirPort: Link Down on en0. Reason 1 (Unspecified).
    13/10/12 8:39:32.000 AM kernel[0]: en0::IO80211Interface::postMessage bssid changed
    13/10/12 8:39:32.101 AM configd[17]: network changed.
    13/10/12 8:39:32.103 AM configd[17]: setting hostname to "w00fa.local"
    13/10/12 8:39:32.112 AM com.apple.SecurityServer[15]: Entering service
    13/10/12 8:39:32.193 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    13/10/12 8:39:32.000 AM kernel[0]: Previous Shutdown Cause: 3
    13/10/12 8:39:32.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    13/10/12 8:39:32.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x8286 FirmwareVersion - 0x0097
    13/10/12 8:39:32.000 AM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    13/10/12 8:39:32.000 AM kernel[0]: AGC: 3.2.11, HW version=3.2.19 [3.2.8], flags:0, features:20600
    13/10/12 8:39:32.000 AM kernel[0]: NVDAGK100HAL loaded and registered.
    13/10/12 8:39:32.586 AM fseventsd[144]: event logs in /.fseventsd out of sync with volume.  destroying old logs. (87566 7 87588)
    13/10/12 8:39:32.586 AM fseventsd[144]: log dir: /.fseventsd getting new uuid: A93F6A97-D1D4-4728-9B86-3AB73E58340C
    13/10/12 8:39:32.599 AM mDNSResponder[146]: mDNSResponder mDNSResponder-379.32.1 (Aug 31 2012 19:05:06) starting OSXVers 12
    13/10/12 8:39:32.645 AM systemkeychain[148]: done file: /var/run/systemkeychaincheck.done
    13/10/12 8:39:32.652 AM configd[17]: network changed: DNS*
    13/10/12 8:39:32.654 AM mDNSResponder[146]: D2D_IPC: Loaded
    13/10/12 8:39:32.654 AM mDNSResponder[146]: D2DInitialize succeeded
    13/10/12 8:39:33.245 AM tuxera_ntfs[509]: Version 2012.3.3 (Jul 26 2012 08:57:03) external FUSE 27
    13/10/12 8:39:33.245 AM tuxera_ntfs[509]: Mounted /dev/rdisk0s4 (Read-Write, label "BOOTCAMP", NTFS 3.1)
    13/10/12 8:39:33.245 AM tuxera_ntfs[509]: Cmdline options: recover,cbcio,sfmconv,streams_interface=openxattr,native_xattr,nfconv,aligned_i o,fstypename=txantfs,fssubtype=0,iosize=1048576,local,adaptiveuid,adaptivegid
    13/10/12 8:39:33.246 AM tuxera_ntfs[509]: Mount options: native_xattr,fstypename=txantfs,fssubtype=0,iosize=1048576,local,allow_other,no nempty,relatime,fsname=/dev/disk0s4,volname=BOOTCAMP
    13/10/12 8:39:33.000 AM kernel[0]: DSMOS has arrived
    13/10/12 8:39:33.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    13/10/12 8:39:33.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    13/10/12 8:39:33.000 AM kernel[0]: Universal Audio Apollo - 4.0.0.13440 (x86_64) Mar 12 2012 20:19:07
    13/10/12 8:39:33.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    13/10/12 8:39:33.000 AM kernel[0]: TUFS: starting (version 2012.4.17, x86_64 (10.6+), built Apr 17 2012, 11:40:41)
    13/10/12 8:39:33.246 AM tuxera_ntfs[509]: License: Valid.
    13/10/12 8:39:33.246 AM tuxera_ntfs[509]: Ownership and permissions disabled, configuration type 1
    13/10/12 8:39:33.301 AM fseventsd[144]: check_vol_last_mod_time:XXX failed to get mount time (22; &mount_time == 0x10ee45528)
    13/10/12 8:39:33.301 AM fseventsd[144]: log dir: /Volumes/BOOTCAMP/.fseventsd getting new uuid: C0009105-8F61-43E9-8563-1BB388632E71
    13/10/12 8:39:33.393 AM hidd[540]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    13/10/12 8:39:33.409 AM kdc[538]: label: default
    13/10/12 8:39:33.409 AM kdc[538]:           dbname: od:/Local/Default
    13/10/12 8:39:33.409 AM kdc[538]:           mkey_file: /var/db/krb5kdc/m-key
    13/10/12 8:39:33.409 AM kdc[538]:           acl_file: /var/db/krb5kdc/kadmind.acl
    13/10/12 8:39:33.432 AM appleeventsd[545]: main: Starting up
    13/10/12 8:39:33.435 AM kdc[538]: WARNING Found KDC certificate (O=System Identity,CN=com.apple.kerberos.kdc)is missing the PK-INIT KDC EKU, this is bad for interoperability.
    13/10/12 8:39:33.451 AM com.apple.usbmuxd[518]: usbmuxd-296.3 on Jul 25 2012 at 00:28:37, running 64 bit
    13/10/12 8:39:33.507 AM loginwindow[535]: Login Window Application Started
    13/10/12 8:39:33.508 AM kdc[538]: KDC started
    13/10/12 8:39:33.510 AM awacsd[549]: Starting awacsd connectivity-78 (Jul 26 2012 14:37:46)
    13/10/12 8:39:33.512 AM apsd[551]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    13/10/12 8:39:33.513 AM apsd[551]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    13/10/12 8:39:33.000 AM kernel[0]: macx_swapon SUCCESS
    13/10/12 8:39:33.513 AM awacsd[549]: InnerStore CopyAllZones: no info in Dynamic Store
    13/10/12 8:39:33.520 AM aosnotifyd[552]: bootstrap_look_up failed (44e)
    13/10/12 8:39:33.539 AM locationd[536]: NOTICE,Location icon should now be in state 0
    13/10/12 8:39:33.539 AM locationd[536]: locationd was started after an unclean shutdown
    13/10/12 8:39:33.611 AM apsd[551]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    13/10/12 8:39:33.613 AM coreservicesd[27]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    13/10/12 8:39:33.615 AM mds[532]: (Normal) FMW: FMW 0 0
    13/10/12 8:39:33.619 AM WindowServer[567]: Server is starting up
    13/10/12 8:39:33.624 AM WindowServer[567]: Session 256 retained (2 references)
    13/10/12 8:39:33.624 AM WindowServer[567]: Session 256 released (1 references)
    13/10/12 8:39:33.635 AM WindowServer[567]: Session 256 retained (2 references)
    13/10/12 8:39:33.636 AM WindowServer[567]: init_page_flip: page flip mode is on
    13/10/12 8:39:33.000 AM kernel[0]: en0: 802.11d country code set to 'US'.
    13/10/12 8:39:33.000 AM kernel[0]: en0: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    13/10/12 8:39:33.898 AM fseventsd[144]: Logging disabled completely for device:1: /Volumes/Recovery HD
    13/10/12 8:39:34.000 AM kernel[0]: nspace-handler-set-snapshot-time: 1350110375
    13/10/12 8:39:34.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 68:7f:74:a1:24:96  MAC AUTH succeeded
    13/10/12 8:39:34.831 AM WindowServer[567]: mux_initialize: Mode is dynamic
    13/10/12 8:39:34.847 AM WindowServer[567]: GLCompositor enabled for tile size [256 x 256]
    13/10/12 8:39:34.847 AM WindowServer[567]: CGXGLInitMipMap: mip map mode is on
    13/10/12 8:39:34.933 AM WindowServer[567]: WSMachineUsesNewStyleMirroring: true
    13/10/12 8:39:34.933 AM WindowServer[567]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[840 x 525], 54 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a00f00000000042803c0
    13/10/12 8:39:34.933 AM WindowServer[567]: 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 0xffffffffffffffffffffffff003f003f
    13/10/12 8:39:34.933 AM WindowServer[567]: 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 0xffffffffffffffffffffffff003f003e
    13/10/12 8:39:34.933 AM WindowServer[567]: 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 0xffffffffffffffffffffffff003f003d
    13/10/12 8:39:34.934 AM WindowServer[567]: Created shield window 0x5 for display 0x042803c0
    13/10/12 8:39:34.934 AM WindowServer[567]: Created shield window 0x6 for display 0x003f003f
    13/10/12 8:39:34.934 AM WindowServer[567]: Created shield window 0x7 for display 0x003f003e
    13/10/12 8:39:34.934 AM WindowServer[567]: Created shield window 0x8 for display 0x003f003d
    13/10/12 8:39:34.936 AM WindowServer[567]: Display 0x042803c0: GL mask 0x11; bounds (0, 0)[840 x 525], 54 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a00f, S/N 0, Unit 0, Rotation 0
    UUID 0x000006100000a00f00000000042803c0
    13/10/12 8:39:34.936 AM WindowServer[567]: Display 0x003f003f: GL mask 0x8; bounds (1864, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    13/10/12 8:39:34.936 AM WindowServer[567]: Display 0x003f003e: GL mask 0x4; bounds (1865, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    13/10/12 8:39:34.936 AM WindowServer[567]: Display 0x003f003d: GL mask 0x2; bounds (1866, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    13/10/12 8:39:34.936 AM WindowServer[567]: CGXPerformInitialDisplayConfiguration
    13/10/12 8:39:34.936 AM WindowServer[567]:   Display 0x042803c0: MappedDisplay Unit 0; Alias(0, 0x11); Vendor 0x610 Model 0xa00f S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[840 x 525], Rotation 0, Resolution 2
    13/10/12 8:39:34.936 AM WindowServer[567]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (1864,0)[1 x 1], Rotation 0, Resolution 1
    13/10/12 8:39:34.936 AM WindowServer[567]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (1865,0)[1 x 1], Rotation 0, Resolution 1
    13/10/12 8:39:34.936 AM WindowServer[567]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (1866,0)[1 x 1], Rotation 0, Resolution 1
    13/10/12 8:39:34.936 AM WindowServer[567]: CGXMuxBoot: Boot normal
    13/10/12 8:39:34.998 AM WindowServer[567]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, accelerator 0x00004733, unit 0, caps QEX|QGL|MIPMAP, vram 1024 MB
    13/10/12 8:39:35.001 AM WindowServer[567]: GLCompositor: GL renderer id 0x01022647, GL mask 0x0000000f, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    13/10/12 8:39:35.001 AM WindowServer[567]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, accelerator 0x00004d23, unit 4, caps QEX|QGL|MIPMAP, vram 580 MB
    13/10/12 8:39:35.003 AM WindowServer[567]: GLCompositor: GL renderer id 0x01024400, GL mask 0x00000010, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    13/10/12 8:39:35.006 AM loginwindow[535]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    13/10/12 8:39:35.014 AM hidd[540]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    13/10/12 8:39:35.050 AM WindowServer[567]: Unable to open IOHIDSystem (e00002bd)
    13/10/12 8:39:35.092 AM WindowServer[567]: Created shield window 0x9 for display 0x042803c0
    13/10/12 8:39:35.092 AM WindowServer[567]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    13/10/12 8:39:35.108 AM launchctl[585]: com.apple.findmymacmessenger: Already loaded
    13/10/12 8:39:35.124 AM com.apple.SecurityServer[15]: Session 100005 created
    13/10/12 8:39:35.146 AM hidd[540]: CGSShutdownServerConnections: Detaching application from window server
    13/10/12 8:39:35.146 AM hidd[540]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    13/10/12 8:39:35.163 AM loginwindow[535]: Login Window Started Security Agent
    13/10/12 8:39:35.223 AM SecurityAgent[594]: This is the first run
    13/10/12 8:39:35.223 AM SecurityAgent[594]: MacBuddy was run = 0
    13/10/12 8:39:35.249 AM WindowServer[567]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x10158a320  isBackBuffered: 1 numComp: 3 numDisp: 3
    13/10/12 8:39:35.281 AM coreaudiod[592]: 2012-10-13 08:39:35.280987 AM [AirPlay] Started browsing for _airplay._tcp.
    13/10/12 8:39:35.281 AM coreaudiod[592]: 2012-10-13 08:39:35.281405 AM [AirPlay] Started browsing for _raop._tcp.
    13/10/12 8:39:35.000 AM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    13/10/12 8:39:35.965 AM UserEventAgent[587]: cannot find useragent 1102
    13/10/12 8:39:36.935 AM WindowServer[567]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    13/10/12 8:39:36.955 AM WindowServer[567]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    13/10/12 8:39:36.965 AM WindowServer[567]: Display 0x042803c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferFormula (1.000000, 1.000000, 1.000000)
    13/10/12 8:39:37.000 AM kernel[0]: directed SSID scan fail
    13/10/12 8:39:39.274 AM SecurityAgent[594]: User info context values set for w00fa
    13/10/12 8:39:39.000 AM kernel[0]: MacAuthEvent en0   Auth result for: 68:7f:74:a1:24:96  MAC AUTH succeeded
    13/10/12 8:39:39.432 AM SecurityAgent[594]: Login Window login proceeding
    13/10/12 8:39:39.618 AM loginwindow[535]: Login Window - Returned from Security Agent
    13/10/12 8:39:39.631 AM loginwindow[535]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    13/10/12 8:39:39.657 AM loginwindow[535]: USER_PROCESS: 535 console
    13/10/12 8:39:39.000 AM kernel[0]: wlEvent: en0 en0 Link UP virtIf = 0
    13/10/12 8:39:39.000 AM kernel[0]: AirPort: Link Up on en0
    13/10/12 8:39:39.000 AM kernel[0]: en0: BSSID changed to 68:7f:74:a1:24:96
    13/10/12 8:39:39.000 AM kernel[0]: en0::IO80211Interface::postMessage bssid changed
    13/10/12 8:39:39.706 AM com.apple.launchd.peruser.501[610]: (com.apple.gamed) Ignored this key: UserName
    13/10/12 8:39:39.706 AM com.apple.launchd.peruser.501[610]: (com.apple.gamed) Ignored this key: GroupName
    13/10/12 8:39:39.708 AM com.apple.launchd.peruser.501[610]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    13/10/12 8:39:39.712 AM loginwindow[535]: Connection with distnoted server was invalidated
    13/10/12 8:39:39.717 AM distnoted[615]: # distnote server agent  absolute time: 15.385943220   civil time: Sat Oct 13 08:39:39 2012   pid: 615 uid: 501  root: no
    13/10/12 8:39:39.000 AM kernel[0]: AirPort: RSN handshake complete on en0
    13/10/12 8:39:39.967 AM WindowServer[567]: Received display connect changed for display 0x42803c0
    13/10/12 8:39:39.998 AM WindowServer[567]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042803c0 device: 0x10158a320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Thanks!
    -w00f

  • How to find an SSRS report subscription was executed 3 days back and sent an Email to the requested person or group?

    Hi All,
    I got complain that one of my reports which was subscribed from SSRS Report Manager could not delivered to targeted people 3 days back. 
    I want to to check that Email was sent or not So I wrote below query but I think table  will be over written on each execution of subscription and cannot see the history. I can see only the latest data.
    SELECT A.NAME,B.Description,B.LastStatus,B.LastRunTime 
    FROM [dbo].[Catalog] A
    INNER JOIN [dbo].[Subscriptions] B ON A.ItemID=B.Report_OID
    WHERE TYPE=2 
    AND NAME='REPORT_NAME'
    AND B.LastStatus LIKE '%EMAIL ID%'
    AND B.LastRunTime>Getdate()-1
    ORDER BY B.LastRunTime
    There is another query which says that report was rendered by SUBSCRIPTION and have no track that Email was sent or not.
    --Query to find out how a report was execute 
    SELECT * FROM EXECUTIONLOG3 
    WHERE REQUESTTYPE='SUBSCRIPTION'
    AND ITEMPATH LIKE '%REPORT NAME'
    ORDER BY TIMESTART DESC
    There is any way to track this?
    https://msdn.microsoft.com/en-us/library/ms159110.aspx
    http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
    Thanks Shiven:) If Answer is Helpful, Please Vote

    Hi S Kumar Dubey,
    According to your description, you want to find the failed subscription report and resent the report to users again.
    In this scenario, you can run the query below to find the failed subscription.
    use ReportServer
    go
    SELECT C.Name, S.LastRunTime, S.LastStatus, S.Description
    FROM Subscriptions AS S
    LEFT OUTER JOIN [Catalog] AS C
    ON C.ItemID = S.Report_OID
    WHERE LEFT (S.LastStatus, 12) != 'Mail sent to'
    AND LEFT (S.LastStatus, 12) != 'New Subscrip'
    Then you can execute the code with jobstep command below to find the corresponding SQL Agent Jobs for failed subscription, then execute the job to send the email again.
    select 'exec sp_start_job @job_name = ''' + cast(j.name as varchar(40)) + ''''
    from msdb.dbo.sysjobs j
    join msdb.dbo.sysjobsteps js on js.job_id = j.job_id
    join [ReportServer].[dbo].[Subscriptions] s on js.command like '%' + cast(s.subscriptionid as varchar(40)) + '%'
    where s.LastStatus like 'Failure sending mail%';
    Reference:
    SSRS Failed Subscription Notifications
    Re-running SSRS subscription jobs that have failed
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Newb question - table total coming out double

    Hi, I'm a newb to BI Publisher, and running in to an issue I can't figure out. I'm trying to output a table that shows # of hours worked by employee for a given month, along with their department, etc. The table part comes out perfectly - works just as I want it to.
    But now I want to add a simple total to the hours worked. Somehow the number keeps coming out exactly double of what it should be. Any ideas?
    p.s. using MS Word template builder. Also using OBIEE answers query as a data source, which explains all the ugly underscore characters in the field names.
    p.p.s. I kinda suspect this is because I'm using two similar queries to produce info - the first query groups rows by a different category, and the one below does it by employee. Is that why numbers are doubling? If so, how can I basically say "give me the sum for the _Quantity_ field - but ONLY for the LABORTRANS rows?
    Thanks!
    Scott
    Table code:
    <?for-each:LABORTRANS_ROW?><?_Employee_._Incurred_by_Person_Name_?><?_Organizations_._Expenditure_Department_Number_?><?_Fact_-_Project_Cost_._Quantity_?><?end for-each?>
    Total code:
    <?sum(_Fact_-_Project_Cost_._Quantity_)?>

    That works perfectly - thanks a million!!!!
    Quick follow up question - do you know where in the documentation I could find this? I tried to quickly locate it and couldn't...and would prefer not to have to bother everyone on the forums.
    Thanks again for the help!\
    Scott

  • SSRS Reports level how to find out All tables names & columns list to display dynamically SQL Query????

    Hi Team,
    I Have one requirement,In SSRS Reporsitory 3000 reports are available.
    My end user requirement All 3000 reports are used Table names & columns list of each wise to display single table or single result set.
    I find out all 3000 reports details are diplayed single results set like
    Report Id,Path,Dataset,Source Query Text,Datasource
    In Source Query Text  column level All reports Queries are available but I want Each Report wise Table name & columns List.If any solution Please share me.
    Regards
    Rama

    Hi Ramakoteswara,
    According your description, you want to show used tables and columns of each report, and display is into a single result set. Right?
    In this scenario, we don't know where to find a column contains the Source Query Text. With my understanding, in Reporting Services, we have Catalog table in ReportServer DataBase, it has a column called Content stores the report code (.xml). In the
    code we can find the Query and Fields. Then you need to use VB/C# code to parse each .xml code of each report and fetch out the table name and columns. We do not support writing any queries against SSRS DataBase or parsing data records in any
    table.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • Java.sql.SQLException: Missing IN or OUT parameter at index:: 1

    Hi, I am facing the above issue and can not determine why. I would like to create a messagechoice item on a region and when i do, and attach my VO to the messagechoice item i get the above error. When i use a region with a table view on it it seems t

  • CP6 Powerpoint animations NOT workin in HTML5

    I have imported my powerpoint in to cp6.  I have embedded animations in the ppt file. WHen I publish to PDF or flash, the animations play nicely. When I publish to HTML5, they don't play at all. If I import without hi fidelity, then the screens are b

  • Converting video cam tape file to digital?

    Before I go buy or borrow someone's digital video camera to record a digital video file, I thought I'd ask if my iMac has some ability to translate a video tape file to a digital file? IOW, is there a way to input video from my older camera and then

  • Exporting: Title Shadows Disappear & Color is Darker/Reddish

    I'm using Premiere Pro CS6 v 6.0.3 on a Lenovo W530 w 16 GB Ram and Win7 64 bit. I'm exporting video using Vimeo preset settings H.264 and check the box "Use Maximum Render Quality". When I'm in the Premiere timeline, I can see the shadows on my titl

  • Bank row was added in webi rich client when using excel as data provider

    reproduding steps: 1.open webi rich client. 2.Create a new webi report,then select "local data source" 3.select an excel file as data source. 4.run query. For example,there are 5rows in excel,but in webi report there are 6 rows,and the last row is ba