3

I want to find a number or string in a very large database. Is there any way to make an SQL Query that searches the entire database, and not just a single table?

I'm looking for something like:

select * from *;
Smandoli
  • 6,800
  • 3
  • 46
  • 80
PRO_gramista
  • 922
  • 1
  • 9
  • 25

1 Answers1

3

If you are using SQL Server this post from kd7 might be what you're looking for: How do I find a value anywhere in a SQL Server Database?

Community
  • 1
  • 1
xeraphim
  • 3,955
  • 8
  • 44
  • 89