Subject: Re: PCTUSED - How can I display the value of a table?
Newsgroups: comp.databases.oracle.misc
References: <334a49bd.59685883@news.superlink.net>
Reply-To: akaplan@interaccess.com
Thomas Kremer (Thomas.Kremer@orechem.NOSPAM.com) wrote:
: Hello,
:
: just a question regarding displaying some details about the table. How
: can I display the actuall values of a table XYZ? I want to see
: PCTUSED, PCTFREE.
:
: Thanks a lot
:
: The text of my message is reflecting my private opinion!
: To reply please get rid of the NOSPAM in my e-mai address!
Thomas,
You can do the following select:
SELECT owner, table_name, pct_used, pct_free
FROM all_tables
WHERE table_name = 'XYZ';
-Ari Kaplan
Independent Oracle DBA Consultant
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 70+ technical tips, visit my Web Page: <->
<-> <->
<-> www.arikaplan.com <->
<-> <->
<-> email: akaplan@interaccess.com <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
Back to Ari Kaplan's Home Page