Skip to main content

ALTER SINK

The ALTER SINK command modifies the definition of a sink.

Syntax

ALTER SINK sink_name 
alter_option;

alter_option depends on the operation you want to perform on the sink. For all supported clauses, see the sections below.

Clause

OWNER TO

Syntax
ALTER SINK sink_name
OWNER TO new_user;
Parameter or clauseDescription
OWNER TOThis clause changes the owner of the sink. This will cascadingly change all related internal-objects as well.
new_userThe new owner you want to assign to the sink.
Example
-- Change the owner of the sink named "sink1" to user "user1"
ALTER SINK sink1 OWNER TO user1;

SET SCHEMA

Syntax
ALTER SINK sink_name
SET SCHEMA schema_name;
Parameter or clauseDescription
SET SCHEMAThis clause moves the sink to a different schema.
schema_nameThe name of the schema to which the sink will be moved.
Example
-- Move the sink named "test_sink" to the schema named "test_schema"
ALTER SINK test_sink SET SCHEMA test_schema;

RENAME TO

Syntax
ALTER SINK sink_name
RENAME TO new_name;
Parameter or clauseDescription
RENAME TOThis clause changes the name of the sink.
new_nameThe new name of the sink.
Example
-- Change the name of the sink named "sink0" to "sink1"
ALTER SINK sink0 RENAME TO sink1;

Help us make this doc better!

Was this page helpful?

Happy React is loading...