Instruire
Modul
Manage data privacy and governance with Azure Databricks - Training
Manage data privacy and governance with Azure Databricks
Acest browser nu mai este acceptat.
Faceți upgrade la Microsoft Edge pentru a profita de cele mai noi funcții, actualizări de securitate și asistență tehnică.
Applies to: Databricks SQL
Databricks Runtime
Important
This function is not supported by Unity Catalog.
Denies a privilege on a securable object to a principal. Denying a privilege takes precedent over any explicit or implicit grant.
Denying a privilege on a schema
(for example a SELECT
privilege) has the effect of implicitly denying that privilege on all
objects in that schema. Denying a specific privilege on the catalog implicitly
denies that privilege on all schemas in the catalog.
Notă
This statement applies only to the hive_metastore
catalog and its objects.
Important
To undo a DENY
you REVOKE
the same privilege from the principal.
DENY privilege_types ON securable_object TO principal
privilege_types
{ ALL PRIVLEGES |
privilege_type [, ...] }
privilege_types
This identifies one or more privileges the principal
is denied.
ALL PRIVILEGES
Deny all privileges applicable to the securable_object
.
A specific privilege to deny the principal
on this securable_object
The object on which the privileges are denied to the principal.
The user or group whose privileges are denied.
-- Deny Alf the right to query `t`.
> DENY SELECT ON TABLE t TO `alf@melmak.et`;
-- Undo the the `DENY`.
> REVOKE SELECT ON TABLE t FROM `alf@melmak.et`;
Instruire
Modul
Manage data privacy and governance with Azure Databricks - Training
Manage data privacy and governance with Azure Databricks
Documentație
Access control lists - Azure Databricks
Learn how to manage access to Azure Databricks securable objects.
Compute configuration reference - Azure Databricks
Learn about the compute configuration settings available in Databricks.
ALTER GROUP - Azure Databricks - Databricks SQL
Learn how to use the ALTER GROUP syntax of the SQL language in Databricks SQL and Databricks Runtime.