Is there any way around this? Are there any tools you can download to make a clean backup?
Thanks.
:)
At the top it has the query that creates the table and then there is a row on each line set up to be INSERTED.
EXAMPLE:
CREATE TABLE widgets (
id int(4) NOT NULL default '0',
name varchar(100) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
INSERT INTO widgets VALUES (1, 'blue widget');
INSERT INTO widgets VALUES (2, 'red widget');
INSERT INTO widgets VALUES (3, 'green widget');
etc...
Hope it helps.
There is an option to save a mysql back up file in my hosting`s control panel. I downloaded that and it appeared to hold all the information, but when I upload the backup I keep getting "NO MYSQL QUERY" displayed when I run it. What a headache.
:(
With regards to telnet, yes I do have access, but I`ve never used it, so I wouldn`t know how to get it to work, sorry!