Re: Global search and replace utility

2008-10-09 Thread Rob Wultsch
On Thu, Oct 9, 2008 at 4:21 PM, mike cantor <[EMAIL PROTECTED]> wrote: > Does anyone know of a utility that can go through a set of tables (or every > table) in a MySql database and preform a global search and replace (i.e. > replace every instance "string1" in a text fiel

Global search and replace utility

2008-10-09 Thread mike cantor
Does anyone know of a utility that can go through a set of tables (or every table) in a MySql database and preform a global search and replace (i.e. replace every instance "string1" in a text field with "string2"). Or is there a super clever query that accomplishes this?

Re: global search

2005-12-14 Thread SGreen
... > > > Is it possible to use wildchars for the search, something like select * > > > from step1_* ? > > Thanks, > melanie > > >From: Gleb Paharenko <[EMAIL PROTECTED]> > >To: mysql@lists.mysql.com > >Subject: Re: global search > >Date: We

Re: global search

2005-12-14 Thread mel list_php
for > ex step1_table,step1_table2, step2_table > Is it possible to use wildchars for the search, something like select * > from step1_* ? Thanks, melanie From: Gleb Paharenko <[EMAIL PROTECTED]> To: mysql@lists.mysql.com Subject: Re: global search Date: Wed, 14 Dec 2005 12:

Re: global search

2005-12-14 Thread Gleb Paharenko
RMATION_SCHEMA databases in MySQL 5.0. mel list_php wrote: > Hi, > > I was wondering if there is any way to do a global search through all > the tables in mysql? (not taking into account the performance issue) > > If for example I want to search "ABC" in all

global search

2005-12-14 Thread mel list_php
Hi, I was wondering if there is any way to do a global search through all the tables in mysql? (not taking into account the performance issue) If for example I want to search "ABC" in all the columns of one table: select * from table where [whatever the column] like '%ABC%'

Re: global search and replace

2001-02-20 Thread Ed Carp
Matt Davis ([EMAIL PROTECTED]) writes: > I have an MySQL table in which one of the fields is a list of different > catergorys. I want to change that catergory name to some thing else however > it appears in my table just over 900 times. Is there any way I can do some > sort of glabal search and r

global search and replace

2001-02-20 Thread Matt Davis
I have an MySQL table in which one of the fields is a list of different catergorys. I want to change that catergory name to some thing else however it appears in my table just over 900 times. Is there any way I can do some sort of glabal search and replace in My SQL? Mat --