There is a system table ALL_TAB_COLUMNS which has the table names and column names. You can query it just like any other table - except in this case by column name.
Thank you for the response.But it seems like that store the column information of all tables.But I want to search all the matching table name containing 'IND' data.
As E Armitage said in his post, what kind of requirement is that ? You could still use ALL_TAB_COLUMNS to query all columns from all tables, but really, do you have to do that ?
Yes,
I have a huge database system have large number of records.And we have to do some changes to that perticular data,In which ever table that data is used.
StackOverflow has a post where someone wrote pl/sql to search the entire database. It's going to be slow as this is not a good requirement to have. I hope you don't need to run it often.