DROP STREAM
Syntax
DROP STREAM stream_name;Description
Drops an existing relation. Only the stream owner can execute this command.
Important DROP STREAM cannot be undone. Use it with care!
Arguments
stream_name
The name of the stream to drop. If the name is case sensitive you must wrap it in double quotes; otherwise the system uses the lower case name.
Example
Drop a stream using default database and schema
The following shows how to drop the stream named pageviews:
Drop a stream using a fully-qualified name
The following shows how to drop the stream named pageviews in the database otherdb and schema s1:
Last updated

