Finding a column name in a database

  • Is there a script out there that will query a database and tell me where a column resides??  I have a column I need to find where it is storing info and I don't want to go thru each table looking for it...

    thanks for the help!!


    Thank you!!,

    Angelindiego

  • You can get this information from Information_schema views like this

    select

    * from information_schema.columns where column_name like 'colname%'

  • thank you so much for such a quick response!!


    Thank you!!,

    Angelindiego

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply