Rechercher dans le manuel MySQL
20.3.2 Download and Import world_x Database
As part of this quick-start guide, an example schema is provided
which is referred to as the world_x
schema.
Many of the examples demonstrate Document Store functionality
using this schema. Start your MySQL server so that you can load
the world_x
schema, then follow these steps:
Download world_x-db.zip.
Extract the installation archive to a temporary location such as
/tmp/
. Unpacking the archive results in a single file namedworld_x.sql
.Import the
world_x.sql
file to your server. You can either:Start MySQL Shell in SQL mode and import the file by issuing:
mysqlsh -u root --sql --file /tmp/world_x-db/world_x.sql Enter password: ****
Set MySQL Shell to SQL mode while it is running and source the schema file by issuing:
\sql Switching to SQL mode... Commands end with ; \source /tmp/world_x-db/world_x.sql
Replace
/tmp/
with the path to theworld_x.sql
file on your system. Enter your password if prompted. A non-root account can be used as long as the account has privileges to create new schemas.
The world_x Schema
The world_x
example schema contains the
following JSON collection and relational tables:
Collection
countryinfo
: Information about countries in the world.
Tables
country
: Minimal information about countries of the world.city
: Information about some of the cities in those countries.countrylanguage
: Languages spoken in each country.
MySQL Shell Sessions explains session types.
Traduction non disponible
Le manuel MySQL n'est pas encore traduit en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Document créé le 26/06/2006, dernière modification le 26/10/2018
Source du document imprimé : https://www.gaudry.be/mysql-rf-mysql-shell-tutorial-javascript-download.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.