Statements in Oracle DCL Statements in Oracle DCL is one of the subset in Oracle, DCL is Data Control Language, which is mainly used to get and give access to the other users. In the previous session, that we have discussed about the DML (Data Manipulation Language) , DDL (Data Define Language) , to access those this DCL command is required. In other words we can say giving authorization to the objects and data which are stored in the database. List of Commands of DCL GRANT REVOKE GRANT => Grant is used to giving permission or privileges to other schema. REVOKE => Revoking (removing) the permission that was given to any user or schema. Syntax for DCL GRANT GRANT privileges ON Objects to schema; For example: privileges : SELECT, UPDATE, DELETE, INSERT objects are : Table, view, Materialized views etc. ------ Updating permission in orders table for devuser2 schema. GRANT UPDATE ON orders TO devuser2; This grant permission is mainly used by the admin to give access only for the