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 *;
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 *;
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?