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
- Host: GitHub
- URL: https://github.com/marcingminski/sql-agent-timeline
- Owner: marcingminski
- License: mit
- Created: 2018-08-08T22:21:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-07-05T16:06:14.000Z (almost 4 years ago)
- Last Synced: 2025-03-19T15:46:14.582Z (over 1 year ago)
- Language: PowerShell
- Homepage: https://marcin.gminski.net/goodies/sql-agent-jobs-timeline/
- Size: 35.2 KB
- Stars: 11
- Watchers: 2
- Forks: 21
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/