Mysql
 sql >> Database >  >> RDS >> Mysql

1432 - Impossibile creare una tabella federata. La stringa di connessione all'origine dati %s non è nel formato corretto

Secondo la documentazione di MySQL, quando si utilizza una stringa CONNECTION, non è possibile utilizzare un carattere '@' nella password. Puoi aggirare questa limitazione utilizzando "crea server" dichiarazione.

Ad esempio:

CREATE SERVER fedlink
FOREIGN DATA WRAPPER mysql
OPTIONS (USER 'USERNAME', HOST 'Host_IP', DATABASE 'DB_NAME', 
PORT '3306',Password 'PASSWORD');

Una volta creato il collegamento al server, per creare una tabella che utilizza questa connessione:

CREATE TABLE test_table (
id     INT(20) NOT NULL AUTO_INCREMENT,
name   VARCHAR(32) NOT NULL DEFAULT '',
other  INT(20) NOT NULL DEFAULT '0',
PRIMARY KEY  (id),
INDEX name (name),
INDEX other_key (other)
)
ENGINE=FEDERATED
DEFAULT CHARSET=latin1
CONNECTION='fedlink/test_table';

Segui i link sottostanti per ulteriori informazioni al riguardo:https:/ /dev.mysql.com/doc/refman/5.6/en/federated-usagenotes.html https://dev.mysql.com/doc/refman /5.1/en/federated-create.html