and here is the dba_data_files query
FILE_ID TABLESPACE_NAME BYTES BLOCKS STATUS RELAT
IVE_F AUT MAXBYTES MAXBLOCKS INCREMENT_ USER_BYTES USER_BLOCK
6 INDX 339437568 165741 AVAILABLE
6 YES 8589930496 4194302 1 339435520 165740
I am sorry i am not able to find out the owner because with that table name there are many owner
this is the query of dba_free_space
TABLESPACE_NAME FREE_BLK FREE_M BIG_CHUNCK NUM_CHUNCK
------------------------------ ---------- ---------- ---------- ----------
INDX 65 0 30 5
Did I mention dba_free_space any where?? hummm.. crazy DBA you are..
try this
select username, tablespace_name, bytes from dba_ts_quotas
where username in
(select owner from dba_indexes where table_name='<>')
/
from the output, you should be able to see the tablespace name on which user is not able to extend.. and find out the corresponding username and use the following syntex to increase the quota
alter user <>
quota <> on <>
/
If you dont know what to do with these, just give me the out put of 1st query.. I will supply you the feedback...
Thanks but the first query is showing the users tablespace and the error log shows this:---
error no: -1536
error msg: ORA-01536: space quota exceeded for tablespace 'INDX'
Bookmarks