有没有办法将mysql数据库中的所有数据复制到另一个数据库中? (phpmyadmin)
我想将所有表、字段和数据从本地服务器 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在 phpMyAdmin 中,只需导出转储(使用
export
)选项卡,然后使用sql
选项卡将其重新导入到其他服务器上。确保比较结果,我已经不止一次让 phpMyAdmin 搞砸了导入。
组合
如果您对两台服务器都有 shell 访问权限,则根据我的经验,目标服务器上的和 a 的
是更快、更可靠的替代方案。
In phpMyAdmin, just export a dump (using the
export
) tab and re-import it on the other server using thesql
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
and a
on the target server is the much more fast and reliable alternative in my experience.
查看
将 MySQL 数据库复制到另一台计算机
将 MySQL 数据库从一台服务器复制到另一台远程服务器
Have a look at
Copying MySQL Databases to Another Machine
Copy MySQL database from one server to another remote server
请按照以下步骤操作:
使用 MySQLAdmin 或您首选的方法创建目标数据库。在此示例中,db2 是目标数据库,源数据库 db1 将复制到其中。
在命令行上执行以下语句:
注意:-p 和 [密码] 之间没有空格
我从 不使用 mysqldump 复制/复制数据库。
效果很好。运行此命令时请确保您不在 mysql 内。
Please follow the following steps:
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.
Execute the following statement on a command line:
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.
如果两个系统上的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.