Re: How to search all tables for a particular field?

2001-07-19 Thread Dennis M. Heisler
dba_tab_columns igor z wrote: > > 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:

RE: How to search all tables for a particular field?

2001-07-19 Thread Deshpande, Kirti
: Multiple recipients of list ORACLE-L > Subject: How to search all tables for a particular field? > > Hi, > > I am looking for a particular field if it exists in a database. How to > search all tables for a particular field?

Re: How to search all tables for a particular field?

2001-07-19 Thread Gene Gurevich
select table_name from dba_tab_columns where column_name = 'YourFieldName' Is that what you are looking for? Gene --- igor z <[EMAIL PROTECTED]> wrote: > Hi, > > I am looking for a particular field if it exists in > a database. How to > search all tables for

RE: How to search all tables for a particular field?

2001-07-19 Thread Kathy Duret
er and do this select: select table_name from user_tab_columns where column_name = ''; 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 al

RE: How to search all tables for a particular field?

2001-07-19 Thread lhoska
select table_name, column_name from sys.dba_tab_columns where column_name like 'http://explorer.msn.com/intl.asp -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: igor z INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San D

Re: How to search all tables for a particular field?

2001-07-19 Thread Igor Neyman
M > 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 > > _ > Get your FREE download of MSN Explorer

RE: How to search all tables for a particular field?

2001-07-19 Thread Jamadagni, Rajendra
If it is just a column, try selecting from DBA_TAB_COLUMNS ... HTH Raj __ Rajendra Jamadagni MIS, ESPN Inc. Rajendra dot Jamadagni at ESPN dot com Any opinion expressed here is personal and doesn't reflect that of ESPN Inc. QOTD: A

RE: How to search all tables for a particular field?

2001-07-19 Thread Vergara, Michael (TEM)
a PBS mind in an MTV world Oracle DBA | Guidant Corporation | -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 fo

Re: How to search all tables for a particular field?

2001-07-19 Thread Rocky Welch
Hi Igor, Try: Select table_name from all_tab_columns where column_name = ''; HTH, -Rocky --- igor z <[EMAIL PROTECTED]> wrote: > Hi, > > I am looking for a particular field if it exists in a database. How to > search all tables for a particular field? &g

Re: How to search all tables for a particular field?

2001-07-19 Thread Pat Hildebrand
> > I am looking for a particular field if it exists in a database. How to > search all tables for a particular field? > If you really mean all select table_name from dba_tab_columns where column_name = 'FIELD'; Be sure that the field you are looking for is

How to search all tables for a particular field?

2001-07-19 Thread igor z
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 _ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp