MySQL导入数据库失败
我有 2 个 MySQL 数据库 1_029f4ab_0
和 1_029f4ab_1
我想将 1_029f4ab_0
的内容复制到 1_029f4ab_1
两者的结构数据库是相同的
我导出了 WordPress 数据库
1_029f4ab_0
并且文件以localhost.sql
的形式保存到我的笔记本电脑在 phpMyAdmin 中,我选择了第二个 WordPress 数据库
1_029f4ab_1
并选择“admin”以便导入1_029f4ab_0
数据库。
MySQL 说: 文档
#1044 - 用户“1_029f4ab_1”@“localhost”访问数据库“1_029f4ab_0”被拒绝
I have 2 MySQL databases 1_029f4ab_0
and 1_029f4ab_1
I want to copy the contents of 1_029f4ab_0
into 1_029f4ab_1
The structure of both databases are identical
I EXPORTED a WordPress database
1_029f4ab_0
and file was saved aslocalhost.sql
to my laptopIn phpMyAdmin, I selected the second WordPress database
1_029f4ab_1
and chose "admin" in order to IMPORT the1_029f4ab_0
database.
MySQL said: Documentation
#1044 - Access denied for user '1_029f4ab_1'@'localhost' to database '1_029f4ab_0'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 SQL 文件是否包含
CREATE DATABASE 1_029f4ab_0;
或
使用 1_029f4ab_0;
如果是这样,请删除这些行并重新运行它。如果您从 PHPmyadmin 的顶层导出数据库,那么有时它可以将其添加到
Does your SQL file contain
CREATE DATABASE 1_029f4ab_0;
or
USE 1_029f4ab_0;
If so, delete those lines and re-run it. If you export the database from the top level in PHPmyadmin then sometimes it can add that in