Link to home
Start Free TrialLog in
Avatar of tablaFreak
tablaFreakFlag for United States of America

asked on

Best full database search tool for SQL Server

Hi - Can anyone recommend a tool for performing a database-wide, single entry field search, a-la Google, for SQL Server?
Thanks,
Steve
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
"...a-la Google, for SQL Server? "

That thing does not exists in SQL(and many other RDBMS database engines) as far as I'm aware. You would have to write code to search against each and any "text" like (char, varchar, nchar, etc) columns for the "word" or "phrase" you are looking for.
Avatar of tablaFreak

ASKER

Thanks, Éric!