PDF (US Ltr)
- 43.3Mb
PDF (A4)
- 43.4Mb
Man Pages (TGZ)
- 297.2Kb
Man Pages (Zip)
- 402.5Kb
Info (Gzip)
- 4.3Mb
Info (Zip)
- 4.3Mb
Search Results
https://dev.mysql.com/doc/refman/8.0/en/show-profiles.html
Note The SHOW PROFILE and SHOW PROFILES statements are deprecated; expect it to be removed in a future MySQL release. SHOW PROFILES The SHOW PROFILES statement, together with SHOW PROFILE, displays profiling information that indicates resource ...
https://dev.mysql.com/doc/refman/8.0/en/show-replicas.html
Replica_UUID: The globally unique ID of this replica, as generated on the replica and found in the replica's auto.cnf file. {SHOW REPLICAS} Displays a list of replicas currently registered with the source. From MySQL 8.0.22, use SHOW REPLICAS in ...
https://dev.mysql.com/doc/refman/8.0/en/show-tables.html
You can also get this list using the mysqlshow db_name command. These temporary tables have names beginning with #sql and can be dropped using DROP TABLE. SHOW [EXTENDED] [FULL] TABLES [{FROM | IN} db_name] [LIKE 'pattern' | WHERE expr] SHOW TABLES ...
https://dev.mysql.com/doc/refman/8.0/en/source-installation-layout.html
See Table 2.3, “MySQL Installation Layout for Generic Unix/Linux Binary Package”, and Section 2.3.1, “MySQL Installation Layout on Microsoft Windows”. By default, when you install MySQL after compiling it from source, the installation step ...
https://dev.mysql.com/doc/refman/8.0/en/source-installation-methods.html
There are two methods for installing MySQL from source: Use a standard MySQL source distribution. To obtain a standard distribution, see Section 2.1.3, “How to Get MySQL”. For instructions on building from a standard distribution, see Section ...Distribution files have names of the form mysql-VERSION.tar.gz, mysql-VERSION.zip, or mysql-VERSION.rpm, where VERSION is a number like ...
https://dev.mysql.com/doc/refman/8.0/en/spatial-relation-functions.html
The functions described in this section take two geometries as arguments and return a qualitative or quantitative relation between them. MySQL implements two sets of functions using function names defined by the OpenGIS specification. One set tests ...
https://dev.mysql.com/doc/refman/8.0/en/sql-replication-statements.html
Statements are split into a group which controls source servers, a group which controls replica servers, and a group which can be applied to any replication servers. Replication can be controlled through the SQL interface using the statements ...
https://dev.mysql.com/doc/refman/8.0/en/storage-engines-other.html
Other storage engines may be available from third parties and community members that have used the Custom Storage Engine interface. For further information, documentation, installation guides, bug reporting or for any help or assistance with these ...
https://dev.mysql.com/doc/refman/8.0/en/symbolic-links-to-databases.html
On Unix, symlink a database using this procedure: Create the database using CREATE DATABASE: mysql> CREATE DATABASE mydb1; Using CREATE DATABASE creates the database in the MySQL data directory and permits the server to update the data dictionary ...Create a soft link in the data directory to the moved database directory: $> ln -s /path/to/mydb1 /path/to/datadir The command creates a symlink named mydb1 in the data ...
https://dev.mysql.com/doc/refman/8.0/en/symbolic-links.html
You can move databases or tables from the database directory to other locations and replace them with symbolic links to the new locations. You might want to do this, for example, to move a database to a file system with more free space or increase ...