Privileges on Tables and Views
For tables and views, unlike other metadata objects, it is possible to grant several privileges at once.
- SELECT
- 
Permits the user or object to SELECTdata from the table or view
- INSERT
- 
Permits the user or object to INSERTrows into the table or view
- DELETE
- 
Permits the user or object to DELETErows from the table or view
- UPDATE
- 
Permits the user or object to UPDATErows in the table or view, optionally restricted to specific columns
- REFERENCES
- 
Permits the user or object to reference the table via a foreign key, optionally restricted to the specified columns.If the primary or unique key referenced by the foreign key of the other table is composite then all columns of the key must be specified. 
- ALL [PRIVILEGES]
- 
Combines SELECT,INSERT,UPDATE,DELETEandREFERENCESprivileges in a single package