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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Refresh group

Re: Refresh group

From: DA Morgan <damorgan_at_psoug.org>
Date: Wed, 31 Jan 2007 08:56:51 -0800
Message-ID: <1170262606.856378@bubbleator.drizzle.com>


Luch wrote:
> Is there an equivlanent schema/user view to this view:
> SELECT *
> FROM SYS.rgroup$
> ;
>
> Just like there is SYS.ALL_TABLES and the equivalent USER_TABLES, I
> want the user equivalent of RGROUP$, so i can see within the user if a
> refresh group exists or not.

SQL> select name from dba_dependencies

   2 where referenced_name = 'RGROUP$'
   3 and type = 'VIEW'
   4 union
   5 select referenced_name from dba_dependencies    6 where name = 'RGROUP$'
   7 and type = 'VIEW';

NAME


DBA_REFRESH
DBA_REFRESH_CHILDREN
DBA_RGROUP

EXU81RGS
KU$_ADD_SNAP_VIEW
KU$_M_VIEW_VIEW
KU$_REFGROUP_VIEW

7 rows selected.

SQL> I'd look at the first three.

-- 
Daniel A. Morgan
University of Washington
damorgan_at_x.washington.edu
(replace x with u to respond)
Puget Sound Oracle Users Group
www.psoug.org
Received on Wed Jan 31 2007 - 10:56:51 CST

Original text of this message

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