RightAn access right. Rights are regular database objects, but have generated names.
SELECT = 1The right bit mask that means: selecting from a table is allowed.
ALL = 15The right bit mask that means: select, insert, update, delete, and update
for this object is allowed.
ALTER_ANY_SCHEMA = 16The right bit mask that means: create/alter/drop schema is allowed.
DELETE = 2The right bit mask that means: deleting rows from a table is allowed.
INSERT = 4The right bit mask that means: inserting rows into a table is allowed.
UPDATE = 8The right bit mask that means: updating data is allowed.
|