SHOW STREAM Syntax
[<schema name>.]<stream name>- output the DDL statement of the given stream<schema name>.*- output the DDL statements of all streams under the given schema*- output the DDL statements of all streams
The response to
SHOW STREAM is a single-column result set
with the DDL statement as the value in the DDL column.Parameters
<schema name>
<schema name>
Name of the schema containing the stream(s) to show
<stream name>
<stream name>
Name of the stream to show
Examples
To output the DDL for a stream,kin_stream:
SHOW STREAM Example