View Single Post
  #26  
Old 22nd April 2011, 18:00
wewehello wewehello is offline
Member
 
Join Date: Apr 2011
P2P
Posts: 1
Default sql import problems
Getting errors

Code:
Error at the line 27: ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
Query: CREATE TABLE `addedrequests` ( `id` int(10) unsigned NOT NULL auto_increment, `requestid` int(10) unsigned NOT NULL default '0', `userid` int(10) unsigned NOT NULL default '0', PRIMARY KEY (`id`), KEY `pollid` (`id`), KEY `userid` (`userid`), KEY `requestid_userid` (`requestid`,`userid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
MySQL: Table 'addedrequests' already exists
Stopped on error

Start from the beginning (DROP the old tables before restarting)
Reply With Quote