Report Schedule - SQL Server Agent

Hi,
We have few SSRS reports which has to run daily after the data is loaded in the database.
I scheduled the reports on timely based and got the Job Id's using SQL server agent and using SP_START_JOBs stored procedure to run.
But the problem is it is creating multiple files one for time and one for SP_START_JOBS procedure.
Any idea how to avoid this?
I really appreciate any help.
Thanks,
Sarah

If you're going to schedule your SSRS jobs using the agent, don't schedule them in SSRS using subscriptions as well...
Don't forget to mark helpful posts, and answers. It helps others to find relevant posts to the same question.

Similar Messages

  • Will dynamic Excel commands in a C# Edit Script run ok as a SSISDB Package and a SQL Server Agent Job?

    I've seen some conflicting things in terms of dynamic Excel commands running in a SSISDB Package and a scheduled SQL Server Agent Job...things like that it's not supported...that it won't work...etc...
    It's a pretty simple script...to open up a .xlsx file and save it as a .xls file. I am trying to be proactive here and the reason I did it this way is because I could not source the .xlsx file and then I couldn't use OLE DB sourcing because I think the .xlsx
    file wants you to use Microsoft.ACE.OLEDB.12.0 and that entails installing the 64-bit Microsoft Access Database Engine and I cannot do that because our network version of Microsoft Office 2010 is 32-bit and in order to install the 64-bit Microsoft Access Database
    Engine 2010 it's prompting me to uninstall Microsoft Office 2010 and that is not possible.
    Ugh!
    So I'm hoping that I can promote and deploy this current SSIS Package to Production and create a SQL Server Agent Job that will successfully run this and its dynamic Excel commands.
    Do you know of any hurdles with this? Any anomalies...struggles...
    Thanks for your review and am hopeful for a reply.
    Here's the C# Script...which works perfectly client side...
    string StrFileName = (Dts.Variables["User::FileName"].Value.ToString());
    StrFileName = Path.GetFileNameWithoutExtension(StrFileName);
    string StringSourceFile = (Dts.Variables["User::FilePath"].Value.ToString()) + StrFileName + ".xlsx";
    string StringDestinationFile = (Dts.Variables["User::FilePath"].Value.ToString()) + StrFileName + ".xls";
    // This initiates the Excel Application
    Microsoft.Office.Interop.Excel.Application excelApplication = new Microsoft.Office.Interop.Excel.Application();
    // This Opens the Source .xlsx File from Emdeon ePaySmart
    Workbook workbook = excelApplication.Workbooks.Open(StringSourceFile, XlUpdateLinks.xlUpdateLinksNever, true, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
    // This will Save the Source .xlsx Emdeon ePaySmart File as a .xls File...note xlFileFormat.xlExcel5
    workbook.SaveAs(StringDestinationFile, XlFileFormat.xlExcel8, Type.Missing, Type.Missing, Type.Missing, Type.Missing, XlSaveAsAccessMode.xlExclusive, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
    // This will Close the Source
    workbook.Close(false, Type.Missing, Type.Missing);
    // This shuts down the Excel Application
    excelApplication.Quit();

    This should work if you use a proxy to run this package in the Agent; see:
    http://www.mssqltips.com/sqlservertip/2163/running-a-ssis-package-from-sql-server-agent-using-a-proxy-account/
    Arthur
    MyBlog
    Twitter

  • Schedule a SSRS report as step in SQL SERVER agent

    Hi All,
    The requirement is that can we schedule a job as a step in SQL Server Agent.
    Scenario: I got a SQL Agent job which got multiple steps. Executing SP's, running SSIS etc. The last setp i want to setup is run a SSRS report where it gives the report of all the steps. It is like a summary report.
    Is that is possible. If so hw can i achieve it.
    Thanks in advance.

    You can use rs utility to render reports using below script file
    http://skamie.wordpress.com/2010/08/11/using-rs-exe-to-render-ssrs-reports/
    and call rs utility from bat file or using xp_cmdshell.
    Then include this script as last step in your job.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs
    Visakh, I added you to this list:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/64ad4f52-2fd8-4266-b4a4-5657c8870246/needed-more-answerers?forum=sqlgetstarted
    Thanks!
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • [Forum FAQ] How do I disable all subscriptions without disabling Reporting Services and SQL Server Agent?

    Introduction
    There is the scenario that users configured hundreds of subscriptions for reports. Now they want to disable all the subscriptions, but Reporting Services and SQL Server Agent service should be enable, so the subscriptions will not delivery reports to users
    and users could run the reports and create jobs on the server.
    Solution
    To achieve this requirement, we need to list all subscriptions and their schedules by running query, then use loop statement to disable all the subscription schedules by Job name.
    On the Start menu, point to All Programs, point to Microsoft SQL Server instance, and then click SQL Server Management Studio.
    Type Server name and select Authentication, click Connect.
    Click New Query in menu to open a new Query Editor window.
    List all subscriptions and their schedules by running the following query:
    Use ReportServer
    go
    SELECT   c.[Name] ReportName,           
    s.ScheduleID JobName,           
    ss.[Description] SubscriptionDescription,           
    ss.DeliveryExtension SubscriptionType,           
    c.[Path] ReportFolderPath,           
    row_number() over(order by s.ScheduleID) as rn             
    into
    #Temp  
    FROM     
    ReportSchedule rs           
    INNER JOIN Schedule s ON rs.ScheduleID = s.ScheduleID           
    INNER JOIN Subscriptions ss ON rs.SubscriptionID = ss.SubscriptionID           
    INNER JOIN [Catalog] c ON rs.ReportID = c.ItemID AND ss.Report_OID = c.ItemID   
    select * from #temp
    Use the loop statement to disable all the subscription schedules by Job name:
    DECLARE
    @count INT,
    @maxCount INT  
    SET @COUNT=1  
    SELECT @maxCount=MAX(RN)
    FROM
    #temp         
    DECLARE
    @job_name VARCHAR(MAX)                  
    WHILE @COUNT <=@maxCount        
    BEGIN      
    SELECT @job_name=jobname FROM #temp WHERE RN=@COUNT  
    exec msdb..sp_update_job @job_name = @job_name,@enabled = 0     
    SET @COUNT=@COUNT+1   P
    RINT @job_name   
    END   
    PRINT @COUNT 
    Reference
    SQL Agent – Disable All Jobs
    Applies to
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Reporting Services 2014
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • Reporting Services 2012 for SharePoint and SQL Server Agent "Subscriptions and Alerts"

    After installing Reporting Services for SharePoint (Denali) in my test farm, I'm trying to configure the "SQL Server Agent" access for Reporting Services.  From Central Admin I'm going to the Reporting Service applicaiton configuration screen and selecting
    "Provision Subscriptions and Alerts".  I've tried both options on this screen.  I've manually executed the "download sql script" in SQL Server, as well as entering a user with SQL sys admin rights on the SQL server into the login fields on the screen. 
    The role and permissions have been created for the application pool service account, but Reporting Services is still trying to connect with the annonymous login because I'm getting the following alert each time I open the "Provision Subscriptions and Alerts"
    screen:
    Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'
    The "status" on the screen still shows "SQL Server Agent State cannot be determined".  Has anyone else seen this? 
    Thanks!!

    Thanks for your reply!
    1) Looks like the new Reporting Services does not run as a Windows Service so it's not listed in the "Configure Service Accounts" pulldown.  As a result, I don't see how to set the service account.  It's only assigned to an application pool. 
    I installed it into an existing application pool and that application pool "is" in the list and has a domain service account already assigned.
    2) Which users need to be in here in order to configure the "Provision Subscriptions and Alerts" screen?  I already have the farm admin account which is the account I use when running Central Admin.
    3) As mentioned in #1, I've installed Reporting Services into an existing application pool with other service apps.
    4) This link is for Reporting Services 2008 R2 which is very different install process.  But I did follow the SQL Server Reporting Services 2012 RC0 installation instructions and the Reporting Services is functioning correctly with no errors. 
    I'm just not able to configure the sceduling the alerting with interfaces with the SQL Server Agent.
    Thanks!

  • SSIS Package Fails when Scheduled as a SQL Server Agent Job

    I have an SSIS package that runs without any problems when executed through BIDS.
    However, when I schedule the SSIS as an Agent job, it fails completely or part way through. When it partially runs, the part that it is failing on is a Script Task that moves the source data file to an archive folder (on the same server).
    I have tried using my domain account as the owner of the job, then the job fails straight off and I get an error:
    Unable to determine if the owner (Domain\MyID) of job JobName has server access (reason: Could not obtain information about Windows NT group/user 'Domain\MyID'
    If I change the owner to the 'sa' account , then the job partially runs, but then fails because 'sa' is a SQL account and does not have access to the filesystem.
    I have managed to get it to work by using the SQL2008_Local account and granting modify permissions to the affected folders.
    My question is - what is the advised way of doing this?
    Thanks
    Gary

    Hi Garyv.King,
    When you see a SSIS package fails running in a SQL Agent job, you need to first consider the following conditions:
    1. The user account that is used to run the package under SQL Server Agent differs from the original package author.
    2. The user account does not have the required permissions to make connections or to access resources outside the SSIS package.
    For more detailed information about the issue, please following this KB article:
    An SSIS package does not run when you call the SSIS package from a SQL Server Agent job step
    http://support.microsoft.com/kb/918760 
    You can check SQL Server Agent’s activity logs, Windows Event logs and SSIS logs to get more clues. Also the tool Process Monitor is helpful to track the cause of registry or file access related issues.
    The following 4 issues are common encountered in the SSIS forum.
    1. The package's Protection Level is set to EncryptSensitiveWithUserKey but your SQL Server Agent service account is different from the SSIS package creator.
    2. Data source connection issue.
    3. File or registry access permission issue.
    4. No 64-bit driver issue.
    For more information about it, please see:
    How do I troubleshoot SSIS packages failed execution in a SQL Agent job:
    http://social.technet.microsoft.com/Forums/en-US/sqlintegrationservices/thread/e13c137c-1535-4475-8c2f-c7e6e7d125fc 
    Thanks,
    Eileen

  • Schedule SSIS packages as job in SQL Server Agent errors

    Hi, I am using SQL Server 2008 R2 and created few SSIS packages and schedule them using SQL Server Agent and every time I try to schedule packages via SQL Server Agent my jobs keep failing. I am using domain/ione as the owner and when I invoke the job on
    ServerA let's say and the job gets executed by domain/ServerA$ and fails as it does not have enough privileges. How do I fix this issue firstly without the proxy and why is the job being executed by domain/ServerA$ when the owner & user who invokes
    it is domain/ione?
    Thanks in advance............
    Ione

    Hi Ione,
    The owner of any SQL jobs should be SA or any other non-expiring account
    If you do not want the proxy used, then add the needed priveleges.
    The owner of the job is one, the SSIS step gets executed by the account the Agent is running under.
    Arthur
    MyBlog
    Twitter

  • Sql Server Agent: job hasn't run once today. Scheduling problem?

    I created this job yesterday at about 4PM; the view history shows that it last ran successfully at 11:53PM. These are the settings I put:
    Schedule Type: Recurring
    Occurs: Daily
    Recurs every: 1 days(s)
    Occurs every: 5 minute(s)
    Starting at: 05:00:00 PM
    Ending at: 11:59:59 PM
    Start Date: 10/30/2014
    No End Day (selected)
    The job is enabled, but it hasn't run once yet today. I don't want to start it manually because it should've started already. It is currently not running.
    What can the problem be?
    Thanks.
    VM

    The output is:
    Microsoft SQL Server 2008 R2 (RTM) - 10.50.1617.0 (X64)
    The length varies, but it's usually a bit over an hour to finish. It's set at 5 minutes so that, as soon as it completes, it runs the job again. The job history yesterday was: 5:48P, 7:03P, 7:43P, 8:58P, 9:53P, 10:58P, 11:53P. The job downloads some files,
    and that's why the job varies in length.
    VM
    I would say there is no point in scheduling a job which runs for 1 hr to run at every 5 mins although as per SQL Server agent logic if job is currently running and it misses schedule it will only start when job is finished. I would say to change logic to
    run every 1 hr.
    Plus I cannot find the support article but I know there was bug where Agent job could miss schedule can you please apply
    SQL Server 2008 R2 SP3. There are 2 reason
    1. it might fix your schedule skipping issue
    2 You would come under purview of extended support. Which I guess is very important.
    You can easily open job activity monitor and look for column Next run date
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Obtain Job invoker for a SSIS job scheduled in SQL Server Agent

    Hello,
    I was required to tell the job runner of a particular SSIS job scheduled in SQL Server Agent (in SQL Server Management Studio 2008 R2). I noticed that after running the job, a record can be found in msdb.dbo.sysjobhistory in the [message] columm saying that
    the job is invoked by 'Domain\User'. Is there anyway I can acquire and upload that information into an audit table by adding some additional script into the job? I heard about using token to get job_ID, but what about the actual user name who runs
    the job?
    Thanks

    Just add retry attempts to whatever number you want (2 as per your original explanation) in Job step properties as below
    Have a logic to include a delay of 10 mins . You can make use of WAITFOR function for that
    see
    http://www.mssqltips.com/sqlservertip/1423/create-delays-in-sql-server-processes-to-mimic-user-input/
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • HOw to avoid DeadLocks when you schedule a Sql Server Agent Job and calling SSIS packages

    Hi All,
    I have scheduled 2 packages in in Sql Server Agent jobs .
    First job which is having Package 1 executing at 11 AM and where I am inserting the data in the table.
    Second job which is having Package 2 executing at 12 AM and where I am updating the data in the table based on the first job inserted records.
    When I am executing my first job it taking more time and executing till 12 AM and from 12 AM my job 2 also starting ,so getting deadlocks conflicts because inserting happening from job1 and updating happening from Job 2.
    How to avoid deadlocks and fix the issue.
    Please Suggest .
    Thanks & Regards,
    Anand

    Hi Anand,
    Here is another solution, you can set the Job 2 not to run based on a schedule, and create another SQL Server Agent Job which starts at 12 AM and run with a specified time interval to execute a SQL statement in which you do the following steps:
    1. Get the status information of Job 1 using the statement:
    DECLARE @i int;
    EXEC @i = msdb.dbo.sp_help_job @job_name = ‘Job Name'
    2. If the value of @i is 1 which means the status of job 1 is success and current time is, then start the job 2. So, the statement is as follows:
    IF @I = 1
    EXEC msdb.dbo.sp_start_job @job_name= ‘Job Name’
    Regards,
    Mike Yin
    TechNet Community Support

  • SQL Server Agent Job Scheduler- Set time less than 10 seconds

    Hi,
    Could any one please let me know how to change the SQL server agent Job scheduler time to less than 10 secs?
    I wan to schedule a SSIS package run for every 5 secs.
    Thanks..

    Be careful, it is a bad idea to blindly just issue a new package run without knowing whether the previous package ended.
    It may lead to locking/dead-locking.
    Now re the Agent: the seconds are not exposed at all, why you say 10?
    But, there is a way, not through the UI, explained there:http://stackoverflow.com/questions/5569415/is-there-a-way-to-set-a-sql-server-job-scheduled-to-run-every-30-seconds + http://www.sqlservercentral.com/articles/Administration/sqlserverjobscheduling/2288/
    PS you can have it every sec
    Arthur My Blog

  • SQL Server Agent and Jobs and executing @EventData

    I have a SQL Server Agent Job and within it a Job Step which states "Execute Report Subscriptions" and a command which has...
    exec msdb.dbo.sp_start_job '6FF53AED-855F-43AB-9FB7-064062B8012E' --9:07 subscription
    GO
    WAITFOR DELAY '00:08';
    Now, I find within SQL Server Agent the Job  '6FF53AED-855F-43AB-9FB7-064062B8012E' and its step command which is...
    exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='ca4e5410-2758-4a1a-9b06-513821e0d962'
    How can I drill-down further into the @EventData 'ca4e5410-2758-4a1a-9b06-513821e0d962' to see what it does? I do not see 'ca4e5410-2758-4a1a-9b06-513821e0d962' within SQL Server Agent and Jobs or am I way off base here as to what exactly the @EventData
    parameter seems to be?
    Thanks for your review and am hopeful for a reply.

    Hi ITBobbyP,
    According to your description, you need to know the what does SQL Server Reporting Services do when fire a subscription, right?
    When you create a subscription several things are added to the RS server
    A row is placed in the Subscriptions table identifying the name of the report, along with parameter settings, data driven query info and so on to process the subscription
    A row is placed in the Schedule and ReportSchedule tables with the timing of the subscription
    A SQL Server Agent job is created to control the scheduled execution of the report, and this is stored in the sysjobs and sysjobsteps of the MSDB database.
    When the subscription runs several things happen
    The SQL Server Agent job fires and puts a row in the Event table in the RS catalog with the settings necessary to process the subscription
    The RS server service has a limited number of threads (2 per CPU) that poll the Event table every few seconds looking for subscriptions to process
    When it finds an event, it puts a row in the Notifications table and starts processing the subscription
    Please refer to the links below to see the details.
    http://blogs.msdn.com/b/deanka/archive/2009/01/13/diagnosing-and-troubleshooting-subscriptions.aspx
    http://blogs.msdn.com/b/deanka/archive/2010/02/16/troubleshooting-subscriptions-part-ii-using-the-report-services-trace-log-file.aspx
    Regards,
    Charlie Liao
    TechNet Community Support

  • VBScript Runs Correctly From Command Prompt, But Not From SQL Server Agent Job

    I'm trying to run this script on my local machine to do some post-batch cleanup and it doesn't run correctly from the scheduled job (or when I invoke the job).
    Here's the script in question:
    Option Explicit
    Const filePath = "C:\Documents and Settings\jmunn\My Documents\Visual Studio 2008\Logs\"
    Const holdDays = 6
    main
    Sub Main()
    ClearArchive
    End Sub
    Sub ClearArchive()
    Dim fso 'As Scripting.FileSystemObject
    Dim fld 'As Scripting.Folder
    Dim f 'As Scripting.File
    Dim delLogName, delLogOut, delCtr
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set fld = fso.GetFolder(filePath)
    delLogName = filePath & "Nightly Backup - Backup Logs Deleted" & ".txt"
    Set delLogOut = fso.CreateTextFile(delLogName, True)
    delLogOut.WriteLine(delLogName)
    delLogOut.WriteLine("")
    delLogOut.WriteLine("-- The following log files were deleted on " & DateValue(Now()) & " at " & TimeValue(Now()))
    delLogOut.WriteLine("")
    delCtr = 0
    For Each f In fld.Files
    If Left(f.Name, 48) = "Nightly Backup - SQL Server Databases_Subplan_1_" And Right(LCase(f.Name), 4) = ".txt" Then
    If DateDiff("d", f.DateCreated, Date()) > holdDays Then
    delLogOut.WriteLine(f.Name)
    fso.DeleteFile f, True
    delCtr = delCtr + 1
    End If
    End If
    Next
    If delCtr = 0 Then
    delLogOut.WriteLine("No log files were deleted this run...")
    End If
    Set fld = Nothing
    Set fso = Nothing
    delLogOut.Close
    End Sub
    If I put the script in its own file and run it from the command prompt, it runs just fine. If the script runs from the SQL Server Agent job, the for-loop will delete the files correctly, but the filenames
    do not get written to the deletion log file and the counter does not get incremented, so according to the job log, nothing was deleted. Why does the script run differently from each invocation? It can't be a permission thing, the service that logs in has full
    access to the directory and the files do get deleted. Any ideas out there?
    Between this and other outstanding issues, I'm quickly losing faith in SQL Server.  >=o(
    Thanks in advance for your thoughts!
    John
    Version Info:
    Microsoft SQL Server Management Studio      10.0.2531.0
    Microsoft Analysis Services Client Tools      10.0.1600.22
    Microsoft Data Access Components (MDAC)      3.85.1132
    Microsoft MSXML      2.6 3.0 4.0 5.0 6.0
    Microsoft Internet Explorer      8.0.6001.18702
    Microsoft .NET Framework      2.0.50727.3603
    Operating System      5.1.2600
    "A bus station is where a bus stops. A train station is where a train stops. On my desk I have a workstation..."

    Hi
    jrmunn
    i am trying to execute VB script to refresh my excel files.. using Vbscript file through SQL Agent job step.
    i have copied VBscript in a file with the extension RefreshExcel.vbs kept in C:\RefreshExcel.vbs
    Below is the script used inside the file (RefreshExcel.vbs)
    //---Script code-----------------------------------------------------------------
    Dim objXL, objWB
    Dim FileLocation, FileName
    On Error Resume Next
    'lgnConn = 1
    FileLocation = "F:\Reports\Reports"
    Set objXL = CreateObject("Excel.Application")
    objXL.DisplayAlerts = False
    FileName = "ReportFile1.xlsx"
    'MsgBox (FileLocation & "/" & FileName)
    Set objWB = objXL.Workbooks.Open(FileLocation & "/" & FileName)
    objWB.EnableConnections
    objXL.CalculateUntilAsyncQueriesDone
    objWB.RefreshAll
    objXL.CalculateUntilAsyncQueriesDone
    objWB.RefreshAll
    objXL.CalculateUntilAsyncQueriesDone
    objWB.Save
    objWB.Close
    Set objWS = Nothing
    Set objWB = Nothing
    objXL.Quit
    Set objXL = Nothing
    'MsgBox ("Refresh Completed")
    ---------------------------------------------------------------------------------------------------//Script complete
    Now when i am trying to call this script file in SQL agent job step (as you mentioned )
    as Type -cmdExec(OperatingSystem)
    cscript "C:\RefreshExcel.vbs"
    Issue: job step executed succesfully ,,but without performing any refresh on the excel. So i am not understandig what is going wrong. the same script file work when i am calling it through a batch file (window scheuler task). But it doesnt support
    to run the file "when user is not logged in"
    that is why  i want to refresh my excel file through sql agent ,which can be scheduled to any time and cab be run as SQL agent credentials.
    Can you please help me on this ...i have tried all the option but nothing working .. found hope by seeing your solution.
    Thanks in advance.
    Please help me. :-(

  • SQL Server Agent Stopped

    Received an error in SQL Server Agent and none of the Job executed as per schedules and attaching a screen shot of the Error Message while expanding the Job Folder under SQL Server Agent. Additionally, need to find the RCA for this issue to avoid the re-occurrence.
    Pls share your experience if any such issue which you have faced earlier.
    As usual, after re-starting the Windows Server the issue got fixed and no RCA captured. Please let me know how to drill down and find out the RCA for this issue.

    Hi,
    the exact issue what i had is as in below URL.
    https://connect.microsoft.com/SQLServer/feedback/details/243790/sql-server-agent-exception-in-the-tsql-subsystem-agent-hangs-unresponsive
    And in the another reference URL i can feel that could be the solution but not able to identify the exact Root Cause.
    http://mssqlwiki.com/sqlwiki/sql-server-agent/sql-agent-maxworkerthreads-and-agent-subsystem/
    Additionally, attaching the Application Log event details for further Analysis in HTML format.
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:22:09.000000000Z" />
        <EventRecordID>10509692</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:52:09 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:22:09.000000000Z" />
        <EventRecordID>10509690</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:52:00 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:22:00.000000000Z" />
        <EventRecordID>10509678</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:52:00 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:22:00.000000000Z" />
        <EventRecordID>10509676</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:52:00 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:22:00.000000000Z" />
        <EventRecordID>10509674</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:51:13 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:21:13.000000000Z" />
        <EventRecordID>10509652</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:51:13 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:21:13.000000000Z" />
        <EventRecordID>10509650</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:51:13 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:21:13.000000000Z" />
        <EventRecordID>10509648</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:09 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:09.000000000Z" />
        <EventRecordID>10509545</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:09 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:09.000000000Z" />
        <EventRecordID>10509543</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:09 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:09.000000000Z" />
        <EventRecordID>10509541</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:03 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:03.000000000Z" />
        <EventRecordID>10509529</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:03 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:03.000000000Z" />
        <EventRecordID>10509527</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:46:03 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:16:03.000000000Z" />
        <EventRecordID>10509525</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:44:46 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] CheckServiceAlive: Service is dead
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:14:46.000000000Z" />
        <EventRecordID>10509513</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] CheckServiceAlive: Service is dead
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-26 4:44:46 AM
    Event ID:      53
    Task Category: (5)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 53 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    [sqagtres] SvcStop: service did not stop; giving up.
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="16384">53</EventID>
        <Level>2</Level>
        <Task>5</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T23:14:46.000000000Z" />
        <EventRecordID>10509511</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>[sqagtres] SvcStop: service did not stop; giving up.
    </Data>
        <Binary>35000040010000000A00000042004C005500530051004C00410043004300000000000000</Binary>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-User Profiles Service
    Date:          2014-10-26 4:01:10 AM
    Event ID:      1530
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1216:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1216\Printers\DevModePerUser
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-User Profiles Service" Guid="{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}" />
        <EventID>1530</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T22:31:10.210213900Z" />
        <EventRecordID>10508265</EventRecordID>
        <Correlation />
        <Execution ProcessID="924" ThreadID="12052" />
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData Name="EVENT_HIVE_LEAK">
        <Data Name="Detail">1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1216:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1216\Printers\DevModePerUser
    </Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-User Profiles Service
    Date:          2014-10-26 3:37:38 AM
    Event ID:      1530
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-User Profiles Service" Guid="{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}" />
        <EventID>1530</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T22:07:38.056728700Z" />
        <EventRecordID>10507688</EventRecordID>
        <Correlation />
        <Execution ProcessID="924" ThreadID="12052" />
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData Name="EVENT_HIVE_LEAK">
        <Data Name="Detail">1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    </Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-User Profiles Service
    Date:          2014-10-26 3:12:07 AM
    Event ID:      1530
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-User Profiles Service" Guid="{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}" />
        <EventID>1530</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T21:42:07.367675100Z" />
        <EventRecordID>10507058</EventRecordID>
        <Correlation />
        <Execution ProcessID="924" ThreadID="18292" />
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData Name="EVENT_HIVE_LEAK">
        <Data Name="Detail">1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    </Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-User Profiles Service
    Date:          2014-10-26 12:59:12 AM
    Event ID:      1530
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     3 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-500:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500\Printers\DevModePerUser
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500\Software\Microsoft\Windows NT\CurrentVersion\Windows
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-User Profiles Service" Guid="{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}" />
        <EventID>1530</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T19:29:12.118229900Z" />
        <EventRecordID>10503856</EventRecordID>
        <Correlation />
        <Execution ProcessID="924" ThreadID="17644" />
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData Name="EVENT_HIVE_LEAK">
        <Data Name="Detail">3 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-500:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500\Printers\DevModePerUser
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-500\Software\Microsoft\Windows NT\CurrentVersion\Windows
    </Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Application Error
    Date:          2014-10-25 11:10:49 PM
    Event ID:      1000
    Task Category: Application Crashing Events
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Faulting application name: mmc.exe, version: 6.1.7600.16385, time stamp: 0x4a5bc808
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x0000000000000000
    Faulting process id: 0x%9
    Faulting application start time: 0x%10
    Faulting application path: %11
    Faulting module path: %12
    Report Id: %13
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T17:40:49.000000000Z" />
        <EventRecordID>10501239</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>mmc.exe</Data>
        <Data>6.1.7600.16385</Data>
        <Data>4a5bc808</Data>
        <Data>unknown</Data>
        <Data>0.0.0.0</Data>
        <Data>00000000</Data>
        <Data>c0000005</Data>
        <Data>0000000000000000</Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        Microsoft-Windows-User Profiles Service
    Date:          2014-10-25 11:09:59 PM
    Event ID:      1530
    Task Category: None
    Level:         Warning
    Keywords:      
    User:          SYSTEM
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    Windows detected your registry file is still in use by other applications or services. The file will be unloaded now. The applications or services that hold your registry file may not function properly afterwards.  
     DETAIL - 
     1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Microsoft-Windows-User Profiles Service" Guid="{89B1E9F0-5AFF-44A6-9B44-0A07A7CE5845}" />
        <EventID>1530</EventID>
        <Version>0</Version>
        <Level>3</Level>
        <Task>0</Task>
        <Opcode>0</Opcode>
        <Keywords>0x8000000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T17:39:59.818023100Z" />
        <EventRecordID>10501214</EventRecordID>
        <Correlation />
        <Execution ProcessID="924" ThreadID="6232" />
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security UserID="S-1-5-18" />
      </System>
      <EventData Name="EVENT_HIVE_LEAK">
        <Data Name="Detail">1 user registry handles leaked from \Registry\User\S-1-5-21-771433644-1862610895-1113058290-1434:
    Process 1004 (\Device\HarddiskVolume3\Windows\System32\svchost.exe) has opened key \REGISTRY\USER\S-1-5-21-771433644-1862610895-1113058290-1434\Printers\DevModePerUser
    </Data>
      </EventData>
    </Event>
    Log Name:      Application
    Source:        SQLSERVERAGENT
    Date:          2014-10-25 7:15:00 PM
    Event ID:      209
    Task Category: (3)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      GSGLOBAL-CN07.GSGLOBAL.local
    Description:
    The description for Event ID 209 from source SQLSERVERAGENT cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event: 
    1
    Copy_ESHOP_GBR_GT
    0x4644461009F9A840BEC1F3FE774C400A
    TSQL
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="SQLSERVERAGENT" />
        <EventID Qualifiers="49152">209</EventID>
        <Level>2</Level>
        <Task>3</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2014-10-25T13:45:00.000000000Z" />
        <EventRecordID>10495566</EventRecordID>
        <Channel>Application</Channel>
        <Computer>GSGLOBAL-CN07.GSGLOBAL.local</Computer>
        <Security />
      </System>
      <EventData>
        <Data>1</Data>
        <Data>Copy_ESHOP_GBR_GT</Data>
        <Data>0x4644461009F9A840BEC1F3FE774C400A</Data>
        <Data>TSQL</Data>
      </EventData>
    </Event>
    I could not able to attach as Application Event Log file instead just pasted the detailed content of the log details otherwise that would be easier to analyse.
    Thanks,
    Mohanraj

  • SQL SERVER AGENT job dependent on another job

    Hi
    I have 2 Sql Server Agent jobs that run on a daily basis.
    One which is run first but is dependant on another job completing.
    The secone runs every 30 mins between 9:00am to 7:00pm.
    If my first Job hasn't run but the 2nd job does start running the 2nd job will fail.
    Is there away with SQL servent agent where if my first Job hasn't run  then don't run the 2nd job?
    Regards

    Hi aivoryuk,
    According to your description, if you set one job is dependent on another job, when the first job does not run or execute failed, then the second job will not run. I recommend you use two steps to instead of this two jobs. In step Advanced page, we can set
    that the first job execute successfully then go to the next step. Or else, it will quit the job and report a failure.
    The other way is that we create new job with the same schedule as the second job , in this job , we can check the first job status with the sp_help_job stored procedure, then you can use sp_start_job to Start
     the second job. For more information, you can review the following post.
    http://social.technet.microsoft.com/Forums/en-US/d5cb4004-02fb-4b41-a321-5197f8105941/sql-server-agent-making-1-job-dependent-on-another?forum=sqltools
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

Maybe you are looking for

  • Upgrade screen and memory

    1. Hi. I just purchased a macbook pro 15 inch from amazon (2.2Ghz quad-core, 4GB memory and so on). The screen is just normal resolution 1440*900.. I really want to upgrade this screen to 1680*1050 because I am going to do lots of work on images and

  • Error in ABAP Report TABLES declaration

    Hi, I am a Basis administrator and trying to write a small program for archiving. I get a folowing error when user the following statement in a report - TABLES: RSDAARCHREQ. The error is as follows - "RSDAARCHREQ" must be a flat structure. You cannot

  • Crystal reports prompt issue

    Hi  All, I had created the simple crystal report by connecting to  bex query (with prompts). For example in my  crystal  report ,circle prompt  as below list of values Values                                  Description [YPES_AREA].[ANPR]     Andhra

  • Data Execution Prevention has closed Adobe Reader

    I cannot launch Adobe Reader, got the following message When I close program, a message says "Data Execution Prevention has closed Adobe Reader."  I have searched the Microsoft Community for fixes, but those suggestions don't work. I'm running Window

  • How to upload muliple files in webdynpro abap?

    dear team any one could you tell me how to upload multiple files in webdynpro  abap with detailed steps? and where & what code i have to write? kindly give me the solution for this problem regards sathya