Define, alter the structure of, and drop schema objects. More specifically:
-
create, alter, and drop schema objects and other database structures, including for DBA the database itself and database users (CREATE,ALTER,DROP)
-
change the names of schema objects (RENAME)
-
delete all the data in schema objects without removing the objects' structure (TRUNCATE)
-
gather statistics about schema objects, validate object structure, and list chained rows within objects (ANALYZE)
-
turn auditing options on and off (AUDIT,NOAUDIT)
-
add a comment to the data dictionary (COMMENT)
|