问题
I have many federated tables in my mysql database. I can see the connection string when I open the table structure in dbforge. But i am not able to find where it is stored in mysql.
I checked Information_schema tables and only found the table structures without the connection string
回答1:
Its either in the table defination (SHOW CREATE TABLE {tablename}
), or the mysql.servers table (SHOW SERVERS
).
ref: how to create federated tables
来源:https://stackoverflow.com/questions/55968975/where-is-connection-string-of-federated-table-stored-in-mysql