반응형 테이블 용량 조회1 오라클 테이블별 용량 조회 --테이블 조회 SELECT * FROM all_tables; -- 테이블 전체 용량 select round(sum(num_rows * avg_row_len / 1024 / 1024 / 1024)) Gb from all_tables; -- 테이블별 용량 select table_name, round( (num_rows * avg_row_len/1024/1024),2) as "size(MB)", round( (num_rows * avg_row_len/1024/1024/1024),2) as "size(GB)" from USER_TABLES order by "size(GB)" desc; 유용하셨다면 댓글 부탁! 2022. 11. 11. 이전 1 다음 반응형