Backup MySql (dump) from CPANEl and phpmyadm are different

Cristian99

Active Member
Jun 17, 2005
38
0
156
Hi
do you know why dump mysql are different if do from cpanel and from phpmyadmin?

example

FROM PHPMYADMIN:

CREATE TABLE `comments` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(50) NOT NULL default '',
....

From Cpanel (backup Mysql)

CREATE TABLE comment (
id int(11) NOT NULL auto_increment,
name varchar(50) NOT NULL default '',


this give problem to restore a backup (dump)
Dump from phpmyadmin have ' and is all ok with restore
Dump (backup) from Cpanel have not ' and is not ok with restore

--
mysql on server is 4.0.1
--

THANKS