Created
September 10, 2016 14:19
-
-
Save kerbelp/96dc2acedeb9b06a31f5a1e856f0188f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT TRUNC(starttime) AS day, | |
colname, | |
err_reason, | |
COUNT(*) AS amount | |
FROM stl_load_errors | |
WHERE starttime >sysdate -1 | |
GROUP BY day, | |
colname, | |
err_reason | |
ORDER BY day, | |
amount DESC; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment