Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: How to search all tables for a particular field?
If you don't know the name of the owner or table name and can log in as SYS or SYSTEM or a user with DBA privileges use:
select owner, table_name from dba_tab_columns where column_name = 'XXXX';
If you are just looking for that column for a particular user, login as the user and do this select:
select table_name from user_tab_columns where column_name = 'XXXX';
Kathy
-----Original Message-----
Sent: Thursday, July 19, 2001 1:01 PM
To: Multiple recipients of list ORACLE-L
Hi,
I am looking for a particular field if it exists in a database. How to search all tables for a particular field?
Thanks in advance.
Igor
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: igor z
INET: igororacle_at_hotmail.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
Confidential
This e-mail and any files transmitted with it are the property
of Belkin Components and/or its affiliates, are confidential,
and are intended solely for the use of the individual or
entity to whom this e-mail is addressed. If you are not one
of the named recipients or otherwise have reason to believe
that you have received this e-mail in error, please notify the
sender and delete this message immediately from your computer.
Any other use, retention, dissemination, forwarding, printing
or copying of this e-mail is strictly prohibited.
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Kathy Duret
INET: KathyD_at_belkin.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Jul 19 2001 - 14:29:24 CDT
![]() |
![]() |