Last active
July 15, 2020 07:48
-
-
Save s-chb/77272249e214e785cc15e53cdd9632eb 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
CREATE STREAM PROCESS_LOGPICKR | |
WITH ( | |
KAFKA_TOPIC='process_logpickr', | |
VALUE_FORMAT='DELIMITED' | |
) AS | |
SELECT | |
PROC_DEF_ID_, | |
EXECUTION_ID_, | |
NAME_ , | |
START_TIME, | |
END_TIME | |
FROM transition | |
EMIT CHANGES; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment