Last active
June 28, 2020 12:54
-
-
Save vvgsrk/7a3cb53e34f40b511da032938bb283a1 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 scheduled_time, name, state | |
FROM TABLE(information_schema.task_history()) | |
WHERE database_name = 'DB_DEV' | |
AND schema_name = 'REVENUE' | |
AND name = 'FA_UNLOAD_TASK' | |
ORDER BY completed_time desc; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment