List of database and table Properties in Oracle

P

parixit

Hi ,

Please any body, can tell me List of database and table Properties , that
has been given by Oracle, that all user can access ........

under which table they contains all information about Prperties
 
S

Smartin

parixit said:
Hi ,

Please any body, can tell me List of database and table Properties , that
has been given by Oracle, that all user can access ........

under which table they contains all information about Prperties

Hi parixit, I would like to know too, but this question is more likely
to be answered in a group that discusses Oracle. This newsgroup is about
Microsoft Access.
 
G

Guest

Smartin is right, but I'm willing to go OT here.

Run the following SQL in Oracle. It provides a list of of the views that you
can use. Could be around 250 of them if you have normal permissions. Look for
those with names starting with ALL_COL, ALL_IND, ALL_TAB, and ALL_VIEWS and
query them.

select view_name from all_views
where view_name like 'ALL%'
order by 1;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top