March 3, 2007
Where has the disk space gone
To find out which tables are the biggest you can run this query:
SELECT
owner, segment_name, segment_type, tablespace_name,
SUM (BYTES / 1024 / 1024) sizemb
FROM dba_segments
GROUP BY owner, segment_name, segment_type, tablespace_name
ORDER BY sizemb DESC
Recovering disk space
Most of the following was learned from this forum post. As tables grow, it [...]
Read the full article →
March 3, 2007
Its really easy to convert a DVD or CD into an ISO file. Its really fast too (10MB/s or 5 mins for 3.6GB).
Use the dd command to create an ISO image:
dd if=/dev/dvd of=/tmp/mydvd.iso
Now, if you want to access the contents of this ISO image you can mount it and access it like a normal DVD [...]
Read the full article →