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: Table/Index Names of a User

Re: Table/Index Names of a User

From: Bill Bearden <bbearden_at_quincy.glenayre.com>
Date: 1997/05/16
Message-ID: <01bc61f2$783e9b00$1d51e69d@qcy_erp_6>#1/1

select table_name from dba_tables

	where owner=upper('&TableOwner')
	order by table_name;
select index_name, table_name
	from dba_indexes
	where owner=upper('&IndexOwner')
	order by index_name;

Bill Bearden
Consultant

Rao Uppuluri <rao_at_sparc10> wrote in article <5lfbet$5d0_at_client2.news.psi.net>...
>
>
> Hi
>
> I am using Oracle 7.3.2 for Solaris. I am new to Oracle and I am
> wondering if there is a way to know the table_names and index_names
> that a users owns from the system tables through a query.
> Any help is greatly appreciated.
>
> Thank you in advance
>
> Rao Uppuluri
>
> --
> /************************************************************/
> Rao Uppuluri : rao_at_intsec.com
> "All generalizations are wrong"
>
Received on Fri May 16 1997 - 00:00:00 CDT

Original text of this message

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