relationalai.api.resume_data_stream()
resume_data_stream(object_fq_name STRING)Resumes a suspended or quarantined data stream.
Requires the cdc_admin application role.
Parameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
object_fq_name | STRING | The fully-qualified name of the source table or view in Snowflake, e.g. '<db>.<schema>.<table_or_view>'. |
Returns
Section titled “Returns”STRING
Example
Section titled “Example”Use api.resume_data_stream() to resume a suspended or quarantined data stream.
-- Resume a data stream. Replace the placeholders with your database, schema,-- and table or view name.CALL relationalai.api.resume_data_stream('<db>.<schema>.<table_or_view>');/*+---------------------+ | Data stream resumed | +---------------------+ */See Data Management for more information on data streams.