<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums - Federated Storage Engine</title>
        <description>Forum for Federated Storage Engine.</description>
        <link>https://forums.mysql.com/list.php?105</link>
        <lastBuildDate>Sat, 16 May 2026 05:12:17 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?105,707800,707800#msg-707800</guid>
            <title>How to use MySQL FEDERATED engine ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,707800,707800#msg-707800</link>
            <description><![CDATA[ <a href="https://blogs.oracle.com/mysql/post/how-to-use-mysql-federated-engine"  rel="nofollow">https://blogs.oracle.com/mysql/post/how-to-use-mysql-federated-engine</a>]]></description>
            <dc:creator>Edwin Desouza</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 10 Mar 2023 18:25:50 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,697665,697665#msg-697665</guid>
            <title>GTID based Replication with Federated tables (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,697665,697665#msg-697665</link>
            <description><![CDATA[ Hi,<br />
<br />
I am trying to replicate the database which has few federated tables.<br />
<br />
The replication is getting set but when I perform DML operations like Insert, Delete etc. The replication breaks.<br />
<br />
Also when I perform DELETE operation on primary server the slave mysql crashes.<br />
<br />
The federated table data is on remote server. <br />
<br />
I also tried pointing the slave server to different remote server with same data as main remote server. This time the Insert statement ran succesfully without breaking the replication. But as soon as I ran DELETE command on federated table the MySQL on slave server got crashed.<br />
<br />
Can someone suggest me where I am going wrong?<br />
<br />
Thanks,<br />
Dhruvin Dharamsey.]]></description>
            <dc:creator>Dhruvin Dharamsey</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Tue, 13 Jul 2021 16:17:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,697071,697071#msg-697071</guid>
            <title>Disabling SSL on Federated connection (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,697071,697071#msg-697071</link>
            <description><![CDATA[ Hello, <br />
<br />
I&#039;m trying to create a federated table on a brand new MySQL 8 server to an older 5.7.21 server and I keep getting this error;<br />
<br />
#1429 - Unable to connect to foreign data source: SSL connection error: error:1425F102:SSL routines:ssl_choose_cli<br />
<br />
The table definition uses a connection made with `CREATE SERVER`<br />
<br />
Is there a way to disable SSL on Federated connection ?]]></description>
            <dc:creator>Marc Bernard</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 30 Jul 2021 13:57:24 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,686341,686341#msg-686341</guid>
            <title>memory issues with federated (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,686341,686341#msg-686341</link>
            <description><![CDATA[ Hello,<br />
<br />
I have a personal project at work for a monitoring tool using a mysql server with federated engine and multi-master replication. It&#039;s really useful and I am a great (and probably) the only supporter of the federated engine in the company. The guys from dba always tell me the engine is not good.<br />
So, basically it works really well, except I have some memory issues. If I&#039;m not careful about how much data I bring trough the federated engine, my server will reach out of memory and the server will be restarted, which also crashes the replication sometimes.<br />
I only have 7.6 gb of ram seen as available in linux, and the innodb buffer pool is set to 4gb.<br />
Do you know how I could monitor how much data from the memory is used for the federated table caching?<br />
Do you know if the federated engine also uses the swap file or is it only confined to actual memory?<br />
Do you have any advice for me about how I could better manage these situations so that the server will not remain without memory?<br />
Is there any other tool that you used,maybe similar functionalities in MariaDB or PostgreSQL, that work better and you would recommend? <br />
<br />
Thank you,<br />
Mihai]]></description>
            <dc:creator>MIHAI RADU SANDU</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Mon, 13 Apr 2020 17:27:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,676364,676364#msg-676364</guid>
            <title>Does federated engine allows table creation for ipv6 ? (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,676364,676364#msg-676364</link>
            <description><![CDATA[ I have two server both connected to each other by ipv6.<br />
<br />
1 can i create table on local server with ipv6 connection of remote server<br />
<br />
What i have tried<br />
<br />
1 i created a table on remote server which is on ipv6<br />
<br />
2 i created a table on local server which is on ipv6 with connection details of <br />
  remote server as mentioned below :<br />
<br />
This is how i created my local table <br />
<br />
CREATE TABLE usageinfo <br />
(<br />
   id INT NOT NULL AUTO_INCREMENT PRIMARY KEY,<br />
  username VARCHAR(200) NULL,<br />
  controllerId VARCHAR(200) NULL,<br />
  slotId VARCHAR(200) NULL,<br />
  startdate DATE NULL,<br />
  starttime TIME NULL,<br />
  enddate DATE NULL,<br />
  endtime TIME NULL<br />
)ENGINE=FEDERATED<br />
  CONNECTION=&#039;mysql://username:password@2222:2222:2:240a::10/dbName/usageinfo&#039;;<br />
<br />
table created successfully.<br />
<br />
After i perform select query got the below error :<br />
<br />
ERROR 1429 (HY000): Unable to connect to foreign data source: Can&#039;t connect to MySQL server on &#039;2222&#039;<br />
<br />
I believe ipv6 format that i have specified while creating table is incorrect.<br />
<br />
can some one help me with the correct ipv6 format.<br />
<br />
or let me know if ipv6 is not supported for federated engine.]]></description>
            <dc:creator>tarun gupta</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 05 Jul 2019 20:33:24 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,672023,672023#msg-672023</guid>
            <title>Insert into Federated tables using mysql triggers (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,672023,672023#msg-672023</link>
            <description><![CDATA[ Hi,<br />
I have a local table A and a federated table B.<br />
I&#039;m trying to insert into federated table B using After trigger Insert on local table A.<br />
Everything works as long as both servers are connected. <br />
Whenever the other server is either down or unavailable during insert action it gets hung or something. I&#039;m not sure whether it is waiting for the server. It gets hung and as long as i reconnect back to other server the action resumes.<br />
<br />
I would like to throw an error and keep going.<br />
I tried RESIGNAL as below<br />
DECLARE EXIT HANDLER FOR SQLEXCEPTION<br />
        RESIGNAL;<br />
But doesn&#039;t seem to help. Any ideas?<br />
<br />
Thanks.]]></description>
            <dc:creator>Saravanan Ramasamy</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 16 Jan 2019 22:01:36 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,665019,665019#msg-665019</guid>
            <title>federated enabled but not working (2 replies)</title>
            <link>https://forums.mysql.com/read.php?105,665019,665019#msg-665019</link>
            <description><![CDATA[ Hi,<br />
 Federated not working after enabled in mysql config file<br />
<br />
Config File<br />
<br />
[mysqld]<br />
federated<br />
<br />
after enabled and i restart the server<br />
<br />
in SQLYog<br />
<br />
show engines;<br />
<br />
Engine      Support  Comment                                                         <br />
----------  -------  ----------------------------------------------------------------<br />
MyISAM      DEFAULT  Default engine as of MySQL 3.23 with great performance          <br />
MEMORY      YES      Hash based, stored in memory, useful for temporary tables       <br />
InnoDB      YES      Supports transactions, row-level locking, and foreign keys      <br />
BerkeleyDB  YES      Supports transactions and page-level locking                    <br />
BLACKHOLE   NO       /dev/null storage engine (anything you write to it disappears)  <br />
EXAMPLE     NO       Example storage engine                                          <br />
ARCHIVE     NO       Archive storage engine                                          <br />
CSV         NO       CSV storage engine                                              <br />
ndbcluster  NO       Clustered, fault-tolerant, memory-based tables                  <br />
FEDERATED   NO       Federated MySQL storage engine                                  <br />
MRG_MYISAM  YES      Collection of identical MyISAM tables                           <br />
ISAM        NO       Obsolete storage engine    <br />
<br />
still FEDERATED not enabled.<br />
<br />
 please suggest to slove this problem..]]></description>
            <dc:creator>sakthi sridhar</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 16 Mar 2018 16:19:38 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,658317,658317#msg-658317</guid>
            <title>Problems updating federated table (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,658317,658317#msg-658317</link>
            <description><![CDATA[ Scenario:<br />
<br />
Server A: create view federated_view as SELECT ....<br />
<br />
Server B: create table tabela_federada (A, B, C) ENGINE=FEDERATED CONNECTION=&#039;mysql://user:paswd@:3306/database/federated_view&#039;;<br />
<br />
When i perform a update on federated table, mysql return <br />
OK, but the value was not updated:<br />
<br />
mysql&gt; update tabela_federada set incidentes_utilizados = 1 where customer_id = &#039;teste&#039; and incidentes_utilizados = 10;<br />
Query OK, 1 row affected (0.17 sec)<br />
<br />
mysql&gt; select * from tabela_federada where customer_id = &#039;teste&#039;\G<br />
incidentes_utilizados: 10<br />
     bugs_qualificados: 3<br />
requisicoes_utilizadas: 2<br />
     horas_disponiveis: 4.00]]></description>
            <dc:creator>Daniel Ortiz</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 21 Jun 2017 16:31:57 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,650860,650860#msg-650860</guid>
            <title>Linked Servers of MS SQL; CONNECT Storage Engine of MariaDB; or Oracle Database Gateway (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,650860,650860#msg-650860</link>
            <description><![CDATA[ Nowadays, most data necessary isn&#039;t in our servers, and it is hosted in other RDBMS making FEDERATED engine unuseful, that is why I would like to suggest the possibility to add one (or all :-D) of the following features to MySQL:<br />
<br />
a) MS SQL like &quot;Linked Servers&quot;, which support ODBC connections. This would enable to connect MySQL to SQL Server to obtain data in an easy way.<br />
<br />
b) A CONNECT Storage Engine like the one of MariaDB.<br />
<br />
c) Or ODBC connecting capabilities such as the ones of &quot;Oracle Database Gateway&quot;.<br />
<br />
Thank you :-)]]></description>
            <dc:creator>Juan Telleria</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 30 Sep 2016 08:26:53 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,636874,636874#msg-636874</guid>
            <title>Unknown storage engine &#039;FEDERATED&#039; (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,636874,636874#msg-636874</link>
            <description><![CDATA[ I am attempting to create a table using query like so:<br />
<pre class="bbcode">
CREATE TABLE our_content.`acq_documents` (
	`acq_documents_id` INT (11) NOT NULL AUTO_INCREMENT
	,`accession_no` VARCHAR(100) NOT NULL DEFAULT &#039;&#039;
	,`title` mediumtext
	,`product_code` VARCHAR(45) DEFAULT NULL
	,PRIMARY KEY (`acq_documents_id`)
	,UNIQUE KEY `accession_no_UNIQUE`(`accession_no`)
	,KEY `title`(`title`(100))
	,KEY `product_code`(`product_code`)
	) ENGINE=FEDERATED AUTO_INCREMENT = 174244 DEFAULT CHARSET = utf8
	CONNECTION=&#039;www@nsamysql101.sl4.as:3306/lnh_acquisitions/acq_documents&#039;
	;
<pre class="bbcode">
I am getting the following warning message:

1286 Unknown storage engine &#039;FEDERATED&#039;
Using storage engine InnoDB for table &#039;acq_documents&#039;

What is the cause of this message?</pre></pre>]]></description>
            <dc:creator>Tharpa roberts</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 11 Nov 2015 20:52:10 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,632789,632789#msg-632789</guid>
            <title>Does MRR fit for opimizing the range scan of federated table (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,632789,632789#msg-632789</link>
            <description><![CDATA[ Hi all:<br />
   The federated engine supports range scan, I wander that whether the MRR can speed up the process and is there any plan to support MRR for federated engine.]]></description>
            <dc:creator>zkong kong</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 10 Jul 2015 05:24:24 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,630262,630262#msg-630262</guid>
            <title>FEDERATED out of connections (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,630262,630262#msg-630262</link>
            <description><![CDATA[ I have created about 150 tables with engine FEDERATED. After a while of using about 30 of them I get the error &quot;ERROR 1429 (HY000) at line 3: Unable to connect to foreign data source: Can_t create a new thread (errno 11); ...&quot;<br />
<br />
Is there any way of checking how many different connections are open except from looking at the remote server?<br />
<br />
Is there any way of flushing the connections except from dropping all the tables or killing the connections at the remote database?]]></description>
            <dc:creator>Martin Wilmes</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Mon, 13 Apr 2015 12:45:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,628883,628883#msg-628883</guid>
            <title>Transaction handling in federated tables via stored proc (3 replies)</title>
            <link>https://forums.mysql.com/read.php?105,628883,628883#msg-628883</link>
            <description><![CDATA[ I am using Stored Procedure to archive some data from few tables in master database to remote back up database. The back up tables are existing as federated tables in master tables. <br />
However when i move the data from master to back up tables one by one, transaction is not working as expected as I see records are committed in remote back up database irrespective of issuing a rollback in the end of store proc on interpreting the error. <br />
<br />
Eg: Say Tables A, B, C exist in master and back up database.<br />
When records are moved from Master A, B, C to back up A, B, C, if some exception happens while processing Table C, i am issuing a rollback in the end, which doesn&#039;t rollback A,B tables. <br />
I use START TRANSACTION, SET AUTOCOMMIT=0 in the beginning of store proc and issuing a COMMIT / ROLLBACK in the end based on processing status. <br />
<br />
Please advice how to handle this scenario.]]></description>
            <dc:creator>GOPIKANTH GOVINDARAJ</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Thu, 05 Mar 2015 06:34:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,622104,622104#msg-622104</guid>
            <title>Rows are not getting deleted (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,622104,622104#msg-622104</link>
            <description><![CDATA[ Hi,<br />
<br />
We do have federated tables implemented and while deleting rows from remote server it displays that 24-rows affected but the rows are not deleted from actual table.<br />
<br />
Can anyone help?<br />
<br />
Regards,<br />
Nawaz]]></description>
            <dc:creator>Muhammad Nawaz Sohail</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 15 Oct 2014 08:03:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,621779,621779#msg-621779</guid>
            <title>Make Federated Supported (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,621779,621779#msg-621779</link>
            <description><![CDATA[ I am brand new to the DBA side of stuff here. <br />
I have installed MySQL 5.6 and use Workbench. <br />
I am trying to create tables on my local instance from the corporate server/datawarehouse.<br />
<br />
My understanding is that I can use Federated Tables<br />
When I run Show Engines, it says NO to Federated being supported.<br />
<br />
How do I change this?<br />
I saw one answer on a google search, but I cannot find my INI or MY.CNF files to added the federated line.<br />
<br />
Thanks]]></description>
            <dc:creator>Shawn Ott</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Thu, 09 Oct 2014 16:34:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,611656,611656#msg-611656</guid>
            <title>Wait Federated tables are depricated? (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,611656,611656#msg-611656</link>
            <description><![CDATA[ Hi guys<br />
My apologies if I&#039;ve been living under a rock and this is old news, but, are federated tables going away?<br />
<br />
If so, does anyone know where I can find arguments rational for doing so?<br />
<br />
Aside from reading entire tables for read operations, I think as a &quot;write to a remote source&quot; utility, it works really well.<br />
<br />
Hopefully someone was pulling an april fools joke on me but I wanted to go to the source. I couldn&#039;t find too much on it online (all searches just point to the mysql doc)<br />
<br />
Anyway, anyones thoughts are greatly appriciated!<br />
Thanks Much!<br />
Kurt]]></description>
            <dc:creator>curtis pastore</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 02 Apr 2014 22:16:18 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,593422,593422#msg-593422</guid>
            <title>BIT column protect Federated table from delete or update (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,593422,593422#msg-593422</link>
            <description><![CDATA[ I tried doing a delete of some rows on a federated table that contains one column called `read` of type BIT.<br />
Those ones having a 0 (zero) value on that column, where successful deleted, but the ones with a positive value (1000000) remained on the table.<br />
<br />
Is it a desirable behavior?<br />
<br />
I&#039;ve tried later on the origin table (InnoDB engine) and all of them where deleted.<br />
<br />
My MySQL version is 5.5.32-0ubuntu0.13.04.1<br />
<br />
Thanks everyone]]></description>
            <dc:creator>Xavier S</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 28 Aug 2013 13:32:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,591392,591392#msg-591392</guid>
            <title>order by in query extremely slow (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,591392,591392#msg-591392</link>
            <description><![CDATA[ I have a table with federated engine which is linked to the same table on a remote server. All works very fine and quite fast. The table has sth like 1000 records and a primary key on the number.<br />
<br />
When I do a select query, all works fine but when I order this query it takes up to 35 seconds to get the result. I think I can call this slow....<br />
<br />
When I use the same query on the remote server: 0 seconds...<br />
<br />
Thanks for any advise!<br />
<br />
<br />
Rogier]]></description>
            <dc:creator>Rogier IJperen</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Tue, 23 Jul 2013 12:02:20 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,591060,591060#msg-591060</guid>
            <title>Select  Remote Server Database Table data  From Select Query (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,591060,591060#msg-591060</link>
            <description><![CDATA[ hi all,<br />
         I m trying to access table which is in another server database.Consider server A and B. Just I need to do copy the Server A&#039;s Database Table Test to Server B&#039;s Database Table Test from Server B in Timely Manner for Some Report using by any query or store procedure.I know about Federated Table and also tried ,its working fine but i don&#039;t need to connect the federated table from remote server always.Please Reply as Soon as possible.<br />
<br />
                                            Thanks]]></description>
            <dc:creator>Ramaeshkumar k</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 19 Jul 2013 14:36:28 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,587711,587711#msg-587711</guid>
            <title>Geometry field for federated table (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,587711,587711#msg-587711</link>
            <description><![CDATA[ I&#039;m afraid to see that FEDERATED engine doesn&#039;t support GEOMETRY field :<br />
&quot;The storage engine for the table doesn&#039;t support GEOMETRY&quot;<br />
<br />
I can&#039;t find any note about this limitation in federated, does somebody can confirm me ?<br />
<br />
Thanks.]]></description>
            <dc:creator>David Babin</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Mon, 03 Jun 2013 15:24:51 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,587399,587399#msg-587399</guid>
            <title>Problem creating a federated table (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,587399,587399#msg-587399</link>
            <description><![CDATA[ Hi all,<br />
 I am trying to create a federated table. I am testing with a very simple table with only two fields. SHOW ENGINES shows that FEDERATED is enabled. I think I also have correct settings for the user which I am using for the user who connects because I am able to connect to the host database from the guest machine with -h option without problem.<br />
<br />
 Now the issue is that I CAN create the federated table and get no error. However, when I run a simple SELECT * from MYFEDERATEDTABLE; then the whole thing hangs and after a long while I get:<br />
ERROR 1429 (HY000): Unable to connect to foreign data source: Can&#039;t connect to MySQL server on &#039;196.168.2.231&#039; (110).<br />
<br />
 The interesting thing is that there is NO entry in the transaction log on the host database when the federated table is created (if I understand some websites about federated tables right there should be something there). I also get no error when the federated table is created and to what I have been able to read, there should be something if my syntax is incorrect.<br />
<br />
  So, to sum up: I have the table on host, the federated table on gues, the user but can not get it to work.<br />
  <br />
  What can be the reason?<br />
<br />
Best regards<br />
<br />
Jacek]]></description>
            <dc:creator>Jacek Szymanski</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Sat, 25 May 2013 20:24:48 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,585281,585281#msg-585281</guid>
            <title>Error 1156 on federated table (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,585281,585281#msg-585281</link>
            <description><![CDATA[ Can anyone explain &quot;Error Code: 1156. Got packets out of order&quot; when querying a federated table?  More details:<br />
<br />
First on the remote server with an SSH connection:<br />
<br />
/********************************************************/<br />
CREATE TABLE `testremote`.`test` (<br />
  `c1` varchar(10) NOT NULL,<br />
  PRIMARY KEY (`c1`)<br />
) ENGINE=InnoDB DEFAULT CHARSET=utf8;<br />
<br />
INSERT INTO `testremote`.`test` (`c1`) VALUES (&#039;a&#039;);<br />
/********************************************************/<br />
<br />
Then on the local server:<br />
<br />
/********************************************************/<br />
CREATE TABLE `test`.`test` (<br />
  `c1` varchar(10) NOT NULL,<br />
  PRIMARY KEY (`c1`)<br />
) engine=federated DEFAULT CHARSET=utf8<br />
CONNECTION=&#039;mysql://user:password@IP_address:port/testremote/test&#039;;<br />
<br />
select c1 from test.test;<br />
/********************************************************/<br />
<br />
That final select generates the error.<br />
<br />
I am using MySQL Workbench 5.2.39 CE. Variable version=5.5.28-log for the remote server, and 5.6.11-log for the local server. user is the &quot;SSH Username&quot;, and IP_address:port is the SSH Hostname as shown in the &quot;Connect to Database&quot; window of MySQL Workbench]]></description>
            <dc:creator>Ruaraidh Hamilton</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Thu, 02 May 2013 00:53:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,582603,582603#msg-582603</guid>
            <title>Changing connection param of Federated Table (Resolved) (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,582603,582603#msg-582603</link>
            <description><![CDATA[ I currently have one database with a federated table. The database it connects to recently had a host name change and I need to update the connection string. Based on the documentation, federated tables do not support ALTER TABLE. What is the suggested way to change the connection string?<br />
<br />
thank you.<br />
<br />
(EDIT) I realized I could simply reconstruct the federated table without changing the other table.]]></description>
            <dc:creator>Nicholas Dovidio</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 29 Mar 2013 10:57:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,581760,581760#msg-581760</guid>
            <title>FEDERATED engine not supported (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,581760,581760#msg-581760</link>
            <description><![CDATA[ Hi, my problem is that once activated the FEDERATED engine, run the commands &quot;SHOW ENGINES&quot; and the FEDERATED engine as unsupported too.<br />
<br />
I am using a version of MySQL 5.5. In ubuntu 12.04.<br />
<br />
I activate the FEDERATED engine like that:<br />
<br />
<br />
in my my.cfg<br />
under [mysqld]<br />
write &quot;FEDERATED&quot;<br />
<br />
Restart the service and nothing.<br />
<br />
the command &quot;SHOW ENGINES&quot; continues to show:<br />
FEDERATED engine as unsupported.<br />
<br />
Thanks for your help and your time.]]></description>
            <dc:creator>joel guich horcajo</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Tue, 19 Mar 2013 20:49:43 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,579276,579276#msg-579276</guid>
            <title>ERROR 1429 : Unable to connect to foreign data source: Can&#039;t connect to MySQL seto (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,579276,579276#msg-579276</link>
            <description><![CDATA[ While i am using &#039;FEDERATED&#039; Engine to sync with remote server, i am getting this following error.<br />
<br />
&quot;ERROR 1429 : Unable to connect to foreign data source: Can&#039;t connect to MySQL server&quot;<br />
<br />
Source Database version: mysql 5.5 <br />
Remote Database version: mysql 5.6 (Enterprise edition)<br />
port # : 3306<br />
<br />
Thanks,]]></description>
            <dc:creator>Pradeep Ganapathy</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Sat, 16 Feb 2013 06:33:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,575752,575752#msg-575752</guid>
            <title>Removal of federated tables (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,575752,575752#msg-575752</link>
            <description><![CDATA[ I have a database that has a number of federated tables which were no longer used. The host for the tables was taken down. Now I can&#039;t even open information_schema.tables to view the table names. I get an error &quot;Unable to connect to foreign data source&quot;. Tools like AQT no longer work because they rely on data from information_schema. I tried issuing a DROP TABLE on the tables I knew of, but I am still unable to get to my schema. <br />
<br />
MySQL 5.1.39 on Linux.<br />
<br />
Any ideas?]]></description>
            <dc:creator>Andrew Nicholls</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Mon, 10 Dec 2012 16:29:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,575503,575503#msg-575503</guid>
            <title>How to enable/Activate Federated Engine in MYsql 5.5? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,575503,575503#msg-575503</link>
            <description><![CDATA[ Could any one tell me the step by step procedure To enable the Federated Engine in mysql 5.5?<br />
<br />
<br />
<br />
<br />
Thanks IN Advance,]]></description>
            <dc:creator>vasudhaika world</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Sat, 15 Dec 2012 06:50:04 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,575467,575467#msg-575467</guid>
            <title>Unable to connect to foreign data source (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,575467,575467#msg-575467</link>
            <description><![CDATA[ I have set the federated table successfully however when I try to query the federated table I have the following error<br />
<br />
select i_account from Accounts;<br />
ERROR 1429 (HY000): Unable to connect to foreign data source: Can&#039;t connect to MySQL server on &#039;203.160.8.116&#039; (13)<br />
<br />
I have checked the auth details and they are correct. I have actually connected to the remote server using<br />
 mysql -u`user` -p`password `database` -h `host` -P`port`<br />
from the linux console to confirm I have the right details<br />
I have put a tcpdump in the local server to see if it sends any packet to the remote server when I execute the select query and it does not.<br />
<br />
I have tried setting up the federated table using the full string in the connection attribute of the table and also with the create server command, both have the same unsuccessful result. do you have any ideas on what can I try next?<br />
<br />
thanks]]></description>
            <dc:creator>Juan Nino</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 07 Dec 2012 00:58:55 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,574467,574467#msg-574467</guid>
            <title>Storage Engine using MySQL Pro in Windows (no replies)</title>
            <link>https://forums.mysql.com/read.php?105,574467,574467#msg-574467</link>
            <description><![CDATA[ <a href="http://soundcloud.com/kk784/degrassi-the-next-generation-season-12-episode-27-online-streaming-free"  rel="nofollow">Degrassi The Next Generation Season 12 Episode 27</a> iCarly and Spencer are about to leave their apartment on April Fool&#039;s Day because they got evicted by Mr. Bushwell. Sam, Freddie, and Gibby arrive and Carly says that they all had good times in this apartment and remembers one time when they were all siting in the couch watching on TV an episode where the characters were doing flashbacks from past episodes (present in wacky <a href="http://soundcloud.com/kk784/icarly-season-6-episode-8-online-streaming-free-enjoy-on-movietail"  rel="nofollow">iCarly Season 6 Episode 8</a> recreations and not actual footage from past episodes). By the end of the episode, Mr. Bushwell comes with Lewbert to tell them to leave the building. Then, Sam asks them to remember that time where they came there and changed their minds about Carly and Spencer leaving, which turns out to be a replay of the scene with Lewbert and Bushwell entering the door.<br />
 <br />
<br />
Mike Baxter, a director of <a href="http://soundcloud.com/kk784/last-man-standing-season-2-episode-4-online-streaming-free-in-hd"  rel="nofollow">Last Man Standing Season 2 Episode 4</a> marketing at an outdoor sporting goods store, returns home from traveling to a new assignment at work and to his house filled with women: his wife Vanessa, his oldest daughter Kristin (a single mother caring for her son in the Baxter family home), his middle daughter Mandy <a href="http://igpgame.com/forums/index.php?/topic/5-whisker-wars-season-2-episode-1-online-streaming-free/"  rel="nofollow">Whisker Wars Season 2 Episode 1</a> (an unintelligent, popularity-driven teenager) and his youngest daughter Eve (a tomboy inspired by her father). While Mike gives Eve advice for her soccer game, which results in her injuring a boy she has a crush on, he also plays Cupid to set up Kyle, a young employee at his store, with Mandy. However, Kyle mistakes Kristin for Mandy, and dates Kristin instead.  <a href="http://igpgame.com/forums/index.php?/topic/4-malibu-country-season-1-episode-4-online-streaming-free-on-moivetail/"  rel="nofollow">Malibu Country Season 1 Episode 4</a><br />
<br />
<br />
<br />
<br />
After finding out that her <a href="http://soundcloud.com/eekk9/watch-twilight-breaking-dawn-part-2-online-free-full-movie-on-putlocker-2012"  rel="nofollow">Watch Twilight Breaking Dawn Part 2</a> husband had an affair with a co-worker, Reba Mackenzie moves her, her family, and her mother to Malibu to a house a that she never knew husband had, to restart her music career that she left years ago so she could take care of her family, and let her husbands career to the spot light. After moving in, she immediatley meets her neighbor Kim, who <a href="http://soundcloud.com/eekk9/watch-twilight-breaking-dawn-part-2-online-free-full-movie-in-hd-2012"  rel="nofollow">Watch Twilight Breaking Dawn Part 2</a> comes off as a woman who can&#039;t keep anything to herself; After finally scheduling a meeting with a record producer, Reba goes down to only find out that she isn&#039;t what they are looking for because she isn&#039;t &#039;young and sexy&#039; as the record producers assistant, Geoffrey, says. Reba soon realizes that Malibu is going to be a much different place, and a big adjust for her Nashville native family, as her daughter makes a new friend, Kim&#039;s step-son Sage, and her son adjusting to his girlfriend breaking up with him, not wanting a long distance <a href="http://soundcloud.com/eekk9/watch-twilight-breaking-dawn-part-2-online-free-on-googletv-2012"  rel="nofollow">Watch Twilight Breaking Dawn Part 2</a> relationship. <br />
<br />
Kim finds an article in a magazine about Bobby, Reba&#039;s ex, saying that he was dating a woman, and shows it to <a href="http://soundcloud.com/dfhdjks/watch-twilight-breaking-dawn-part-2-online-free-enjoy-in-hd-2012"  rel="nofollow">Watch Twilight Breaking Dawn Part 2</a> Lillie insisting that they shouldn&#039;t show Reba, only for Reba to come around and Lillie to show her. When Cash brings over Sages&#039; computer to him, he finds Sage kissing another girl, when Sage insists that he&#039;s gay, Cash threatens to tell June, implying that he can&#039;t be gay. Kim sets Reba up a man that she knows, saying she needs to get out of the house, with a talk from Lillie Reba agrees to go on the date. When Cash tells June about what he saw earlier, she tells him that she&#039;s fine with it; When Geoffrey stops by to get papers signed, Reba enlist his help to help pick out an outfit. Reba gets caught up talking to June about her feeling for Sage before her date; When she shows up Lillie and Kim are there and tell her that <a href="http://soundcloud.com/dfhdjks/watch-twilight-breaking-dawn-part-2-online-free-on-novamove-2012"  rel="nofollow">Watch Twilight Breaking Dawn Part 2</a> Tom believed that she stood him up and left. When Reba gets home she has to explain to Cash and June about her dating.]]></description>
            <dc:creator>anderson jozaf</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Fri, 23 Nov 2012 10:31:21 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?105,570015,570015#msg-570015</guid>
            <title>Federation perfomance much slower (1 reply)</title>
            <link>https://forums.mysql.com/read.php?105,570015,570015#msg-570015</link>
            <description><![CDATA[ We are finding performance of a federation query to be 4-5 times slower than running the query directly on the server.  we have 2 instances running on the same server, where one is federating off the other.  if you run select * from table a (fairly large table &gt; 200K rows) on the federated server then it runs 5x slower than running it directly on the source server. why?]]></description>
            <dc:creator>Han So</dc:creator>
            <category>Federated Storage Engine</category>
            <pubDate>Wed, 07 Nov 2012 16:15:15 +0000</pubDate>
        </item>
    </channel>
</rss>
