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 :)
这篇关于如何搜索和替换数据库中字符串的所有实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何搜索和替换数据库中字符串的所有实例?


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 更改自动增量起始编号? 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- SQL 临时表问题 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01