1) Close your site via the ACP.
2) Do a full site backup.
3) Run this query, change 'old name' and 'new name' as needed.
Code:
UPDATE post SET pagetext = REPLACE(pagetext, 'old name', 'new name')
So for example:
Opening tag:
Code:
UPDATE post SET pagetext = REPLACE(pagetext, '[TAG1]', '[TAG3]')
Closing tag.
Code:
UPDATE post SET pagetext = REPLACE(pagetext, '[/TAG1]', '[/TAG3]')
Remember this is case sensitive, so make sure you do it right.
Check out the site to make sure it is done right.
4) Reopen site via ACP if things are right, if not, restore your backup.