Skip to content

Commit

Permalink
Merge pull request #5492 from mil0oz/ssisexechistory
Browse files Browse the repository at this point in the history
Change DATEDIFF function datepart
  • Loading branch information
potatoqualitee authored May 8, 2019
2 parents 91fc23b + f0ad752 commit a4278dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/Get-DbaSsisExecutionHistory.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function Get-DbaSsisExecutionHistory {
, s.code AS StatusCode
, start_time as StartTime
, end_time as EndTime
, ElapsedMinutes = DATEDIFF(ss, e.start_time, e.end_time)
, ElapsedMinutes = DATEDIFF(mi, e.start_time, e.end_time)
, l.LoggingLevel
FROM
[catalog].executions e
Expand Down

0 comments on commit a4278dd

Please sign in to comment.