Previous Topic: GRANT All Table Privileges ParametersNext Topic: GRANT All Table Privileges More Information


GRANT All Table Privileges Usage

Verification of Wildcarded Grants

When you grant all table privileges, you grant a combination of table access and table definition privileges. If you wildcard table-name, the verification at runtime of the user's access privilege is handled differently from verification of the user's definition privilege:

Granting All Privileges to All Users

The following GRANT statement gives all users all privileges on all table-like objects in the TEST schema:

grant all privileges
   on test.*
   to public;