MySQL导入数据库失败

发布于 2024-08-15 02:31:12 字数 522 浏览 6 评论 0原文

我有 2 个 MySQL 数据库 1_029f4ab_01_029f4ab_1

我想将 1_029f4ab_0 的内容复制到 1_029f4ab_1

两者的结构数据库是相同的

  1. 我导出了 WordPress 数据库 1_029f4ab_0 并且文件以 localhost.sql 的形式保存到我的笔记本电脑

  2. 在 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

  1. I EXPORTED a WordPress database 1_029f4ab_0 and file was saved as localhost.sql to my laptop

  2. In phpMyAdmin, I selected the second WordPress database 1_029f4ab_1 and chose "admin" in order to IMPORT the 1_029f4ab_0 database.

MySQL said: Documentation

#1044 - Access denied for user '1_029f4ab_1'@'localhost' to database '1_029f4ab_0'

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

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

发布评论

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

评论(1

最美的太阳 2024-08-22 02:31:12

您的 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

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