I got my SQL database imported through a suggestion from a friend. changed the code to
CREATE TABLE wp_categories (
cat_ID bigint(20) NOT NULL auto_increment,
cat_name varchar(55) NOT NULL default ”,
category_nicename varchar(200) NOT NULL default ”,
category_description longtext NOT NULL,
category_parent bigint(20) NOT NULL default ‘0’,
category_count bigint(20) NOT NULL default ‘0’,
PRIMARY KEY (cat_ID),
KEY category_nicename (category_nicename)
) AUTO_INCREMENT=6 ;
I did this for all the tables.
I still don’t have my blog up and running (due to other issues completely) and I don’t know what changes I made to the content – if any. But it did import.