You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| ALL | All | Grants all the privileges for the specified object type. |
110
-
| ALTER | Global, Database, Table, View | Alters a database, table, user or UDF. |
111
-
| CREATE | Global, Table | Creates a table or UDF. |
112
-
| CREATE DATABASE | Global | Creates a database or UDF. |
113
-
| CREATE WAREHOUSE | Global | Creates a warehouse. |
114
-
| DELETE | Table | Deletes or truncates rows in a table. |
115
-
| DROP | Global, Database, Table, View | Drops a database, table, view or UDF. Undrops a table. |
116
-
| INSERT | Table | Inserts rows into a table. |
117
-
| SELECT | Database, Table | Selects rows from a table. Shows or uses a database. |
118
-
| UPDATE | Table | Updates rows in a table. |
119
-
| GRANT | Global | Grants / revokes privileges to / from a user or role. |
120
-
| SUPER | Global, Table | Kills a query. Sets global configs. Optimizes a table. Analyzes a table. Operates a stage(Lists stages. Creates, Drops a stage), catalog or share. |
| ALL | All | Grants all the privileges for the specified object type. |
110
+
| ALTER | Global, Database, Table, View | Alters a database, table, user or UDF. |
111
+
| CREATE | Global, Table | Creates a table or UDF. |
112
+
| CREATE DATABASE | Global | Creates a database or UDF. |
113
+
| CREATE WAREHOUSE | Global | Creates a warehouse. |
114
+
| CREATE CONNECTION | Global | Creates a connection. |
115
+
| DELETE | Table | Deletes or truncates rows in a table. |
116
+
| DROP | Global, Database, Table, View | Drops a database, table, view or UDF. Undrops a table. |
117
+
| INSERT | Table | Inserts rows into a table. |
118
+
| SELECT | Database, Table | Selects rows from a table. Shows or uses a database. |
119
+
| UPDATE | Table | Updates rows in a table. |
120
+
| GRANT | Global | Grants / revokes privileges to / from a user or role. |
121
+
| SUPER | Global, Table | Kills a query. Sets global configs. Optimizes a table. Analyzes a table. Operates a stage(Lists stages. Creates, Drops a stage), catalog or share. |
| CREATE CONNECTION | Global | Creates a connection. |
70
+
71
+
72
+
To create a connection, the user performing the operation or the [current_role](/guides/security/access-control/roles) must have the CREATE CONNECTION [privilege](/guides/security/access-control/privileges).
73
+
74
+
:::note
75
+
76
+
The enable_experimental_connection_rbac_check settings governs connection-level access control. It is disabled by default.
77
+
Connection creation solely requires the user to possess superuser privileges, bypassing detailed RBAC checks.
78
+
When enabled, granular permission verification is enforced during connection establishment.
79
+
80
+
This is an experimental feature and may be enabled by default in the future.
0 commit comments