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

Home -> Community -> Usenet -> c.d.o.server -> Re: User's quota?

Re: User's quota?

From: Przemysław Pakulski <przemop_at_talex.com.pl>
Date: Tue, 13 Oct 1998 08:13:08 +0200
Message-ID: <6vuqtq$i4u$1@sunflower.man.poznan.pl>

Jimmy napisał(a) w wiadomości: <3622B65A.6A6FD25_at_comp.polyu.edu.hk>...
>Hello all,
>
> Is it possible to find the user disk quota in Oracle 7.3 using SQL
>statement?
>
>Thanks
>Jimmy
>

You can try select system view DBA_TS_QUOTAS.

            select tablespace_name,username,max_bytes
            from dba_ts_quotas
            where username=:username;

This give user quota in each tablespace Each tablespace has one or more datafiles ( maybe on different disks )

You can check where the tablespace is located by selecting system view DBA_DATA_FILES; Received on Tue Oct 13 1998 - 01:13:08 CDT

Original text of this message

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