Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

스트림 실행

...

Stream Startup

Executes the registered stream using the stored procedure. Once executed, the stream is continuously executed. Even if the server is restarted, the continuous stream query is executed for the data inputted after the last execution.

Code Block
EXEC STREAM_START(stream_name);

스트림 종료

...


Stream Shutdown

Use the following stored procedure to shut down a running stream.

Code Block
EXEC STREAM_STOP(stream_name);

스트림의 직접 실행

...


Direct execution of the stream

If the stream execution condition is set to BY USER, the query will not be executed without explicit call by the user. The following stored procedure is used to execute this stream query.

Code Block
EXEC STREAM_EXECUTE(stream_name);

호출할 스트림 질의를 생성할 때, BY USER조건으로 생성하지 않았거나, STREAM_START로 실행 상태로 전환하지 않은 경우, 오류가 발생한다When creating a stream query to be called, an error occurs if the stream is not created as a BY USER condition or if the stream has not been executed with STREAM_START.