Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
52 views

Multi column joins and Federated Tables

I am having a problem with getting information from two tables in our databases. Table A is a federated table from our accounts server which works perfectly well if queried on its own. It has no ...
1
vote
1answer
49 views

how to take dump of mysql for federated table?

now iam using mysql version 5.0.45.and the problm is,i want to take a dump of database. and it contains federated tables also. wen i am taking dump , it is showing an error "ERROR 1031 (HY000): ...
1
vote
2answers
105 views

Postgresql analog to mysql federated table storage engine

Between DBLink in postgresql (http://www.postgresql.org/docs/current/static/dblink.html) and foreign data wrappers (http://www.postgresql.org/docs/9.1/static/ddl-foreign-data.html), which one (if any) ...
1
vote
1answer
282 views

Is is possible to create a FEDERATED on VIEW for mysql

How can I create a FEDERATED on VIEW which placed on remote server? I'm using MySQL.
1
vote
0answers
181 views

Accessing data with FEDERATED error #1429

I am currently trying to establish a connection from one database to another on the same hostname(mysql.stud.ntnu.no) with FEDERATED, however, when the table is created(no problem), I get this ...
1
vote
1answer
347 views

How to setup Replication or Federation between MySQL and Derby?

Perhaps this is not possible yet, but... What's the easiest way to setup Replication or Federation between MySQL and Derby? I need a way for data updates/inserts/deletes into a certain table in ...
1
vote
1answer
416 views

mysqldump with federated tables

I need mysqldump including the data, but in database there are also couple of tables with FEDERATED engine. The mysqldump includes INSERTs for FEDERATED tables too, what makes for exemaple "Duplicate ...
0
votes
2answers
72 views

How to check (fast) if a federated table is connected?

I have 5 federated tables. Each table is connected to another database. Now I do some stuff in a loop and the first thing I do in the loop is some stuff with the federated table. Because the database ...
0
votes
1answer
216 views

Proper syntax for MySQL 5.0.x FEDERATED table creation?

So I'm trying to create a federated table using the syntax from the docs. Following this, I've created a table like so: CREATE TABLE `federated_table` ( `table_uid` int(10) unsigned not null ...
0
votes
2answers
785 views

How do I keep 2 scratch Databases in sync

My question is a lot like this one. However I'm on MySQL and I'm looking for the "lowest tech" solution that I can find. The situation is that I have 2 databases that should have the same data in ...