Granting the Right to Administer an Object-Level Privilege

Grant the privilege to allow a user to pass a specific object privilege on to other users.

Prerequisites

At least one of these conditions:

Task
  1. Connect to the database.
  2. To grant the right to grant a privilege to another user, enter:
    GRANT Object_privilege _name 
      ON table_name
      TO userID [,...]
      WITH GRANT OPTION

Example:

This statement grants the privilege to Mary to perform deletes on the table Sales:

GRANT DELETE ON Sales TO Mary

This statement grants the right to Joe to both perform deletes on the table Sales and grant the DELETE privilege to other users:

GRANT DELETE ON Sales TO Joe
WITH GRANT OPTION
Related tasks
Granting the Right to Administer an Object-Level Privilege
Related reference
GRANT Object-Level Privilege Statement