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

Home -> Community -> Usenet -> c.d.o.tools -> Re: command for getting information on my schema

Re: command for getting information on my schema

From: <steveee_ca_at_my-deja.com>
Date: Thu, 04 Jan 2001 17:51:55 GMT
Message-ID: <932d7n$l1j$1@nnrp1.deja.com>

Hi Chuck,

Try selecting from the USER_SEQUENCES view to get information on sequences you have created..as for privileges try this (substitute 'DBA' where I have put 'USER' if it's appropriate):

select table_name from dict
where table_name like'USER%PRIVS%';

To list all of the data dictionary views available you can type:

select table_name from dict;

Just use a WHERE clause to shorten the list to what you want..

Have fun!

Steve

In article <930hgc$nf4$1_at_nntp6.u.washington.edu>,   "Chuck" <cabenson_at_u.washington.edu> wrote:
> What SQL command or statement can I use to get information on my
 schema? For
> example, I want to review the configuration of Sequences I have
 created. I
> also want to know how various privileges are configured.
>
> Thanks,
> Chuck
>
>

Sent via Deja.com
http://www.deja.com/ Received on Thu Jan 04 2001 - 11:51:55 CST

Original text of this message

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