From: walter harms Date: August 12 2010 10:21am Subject: Re: Searching For Modules In a DB List-Archive: http://lists.mysql.com/mysql/222500 Message-Id: <4C63CB38.6030202@bfs.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Carlos Mennens schrieb: > I have a database called 'gaming' and with in that database there are > several tables and data. I was asked to find a module called 'ako > ldap' and disable it (setting it from 1 to 0). My question is how in > MySQL do I search for a string if I don't even know what table to > search in? I know how to search using the 'select' statement as long > as I know where the table data is. In this case I only know which > database but nothing more except what I am looking for. > > Can anyone please point me in the right direction? > hi Carlos, put your tables in one file each (dont remember the option) then you can do grep -l "string" /* every file where "string" is in will be shown. re, wh