I'm trying to figure out how to locate all occurrences of a url in a database. I want to search all tables and all fields. But I have no idea where to start or if it's even possible.
|
|
A simple solution would be doing something like this:
Then you can just do a find on myfile.sql for the URL you want. |
||
|
|
|
|
Brute force method
This will create a script that you could execute on the database.
etc. |
||
|
|
|
|
Scott gives a good example of how to do it, but the question is why would you want to? If you need to do a find-and-replace on a specific string, you could also try doing a mysqldump of your database, do a find-and-replace in an editor, then re-load the database. Maybe if you gave some background on what you are trying to achieve, others might be able to provide better answers. |
||
|
|
|
|
Not an elegant solution, but you could achieve it with a nested looping structure
You could probably speed this up by checking which columns contain strings while building your column array, and also by combining all the columns per table in one giant, comma-separated WHERE clause. |
|||
|
