size of schema [message #154269] |
Fri, 06 January 2006 09:09 |
alanm
Messages: 284 Registered: March 2005
|
Senior Member |
|
|
Hi,
I think this is the correct forum.
Is it possible to find out how big a users schema is.
I have a large DB 275GB of which I need to export individual users (schemas)
regards
Alan.
|
|
|
|
Re: size of schema [message #154276 is a reply to message #154269] |
Fri, 06 January 2006 10:00 |
DanielRey
Messages: 11 Registered: January 2006 Location: Mendoza, Argentina
|
Junior Member |
|
|
Hi Sai, Hi Alan
That's correct, but probabily this minor modification can be usefull for Alan:
select OWNER, sum(bytes)/(1024*1024*1024) "GB"
from dba_segments
GROUP BY owner;
Regards.
Daniel
[Updated on: Fri, 06 January 2006 10:01] Report message to a moderator
|
|
|
|