문제

I've loaded .tbl files in the tables, now how I can see the total space used on the disk by the database? I'm using Fedora

도움이 되었습니까?

해결책

The disk footprint can be assessed using the (Linux) command 'du' on the dbfarm directory or to run the query 'select * from storage();

Source: http://www.monetdb.org/Documentation/Userguide/diskspace

다른 팁

You can try as follows:

mclient -d dwh -f tab -s "select location from storage() where table='name_of_a_table';" | xargs -i du -m /var/monetdb5/dbfarm/dwh/bat/{}.tail | cut -f1 | paste -sd+ | bc
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top