今天把服務器上面的織夢網(wǎng)站打包回本地重現(xiàn)的時候,數(shù)據(jù)庫導入老是不成功,總是提示dede_purview表有問題,百度了一下找到答案,并順利解決。小菜在這里做個記錄,提供給有需要的朋友。
錯誤:
sql 查詢:
表的結構 `54cms_purview`
create table if not exists `54cms_purview` (
`mid` mediumint( 8 ) default '0',
`typeid` smallint( 5 ) default '0',
`rank` smallint( 6 ) default null ,
`pkey` varchar( 30 ) character set latin1 not null ,
`pvalue` text not null ,
key `pkey` ( `pkey` ) using btree
) engine = myisam default charset = gbk;
解決辦法:
把phpmyadmin導出的 sql文件內(nèi)這一句里的:using btree 去掉或者調(diào)換位置,
這是mysql server不兼容造成的。
上面的查詢語句應該改成:
create table if not exists `54cms_purview` (
`mid` mediumint( 8 ) default '0',
`typeid` smallint( 5 ) default '0',
`rank` smallint( 6 ) default null ,
`pkey` varchar( 30 ) character set latin1 not null ,
`pvalue` text not null ,
key `pkey` using btree ( `pkey` )
) engine = myisam default charset = gbk;
保存,導入,搞定!