Database Objects (cont)
The catalog is manipulated by a range of SQL operations:
-
create Object as Definition
-
drop Object ...
-
alter Object Changes
-
grant Privilege on Object
where Object is one of table, view, function, trigger, schema, ...
E.g. drop table Groups; produces something like
delete from Tables where name = 'Groups';
|
|