The problem is in apostrophe in query. On queries defined in Indexu (because it used MySQL 4.0.2), each table name and field is using apostrophe. Example :
PHP Code:
CREATE TABLE `idx_bad_link` (
`bad_link_id` mediumint(8) unsigned NOT NULL auto_increment,
......
MySQL 3.x.x. and previous versions don't use aporstrophe, So the above query won't be recognize as a correct one. If you want to execute query in sql.txt, you need to remove those apostrophes. So the above query example will be :
PHP Code:
CREATE TABLE idx_bad_link (
bad_link_id mediumint(8) unsigned NOT NULL auto_increment,
......
Sofiah