Granting Update Permission on Tables and Views in Interactive SQL

able and view permissions are limited in that they apply to all the data in a table or view (except for the UPDATE permission which may be restricted).

T Finer tuning of user permissions can be accomplished by creating procedures that carry out actions on tables, and then granting users the permission to execute the procedure.

To grant permission to M_Haneef to update the column_1 and column_2 columns only in the table named sample_table:

Connect to the database as a user with DBA or PERMS ADMIN authority, or as the owner of sample_table.

Type and execute the SQL statement:

GRANT UPDATE (column_1, column_2)
ON sample_table
TO M_Haneef
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 the Right to Grant Permissions
Granting User Permission on Tables in Sybase Central