开发者

MySQL Federation Issue

开发者_Python百科

I am having issue in federating data from remote server into my local machine, my local machine is a virtual machine running mysql server. I have create a replica of table structure from federated server, using the connection string


CREATE TABLE Contacts (

    ID     INT(20) NOT NULL default '0',
    AccountNumber   VARCHAR(32)  default NULL,
    Fname   VARCHAR(255) default NULL,
    Sname   VARCHAR(255)  default NULL,
    Mob   VARCHAR(255)  default NULL,  
    Email   VARCHAR(255) default NULL,
    BranchCode   VARCHAR(255) default NULL,  
    ContactType   VARCHAR(5) default NULL, 
    AccountContactable   VARCHAR(5) default NULL
) 
ENGINE=FEDERATED

CHARSET=latin1
CONNECTION='mysql://username:password@192.168.??.????:3306/Databasename/Contacts';

when I run it, I don't get any error, it say table created, but when I check the table it has no data... can anyone Help please

Thanks


Maybe you haven't enabled the federated storage engine in your new server? It will give the same effect.


Because table has no any data, you recently created her, after table was created is empty.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜