我想用全新網站url全局替換Wordpress MySQL數據庫中我的站點URL的所有實例。爲此,我使用phpMyAdmin將數據庫導出爲.sql文件,然後在文本編輯器中進行全局替換,然後使用phpMyAdmin導入.sql文件。phpMyAdmin導出/導入重複主鍵錯誤
導入期間,我遇到了主鍵錯誤的重複條目。試圖調試這個,我導出文件,然後導入相同的文件,沒有任何更改,我仍然得到相同的錯誤。
我明白任何幫助解決這個問題。
--
-- Dumping data for table `wp_comments`
--
INSERT INTO `wp_comments`
(`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`
,`comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`
,`comment_content`, `comment_karma`, `comment_approved`, `comment_agent`
,`comment_type`, `comment_parent`, `user_id`)
VALUES (1, 1, 'Mr WordPress', ''
,'http://wordpress.org/', '', '2011-04-28 00:49:55', '2011-04-28 00:49:55'
,'Hi, this is a comment.<br />To delete a comment,
just log in and view the post's comments.
There you will have the option to edit or delete them.'
, 0, 'post-trashed', '', '', 0, 0) ;
MySQL said:
#1062 - Duplicate entry '1' for key 'PRIMARY'
@Johan - 感謝編輯使我的問題中的代碼更清晰。 – LandedGently 2011-05-02 18:16:59