从xampp导入MySQL数据[重复]

Posted

技术标签:

【中文标题】从xampp导入MySQL数据[重复]【英文标题】:Import MySQL data from xampp [duplicate] 【发布时间】:2013-09-05 11:19:41 【问题描述】:

我在 xampp 中为一个网站创建了一个 mysql 数据库。今天得到了我运行 Ubuntu 的新服务器。一切都已安装并且工作正常。

我想移动我在 xampp 中创建的数据库并将其移动到我的服务器;有人可以告诉我该怎么做吗?数据库是用 phpMyAdmin 创建的。

最好的问候!

埃米尔

【问题讨论】:

如果你可以使用 PHPMYADMIN 你就可以使用导出功能 您可以为此使用 SQLyog。这有一个导入外部数据的选项。 【参考方案1】:

在 PHPMYADMIN 中导出数据

1) Log in to the phpMyAdmin instance on the source server.
2) Click the Export tab 
3) From the database drop-down (left navigation), select the database.
4) Choose between a Quick or a Custom export. The Quick method should work most of the time, though if you need to get more granular with your export options, click Custom If you choose Custom, you can configure the following:
    a) Tables: Choose which tables to export.
    b) Output: Choose the template, character set, and compression for the export.
    c) Format: Choose to display comments, enclose the export in a transaction, disable foreign key checks, dump table (structure, data, or both).
    d) Object creation options: Add statements.
5) Data dump options: Use INSERT DELAYED or INSERT IGNORE statements, select the function to use when dumping data, select the syntax to use when inserting data, maximal length of created query.
6) Select the format from the Format drop-down (select SQL).
7) Click the Go button.
8) Save the file (which, by default, should be named db.sql).

在 PHPMYADMIN 中导入数据

1) Log in to phpMyAdmin.
2) Create an empty database from the Databases tab 
3) Click the Import tab.
4) Click the Browse button.
5) Locate the file to be imported.
6) Click Open or OK, depending on your browser.
7) Select the proper collation from the drop-down.
8) Select the format of the import file.
9) Click Go.

参考来自:Phpmyadmin Export Import

【讨论】:

以上是关于从xampp导入MySQL数据[重复]的主要内容,如果未能解决你的问题,请参考以下文章

在 sql [Xampp] 中导入更大的数据库 - MAC OS

Ubuntu - xampp - 无法将数据库导入 mysql

从“C:\xampp\mysql\data”文件夹的备份中恢复 SQL 数据库

将数据从 Excel 文件导入 SQL 表而不重复?

xampp从连接在同一网络中的不同系统将数据发送到MySQL db到本地主机[重复]

将大型 .sql 文件导入数据库 - 重复超时错误 phPMYAdmin