Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Drop Streams

You can drop a stream with:

Code Block
themeEclipse
languagesql
linenumberstrue
DROP STREAM category

Since this statement would return an error if the stream "category" does not exist, you can add "IF EXISTS" to avoid this error (it checks, if the stream is existing before running the drop)

Code Block
themeEclipse
languagesql
linenumberstrue
DROP STREAM category IF EXISTS

Drop Sinks

You can drop a sink with:

Code Block
themeEclipse
languagesql
linenumberstrue
DROP SINK category

Since this statement would return an error if the stream "category" does not exist, you can add "IF EXISTS" to avoid this error (it checks, if the sink is existing before running the drop)

Code Block
themeEclipse
languagesql
linenumberstrue
DROP SINK category IF EXISTS