DROP USER always CASCADING for all dependent TABLES,VIEWs,....?
Assume I execute a
DROP USER user123;
command. Are in this case ALWAYS all dependent TABLEs, VIEWs, OBJECTs
with user123 as OWNER AUTOMATICALLY deleted as well?
if not: How can I achieve a cascading full delete otherwise?
What is the difference between
DROP USER
and
DROP SCHEMA
?
Peter