An open API service indexing awesome lists of open source software.

https://github.com/marcingminski/sql-agent-timeline

A simple timeline report for SQL Agent Job History from Get-DbaAgentJobHistory
https://github.com/marcingminski/sql-agent-timeline

Last synced: 3 months ago
JSON representation

A simple timeline report for SQL Agent Job History from Get-DbaAgentJobHistory

Awesome Lists containing this project

README

          

# sql-agent-timeline
A simple timeline report for SQL Server Agent Job history

You need dbatools.io to run this

### to execute:
```
.\Get-DbaAgentJobHistoryTimeline.ps1 -DbaAgentJobHistory $(Get-DbaAgentJobHistory -SqlInstance SQLSERVER001 -StartDate ‘2018-08-07 20:00’ -EndDate ‘2018-08-08 20:00’ -NoJobSteps | ?{$(Get-Date $_.EndDate)-gt $(Get-Date $_.StartDate.AddMinutes(1))} )
```

details:
https://marcin.gminski.net/goodies/sql-agent-jobs-timeline/