MySql 安装PhpMyAdmin 备份数据库

下载地址 :

http://sourceforge.net/projects/phpmyadmin/files%2FphpMyAdmin%2F3.3.10%2FphpMyAdmin-3.3.10-all-languages.tar.gz/download#!md5!2e93375a92a86ef36e561b0087f6b8e3

 

下载完了之后 sudo cp -R 下载/phpMyAdmin-3.3.10-all-languages /var/www/  拷贝过去 

 

http://127.0.0.1/phpMyAdmin 输入源地址 即可访问了 

 

我想导入之前在网站上的 mysql ,由于配置不同 出了点问题

 

1、CREATE DATABASE IF NOT EXISTS `fx_WordPress` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; 黑体是我加上的  在于解决 Can't create database ‘fx_WordPress'; database exists  ;

 

 

 

2、“SQL 查询:

 

 

报错 #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '2011-04-21');      我也不能解决 只是将这段数据删掉 省得他报错  最后多次出现语法错误,貌似是里面的内容使得mysql 识别不了。

 

3 、 发现其实每必要导入所以wordpress ,只需要导入最终要的post 这个表就行 ,这样就省事多了,操作也简单。

 

4 、#1062 - Duplicate entry '1' for key 'PRIMARY'  这是在导入的时候 ID 键重复 将原来的删除 就可以 。

5 、 最后还是出错 我选择将原来的删除 重新建表 成功 , 作为mysql 菜鸟的我 也只能使用这种方式 。 

 

http://www.softwareprojects.com/resources/programming/t-how-to-fix-mysql-duplicate-entry-for-key-primary-o-1844.html 这篇文文章 说 

 

The only way we could fix it, is by rebuilding the entire database from scratch.  即 先备份 后 删除表 再重建 噢 

 

你可能感兴趣的:(Mysql)