नोट
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप साइन इन करने या निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
इस पेज तक पहुँच के लिए प्रमाणन की आवश्यकता होती है. आप निर्देशिकाओं को बदलने का प्रयास कर सकते हैं.
Applies to:
Databricks SQL
Databricks Runtime 16.4 and above
Unity Catalog only
Deletes a named policy from a securable.
To run this statement, you must have the MANAGE privilege on the target securable.
Syntax
DROP POLICY policy_name
ON { CATALOG catalog_name | SCHEMA schema_name | TABLE table_name }
Parameters
-
The name of the policy to drop. If the policy does not exist on the securable, Azure Databricks raises POLICY_NOT_FOUND.
-
The name of the catalog on which the policy is defined.
-
The name of the schema on which the policy is defined.
-
The name of the table on which the policy is defined.
Examples
> DROP POLICY ssn_mask ON CATALOG employees;
> DROP POLICY hide_eu_customers ON SCHEMA prod.customers;