Skip to content

Instantly share code, notes, and snippets.

@s-chb
Last active July 15, 2020 07:48
Show Gist options
  • Save s-chb/77272249e214e785cc15e53cdd9632eb to your computer and use it in GitHub Desktop.
Save s-chb/77272249e214e785cc15e53cdd9632eb to your computer and use it in GitHub Desktop.
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