About: MySQL Federated     Goto   Sponge   NotDistinct   Permalink

An Entity of Type : yago:WikicatDatabaseManagementSystems, within Data Space : dbpedia.org associated with source document(s)
QRcode icon
http://dbpedia.org/describe/?url=http%3A%2F%2Fdbpedia.org%2Fresource%2FMySQL_Federated

Federated is a storage engine for the MySQL MariaDB relational database management system that allows to create a table that is a local representation of a foreign (remote) table. It uses the MySQL client library API as a data transport, treating remote tables as if they were located on the local server. Each Federated table that is defined there is one .frm (data definition file containing information such as the URL of the data source). The actual data can exist on a local or remote MySQL instance. To create a Federated table, one has to specify a URL in the "CONNECTION" string:

AttributesValues
rdf:type
rdfs:label
  • Federated (fr)
  • MySQL Federated (ko)
  • MySQL Federated (en)
rdfs:comment
  • Federated est un moteur de stockage pour le SGBD MySQL. Il permet d'accéder à des données stockées dans des bases de données distantes, et ce sans recourir à des systèmes de réplication ou de clustering. Il a été introduit dans la version 5.0.3 de MySQL. (fr)
  • Federated is a storage engine for the MySQL MariaDB relational database management system that allows to create a table that is a local representation of a foreign (remote) table. It uses the MySQL client library API as a data transport, treating remote tables as if they were located on the local server. Each Federated table that is defined there is one .frm (data definition file containing information such as the URL of the data source). The actual data can exist on a local or remote MySQL instance. To create a Federated table, one has to specify a URL in the "CONNECTION" string: (en)
  • MySQL 관계형 데이터베이스 관리 시스템용 MySQL Federated 저장 엔진은 유저가 외부(또는 원격) 테이블을 로컬로 보여주는 테이블을 생성할 수 있게 해주는 저장 엔진이다. 이것은 MySQL 클라이언트 라이브러리 API를 데이터 통로로 이용하여, 원격의 데이터 소스를 동일하게 다른 저장 엔진으로 취급하여 로컬 데이터 자료를 MYD 파일(MyISAM), 메모리(클러스터, 힙) 또는 테이블스페이스(InnoDB)에 상관없이 취급한다. 그곳에 규정된 각 Federated 테이블은 하나의 .frm (데이터 소스 URL과 같은 정보를 포함한 데이터 정의 파일)이다. 실제 데이터는 로컬 또는 원격의 MySQL 인스턴스에 존재한다. Federated 테이블을 생성하기 위해서는 "CONNECTION" 문자열에서 URL을 지정해주어야 한다 : create table t1 ( a int, b varchar(32))ENGINE=FEDERATED CONNECTION='mysql://user@hostname/test/t1' 연결 URL 포맷은 다음과 같이 되어야 한다 : scheme://user:pass@host:port/schema/tablename (ko)
foaf:name
  • MySQL Federated Storage Engine (en)
foaf:homepage
name
  • MySQL Federated Storage Engine (en)
dcterms:subject
Wikipage page ID
Wikipage revision ID
Link from a Wikipage to another Wikipage
Link from a Wikipage to an external page
sameAs
dbp:wikiPageUsesTemplate
author
  • Patrick Galbraith, Brian Aker (en)
genre
language
  • C/C++ (en)
license
operating system
platform
released
website
has abstract
  • Federated is a storage engine for the MySQL MariaDB relational database management system that allows to create a table that is a local representation of a foreign (remote) table. It uses the MySQL client library API as a data transport, treating remote tables as if they were located on the local server. Each Federated table that is defined there is one .frm (data definition file containing information such as the URL of the data source). The actual data can exist on a local or remote MySQL instance. To create a Federated table, one has to specify a URL in the "CONNECTION" string: create table t1 ( a int, b varchar(32))ENGINE=FEDERATED CONNECTION='mysql://user@hostname/test/t1' The connection URL is in the format of: scheme://user:pass@host:port/schema/tablename Upon creation of a Federated table, the user must ensure that the remote data source does indeed exist or an error will be issued. The MySQL Federated Storage Engine was authored by Patrick Galbraith and Brian Aker and is currently being maintained by Patrick Galbraith and Antony Curtis. It was introduced in 2005 with MySQL 5.0. (en)
  • Federated est un moteur de stockage pour le SGBD MySQL. Il permet d'accéder à des données stockées dans des bases de données distantes, et ce sans recourir à des systèmes de réplication ou de clustering. Il a été introduit dans la version 5.0.3 de MySQL. (fr)
  • MySQL 관계형 데이터베이스 관리 시스템용 MySQL Federated 저장 엔진은 유저가 외부(또는 원격) 테이블을 로컬로 보여주는 테이블을 생성할 수 있게 해주는 저장 엔진이다. 이것은 MySQL 클라이언트 라이브러리 API를 데이터 통로로 이용하여, 원격의 데이터 소스를 동일하게 다른 저장 엔진으로 취급하여 로컬 데이터 자료를 MYD 파일(MyISAM), 메모리(클러스터, 힙) 또는 테이블스페이스(InnoDB)에 상관없이 취급한다. 그곳에 규정된 각 Federated 테이블은 하나의 .frm (데이터 소스 URL과 같은 정보를 포함한 데이터 정의 파일)이다. 실제 데이터는 로컬 또는 원격의 MySQL 인스턴스에 존재한다. Federated 테이블을 생성하기 위해서는 "CONNECTION" 문자열에서 URL을 지정해주어야 한다 : create table t1 ( a int, b varchar(32))ENGINE=FEDERATED CONNECTION='mysql://user@hostname/test/t1' 연결 URL 포맷은 다음과 같이 되어야 한다 : scheme://user:pass@host:port/schema/tablename Federated 테이블을 만들면, 유저는 원격 데이터 소스가 실제로 존재해야 하며, 그렇지 않으면 에러가 발생할 것이다. MySQL Federated 저장 엔진은 패트릭 갈브래이드(Patrick Galbraith)와 브라이언 애커(Brian Aker)가 만들었고, 현재는 패트릭 갤브래이드와 앤토니 커피스에 의해 유지되고 있다. 최초로 소개된 것은 2005년 MySQL 5.0 때 처음 소개되었다. (ko)
gold:hypernym
dbp:wordnet_type
prov:wasDerivedFrom
page length (characters) of wiki page
author
computing platform
genre
license
operating system
foaf:isPrimaryTopicOf
is Link from a Wikipage to another Wikipage of
is foaf:primaryTopic of
Faceted Search & Find service v1.17_git139 as of Feb 29 2024


Alternative Linked Data Documents: ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3330 as of Mar 19 2024, on Linux (x86_64-generic-linux-glibc212), Single-Server Edition (62 GB total memory, 54 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software