如何从 .sql 文件导入数据,该文件的内容已压缩 windows
How to import data from a .sql file which has gzipped content on windows
我已经使用以下命令在 Linux 服务器中压缩和备份我的数据。
mysqldump -u root --triggers --routines --all-databases | gzip > MyDBs.sql
现在我想在我的本地机器上恢复所有这些数据,这是一台 windows 7 机器。当我尝试在 MySQL GUI 工具中导入相同内容时,出现错误。
谁能告诉我怎么做。
提前致谢。
解决方案来自评论,请采纳
Your file is not really an sql file, it's a gzip with the wrong file
extension. rename the file Extension from .sql to .gzip, unzip it and
Import the unzipped .sql file in it to your Server.
我已经使用以下命令在 Linux 服务器中压缩和备份我的数据。 mysqldump -u root --triggers --routines --all-databases | gzip > MyDBs.sql
现在我想在我的本地机器上恢复所有这些数据,这是一台 windows 7 机器。当我尝试在 MySQL GUI 工具中导入相同内容时,出现错误。 谁能告诉我怎么做。 提前致谢。
解决方案来自评论,请采纳
Your file is not really an sql file, it's a gzip with the wrong file extension. rename the file Extension from .sql to .gzip, unzip it and Import the unzipped .sql file in it to your Server.