For a single table, following SQL query works fine to replace text:
UPDATE `TABLE_NAME` SET `COLUMN_NAME` = replace(COLUMN_NAME, 'Old_Text', 'New_Text')
I want to replace the keyword 'August' from the whole database to 'September'. Is there anything except manual find/replace on the dump
for replacing the text from whole database? The dump
would be of no help as database size is very huge.