DROP SECRET¶
从系统中移除密钥。
语法¶
DROP SECRET [ IF EXISTS ] <name>
参数¶
name
指定要删除的密钥的标识符。如果标识符包含空格或特殊字符,则整个字符串必须放在双引号内。放在双引号内的标识符也区分大小写。
访问控制要求¶
权限 |
对象 |
备注 |
---|---|---|
OWNERSHIP |
密钥 |
OWNERSHIP is a special privilege on an object that is automatically granted to the role that created the object, but can also be transferred using the GRANT OWNERSHIP command to a different role by the owning role (or any role with the MANAGE GRANTS privilege). |
请注意,对架构中的对象进行操作还需要对父数据库和架构具有 USAGE 权限。
有关创建具有指定权限集的自定义角色的说明,请参阅 创建自定义角色。
使用说明¶
无。
示例¶
弃用一个密钥:
DROP SECRET service_now_creds;