Which of the following is not DATABASE privilege?
-
A. REPAIR
-
B. UPDATE
-
C. LOAD
-
D. IMAGCOPY
In DB2, REPAIR, LOAD, and IMAGCOPY are database-level utilities that require special privileges. UPDATE is a standard DML (Data Manipulation Language) operation that operates on table-level data, not a database administration privilege.
In DB2 (z/OS), DATABASE-level privileges control operations scoped to a whole database — examples include LOAD (load data into tablespaces), IMAGCOPY (take image copies for backup/recovery), REPAIR (repair database structures via the REPAIR utility), CREATETAB, DROPIN, STARTDB, STOPDB, etc. UPDATE, by contrast, is a TABLE (or plan/package) privilege — it grants the ability to modify rows in a specific table, not to administer the database as a whole. So UPDATE is correctly identified as not a DATABASE privilege, while REPAIR, LOAD, and IMAGCOPY are genuine DATABASE privileges/utility grants.