Created
January 15, 2016 19:36
-
-
Save ctrlaltdylan/e66174e6d5c2d880447d to your computer and use it in GitHub Desktop.
redshift_error_log.sql
This file contains 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 le.starttime, d.query, d.line_number, d.colname, d.value, | |
le.raw_line, le.err_reason | |
from stl_loaderror_detail d, stl_load_errors le | |
where d.query = le.query | |
order by le.starttime desc | |
limit 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment