Monday, October 12, 2009

How much a Database user use space

How much a Database user use space ?
solution:

---in Mega bytes

SELECT SUM (BYTES) / 1024 / 1024 mb
FROM dba_segments
WHERE owner = 'SCOTT';

No comments: