Explain federated tables?

Answers were Sorted based on User's Feedback



Explain federated tables?..

Answer / amith

Introduced in MySQL 5.0, federated tables allow access to
the tables located on other databases on other servers.

Is This Answer Correct ?    9 Yes 0 No

Explain federated tables?..

Answer / sivaraj

The FEDERATED storage engine is available beginning with
MySQL 5.0.3. It is a storage engine that accesses data in
tables of remote databases rather than in local tables.

Is This Answer Correct ?    6 Yes 0 No

Explain federated tables?..

Answer / aravind

The FEDERATED storage engine is available beginning with
MySQL 5.0.3. This storage engine enables data to be
accessed from a remote MySQL database on a local server
without using replication or cluster technology. When using
a FEDERATED table, queries on the local server are
automatically executed on the remote (federated) tables. No
data is stored on the local tables

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More MySQL Interview Questions

What is the command line end user interface - mysql?

0 Answers  


What are date and time data types?

0 Answers  


How to insert html code into mysql database using php?

0 Answers  


what is database white box testing? : Mysql dba

0 Answers  


How many columns can a table have?

0 Answers  






I want to make a query where I want to eliminate the duplicate rows from the table. For example : Input : Table : NAME Column1 Column2 India USA USA India UK India India UK The desired output that I want to eliminate the duplicates Output India USA UK India Thanks

2 Answers   Sun Life,


SELECT country,city FROM customers GROUP BY country ORDER BY city DESC

5 Answers   HCL,


What is the use of pdo?

0 Answers  


Where is mysql data stored?

0 Answers  


Is mysql free software?

0 Answers  


How do you restart mysql?

0 Answers  


What can I do with mysql?

0 Answers  


Categories