쿼리로 현재 사용중인 데이터베이스의 용량을 알 수 있다. http://theeye.pe.kr/442 참조. SELECT table_schema "Database Name", SUM(data_length + index_length) / 1024 / 1024 "Size(MB)" FROM information_schema.TABLES GROUP BY table_schema;