MySQL Forums
Forum List  »  Install & Repo

Re: Table 'mysql.servers' doesn't exist
Posted by: GLEN GRANT
Date: December 18, 2007 11:57AM

Chris Brown Wrote:
-------------------------------------------------------
> This should solve the problem. Not sure how this
> problem started for me but I mysqldumped the
> mysql.server table from another database and
> eliminated the error.
>
> Best,
> C
>
>
>
> CREATE TABLE `servers` (
> `Server_name` char(64) NOT NULL,
> `Host` char(64) NOT NULL,
> `Db` char(64) NOT NULL,
> `Username` char(64) NOT NULL,
> `Password` char(64) NOT NULL,
> `Port` int(4) DEFAULT NULL,
> `Socket` char(64) DEFAULT NULL,
> `Wrapper` char(64) NOT NULL,
> `Owner` char(64) NOT NULL,
> PRIMARY KEY (`Server_name`)
> ) ENGINE=MyISAM DEFAULT CHARSET=utf8
> COMMENT='MySQL Foreign Servers table';


This worked for me - thanks!

Options: ReplyQuote


Subject
Written By
Posted
Re: Table 'mysql.servers' doesn't exist
December 18, 2007 11:57AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.