Find out free space on tablespace

后端 未结 10 1653
北荒
北荒 2020-12-12 12:21

Our application has failed a few times because an \'ORA-01536: space quota exceeded for tablespace\', and we would like to be able to prevent this by checking regularly the

10条回答
  •  北海茫月
    2020-12-12 12:45

    The following query will help to find out free space of tablespaces in MB:

    select tablespace_name , sum(bytes)/1024/1024 from dba_free_space group by tablespacE_name order by 1;
    

提交回复
热议问题