Re: Looking for a Column Name in 8.05

From: DA Morgan <damorgan_at_exesolutions.com>
Date: Mon, 27 Jan 2003 15:33:53 -0800
Message-ID: <3E35C1E1.942CF5F5_at_exesolutions.com>


Tim Marshall wrote:

> Hi there, I'm trying to find all column names that contain a certain
> text, say "part" in my Oracle tables.
>
> I've tried:
>
> select column_name from all_all_tables where column_name like '%part%'
>
> And this does not work. Any suggestions? Thanks in advance.
> --
> Tim - http://www.ucs.mun.ca/~tmarshal/
> ^o<
> /#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
> /^^ "Want some?" - Ditto

[Quoted] SELECT table_name, column_name
FROM all_tab_columns
WHERE column_name LIKE '%PART%';

Daniel Morgan Received on Tue Jan 28 2003 - 00:33:53 CET

Original text of this message