Hi, based on this tutorial:
https://www.zen-cart.com/tutorials/index.php?article=10

I am trying to import my existing zen cart products into a sub folder (I don't have to do double entries).. e.g.:

From - site.com/
To - site.com/test

I have extracted all .sql files and tried to run the oscdata.sql scripting. This is my error:

Error
SQL query:

CREATE TABLE zen_categories(

categories_id int( 11 ) NOT NULL AUTO_INCREMENT ,
categories_image varchar( 64 ) default NULL ,
parent_id int( 11 ) NOT NULL default '0',
sort_order int( 3 ) default NULL ,
date_added datetime default NULL ,
last_modified datetime default NULL ,
categories_status tinyint( 1 ) NOT NULL default '1',
PRIMARY KEY ( categories_id ) ,
KEY idx_parent_id_cat_id_zen( parent_id, categories_id ) ,
KEY idx_status_zen( categories_status ) ,
KEY idx_sort_order_zen( sort_order ) ) ENGINE = MYISAM DEFAULT CHARSET = latin1;

MySQL said:
#1050 - Table 'zen_categories' already exists

Please help