Home All Groups Group Topic Archive Search About

Object search query???

Author
19 Jan 2006 5:58 PM
Enric
Dear folks,

I am looking for a script which be able to replicate the same functionality
that 'Object Search' from QA (F4 key). I am looking for a specified column in
a database and the problem is that from the results panel of 'Object Search'
is not enabled the multiple selection so the way I only see the data.

Any though or idea would be appreciated.
Thanks in advance

Author
19 Jan 2006 8:47 PM
Sue Hoegemeier
If you are searching for a specific column in a database,
you can query information_schema.columns:
select *
from information_schema.columns
where column_name like 'whatever%'

-Sue

On Thu, 19 Jan 2006 09:58:04 -0800, "Enric"
<En***@discussions.microsoft.com> wrote:

Show quoteHide quote
>Dear folks,
>
>I am looking for a script which be able to replicate the same functionality
>that 'Object Search' from QA (F4 key). I am looking for a specified column in
>a database and the problem is that from the results panel of 'Object Search'
>is not enabled the multiple selection so the way I only see the data.
>
>Any though or idea would be appreciated.
>Thanks in advance

Bookmark and Share