You can give another user authority to update specific columns in your tables.
The following example shows you how to give LINDSAY the authority to update the LOCATION column in the CALENDAR table.
To give user authority for specific columns:
GRANT SELECT ON tablename TO userid
GRANT UPDATE(columnname) ON tablename TO userid
For more information on the GRANT SQL keyword, see the SQL reference manual for your database management system.