Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The ALTER CONNECTION command modifies the definition of a connection. To use this command, you must own the connection.
ALTER CONNECTION
ALTER CONNECTION connection_name alter_option;
alter_option
SET SCHEMA
ALTER CONNECTION connection_name SET SCHEMA schema_name;
-- Change the schema of the connection named "test_conn" to a schema named "test_schema" ALTER CONNECTION test_conn SET SCHEMA test_schema;
Was this page helpful?