특정 MySQL 테이블이 차지하는 디스크 공간을 결정하는 빠른 방법이 있습니까? 테이블은 MyISAM 또는 Innodb 일 수 있습니다.
특정 MySQL 테이블이 차지하는 디스크 공간을 결정하는 빠른 방법이 있습니까? 테이블은 MyISAM 또는 Innodb 일 수 있습니다.
답변:
테이블의 mydb.mytable
경우 다음을 위해 이것을 실행하십시오.
SELECT (data_length+index_length) tablesize
FROM information_schema.tables
WHERE table_schema='mydb' and table_name='mytable';
SELECT (data_length+index_length)/power(1024,1) tablesize_kb
FROM information_schema.tables
WHERE table_schema='mydb' and table_name='mytable';
SELECT (data_length+index_length)/power(1024,2) tablesize_mb
FROM information_schema.tables
WHERE table_schema='mydb' and table_name='mytable';
SELECT (data_length+index_length)/power(1024,3) tablesize_gb
FROM information_schema.tables
WHERE table_schema='mydb' and table_name='mytable';
다음은 최대 단위 표시가 TB (TeraBytes) 인 일반 쿼리입니다.
SELECT
CONCAT(FORMAT(DAT/POWER(1024,pw1),2),' ',SUBSTR(units,pw1*2+1,2)) DATSIZE,
CONCAT(FORMAT(NDX/POWER(1024,pw2),2),' ',SUBSTR(units,pw2*2+1,2)) NDXSIZE,
CONCAT(FORMAT(TBL/POWER(1024,pw3),2),' ',SUBSTR(units,pw3*2+1,2)) TBLSIZE
FROM
(
SELECT DAT,NDX,TBL,IF(px>4,4,px) pw1,IF(py>4,4,py) pw2,IF(pz>4,4,pz) pw3
FROM
(
SELECT data_length DAT,index_length NDX,data_length+index_length TBL,
FLOOR(LOG(IF(data_length=0,1,data_length))/LOG(1024)) px,
FLOOR(LOG(IF(index_length=0,1,index_length))/LOG(1024)) py,
FLOOR(LOG(IF(data_length+index_length=0,1,data_length+index_length))/LOG(1024)) pz
FROM information_schema.tables
WHERE table_schema='mydb'
AND table_name='mytable'
) AA
) A,(SELECT 'B KBMBGBTB' units) B;
시도 해봐 !!!
SELECT (data_length+index_length)/power(1024,2) tablesize_mb, table_name FROM information_schema.tables WHERE table_schema='mydb' order by tablesize_mb;
mydb
크기별로 이름과 크기 가있는 모든 테이블 목록을 가져옵니다 .
이것은 InnoDB 테이블에는 정확하지 않습니다. 디스크의 크기는 실제로 쿼리를 통해보고 된 크기보다 큽니다.
자세한 내용은 Percona의이 링크를 참조하십시오.
https://www.percona.com/blog/2008/12/16/how-much-space-does-empty-innodb-table-take/
기본적으로 mysql이 설치된 Linux에서 :
[you@yourbox]$ ls -lha /var/lib/mysql/<databasename>
에서 촬영 내 데이터베이스가 사용하고있는 디스크 공간을 확인하려면 어떻게합니까?
phpMyAdmin
왼쪽 프레임에서 데이터베이스 이름을 클릭하고 오른쪽 프레임에서 거기에있는 테이블의 크기를 읽음으로써 제어판 에서 MySQL 테이블 크기를 확인할 수 있습니다 .
아래 쿼리는 동일한 정보를 얻는 데 도움이됩니다. bytes
select SUM(data_length) + SUM(index_length) as total_size
from information_schema.tables
where table_schema = 'db_name'
and table_name='table_name';
다음과 같이 ' mysqldiskusage '도구를 사용합니다.
$ mysqldiskusage --server=user:password@localhost mydbname
# Source on localhost: ... connected.
# Database totals:
+------------+----------------+
| db_name | total |
+------------+----------------+
| mydbaname | 5,403,033,600 |
+------------+----------------+
Total database disk usage = 5,403,033,600 bytes or 5.03 GB