1

我已将数据库所需的所有内容存储在 phpmyadmin 中,并从中导出了我的数据库。那已保存为 Cloud.sql ,所以现在我借助此链接https://developers.google.com/cloud-sql/docs/import_export将这个 sql 文件导入到 Google Cloud Storage 。

现在,在使用实例操作中的 Import 选项导入 .sql 的内容后,它显示绿色的工作标志,过了一会儿它停止了,当我签入 Logs 时,它显示 Failed to import gs:// bucket_name/Cloud.sql:发生了未知问题(ERROR_RDBMS)所以,由于不清楚,我无法找出错误背后的原因,以及如何解决

4

2 回答 2

3

Google Cloud Sql probably doesn't know to which database the gs://bucket_name/Cloud.sql commands apply.

From https://groups.google.com/forum/#!topic/google-cloud-sql-discuss/pFGe7LsbUaw:

The problem is the dump doesn't contain the name of the database to use. If you add a 'USE XXX' at the top the dump where XXX is the database you want to use I would expect the import to succeed.

于 2012-11-10T02:12:18.220 回答
0

我有一些问题正在吐出ERROR_RDBMS错误。

事实证明google现在确实有更精确的错误,但你必须去这里

https://console.cloud.google.com/sql/instances/{DATABASE_NAME}/operations

您将看到操作失败原因的描述。

于 2018-10-06T12:40:20.353 回答