PDF (US Ltr)
- 41.8Mb
PDF (A4)
- 41.9Mb
Man Pages (TGZ)
- 272.4Kb
Man Pages (Zip)
- 378.4Kb
Info (Gzip)
- 4.2Mb
Info (Zip)
- 4.2Mb
Search Results
https://dev.mysql.com/doc/refman/9.7/en/alter-library.html
ALTER LIBRARY library_name COMMENT "comment_text" This statement adds a comment to the named JavaScript library, or replaces the existing comment if there is one. Following execution of this statement, the updated comment can be viewed in the ...
https://dev.mysql.com/doc/refman/9.7/en/archive-storage-engine.html
The ARCHIVE storage engine produces special-purpose tables that store large amounts of unindexed data in a very small footprint. To enable this storage engine if you build MySQL from source, invoke CMake with the -DWITH_ARCHIVE_STORAGE_ENGINE ...
https://dev.mysql.com/doc/refman/9.7/en/audit-log-component-file-formats.html
This data is available in the slow query log for qualifying queries, and in the context of the audit log it similarly helps to detect outliers for activity analysis. Example: "proxy": "developer" query A string representing the text of an SQL ...
https://dev.mysql.com/doc/refman/9.7/en/audit-log-component-security.html
By default, contents of audit log files produced by the audit log component are not encrypted and may contain sensitive information, such as the text of SQL statements. For security reasons, audit log files should be written to a directory ...
https://dev.mysql.com/doc/refman/9.7/en/audit-log-security.html
By default, contents of audit log files produced by the audit log plugin are not encrypted and may contain sensitive information, such as the text of SQL statements. Important The audit_log plugin is deprecated, and is being replaced by the ...
https://dev.mysql.com/doc/refman/9.7/en/batch-mode.html
filename See Section 6.5.1.5, “Executing SQL Statements from a Text File”, for more information. In the previous sections, you used mysql interactively to enter statements and view the results. If you want the script to continue even if some of ...
https://dev.mysql.com/doc/refman/9.7/en/binary-log.html
Passwords in statements written to the binary log are rewritten by the server not to occur literally in plain text. The binary log contains “events” that describe database changes such as table creation operations or changes to table data. It ...
https://dev.mysql.com/doc/refman/9.7/en/built-in-function-reference.html
The following table lists each built-in (native) function and operator and provides a short description of each one. For a table listing functions that are loadable at runtime, see Section 14.2, “Loadable Function Reference”. ->> Return value ...
https://dev.mysql.com/doc/refman/9.7/en/case-sensitivity.html
For nonbinary strings (CHAR, VARCHAR, TEXT), string searches use the collation of the comparison operands. One context in which you can expect to see binary is for compression functions, which return binary strings as a general rule: string: mysql> ...For binary strings (BINARY, VARBINARY, BLOB), comparisons use the numeric values of the bytes in the operands; this means that for alphabetic characters, comparisons are ...
https://dev.mysql.com/doc/refman/9.7/en/charset-conversion.html
If the column has a nonbinary data type (CHAR, VARCHAR, TEXT), its contents should be encoded in the column character set, not some other character set. To convert a binary or nonbinary string column to use a particular character set, use ALTER ...