Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
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;