有没有办法将mysql数据库中的所有数据复制到另一个数据库中? (phpmyadmin)

发布于 2024-08-28 18:13:43 字数 73 浏览 3 评论 0原文

我想将所有表、字段和数据从本地服务器 mysql 复制到我的托管站点 mysql。有没有办法复制所有数据? (只有26kb,非常小)

I want to copy all the tables, fields, and data from my local server mysql to my hosting sites mysql. Is there a way to copy all the data? (It's only 26kb, very small)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

旧梦荧光笔 2024-09-04 18:13:43

在 phpMyAdmin 中,只需导出转储(使用 export)选项卡,然后使用 sql 选项卡将其重新导入到其他服务器上。

确保比较结果,我已经不止一次让 phpMyAdmin 搞砸了导入。

组合

mysqldump -u username -p databasename > dump.sql

如果您对两台服务器都有 shell 访问权限,则根据我的经验,目标服务器上的和 a 的

mysql -u username -p databasename < dump.sql

是更快、更可靠的替代方案。

In phpMyAdmin, just export a dump (using the export) tab and re-import it on the other server using the sql tab.

Make sure you compare the results, I have had phpMyAdmin screw up the import more than once.

If you have shell access to both servers, a combination of

mysqldump -u username -p databasename > dump.sql

and a

mysql -u username -p databasename < dump.sql

on the target server is the much more fast and reliable alternative in my experience.

美男兮 2024-09-04 18:13:43

请按照以下步骤操作:

  1. 使用 MySQLAdmin 或您首选的方法创建目标数据库。在此示例中,db2 是目标数据库,源数据库 db1 将复制到其中。

  2. 在命令行上执行以下语句:

mysqldump -h [服务器] -u [用户] -p[密码] db1 | mysql -h [服务器]
-u [用户] -p[密码] db2

注意:-p 和 [密码] 之间没有空格

我从 不使用 mysqldump 复制/复制数据库
效果很好。运行此命令时请确保您不在 mysql 内。

Please follow the following steps:

  1. Create the target database using MySQLAdmin or your preferred method. In this example, db2 is the target database, where the source database db1 will be copied.

  2. Execute the following statement on a command line:

mysqldump -h [server] -u [user] -p[password] db1 | mysql -h [server]
-u [user] -p[password] db2

Note: There is NO space between -p and [password]

I copied this from Copy/duplicate database without using mysqldump.
It works fine. Please ensure that you are not inside mysql while running this command.

鸠书 2024-09-04 18:13:43

如果两个系统上的mysql版本相同(或者具有兼容db文件sytsem的版本),则可以直接复制数据文件。通常文件保存在unix系统上的/var/lib/mysql/中。

If you have the same version of mysql on both systems (or versions with compatible db file sytsem), you may just copy the data files directly. Usually files are kept in /var/lib/mysql/ on unix systems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文