Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: List users planning to meet during Open world

Re: List users planning to meet during Open world

From: Bill Gentry <gentry_at_allina.com>
Date: Mon, 26 Nov 2001 06:52:09 -0800
Message-ID: <F001.003CCC4E.20011126063521@fatcity.com>

Something like this will do the job:



spool table_space_usage.log
set pagesize 0
set linesize 80
select substr (segment_name,1,20)
  ,        bytes / 1024 kbytes
  ,        extents
  ,        blocks
  from     sys.dba_segments

  where owner = 'LAWSON'
   and segment_name like 'AP%'
   and segment_type = 'TABLE'
  order by segment_name
/
spool off;

Bill Gentry
DBA
Allina Health System
Minneapolis, MN 55403
612-775-1190
gentry_at_allina.com
----- Original Message -----
To: "Multiple recipients of list ORACLE-L" <ORACLE-L_at_fatcity.com> Sent: Monday, November 26, 2001 8:05 AM

> Hi,
> is there a way to get the size in MB of a particular table in my
> database ?
>
>
> Thank You,
>
> Gavin
>
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Gavin D'mello
> INET: gavin_d_at_tis.co.in
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Bill Gentry
  INET: gentry_at_allina.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
Received on Mon Nov 26 2001 - 08:52:09 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US