Delete row security policy. For details about row security policies, please refer to the “Security Policies” chapter
DROP ROW POLICY <policy_name> on <table_name> [ FOR { <user_name> | ROLE <role_name> } ];
<policy_name>
Row security policy name
<table_name>
Table name
<user_name>
User name
<role_name>
Role name
The user executing this SQL command must have at least the following privileges:
| Privilege | Object | Notes |
|---|---|---|
| ADMIN_PRIV or GRANT_PRIV | Global |
DROP ROW POLICY policy1 ON db1.table1
DROP ROW POLICY policy1 ON db1.table1 FOR user1
DROP ROW POLICY policy1 ON db1.table1 FOR role role1