PDF (US Ltr)
- 35.1Mb
PDF (A4)
- 35.2Mb
Man Pages (TGZ)
- 256.4Kb
Man Pages (Zip)
- 361.3Kb
Info (Gzip)
- 3.4Mb
Info (Zip)
- 3.4Mb
Search Results
https://dev.mysql.com/doc/refman/5.7/en/mysql-logging.html
DB The default database or -- if no database has been selected. The mysql client can do these types of logging for statements executed interactively: On Unix, mysql writes the statements to a history file. By default, this file is named ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-secure-installation.html
You can remove the test database (which by default can be accessed by all users, even anonymous users), and privileges that permit anyone to access databases with names that start with test_. This program enables you to improve the security of your ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-shell-userguide.html
The AdminAPI enables database administrators to work with InnoDB Cluster, which provides an integrated solution for high availability and scalability using InnoDB based MySQL databases, without requiring advanced MySQL expertise. MySQL Shell is an ...
https://dev.mysql.com/doc/refman/5.7/en/mysql-shell-visual-studio.html
Designed and developed as a Visual Studio package, MySQL for Visual Studio integrates directly into Server Explorer providing a seamless experience for setting up new connections and working with database objects. The following MySQL for Visual ...
https://dev.mysql.com/doc/refman/5.7/en/mysqlbinlog-backup.html
Use --all-databases, --events, and --routines to back up all data, and --master-data=2 to include the current binary log coordinates in the dump file. mysqldump --host=host_name --all-databases --events --routines --master-data=2> dump_file Execute ... By default, mysqlbinlog reads binary log files and displays their contents in text ...
https://dev.mysql.com/doc/refman/5.7/en/mysqld.html
MySQL Server manages access to the MySQL data directory that contains databases and tables. When MySQL server starts, it listens for network connections from client programs and manages access to databases on behalf of those clients. mysqld, also ...
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-delimited-text.html
The following command dumps the contents of the db1 database to files in the /tmp database: $> mysqldump --tab=/tmp db1 The .txt files containing table data are written by the server, so they are owned by the system account used for running the ...
https://dev.mysql.com/doc/refman/5.7/en/mysqldump-tips.html
This section surveys techniques that enable you to use mysqldump to solve specific problems: How to make a copy a database How to copy a database from one server to another How to dump stored programs (stored procedures and functions, triggers, and ...
https://dev.mysql.com/doc/refman/5.7/en/mysqlslap.html
mysqlslap --delimiter=";" --number-of-queries=10 --query="use test;insert into t values(null)" --only-print Command-Line Format --only-print Type Boolean Default Value FALSE Do not connect to databases. mysqlslap is a diagnostic program designed to ...
https://dev.mysql.com/doc/refman/5.7/en/optimize-numeric.html
If you are using numeric data, it is faster in many cases to access information from a database (using a live connection) than to access a text file. Information in the database is likely to be stored in a more compact format than in the text file, ... For unique IDs or other values that can be represented as either strings or numbers, prefer numeric columns to string ...