QUOTA in Tablespace
For Example:
oracle configurationintermediate
by OracleDba
13 views
For Example:
1234567
ALTER USER username QUOTA size ON tablespace_name;
ALTER USER PDBUSER QUOTA 500M ON users;
ALTER USER username QUOTA 0 ON tablespace_name;
-- or
ALTER USER username QUOTA UNLIMITED ON tablespace_name;12345678910
ALTER USER PDBUSER QUOTA 0 ON users;
SELECT tablespace_name, username, bytes, max_bytes
FROM dba_ts_quotas
WHERE username = 'USERNAME';
SELECT tablespace_name, username, bytes, max_bytes
FROM dba_ts_quotas
WHERE username = 'PDBUSER'
;Please to add comments
No comments yet. Be the first to comment!