Granting the Right to Grant Permissions

To assign table and view permissions, use the GRANT statement clause WITH GRANT OPTION.

This option gives the right to pass on the permission to other users.

For example, to grant permission to M_Haneef to delete rows from the table named sample_table, and the right to pass on this permission to other users:

  1. Connect to the database as a user with DBA or PERMS ADMIN authority, or as the owner of sample_table:
  2. Type and execute the SQL statement:
    GRANT DELETE ON sample_table
    TO M_Haneef
    WITH GRANT OPTION
Related concepts
Permissions of Groups
Related tasks
Granting Delete Permission on Tables and Views in Interactive SQL
Granting Permissions on Procedures in Interactive SQL
Granting Permissions on Procedures in Sybase Central
Granting Update Permission on Tables and Views in Interactive SQL
Granting User Permission on Tables in Sybase Central