• Good article.

    Actually, with Nautilus [/url]you can find a table just writing part of its name and once located you can find a record writing any word which is compared with like if it's a string and with "=" if its an integer.

    The query is built for all the fields:

    select top 10 *

    from dbo.Customers (nolock)

    where CustomerID like '%ana%' or CompanyName like '%ana%' or ContactName like '%ana%'...

    Once the record is located, you can see it's related records (following the FK links).

    There is also a "google like" search where you write a word or number and looks for it in the whole database.

    Not much like google, but it works for developers.

    Thanks, Marcos (http://sourceforge.net/projects/nautilus/[/url])