How to search and replace all instances of a string within a database?(如何搜索和替换数据库中字符串的所有实例?)
问题描述
我有一个字符串,它在 wordpress 安装(服务器的名称)中包含数千次,跨越多个列、记录和表.
I have a string that is contained inside of a wordpress install (the name of a server) thousands of times, across multiple columns, records and tables.
我想用另一台服务器的位置更新它 - 我们正在移动内容.
I'd like to update it with the location of another server - we are moving the content over.
所以源将类似于 http://my-server1/some/link/to/something,我想用 http://my-other-server/some/link/to/something.我基本上希望为 http://my-server1 的每个实例重复这个过程.
So the source would be something like http://my-server1/some/link/to/something, and I'd want to replace it with http://my-other-server/some/link/to/something. I'm essentially looking to repeat this process for every instance of http://my-server1.
在 MySQL 中有没有一种简单的方法可以做到这一点?一个工具?或者我很遗憾必须有问题地更新每条记录?
Is there an easy way to do this in MySQL? A tool? Or do I sadly have to update every record problematically?
谢谢,
推荐答案
一种粗略(但有效)的方法是将模式转储到文件中,仔细应用搜索和替换,然后重新导入.
A crude (but effective) way of doing it would be to dump the schema into a file, carefully apply the search-and-replace and then re-import.
事实上我今天做到了:)
As a matter of fact I did that today :)
这篇关于如何搜索和替换数据库中字符串的所有实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何搜索和替换数据库中字符串的所有实例?
基础教程推荐
- 带更新的 sqlite CTE 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
