DROP USER
Purpose
Use this statement to delete a user as well as the schemas associated with that user including all of the schema objects contained therein.
Prerequisite
You need to have the system privilege DROP USER.
Syntax
drop_user::=
Usage Notes
- If
CASCADEis specified, all of the schemas of the user as well as their contents will be deleted. Furthermore, all foreign keys which reference the tables of the user are deleted database-wide. - If schemas that belong to the user still exist, then
CASCADEmust be specified or these schemas must be explicitly deleted beforehand by usingDROP SCHEMAstatement. - If the optional
IF EXISTSclause is specified, then the statement does not throw an exception if the user does not exist. - User sessions that were established before the commit of the
DROP USERstatement will still be active, but you can terminate them using the command KILL. To identify these active user sessions, refer to the columnsUSER_NAMEandEFFECTIVE_USERin system table EXA_DBA_SESSIONS, due to existence of the IMPERSONATE command. The EXA_DBA_SESSIONS table shows NULL for the dropped users. - For the administration of the SaaS platform, Exasol creates special users on the database which are used for administration and monitoring purposes. These users have the prefix
EXA_and are required for proper usage of the database. The following users are Exasol users:- EXA_SAAS_ADMIN_USER
- EXA_EXTERNAL_USAGE_USER
- EXA_MONITORING_USER
Do not modify the above users in any way. Modifying or deleting them will impact platform functionality.
Examples
DROP USER test_user1;
DROP USER test_user2 CASCADE;