limitphp Posted July 18, 2009 Share Posted July 18, 2009 I get this error when i try to import a database using phpmyadmin. I can't believe how incredibly hard it has been trying to import a simple database from wamp server. Please someone help me, lunarpages seems dumbfounded. I just need my site running at this point so I can put it on my resume and get a new job hopefully and get out of teaching. Link to comment https://forums.phpfreaks.com/topic/166395-1005-cant-create-table-artist-errno-13/ Share on other sites More sharing options...
trq Posted July 18, 2009 Share Posted July 18, 2009 You might want to post the query at least. Link to comment https://forums.phpfreaks.com/topic/166395-1005-cant-create-table-artist-errno-13/#findComment-877450 Share on other sites More sharing options...
limitphp Posted July 18, 2009 Author Share Posted July 18, 2009 SQL query: -- -- Database: `testdata` -- -- -------------------------------------------------------- -- -- Table structure for table `artist` -- CREATE TABLE IF NOT EXISTS `artist` ( `artistID` int( 11 ) NOT NULL AUTO_INCREMENT , `artistName` varchar( 50 ) NOT NULL , `artistNameHash` varchar( 50 ) NOT NULL , `Bio` longtext NOT NULL , PRIMARY KEY ( `artistID` ) ) ENGINE = InnoDB DEFAULT CHARSET = latin1 AUTO_INCREMENT =12; MySQL said: Documentation #1005 - Can't create table 'artist' (errno: 13) Link to comment https://forums.phpfreaks.com/topic/166395-1005-cant-create-table-artist-errno-13/#findComment-877452 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.