|

Q: Can I grant privileges on individual column in DBMaker?
A: Yes, privileges can be granted at the column level using the dmSQL tool. The syntax is as follows:

Suppose you want to grant the UPDATE privilege on the column COMPANY to the user Lynn. The syntax is as follows:
dmSQL> GRANT UPDATE(COMPANY) TO Lynn;
|