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,919
  • 3
  • 49
  • 83
PRO_gramista
  • 922
  • 1
  • 9
  • 26

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
  • 4,375
  • 9
  • 54
  • 102