I have a massive database that I don't mind leaving to search for a while, but I can't dump the whole database for various reasons. What is the easiest query I can write that will search all fields of all tables in a database for a specific string of text?
The following won't work but should demonstrate what I would like to see:
SELECT * FROM * where * like '%mystring%'
Any ideas?