fix sql script path

This commit is contained in:
Collin Barrett 2018-02-13 06:30:05 -06:00
parent 371f5303d7
commit d0ee6a3012
2 changed files with 3 additions and 12 deletions

View file

@ -1,9 +0,0 @@
SELECT
FilterListId,
ModifiedDateUtc - CreatedDateUtc As ProcessingTimeSecs,
CreatedDateUtc,
ModifiedDateUtc,
IsCompleted
FROM snapshots
WHERE ModifiedDateUtc - CreatedDateUtc > 30 OR IsCompleted = 0
ORDER BY ProcessingTimeSecs DESC

View file

@ -1,9 +1,9 @@
SELECT
FilterListId,
ModifiedDateUtc - CreatedDateUtc,
FilterListId,
ModifiedDateUtc - CreatedDateUtc As ProcessingTimeSecs,
CreatedDateUtc,
ModifiedDateUtc,
IsCompleted
FROM snapshots
WHERE ModifiedDateUtc - CreatedDateUtc > 30 OR IsCompleted = 0
ORDER BY ModifiedDateUtc - CreatedDateUtc DESC
ORDER BY ProcessingTimeSecs DESC