Jump to content

Problem moving MySQL database from one server to another.


kerunt

Recommended Posts

Hi all,

I have a MySQL database running on my local server. When I export everything (structure + data) through phpMyAdmin and try to import this (also through phpMyAdmin) on a webhost which I just purchased, I get the following error:

#1064 - You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY

This error appears after attempting to run the following:
[code]
CREATE TABLE `accounts` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(20) NOT NULL default '',
  `password` varchar(32) NOT NULL default '',
  `email` varchar(100) NOT NULL default '',
  `commander` varchar(20) NOT NULL default '',
  `ward` varchar(20) NOT NULL default '',
  `coords` varchar(8) NOT NULL default '',
  `continent` int(2) NOT NULL default '0',
  `country` int(2) NOT NULL default '0',
  `location` int(2) NOT NULL default '0',
  `credits` int(16) NOT NULL default '0',
  `score` int(16) NOT NULL default '0',
  `base_strength` int(16) NOT NULL default '0',
  `military_strength` int(16) NOT NULL default '0',
  `clan` varchar(30) default NULL,
  `clan_rank` int(1) NOT NULL default '0',
  `admin` int(1) NOT NULL default '0',
  `ip` varchar(15) NOT NULL default '',
  `registration_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `username` (`username`),
  UNIQUE KEY `email` (`email`),
  UNIQUE KEY `commander` (`commander`),
  UNIQUE KEY `tribe` (`ward`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
[/code]

The strange thing is that I can import this code just fine on my local server.

My local server:
- phpMyAdmin 2.6.1
- MySQL 4.1.9

My webhost's server:
- phpMyAdmin 2.8.0.2
- MySQL 4.1.10

What could be the problem?

Thanks!
Link to comment
Share on other sites

I seem to have "gotten around" the problem.
I changed the field types from TIMESTAMP to DATETIME, which got rid of that problem, but the script still gave an error near DEFAULT CHARSET=latin1, so getting rid of that too did the trick.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.