可以在命令行中导入使用 phpMyAdmin 创建的 MySQL 数据库转储吗?
Posted
技术标签:
【中文标题】可以在命令行中导入使用 phpMyAdmin 创建的 MySQL 数据库转储吗?【英文标题】:Can MySQL database dumps created with phpMyAdmin be imported on the command line? 【发布时间】:2015-05-21 21:47:04 【问题描述】:我有一个 mysql 数据库转储文件,我试图在命令行上导入它,使用:
mysql -u my_user_name -p database_name < filename.sql
导入失败并出现以下错误:
ERROR 1062 (23000) at line 42: Duplicate entry 'comment_publish_action' for key 'PRIMARY'
我不明白这个错误。这是转储文件的完整文本(很短):
-- phpMyAdmin SQL Dump
-- version 4.1.8
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Mar 18, 2015 at 02:36 PM
-- Server version: 5.5.37-cll
-- PHP Version: 5.4.23
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `database_name`
--
-- --------------------------------------------------------
--
-- Table structure for table `aa_actions`
--
CREATE TABLE IF NOT EXISTS `aa_actions` (
`aid` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.',
`type` varchar(32) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
`callback` varchar(255) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.',
`parameters` longblob NOT NULL COMMENT 'Parameters to be passed to the callback function.',
`label` varchar(255) NOT NULL DEFAULT '0' COMMENT 'Label of the action.',
PRIMARY KEY (`aid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Stores action information.';
--
-- Dumping data for table `aa_actions`
--
INSERT INTO `aa_actions` (`aid`, `type`, `callback`, `parameters`, `label`) VALUES
('comment_publish_action', 'comment', 'comment_publish_action', '', 'Publish comment'),
('comment_save_action', 'comment', 'comment_save_action', '', 'Save comment'),
('comment_unpublish_action', 'comment', 'comment_unpublish_action', '', 'Unpublish comment'),
('node_make_sticky_action', 'node', 'node_make_sticky_action', '', 'Make content sticky'),
('node_make_unsticky_action', 'node', 'node_make_unsticky_action', '', 'Make content unsticky'),
('node_promote_action', 'node', 'node_promote_action', '', 'Promote content to front page'),
('node_publish_action', 'node', 'node_publish_action', '', 'Publish content'),
('node_save_action', 'node', 'node_save_action', '', 'Save content'),
('node_unpromote_action', 'node', 'node_unpromote_action', '', 'Remove content from front page'),
('node_unpublish_action', 'node', 'node_unpublish_action', '', 'Unpublish content'),
('system_block_ip_action', 'user', 'system_block_ip_action', '', 'Ban IP address of current user'),
('user_block_user_action', 'user', 'user_block_user_action', '', 'Block current user');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;t
这是通过转到“导出”选项、切换到自定义导出模式并仅选择要导出的表 aa_actions 生成的。其他一切都保留在默认设置上。
怎么了?如何让 MySQL 接受这个文件?我想我可以在我的开发服务器上专门安装 phpMyAdmin 来导入这个文件,但这会是多么痛苦。
【问题讨论】:
是的,他们当然可以。不知道出了什么问题。 "ERROR 1062 (23000) at line 42: Duplicate entry 'comment_publish_action' for key 'PRIMARY'" 可能插入的 id 之一已经存在? 天哪,我真是个白痴。 phpMyAdmin 文件未添加DROP TABLE
命令。我通常使用的mysqldump
实用程序默认执行此操作。解决方法是在导入前手动清空数据库。
【参考方案1】:
来自 mysqldump 的手册页
· --add-drop-table
Add a DROP TABLE statement before each CREATE TABLE statement.
或
· --insert-ignore
Write INSERT IGNORE statements rather than INSERT statements.
您可能正在恢复类似的数据库,因此需要在恢复之前擦除数据(第一个选项)或忽略错误(第二个选项)
警告:
第一个命令销毁现有数据,第二个命令忽略不是由重复键引起的任何其他错误。
如果不了解您想要做什么,这些是 2 个“通用”解决方案
注意,--opt
包含选项 1,应该默认启用
【讨论】:
转储文件肯定需要drop table
或类似的,但--add-drop-table
开关用于mysqldump
。上面的转储文件是用 phpMyAdmin 生成的,它不使用 mysqldump。相反,您必须选中一个标有“添加 DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT 语句”的框,默认情况下未选中。以上是关于可以在命令行中导入使用 phpMyAdmin 创建的 MySQL 数据库转储吗?的主要内容,如果未能解决你的问题,请参考以下文章