EXPERT RESPONSE
The user has probably been granted the UNLIMITED TABLESPACE system privilege which overrides the quota setting. Revoke this from the user as follows:
REVOKE unlimited tablespace FROM scott;
The user should no longer be able to create tables in that tablespace.
|