url
stringlengths
45
122
content
stringlengths
380
3.07M
https://dev.mysql.com/doc/refman/8.4/en/start-replica.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="start-replica"> </a> 15.4.2.4 START REPLICA Statement </h4> </div> </div> </div> <a class="indexterm" name="idm46045177066176"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa48011275"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">START</span> <span class="token keyword">REPLICA</span> <span class="token punctuation">[</span><em class="replaceable">thread_types</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><em class="replaceable">until_option</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><em class="replaceable">connection_options</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><em class="replaceable">channel_option</em><span class="token punctuation">]</span> <em class="replaceable">thread_types</em>: <span class="token punctuation">[</span><em class="replaceable">thread_type</em> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">thread_type</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token punctuation">]</span> <em class="replaceable">thread_type</em>: <span class="token keyword">IO_THREAD</span> <span class="token operator">|</span> <span class="token keyword">SQL_THREAD</span> <em class="replaceable">until_option</em>: <span class="token keyword">UNTIL</span> { {<span class="token keyword">SQL_BEFORE_GTIDS</span> <span class="token operator">|</span> <span class="token keyword">SQL_AFTER_GTIDS</span>} <span class="token operator">=</span> <em class="replaceable">gtid_set</em> <span class="token operator">|</span> <span class="token keyword">SOURCE_LOG_FILE</span> <span class="token operator">=</span> <span class="token string">'<em class="replaceable">log_name</em>'</span><span class="token punctuation">,</span> <span class="token keyword">SOURCE_LOG_POS</span> <span class="token operator">=</span> <em class="replaceable">log_pos</em> <span class="token operator">|</span> <span class="token keyword">RELAY_LOG_FILE</span> <span class="token operator">=</span> <span class="token string">'<em class="replaceable">log_name</em>'</span><span class="token punctuation">,</span> <span class="token keyword">RELAY_LOG_POS</span> <span class="token operator">=</span> <em class="replaceable">log_pos</em> <span class="token operator">|</span> <span class="token keyword">SQL_AFTER_MTS_GAPS</span> } <em class="replaceable">connection_options</em>: <span class="token punctuation">[</span><span class="token keyword">USER</span><span class="token operator">=</span><span class="token string">'<em class="replaceable">user_name</em>'</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">PASSWORD</span><span class="token operator">=</span><span class="token string">'<em class="replaceable">user_pass</em>'</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">DEFAULT_AUTH</span><span class="token operator">=</span><span class="token string">'<em class="replaceable">plugin_name</em>'</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">PLUGIN_DIR</span><span class="token operator">=</span><span class="token string">'<em class="replaceable">plugin_dir</em>'</span><span class="token punctuation">]</span> <em class="replaceable">channel_option</em>: <span class="token keyword">FOR</span> <span class="token keyword">CHANNEL</span> <span class="token keyword"><em class="replaceable">channel</em></span> <em class="replaceable">gtid_set</em>: <em class="replaceable">uuid_set</em> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">uuid_set</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token operator">|</span> <span class="token string">''</span> <em class="replaceable">uuid_set</em>: <em class="replaceable">uuid</em>:<span class="token keyword"><em class="replaceable">interval</em></span><span class="token punctuation">[</span>:<span class="token keyword"><em class="replaceable">interval</em></span><span class="token punctuation">]</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <em class="replaceable">uuid</em>: <em class="replaceable">hhhhhhhh</em><span class="token operator">-</span><em class="replaceable">hhhh</em><span class="token operator">-</span><em class="replaceable">hhhh</em><span class="token operator">-</span><em class="replaceable">hhhh</em><span class="token operator">-</span><em class="replaceable">hhhhhhhhhhhh</em> <em class="replaceable">h</em>: <span class="token punctuation">[</span><span class="token number">0</span><span class="token operator">-</span><span class="token number">9</span><span class="token punctuation">,</span>A<span class="token operator">-</span>F<span class="token punctuation">]</span> <span class="token keyword"><em class="replaceable">interval</em></span>: <em class="replaceable">n</em><span class="token punctuation">[</span><span class="token operator">-</span><em class="replaceable">n</em><span class="token punctuation">]</span> <span class="token punctuation">(</span><em class="replaceable">n</em> <span class="token operator">&gt;=</span> <span class="token number">1</span><span class="token punctuation">)</span></code></pre> </div> <p> <code class="literal"> START REPLICA </code> starts the replication threads, either together or separately. </p> <p> <code class="literal"> START REPLICA </code> requires the <a class="link" href="privileges-provided.html#priv_replication-slave-admin"> <code class="literal"> REPLICATION_SLAVE_ADMIN </code> </a> privilege (or the deprecated <a class="link" href="privileges-provided.html#priv_super"> <code class="literal"> SUPER </code> </a> privilege). <code class="literal"> START REPLICA </code> causes an implicit commit of an ongoing transaction. See <a class="xref" href="implicit-commit.html" title="15.3.3 Statements That Cause an Implicit Commit"> Section 15.3.3, “Statements That Cause an Implicit Commit” </a> . </p> <p> For the thread type options, you can specify <code class="literal"> IO_THREAD </code> , <code class="literal"> SQL_THREAD </code> , both of these, or neither of them. Only the threads that are started are affected by the statement. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> START REPLICA </code> with no thread type options starts all of the replication threads, and so does <code class="literal"> START REPLICA </code> with both of the thread type options. </p> </li> <li class="listitem"> <p> <code class="literal"> IO_THREAD </code> starts the replication receiver thread, which reads events from the source server and stores them in the relay log. </p> </li> <li class="listitem"> <p> <code class="literal"> SQL_THREAD </code> starts the replication applier thread, which reads events from the relay log and executes them. A multithreaded replica (with <a class="link" href="replication-options-replica.html#sysvar_replica_parallel_workers"> <code class="literal"> replica_parallel_workers </code> </a> &gt; 0) applies transactions using a coordinator thread and multiple applier threads, and <code class="literal"> SQL_THREAD </code> starts all of these. </p> </li> </ul> </div> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> <code class="literal"> START REPLICA </code> sends an acknowledgment to the user after all the replication threads have started. However, the replication receiver thread might not yet have connected to the source successfully, or an applier thread might stop when applying an event right after starting. <code class="literal"> START REPLICA </code> does not continue to monitor the threads after they are started, so it does not warn you if they subsequently stop or cannot connect. You must check the replica's error log for error messages generated by the replication threads, or check that they are running satisfactorily with <a class="link" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> <code class="literal"> SHOW REPLICA STATUS </code> </a> . A successful <code class="literal"> START REPLICA </code> statement causes <a class="link" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> <code class="literal"> SHOW REPLICA STATUS </code> </a> to show <code class="literal"> Replica_SQL_Running=Yes </code> , but it might or might not show <code class="literal"> Replica_IO_Running=Yes </code> , because <code class="literal"> Replica_IO_Running=Yes </code> is only shown if the receiver thread is both running and connected. For more information, see <a class="xref" href="replication-administration-status.html" title="19.1.7.1 Checking Replication Status"> Section 19.1.7.1, “Checking Replication Status” </a> . </p> </div> <p> The optional <code class="literal"> FOR CHANNEL <em class="replaceable"> <code> channel </code> </em> </code> clause enables you to name which replication channel the statement applies to. Providing a <code class="literal"> FOR CHANNEL <em class="replaceable"> <code> channel </code> </em> </code> clause applies the <code class="literal"> START REPLICA </code> statement to a specific replication channel. If no clause is named and no extra channels exist, the statement applies to the default channel. If a <code class="literal"> START REPLICA </code> statement does not have a channel defined when using multiple channels, this statement starts the specified threads for all channels. See <a class="xref" href="replication-channels.html" title="19.2.2 Replication Channels"> Section 19.2.2, “Replication Channels” </a> for more information. </p> <p> The replication channels for Group Replication ( <code class="literal"> group_replication_applier </code> and <code class="literal"> group_replication_recovery </code> ) are managed automatically by the server instance. <code class="literal"> START REPLICA </code> cannot be used at all with the <code class="literal"> group_replication_recovery </code> channel, and should only be used with the <code class="literal"> group_replication_applier </code> channel when Group Replication is not running. The <code class="literal"> group_replication_applier </code> channel only has an applier thread and has no receiver thread, so it can be started if required by using the <code class="literal"> SQL_THREAD </code> option without the <code class="literal"> IO_THREAD </code> option. </p> <p> <code class="literal"> START REPLICA </code> supports pluggable user-password authentication (see <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> ) with the <code class="literal"> USER </code> , <code class="literal"> PASSWORD </code> , <code class="literal"> DEFAULT_AUTH </code> and <code class="literal"> PLUGIN_DIR </code> options, as described in the following list. When you use these options, you must start the receiver thread ( <code class="literal"> IO_THREAD </code> option) or all the replication threads; you cannot start the replication applier thread ( <code class="literal"> SQL_THREAD </code> option) alone. </p> <div class="variablelist"> <dl class="variablelist"> <dt> <span class="term"> <code class="literal"> USER </code> </span> </dt> <dd> <p> The user name for the account. You must set this if <code class="literal"> PASSWORD </code> is used. The option cannot be set to an empty or null string. </p> </dd> <dt> <span class="term"> <code class="literal"> PASSWORD </code> </span> </dt> <dd> <p> The password for the named user account. </p> </dd> <dt> <span class="term"> <code class="literal"> DEFAULT_AUTH </code> </span> </dt> <dd> <p> The name of the authentication plugin. The default is MySQL native authentication. </p> </dd> <dt> <span class="term"> <code class="literal"> PLUGIN_DIR </code> </span> </dt> <dd> <p> The location of the authentication plugin. </p> </dd> </dl> </div> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> The password that you set using <code class="literal"> START REPLICA </code> is masked when it is written to MySQL Server’s logs, Performance Schema tables, and <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> statements. However, it is sent in plain text over the connection to the replica server instance. To protect the password in transit, use SSL/TLS encryption, an SSH tunnel, or another method of protecting the connection from unauthorized viewing, for the connection between the replica server instance and the client that you use to issue <code class="literal"> START REPLICA </code> . </p> </div> <p> The <code class="literal"> UNTIL </code> clause makes the replica start replication, then process transactions up to the point that you specify in the <code class="literal"> UNTIL </code> clause, then stop again. The <code class="literal"> UNTIL </code> clause can be used to make a replica proceed until just before the point where you want to skip a transaction that is unwanted, and then skip the transaction as described in <a class="xref" href="replication-administration-skip.html" title="19.1.7.3 Skipping Transactions"> Section 19.1.7.3, “Skipping Transactions” </a> . To identify a transaction, you can use <a class="link" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> <span class="command"> <strong> mysqlbinlog </strong> </span> </a> with the source's binary log or the replica's relay log, or use a <a class="link" href="show-binlog-events.html" title="15.7.7.3 SHOW BINLOG EVENTS Statement"> <code class="literal"> SHOW BINLOG EVENTS </code> </a> statement. </p> <p> You can also use the <code class="literal"> UNTIL </code> clause for debugging replication by processing transactions one at a time or in sections. If you are using the <code class="literal"> UNTIL </code> clause to do this, start the replica with <a class="link" href="replication-options-replica.html#option_mysqld_skip-replica-start"> <code class="option"> --skip-replica-start </code> </a> to prevent the SQL thread from running when the replica server starts. Remove the option or system variable setting after the procedure is complete, so that it is not forgotten in the event of an unexpected server restart. </p> <p> The <a class="link" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> <code class="literal"> SHOW REPLICA STATUS </code> </a> statement includes output fields that display the current values of the <code class="literal"> UNTIL </code> condition. The <code class="literal"> UNTIL </code> condition lasts for as long as the affected threads are still running, and is removed when they stop. </p> <p> The <code class="literal"> UNTIL </code> clause operates on the replication applier thread ( <code class="literal"> SQL_THREAD </code> option). You can use the <code class="literal"> SQL_THREAD </code> option or let the replica default to starting both threads. If you use the <code class="literal"> IO_THREAD </code> option alone, the <code class="literal"> UNTIL </code> clause is ignored because the applier thread is not started. </p> <p> The point that you specify in the <code class="literal"> UNTIL </code> clause can be any one (and only one) of the following options: </p> <div class="variablelist"> <dl class="variablelist"> <dt> <span class="term"> <code class="literal"> SOURCE_LOG_FILE </code> and <code class="literal"> SOURCE_LOG_POS </code> </span> </dt> <dd> <p> These options make the replication applier process transactions up to a position in its relay log, identified by the file name and file position of the corresponding point in the binary log on the source server. The applier thread finds the nearest transaction boundary at or after the specified position, finishes applying the transaction, and stops there. For compressed transaction payloads, specify the end position of the compressed <code class="literal"> Transaction_payload_event </code> . </p> <p> These options can still be used when the <code class="literal"> GTID_ONLY </code> option was set on the <a class="link" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> <code class="literal"> CHANGE REPLICATION SOURCE TO </code> </a> statement to stop the replication channel from persisting file names and file positions in the replication metadata repositories. The file names and file positions are tracked in memory. </p> </dd> <dt> <span class="term"> <code class="literal"> RELAY_LOG_FILE </code> and <code class="literal"> RELAY_LOG_POS </code> </span> </dt> <dd> <p> These options make the replication applier process transactions up to a position in the replica’s relay log, identified by the relay log file name and a position in that file. The applier thread finds the nearest transaction boundary at or after the specified position, finishes applying the transaction, and stops there. For compressed transaction payloads, specify the end position of the compressed <code class="literal"> Transaction_payload_event </code> . </p> <p> These options can still be used when the <code class="literal"> GTID_ONLY </code> option was set on the <a class="link" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> <code class="literal"> CHANGE REPLICATION SOURCE TO </code> </a> statement to stop the replication channel from persisting file names and file positions in the replication metadata repositories. The file names and file positions are tracked in memory. </p> </dd> <dt> <span class="term"> <code class="literal"> SQL_BEFORE_GTIDS </code> </span> </dt> <dd> <p> This option makes the replication applier start processing transactions and stop when it encounters any transaction that is in the specified GTID set. The encountered transaction from the GTID set is not applied, and nor are any of the other transactions in the GTID set. The option takes a GTID set containing one or more global transaction identifiers as an argument (see <a class="xref" href="replication-gtids-concepts.html#replication-gtids-concepts-gtid-sets" title="GTID Sets"> GTID Sets </a> ). Transactions in a GTID set do not necessarily appear in the replication stream in the order of their GTIDs, so the transaction before which the applier stops is not necessarily the earliest. </p> </dd> <dt> <span class="term"> <code class="literal"> SQL_AFTER_GTIDS </code> </span> </dt> <dd> <p> This option makes the replication applier start processing transactions and stop when it has processed all of the transactions in a specified GTID set. The option takes a GTID set containing one or more global transaction identifiers as an argument (see <a class="xref" href="replication-gtids-concepts.html#replication-gtids-concepts-gtid-sets" title="GTID Sets"> GTID Sets </a> ). </p> <p> With <code class="literal"> SQL_AFTER_GTIDS </code> , the replication threads stop after they have processed all transactions in the GTID set. Transactions are processed in the order received, so it is possible that these include transactions which are not part of the GTID set, but which are received (and processed) before all transactions in the set have been committed. For example, executing <code class="literal"> START REPLICA UNTIL SQL_AFTER_GTIDS = 3E11FA47-71CA-11E1-9E33-C80AA9429562:11-56 </code> causes the replica to obtain (and process) all transactions from the source until all of the transactions having the sequence numbers 11 through 56 have been processed, and then to stop without processing any additional transactions after that point has been reached. </p> <p> In older versions of MySQL, this option could not be used with <a class="link" href="replication-options-replica.html#sysvar_replica_parallel_workers"> <code class="literal"> replica_parallel_workers &gt; 1 </code> </a> . In MySQL 8.4, this is no longer an issue, and <code class="literal"> SQL_AFTER_GTIDS </code> can be used without causing the replica to fall back into single-threaded mode. </p> </dd> <dt> <span class="term"> <code class="literal"> SQL_AFTER_MTS_GAPS </code> </span> </dt> <dd> <p> For a multithreaded replica only (with <a class="link" href="replication-options-replica.html#sysvar_replica_parallel_workers"> <code class="literal"> replica_parallel_workers </code> </a> &gt; 0), this option makes the replica process transactions up to the point where there are no more gaps in the sequence of transactions executed from the relay log. When using a multithreaded replica, there is a chance of gaps occurring in the following situations: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The coordinator thread is stopped. </p> </li> <li class="listitem"> <p> An error occurs in the applier threads. </p> </li> <li class="listitem"> <p> <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> shuts down unexpectedly. </p> </li> </ul> </div> <p> When a replication channel has gaps, the replica’s database is in a state that might never have existed on the source. The replica tracks the gaps internally and disallows <a class="link" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> <code class="literal"> CHANGE REPLICATION SOURCE TO </code> </a> statements that would remove the gap information if they executed. </p> <p> All replicas are multithreaded by default. When <a class="link" href="replication-options-replica.html#sysvar_replica_preserve_commit_order"> <code class="literal"> replica_preserve_commit_order=ON </code> </a> on the replica (the default), gaps should not occur except in the specific situations listed in the description for this variable. If <code class="literal"> replica_preserve_commit_order </code> is <code class="literal"> OFF </code> , the commit order of transactions is not preserved, so the chance of gaps occurring is much larger. </p> <p> If GTIDs are not in use and you need to change a failed multithreaded replica to single-threaded mode, you can issue the following series of statements, in the order shown: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa17560095"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">START</span> <span class="token keyword">REPLICA</span> <span class="token keyword">UNTIL</span> <span class="token keyword">SQL_AFTER_MTS_GAPS</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token variable">@@GLOBAL.replica_parallel_workers</span> <span class="token operator">=</span> <span class="token number">0</span><span class="token punctuation">;</span> <span class="token keyword">START</span> <span class="token keyword">REPLICA</span> <span class="token keyword">SQL_THREAD</span><span class="token punctuation">;</span></code></pre> </div> </dd> </dl> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/stored-objects.html
<div id="docs-body"> <div class="chapter"> <div class="titlepage"> <div> <div> <h1 class="title"> <a name="stored-objects"> </a> Chapter 27 Stored Objects </h1> </div> </div> </div> <div class="toc"> <p> <b> Table of Contents </b> </p> <dl class="toc"> <dt> <span class="section"> <a href="stored-programs-defining.html"> 27.1 Defining Stored Programs </a> </span> </dt> <dt> <span class="section"> <a href="stored-routines.html"> 27.2 Using Stored Routines </a> </span> </dt> <dd> <dl> <dt> <span class="section"> <a href="stored-routines-syntax.html"> 27.2.1 Stored Routine Syntax </a> </span> </dt> <dt> <span class="section"> <a href="stored-routines-privileges.html"> 27.2.2 Stored Routines and MySQL Privileges </a> </span> </dt> <dt> <span class="section"> <a href="stored-routines-metadata.html"> 27.2.3 Stored Routine Metadata </a> </span> </dt> <dt> <span class="section"> <a href="stored-routines-last-insert-id.html"> 27.2.4 Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() </a> </span> </dt> </dl> </dd> <dt> <span class="section"> <a href="triggers.html"> 27.3 Using Triggers </a> </span> </dt> <dd> <dl> <dt> <span class="section"> <a href="trigger-syntax.html"> 27.3.1 Trigger Syntax and Examples </a> </span> </dt> <dt> <span class="section"> <a href="trigger-metadata.html"> 27.3.2 Trigger Metadata </a> </span> </dt> </dl> </dd> <dt> <span class="section"> <a href="event-scheduler.html"> 27.4 Using the Event Scheduler </a> </span> </dt> <dd> <dl> <dt> <span class="section"> <a href="events-overview.html"> 27.4.1 Event Scheduler Overview </a> </span> </dt> <dt> <span class="section"> <a href="events-configuration.html"> 27.4.2 Event Scheduler Configuration </a> </span> </dt> <dt> <span class="section"> <a href="events-syntax.html"> 27.4.3 Event Syntax </a> </span> </dt> <dt> <span class="section"> <a href="events-metadata.html"> 27.4.4 Event Metadata </a> </span> </dt> <dt> <span class="section"> <a href="events-status-info.html"> 27.4.5 Event Scheduler Status </a> </span> </dt> <dt> <span class="section"> <a href="events-privileges.html"> 27.4.6 The Event Scheduler and MySQL Privileges </a> </span> </dt> </dl> </dd> <dt> <span class="section"> <a href="views.html"> 27.5 Using Views </a> </span> </dt> <dd> <dl> <dt> <span class="section"> <a href="view-syntax.html"> 27.5.1 View Syntax </a> </span> </dt> <dt> <span class="section"> <a href="view-algorithms.html"> 27.5.2 View Processing Algorithms </a> </span> </dt> <dt> <span class="section"> <a href="view-updatability.html"> 27.5.3 Updatable and Insertable Views </a> </span> </dt> <dt> <span class="section"> <a href="view-check-option.html"> 27.5.4 The View WITH CHECK OPTION Clause </a> </span> </dt> <dt> <span class="section"> <a href="view-metadata.html"> 27.5.5 View Metadata </a> </span> </dt> </dl> </dd> <dt> <span class="section"> <a href="stored-objects-security.html"> 27.6 Stored Object Access Control </a> </span> </dt> <dt> <span class="section"> <a href="stored-programs-logging.html"> 27.7 Stored Program Binary Logging </a> </span> </dt> <dt> <span class="section"> <a href="stored-program-restrictions.html"> 27.8 Restrictions on Stored Programs </a> </span> </dt> <dt> <span class="section"> <a href="view-restrictions.html"> 27.9 Restrictions on Views </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045082643312"> </a> <a class="indexterm" name="idm46045082642240"> </a> <a class="indexterm" name="idm46045082641168"> </a> <a class="indexterm" name="idm46045082640096"> </a> <a class="indexterm" name="idm46045082638608"> </a> <a class="indexterm" name="idm46045082637120"> </a> <a class="indexterm" name="idm46045082635632"> </a> <a class="indexterm" name="idm46045082634560"> </a> <a class="indexterm" name="idm46045082633488"> </a> <a class="indexterm" name="idm46045082632416"> </a> <p> This chapter discusses stored database objects that are defined in terms of SQL code that is stored on the server for later execution. </p> <p> Stored objects include these object types: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Stored procedure: An object created with <a class="link" href="create-procedure.html" title="15.1.17 CREATE PROCEDURE and CREATE FUNCTION Statements"> <code class="literal"> CREATE PROCEDURE </code> </a> and invoked using the <a class="link" href="call.html" title="15.2.1 CALL Statement"> <code class="literal"> CALL </code> </a> statement. A procedure does not have a return value but can modify its parameters for later inspection by the caller. It can also generate result sets to be returned to the client program. </p> </li> <li class="listitem"> <p> Stored function: An object created with <a class="link" href="create-function.html" title="15.1.14 CREATE FUNCTION Statement"> <code class="literal"> CREATE FUNCTION </code> </a> and used much like a built-in function. You invoke it in an expression and it returns a value during expression evaluation. </p> </li> <li class="listitem"> <p> Trigger: An object created with <a class="link" href="create-trigger.html" title="15.1.22 CREATE TRIGGER Statement"> <code class="literal"> CREATE TRIGGER </code> </a> that is associated with a table. A trigger is activated when a particular event occurs for the table, such as an insert or update. </p> </li> <li class="listitem"> <p> Event: An object created with <a class="link" href="create-event.html" title="15.1.13 CREATE EVENT Statement"> <code class="literal"> CREATE EVENT </code> </a> and invoked by the server according to schedule. </p> </li> <li class="listitem"> <p> View: An object created with <a class="link" href="create-view.html" title="15.1.23 CREATE VIEW Statement"> <code class="literal"> CREATE VIEW </code> </a> that when referenced produces a result set. A view acts as a virtual table. </p> </li> </ul> </div> <p> Terminology used in this document reflects the stored object hierarchy: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Stored routines include stored procedures and functions. </p> </li> <li class="listitem"> <p> Stored programs include stored routines, triggers, and events. </p> </li> <li class="listitem"> <p> Stored objects include stored programs and views. </p> </li> </ul> </div> <p> This chapter describes how to use stored objects. The following sections provide additional information about SQL syntax for statements related to these objects, and about object processing: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> For each object type, there are <code class="literal"> CREATE </code> , <code class="literal"> ALTER </code> , and <code class="literal"> DROP </code> statements that control which objects exist and how they are defined. See <a class="xref" href="sql-data-definition-statements.html" title="15.1 Data Definition Statements"> Section 15.1, “Data Definition Statements” </a> . </p> </li> <li class="listitem"> <p> The <a class="link" href="call.html" title="15.2.1 CALL Statement"> <code class="literal"> CALL </code> </a> statement is used to invoke stored procedures. See <a class="xref" href="call.html" title="15.2.1 CALL Statement"> Section 15.2.1, “CALL Statement” </a> . </p> </li> <li class="listitem"> <p> Stored program definitions include a body that may use compound statements, loops, conditionals, and declared variables. See <a class="xref" href="sql-compound-statements.html" title="15.6 Compound Statement Syntax"> Section 15.6, “Compound Statement Syntax” </a> . </p> </li> <li class="listitem"> <p> Metadata changes to objects referred to by stored programs are detected and cause automatic reparsing of the affected statements when the program is next executed. For more information, see <a class="xref" href="statement-caching.html" title="10.10.3 Caching of Prepared Statements and Stored Programs"> Section 10.10.3, “Caching of Prepared Statements and Stored Programs” </a> . </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/secure-client-programming.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="secure-client-programming"> </a> 8.1.7 Client Programming Security Guidelines </h3> </div> </div> </div> <p> Client applications that access MySQL should use the following guidelines to avoid interpreting external data incorrectly or exposing sensitive information. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="secure-client-programming.html#client-external-data-handling" title="Handle External Data Properly"> Handle External Data Properly </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="secure-client-programming.html#client-mysql-error-handling" title="Handle MySQL Error Messages Properly"> Handle MySQL Error Messages Properly </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="client-external-data-handling"> </a> Handle External Data Properly </h4> </div> </div> </div> <p> Applications that access MySQL should not trust any data entered by users, who can try to trick your code by entering special or escaped character sequences in Web forms, URLs, or whatever application you have built. Be sure that your application remains secure if a user tries to perform SQL injection by entering something like <code class="literal"> ; DROP DATABASE mysql; </code> into a form. This is an extreme example, but large security leaks and data loss might occur as a result of hackers using similar techniques, if you do not prepare for them. </p> <a class="indexterm" name="idm46045252397904"> </a> <a class="indexterm" name="idm46045252396832"> </a> <p> A common mistake is to protect only string data values. Remember to check numeric data as well. If an application generates a query such as <code class="literal"> SELECT * FROM table WHERE ID=234 </code> when a user enters the value <code class="literal"> 234 </code> , the user can enter the value <code class="literal"> 234 OR 1=1 </code> to cause the application to generate the query <code class="literal"> SELECT * FROM table WHERE ID=234 OR 1=1 </code> . As a result, the server retrieves every row in the table. This exposes every row and causes excessive server load. The simplest way to protect from this type of attack is to use single quotation marks around the numeric constants: <code class="literal"> SELECT * FROM table WHERE ID='234' </code> . If the user enters extra information, it all becomes part of the string. In a numeric context, MySQL automatically converts this string to a number and strips any trailing nonnumeric characters from it. </p> <p> Sometimes people think that if a database contains only publicly available data, it need not be protected. This is incorrect. Even if it is permissible to display any row in the database, you should still protect against denial of service attacks (for example, those that are based on the technique in the preceding paragraph that causes the server to waste resources). Otherwise, your server becomes unresponsive to legitimate users. </p> <p> Checklist: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Enable strict SQL mode to tell the server to be more restrictive of what data values it accepts. See <a class="xref" href="sql-mode.html" title="7.1.11 Server SQL Modes"> Section 7.1.11, “Server SQL Modes” </a> . </p> </li> <li class="listitem"> <p> Try to enter single and double quotation marks ( <code class="literal"> ' </code> and <code class="literal"> " </code> ) in all of your Web forms. If you get any kind of MySQL error, investigate the problem right away. </p> </li> <li class="listitem"> <p> Try to modify dynamic URLs by adding <code class="literal"> %22 </code> ( <code class="literal"> " </code> ), <code class="literal"> %23 </code> ( <code class="literal"> # </code> ), and <code class="literal"> %27 </code> ( <code class="literal"> ' </code> ) to them. </p> </li> <li class="listitem"> <p> Try to modify data types in dynamic URLs from numeric to character types using the characters shown in the previous examples. Your application should be safe against these and similar attacks. </p> </li> <li class="listitem"> <p> Try to enter characters, spaces, and special symbols rather than numbers in numeric fields. Your application should remove them before passing them to MySQL or else generate an error. Passing unchecked values to MySQL is very dangerous! </p> </li> <li class="listitem"> <p> Check the size of data before passing it to MySQL. </p> </li> <li class="listitem"> <p> Have your application connect to the database using a user name different from the one you use for administrative purposes. Do not give your applications any access privileges they do not need. </p> </li> </ul> </div> <p> Many application programming interfaces provide a means of escaping special characters in data values. Properly used, this prevents application users from entering values that cause the application to generate statements that have a different effect than you intend: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> MySQL SQL statements: Use SQL prepared statements and accept data values only by means of placeholders; see <a class="xref" href="sql-prepared-statements.html" title="15.5 Prepared Statements"> Section 15.5, “Prepared Statements” </a> . </p> </li> <li class="listitem"> <p> MySQL C API: Use the <a class="ulink" href="/doc/c-api/8.4/en/mysql-real-escape-string-quote.html" target="_top"> <code class="literal"> mysql_real_escape_string_quote() </code> </a> API call. Alternatively, use the C API prepared statement interface and accept data values only by means of placeholders; see <a class="ulink" href="/doc/c-api/8.4/en/c-api-prepared-statement-interface.html" target="_top"> C API Prepared Statement Interface </a> . </p> </li> <li class="listitem"> <p> MySQL++: Use the <code class="literal"> escape </code> and <code class="literal"> quote </code> modifiers for query streams. </p> </li> <li class="listitem"> <p> PHP: Use either the <code class="literal"> mysqli </code> or <code class="literal"> pdo_mysql </code> extensions, and not the older <code class="literal"> ext/mysql </code> extension. The preferred API's support the improved MySQL authentication protocol and passwords, as well as prepared statements with placeholders. See also <a class="ulink" href="/doc/apis-php/en/" target="_top"> MySQL and PHP </a> . </p> <p> If the older <code class="literal"> ext/mysql </code> extension must be used, then for escaping use the <a class="ulink" href="/doc/c-api/8.4/en/mysql-real-escape-string-quote.html" target="_top"> <code class="literal"> mysql_real_escape_string_quote() </code> </a> function and not <a class="ulink" href="/doc/c-api/8.4/en/mysql-escape-string.html" target="_top"> <code class="literal"> mysql_escape_string() </code> </a> or <code class="function"> addslashes() </code> because only <a class="ulink" href="/doc/c-api/8.4/en/mysql-real-escape-string-quote.html" target="_top"> <code class="literal"> mysql_real_escape_string_quote() </code> </a> is character set-aware; the other functions can be <span class="quote"> “ <span class="quote"> bypassed </span> ” </span> when using (invalid) multibyte character sets. </p> </li> <li class="listitem"> <p> Perl DBI: Use placeholders or the <code class="literal"> quote() </code> method. </p> </li> <li class="listitem"> <p> Java JDBC: Use a <code class="literal"> PreparedStatement </code> object and placeholders. </p> </li> </ul> </div> <p> Other programming interfaces might have similar capabilities. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="client-mysql-error-handling"> </a> Handle MySQL Error Messages Properly </h4> </div> </div> </div> <a class="indexterm" name="idm46045252352080"> </a> <a class="indexterm" name="idm46045252350992"> </a> <p> It is the application's responsibility to intercept errors that occur as a result of executing SQL statements with the MySQL database server and handle them appropriately. </p> <p> The information returned in a MySQL error is not gratuitous because that information is key in debugging MySQL using applications. It would be nearly impossible, for example, to debug a common 10-way join <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement without providing information regarding which databases, tables, and other objects are involved with problems. Thus, MySQL errors must sometimes necessarily contain references to the names of those objects. </p> <p> A simple but insecure approach for an application when it receives such an error from MySQL is to intercept it and display it verbatim to the client. However, revealing error information is a known application vulnerability type ( <a class="ulink" href="http://cwe.mitre.org/data/definitions/209.html" target="_blank"> CWE-209 </a> ) and the application developer must ensure the application does not have this vulnerability. </p> <p> For example, an application that displays a message such as this exposes both a database name and a table name to clients, which is information a client might attempt to exploit: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-none"><div class="docs-select-all right" id="sa78583715"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none">ERROR 1146 (42S02): Table 'mydb.mytable' doesn't exist</code></pre> </div> <p> Instead, the proper behavior for an application when it receives such an error from MySQL is to log appropriate information, including the error information, to a secure audit location only accessible to trusted personnel. The application can return something more generic such as <span class="quote"> “ <span class="quote"> Internal Error </span> ” </span> to the user. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-table-update.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysql-shell-tutorial-python-table-update"> </a> 22.4.4.3 Update Tables </h4> </div> </div> </div> <a class="indexterm" name="idm46045126787328"> </a> <p> You can use the <code class="literal"> update() </code> method to modify one or more records in a table. The <code class="literal"> update() </code> method works by filtering a query to include only the records to be updated and then applying the operations you specify to those records. </p> <p> To replace a city name in the city table, pass to the <code class="literal"> set() </code> method the new city name. Then, pass to the <code class="literal"> where() </code> method the city name to locate and replace. The following example replaces the city Peking with Beijing. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa8560531"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">update</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token keyword">set</span><span class="token punctuation">(</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"Beijing"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span><span class="token string">"Name = 'Peking'"</span><span class="token punctuation">)</span></code></pre> </div> <p> Use the <code class="literal"> select() </code> method to verify the change. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa27453986"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"ID"</span><span class="token punctuation">,</span> <span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">,</span> <span class="token string">"District"</span><span class="token punctuation">,</span> <span class="token string">"Info"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span><span class="token string">"Name = 'Beijing'"</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ID <span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span> District <span class="token punctuation">|</span> Info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1891 <span class="token punctuation">|</span> Beijing <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span> Peking <span class="token punctuation">|</span> {"Population": 7472000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="idm46045126776768"> </a> Related Information </h5> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> See <a class="ulink" href="/doc/x-devapi-userguide/en/crud-ebnf-table-crud-functions.html#crud-ebnf-tableupdatefunction" target="_top"> TableUpdateFunction </a> for the full syntax definition. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/gone-away.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="gone-away"> </a> B.3.2.7 MySQL server has gone away </h4> </div> </div> </div> <a class="indexterm" name="idm46045054420608"> </a> <a class="indexterm" name="idm46045054419568"> </a> <p> This section also covers the related <code class="literal"> Lost connection to server during query </code> error. </p> <p> The most common reason for the <code class="literal"> MySQL server has gone away </code> error is that the server timed out and closed the connection. In this case, you normally get one of the following error codes (which one you get is operating system-dependent). </p> <div class="informaltable"> <table summary="MySQL server has gone away error codes and a description of each code."> <colgroup> <col style="width: 35%"/> <col style="width: 65%"/> </colgroup> <thead> <tr> <th> Error Code </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <a class="ulink" href="/doc/mysql-errors/8.4/en/client-error-reference.html#error_cr_server_gone_error" target="_top"> <code class="literal"> CR_SERVER_GONE_ERROR </code> </a> </td> <td> The client couldn't send a question to the server. </td> </tr> <tr> <td> <a class="ulink" href="/doc/mysql-errors/8.4/en/client-error-reference.html#error_cr_server_lost" target="_top"> <code class="literal"> CR_SERVER_LOST </code> </a> </td> <td> The client didn't get an error when writing to the server, but it didn't get a full answer (or any answer) to the question. </td> </tr> </tbody> </table> </div> <p> By default, the server closes the connection after eight hours if nothing has happened. You can change the time limit by setting the <a class="link" href="server-system-variables.html#sysvar_wait_timeout"> <code class="literal"> wait_timeout </code> </a> variable when you start <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> . See <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> . </p> <p> If you have a script, you just have to issue the query again for the client to do an automatic reconnection. This assumes that you have automatic reconnection in the client enabled (which is the default for the <code class="literal"> mysql </code> command-line client). </p> <p> Some other common reasons for the <code class="literal"> MySQL server has gone away </code> error are: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> You (or the db administrator) has killed the running thread with a <a class="link" href="kill.html" title="15.7.8.4 KILL Statement"> <code class="literal"> KILL </code> </a> statement or a <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin kill </strong> </span> </a> command. </p> </li> <li class="listitem"> <p> You tried to run a query after closing the connection to the server. This indicates a logic error in the application that should be corrected. </p> </li> <li class="listitem"> <p> A client application running on a different host does not have the necessary privileges to connect to the MySQL server from that host. </p> </li> <li class="listitem"> <p> You got a timeout from the TCP/IP connection on the client side. This may happen if you have been using the commands: <a class="ulink" href="/doc/c-api/8.4/en/mysql-options.html" target="_top"> <code class="literal"> mysql_options(..., MYSQL_OPT_READ_TIMEOUT,...) </code> </a> or <a class="ulink" href="/doc/c-api/8.4/en/mysql-options.html" target="_top"> <code class="literal"> mysql_options(..., MYSQL_OPT_WRITE_TIMEOUT,...) </code> </a> . In this case increasing the timeout may help solve the problem. </p> </li> <li class="listitem"> <p> You have encountered a timeout on the server side and the automatic reconnection in the client is disabled (the <code class="literal"> reconnect </code> flag in the <code class="literal"> MYSQL </code> structure is equal to 0). </p> </li> <li class="listitem"> <p> You are using a Windows client and the server had dropped the connection (probably because <a class="link" href="server-system-variables.html#sysvar_wait_timeout"> <code class="literal"> wait_timeout </code> </a> expired) before the command was issued. </p> <p> The problem on Windows is that in some cases MySQL does not get an error from the OS when writing to the TCP/IP connection to the server, but instead gets the error when trying to read the answer from the connection. </p> <p> The solution to this is to either do a <a class="ulink" href="/doc/c-api/8.4/en/mysql-ping.html" target="_top"> <code class="literal"> mysql_ping() </code> </a> on the connection if there has been a long time since the last query (this is what Connector/ODBC does) or set <a class="link" href="server-system-variables.html#sysvar_wait_timeout"> <code class="literal"> wait_timeout </code> </a> on the <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> server so high that it in practice never times out. </p> </li> <li class="listitem"> <p> You can also get these errors if you send a query to the server that is incorrect or too large. If <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> receives a packet that is too large or out of order, it assumes that something has gone wrong with the client and closes the connection. If you need big queries (for example, if you are working with big <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> columns), you can increase the query limit by setting the server's <a class="link" href="server-system-variables.html#sysvar_max_allowed_packet"> <code class="literal"> max_allowed_packet </code> </a> variable, which has a default value of 64MB. You may also need to increase the maximum packet size on the client end. More information on setting the packet size is given in <a class="xref" href="packet-too-large.html" title="B.3.2.8 Packet Too Large"> Section B.3.2.8, “Packet Too Large” </a> . </p> <p> An <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> or <a class="link" href="replace.html" title="15.2.12 REPLACE Statement"> <code class="literal"> REPLACE </code> </a> statement that inserts a great many rows can also cause these sorts of errors. Either one of these statements sends a single request to the server irrespective of the number of rows to be inserted; thus, you can often avoid the error by reducing the number of rows sent per <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> or <a class="link" href="replace.html" title="15.2.12 REPLACE Statement"> <code class="literal"> REPLACE </code> </a> . </p> </li> <li class="listitem"> <p> It is also possible to see this error if host name lookups fail (for example, if the DNS server on which your server or network relies goes down). This is because MySQL is dependent on the host system for name resolution, but has no way of knowing whether it is working—from MySQL's point of view the problem is indistinguishable from any other network timeout. </p> <p> You may also see the <code class="literal"> MySQL server has gone away </code> error if MySQL is started with the <a class="link" href="server-system-variables.html#sysvar_skip_networking"> <code class="literal"> skip_networking </code> </a> system variable enabled. </p> <p> Another networking issue that can cause this error occurs if the MySQL port (default 3306) is blocked by your firewall, thus preventing any connections at all to the MySQL server. </p> </li> <li class="listitem"> <p> You can also encounter this error with applications that fork child processes, all of which try to use the same connection to the MySQL server. This can be avoided by using a separate connection for each child process. </p> </li> <li class="listitem"> <p> You have encountered a bug where the server died while executing the query. </p> </li> </ul> </div> <p> You can check whether the MySQL server died and restarted by executing <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin version </strong> </span> </a> and examining the server's uptime. If the client connection was broken because <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> crashed and restarted, you should concentrate on finding the reason for the crash. Start by checking whether issuing the query again kills the server again. See <a class="xref" href="crashing.html" title="B.3.3.3 What to Do If MySQL Keeps Crashing"> Section B.3.3.3, “What to Do If MySQL Keeps Crashing” </a> . </p> <p> You can obtain more information about lost connections by starting <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> with the <a class="link" href="server-system-variables.html#sysvar_log_error_verbosity"> <code class="literal"> log_error_verbosity </code> </a> system variable set to 3. This logs some of the disconnection messages in the <code class="literal"> hostname.err </code> file. See <a class="xref" href="error-log.html" title="7.4.2 The Error Log"> Section 7.4.2, “The Error Log” </a> . </p> <p> If you want to create a bug report regarding this problem, be sure that you include the following information: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Indicate whether the MySQL server died. You can find information about this in the server error log. See <a class="xref" href="crashing.html" title="B.3.3.3 What to Do If MySQL Keeps Crashing"> Section B.3.3.3, “What to Do If MySQL Keeps Crashing” </a> . </p> </li> <li class="listitem"> <p> If a specific query kills <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> and the tables involved were checked with <a class="link" href="check-table.html" title="15.7.3.2 CHECK TABLE Statement"> <code class="literal"> CHECK TABLE </code> </a> before you ran the query, can you provide a reproducible test case? See <a class="xref" href="debugging-mysql.html" title="7.9 Debugging MySQL"> Section 7.9, “Debugging MySQL” </a> . </p> </li> <li class="listitem"> <p> What is the value of the <a class="link" href="server-system-variables.html#sysvar_wait_timeout"> <code class="literal"> wait_timeout </code> </a> system variable in the MySQL server? ( <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin variables </strong> </span> </a> gives you the value of this variable.) </p> </li> <li class="listitem"> <p> Have you tried to run <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> with the general query log enabled to determine whether the problem query appears in the log? (See <a class="xref" href="query-log.html" title="7.4.3 The General Query Log"> Section 7.4.3, “The General Query Log” </a> .) </p> </li> </ul> </div> <p> See also <a class="xref" href="communication-errors.html" title="B.3.2.9 Communication Errors and Aborted Connections"> Section B.3.2.9, “Communication Errors and Aborted Connections” </a> , and <a class="xref" href="bug-reports.html" title="1.6 How to Report Bugs or Problems"> Section 1.6, “How to Report Bugs or Problems” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/internal-locking.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="internal-locking"> </a> 10.11.1 Internal Locking Methods </h3> </div> </div> </div> <a class="indexterm" name="idm46045222920416"> </a> <a class="indexterm" name="idm46045222919376"> </a> <a class="indexterm" name="idm46045222917888"> </a> <a class="indexterm" name="idm46045222916816"> </a> <a class="indexterm" name="idm46045222915328"> </a> <a class="indexterm" name="idm46045222914256"> </a> <a class="indexterm" name="idm46045222913184"> </a> <a class="indexterm" name="idm46045222911696"> </a> <a class="indexterm" name="idm46045222910208"> </a> <p> This section discusses internal locking; that is, locking performed within the MySQL server itself to manage contention for table contents by multiple sessions. This type of locking is internal because it is performed entirely by the server and involves no other programs. For locking performed on MySQL files by other programs, see <a class="xref" href="external-locking.html" title="10.11.5 External Locking"> Section 10.11.5, “External Locking” </a> . </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="internal-locking.html#internal-row-level-locking" title="Row-Level Locking"> Row-Level Locking </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="internal-locking.html#internal-table-level-locking" title="Table-Level Locking"> Table-Level Locking </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="internal-locking.html#internal-locking-choices" title="Choosing the Type of Locking"> Choosing the Type of Locking </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="internal-row-level-locking"> </a> Row-Level Locking </h4> </div> </div> </div> <p> MySQL uses <a class="link" href="glossary.html#glos_row_lock" title="row lock"> row-level locking </a> for <code class="literal"> InnoDB </code> tables to support simultaneous write access by multiple sessions, making them suitable for multi-user, highly concurrent, and OLTP applications. </p> <p> To avoid <a class="link" href="glossary.html#glos_deadlock" title="deadlock"> deadlocks </a> when performing multiple concurrent write operations on a single <code class="literal"> InnoDB </code> table, acquire necessary locks at the start of the transaction by issuing a <code class="literal"> SELECT ... FOR UPDATE </code> statement for each group of rows expected to be modified, even if the data change statements come later in the transaction. If transactions modify or lock more than one table, issue the applicable statements in the same order within each transaction. Deadlocks affect performance rather than representing a serious error, because <code class="literal"> InnoDB </code> automatically <a class="link" href="glossary.html#glos_deadlock_detection" title="deadlock detection"> detects </a> deadlock conditions by default and rolls back one of the affected transactions. </p> <p> On high concurrency systems, deadlock detection can cause a slowdown when numerous threads wait for the same lock. At times, it may be more efficient to disable deadlock detection and rely on the <a class="link" href="innodb-parameters.html#sysvar_innodb_lock_wait_timeout"> <code class="literal"> innodb_lock_wait_timeout </code> </a> setting for transaction rollback when a deadlock occurs. Deadlock detection can be disabled using the <a class="link" href="innodb-parameters.html#sysvar_innodb_deadlock_detect"> <code class="literal"> innodb_deadlock_detect </code> </a> configuration option. </p> <p> Advantages of row-level locking: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Fewer lock conflicts when different sessions access different rows. </p> </li> <li class="listitem"> <p> Fewer changes for rollbacks. </p> </li> <li class="listitem"> <p> Possible to lock a single row for a long time. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="internal-table-level-locking"> </a> Table-Level Locking </h4> </div> </div> </div> <p> MySQL uses <a class="link" href="glossary.html#glos_table_lock" title="table lock"> table-level locking </a> for <code class="literal"> MyISAM </code> , <code class="literal"> MEMORY </code> , and <code class="literal"> MERGE </code> tables, permitting only one session to update those tables at a time. This locking level makes these storage engines more suitable for read-only, read-mostly, or single-user applications. </p> <p> These storage engines avoid <a class="link" href="glossary.html#glos_deadlock" title="deadlock"> deadlocks </a> by always requesting all needed locks at once at the beginning of a query and always locking the tables in the same order. The tradeoff is that this strategy reduces concurrency; other sessions that want to modify the table must wait until the current data change statement finishes. </p> <p> Advantages of table-level locking: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Relatively little memory required (row locking requires memory per row or group of rows locked) </p> </li> <li class="listitem"> <p> Fast when used on a large part of the table because only a single lock is involved. </p> </li> <li class="listitem"> <p> Fast if you often do <code class="literal"> GROUP BY </code> operations on a large part of the data or must scan the entire table frequently. </p> </li> </ul> </div> <p> MySQL grants table write locks as follows: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> If there are no locks on the table, put a write lock on it. </p> </li> <li class="listitem"> <p> Otherwise, put the lock request in the write lock queue. </p> </li> </ol> </div> <p> MySQL grants table read locks as follows: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> If there are no write locks on the table, put a read lock on it. </p> </li> <li class="listitem"> <p> Otherwise, put the lock request in the read lock queue. </p> </li> </ol> </div> <p> Table updates are given higher priority than table retrievals. Therefore, when a lock is released, the lock is made available to the requests in the write lock queue and then to the requests in the read lock queue. This ensures that updates to a table are not <span class="quote"> “ <span class="quote"> starved </span> ” </span> even when there is heavy <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> activity for the table. However, if there are many updates for a table, <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements wait until there are no more updates. </p> <p> For information on altering the priority of reads and writes, see <a class="xref" href="table-locking.html" title="10.11.2 Table Locking Issues"> Section 10.11.2, “Table Locking Issues” </a> . </p> <p> You can analyze the table lock contention on your system by checking the <a class="link" href="server-status-variables.html#statvar_Table_locks_immediate"> <code class="literal"> Table_locks_immediate </code> </a> and <a class="link" href="server-status-variables.html#statvar_Table_locks_waited"> <code class="literal"> Table_locks_waited </code> </a> status variables, which indicate the number of times that requests for table locks could be granted immediately and the number that had to wait, respectively: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51054576"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">STATUS</span> <span class="token operator">LIKE</span> <span class="token string">'Table%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Table_locks_immediate <span class="token punctuation">|</span> 1151552 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Table_locks_waited <span class="token punctuation">|</span> 15324 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The Performance Schema lock tables also provide locking information. See <a class="xref" href="performance-schema-lock-tables.html" title="29.12.13 Performance Schema Lock Tables"> Section 29.12.13, “Performance Schema Lock Tables” </a> . </p> <a class="indexterm" name="idm46045222860224"> </a> <a class="indexterm" name="idm46045222859152"> </a> <p> The <code class="literal"> MyISAM </code> storage engine supports concurrent inserts to reduce contention between readers and writers for a given table: If a <code class="literal"> MyISAM </code> table has no free blocks in the middle of the data file, rows are always inserted at the end of the data file. In this case, you can freely mix concurrent <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> and <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements for a <code class="literal"> MyISAM </code> table without locks. That is, you can insert rows into a <code class="literal"> MyISAM </code> table at the same time other clients are reading from it. Holes can result from rows having been deleted from or updated in the middle of the table. If there are holes, concurrent inserts are disabled but are enabled again automatically when all holes have been filled with new data. To control this behavior, use the <a class="link" href="server-system-variables.html#sysvar_concurrent_insert"> <code class="literal"> concurrent_insert </code> </a> system variable. See <a class="xref" href="concurrent-inserts.html" title="10.11.3 Concurrent Inserts"> Section 10.11.3, “Concurrent Inserts” </a> . </p> <p> If you acquire a table lock explicitly with <a class="link" href="lock-tables.html" title="15.3.6 LOCK TABLES and UNLOCK TABLES Statements"> <code class="literal"> LOCK TABLES </code> </a> , you can request a <code class="literal"> READ LOCAL </code> lock rather than a <code class="literal"> READ </code> lock to enable other sessions to perform concurrent inserts while you have the table locked. </p> <p> To perform many <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> and <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> operations on a table <code class="literal"> t1 </code> when concurrent inserts are not possible, you can insert rows into a temporary table <code class="literal"> temp_t1 </code> and update the real table with the rows from the temporary table: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa15102715"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">LOCK</span> <span class="token keyword">TABLES</span> t1 <span class="token keyword">WRITE</span><span class="token punctuation">,</span> temp_t1 <span class="token keyword">WRITE</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t1 <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> temp_t1<span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> temp_t1<span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">UNLOCK</span> <span class="token keyword">TABLES</span><span class="token punctuation">;</span></code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="internal-locking-choices"> </a> Choosing the Type of Locking </h4> </div> </div> </div> <p> Generally, table locks are superior to row-level locks in the following cases: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Most statements for the table are reads. </p> </li> <li class="listitem"> <p> Statements for the table are a mix of reads and writes, where writes are updates or deletes for a single row that can be fetched with one key read: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57514837"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">UPDATE</span> <em class="replaceable">tbl_name</em> <span class="token keyword">SET</span> <span class="token keyword"><em class="replaceable">column</em></span><span class="token operator">=</span><span class="token keyword"><em class="replaceable">value</em></span> <span class="token keyword">WHERE</span> <em class="replaceable">unique_key_col</em><span class="token operator">=</span><em class="replaceable">key_value</em><span class="token punctuation">;</span> <span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> <em class="replaceable">unique_key_col</em><span class="token operator">=</span><em class="replaceable">key_value</em><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> combined with concurrent <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statements, and very few <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> or <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statements. </p> </li> <li class="listitem"> <p> Many scans or <code class="literal"> GROUP BY </code> operations on the entire table without any writers. </p> </li> </ul> </div> <p> With higher-level locks, you can more easily tune applications by supporting locks of different types, because the lock overhead is less than for row-level locks. </p> <p> Options other than row-level locking: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Versioning (such as that used in MySQL for concurrent inserts) where it is possible to have one writer at the same time as many readers. This means that the database or table supports different views for the data depending on when access begins. Other common terms for this are <span class="quote"> “ <span class="quote"> time travel, </span> ” </span> <span class="quote"> “ <span class="quote"> copy on write, </span> ” </span> or <span class="quote"> “ <span class="quote"> copy on demand. </span> ” </span> </p> </li> <li class="listitem"> <p> Copy on demand is in many cases superior to row-level locking. However, in the worst case, it can use much more memory than using normal locks. </p> </li> <li class="listitem"> <p> Instead of using row-level locks, you can employ application-level locks, such as those provided by <a class="link" href="locking-functions.html#function_get-lock"> <code class="literal"> GET_LOCK() </code> </a> and <a class="link" href="locking-functions.html#function_release-lock"> <code class="literal"> RELEASE_LOCK() </code> </a> in MySQL. These are advisory locks, so they work only with applications that cooperate with each other. See <a class="xref" href="locking-functions.html" title="14.14 Locking Functions"> Section 14.14, “Locking Functions” </a> . </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/telemetry-trace-configuration.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="telemetry-trace-configuration"> </a> 35.3.1 Configuring Trace Telemetry </h3> </div> </div> </div> <p> This section describes the configuration for server and client. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server" title="Server Configuration"> Server Configuration </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client" title="Client Configuration"> Client Configuration </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client-conf-example" title="Client Configuration Example"> Client Configuration Example </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="telemetry-trace-configuration-server"> </a> Server Configuration </h4> </div> </div> </div> <p> The following are the server trace telemetry configuration variables: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a name="sysvar_telemetry.trace_enabled"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.trace_enabled"> <code class="literal"> telemetry.trace_enabled </code> </a> </p> <a class="indexterm" name="idm46045059729280"> </a> <a class="indexterm" name="idm46045059728240"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.trace_enabled"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.trace_enabled"> telemetry.trace_enabled </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Boolean </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> ON </code> </td> </tr> </tbody> </table> </div> <p> Controls whether telemetry traces are collected or not . </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.query_text_enabled"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.query_text_enabled"> <code class="literal"> telemetry.query_text_enabled </code> </a> </p> <a class="indexterm" name="idm46045059706112"> </a> <a class="indexterm" name="idm46045059705008"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.query_text_enabled"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.query_text_enabled"> telemetry.query_text_enabled </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Boolean </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> ON </code> </td> </tr> </tbody> </table> </div> <p> Controls whether the SQL query text is included in the trace </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_log_level"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_log_level"> <code class="literal"> telemetry.otel_log_level </code> </a> </p> <a class="indexterm" name="idm46045059682880"> </a> <a class="indexterm" name="idm46045059681776"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_log_level"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_log_level"> telemetry.otel_log_level </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> ERROR </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> SILENT </code> </p> <p class="valid-value"> <code class="literal"> INFO </code> </p> <p class="valid-value"> <code class="literal"> ERROR </code> </p> <p class="valid-value"> <code class="literal"> WARNING </code> </p> <p class="valid-value"> <code class="literal"> DEBUG </code> </p> </td> </tr> </tbody> </table> </div> <p> Controls which OpenTelemetry logs are printed in the server logs </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_resource_attributes"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_resource_attributes"> <code class="literal"> telemetry.otel_resource_attributes </code> </a> </p> <a class="indexterm" name="idm46045059652800"> </a> <a class="indexterm" name="idm46045059651760"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_resource_attributes"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_resource_attributes"> telemetry.otel_resource_attributes </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> empty </code> </td> </tr> </tbody> </table> </div> <p> See corresponding OpenTelemetry variable OTEL_RESOURCE_ATTRIBUTES. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_protocol"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_protocol"> <code class="literal"> telemetry.otel_exporter_otlp_traces_protocol </code> </a> </p> <a class="indexterm" name="idm46045059629408"> </a> <a class="indexterm" name="idm46045059628288"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_protocol"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_protocol"> telemetry.otel_exporter_otlp_traces_protocol </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> http/protobuf </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> http/protobuf </code> </p> <p class="valid-value"> <code class="literal"> http/json </code> </p> </td> </tr> </tbody> </table> </div> <p> OTLP transport protocol </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_endpoint"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_endpoint"> <code class="literal"> telemetry.otel_exporter_otlp_traces_endpoint </code> </a> </p> <a class="indexterm" name="idm46045059602144"> </a> <a class="indexterm" name="idm46045059601024"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_endpoint"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_endpoint"> telemetry.otel_exporter_otlp_traces_endpoint </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> http://localhost:4318/v1/traces </code> </td> </tr> </tbody> </table> </div> <p> Target URL to which the exporter sends traces </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_certificates"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_certificates"> <code class="literal"> telemetry.otel_exporter_otlp_traces_certificates </code> </a> </p> <a class="indexterm" name="idm46045059578640"> </a> <a class="indexterm" name="idm46045059577520"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_certificates"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_certificates"> telemetry.otel_exporter_otlp_traces_certificates </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> The trusted certificate to use when verifying a server's TLS credentials. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_client_key"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_client_key"> <code class="literal"> telemetry.otel_exporter_otlp_traces_client_key </code> </a> </p> <a class="indexterm" name="idm46045059555344"> </a> <a class="indexterm" name="idm46045059554224"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_client_key"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_client_key"> telemetry.otel_exporter_otlp_traces_client_key </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> Client's private key in PEM format. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_client_certificates"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_client_certificates"> <code class="literal"> telemetry.otel_exporter_otlp_traces_client_certificates </code> </a> </p> <a class="indexterm" name="idm46045059531888"> </a> <a class="indexterm" name="idm46045059530848"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_client_certificates"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_client_certificates"> telemetry.otel_exporter_otlp_traces_client_certificates </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> Client certificate/chain trust for clients private key in PEM format. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_headers"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_headers"> <code class="literal"> telemetry.otel_exporter_otlp_traces_headers </code> </a> </p> <a class="indexterm" name="idm46045059508560"> </a> <a class="indexterm" name="idm46045059507520"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_headers"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_headers"> telemetry.otel_exporter_otlp_traces_headers </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> empty </code> </td> </tr> </tbody> </table> </div> <p> See corresponding OpenTelemetry variable OTEL_EXPORTER_TRACES_HEADERS. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_compression"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_compression"> <code class="literal"> telemetry.otel_exporter_otlp_traces_compression </code> </a> </p> <a class="indexterm" name="idm46045059485184"> </a> <a class="indexterm" name="idm46045059484064"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_compression"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_compression"> telemetry.otel_exporter_otlp_traces_compression </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> none (no compression) </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> none (no compression) </code> </p> <p class="valid-value"> <code class="literal"> gzip </code> </p> </td> </tr> </tbody> </table> </div> <p> Compression used by exporter </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_timeout"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_timeout"> <code class="literal"> telemetry.otel_exporter_otlp_traces_timeout </code> </a> </p> <a class="indexterm" name="idm46045059457968"> </a> <a class="indexterm" name="idm46045059456848"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_timeout"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_timeout"> telemetry.otel_exporter_otlp_traces_timeout </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 10000 </code> </td> </tr> <tr> <th> Unit </th> <td> milliseconds </td> </tr> </tbody> </table> </div> <p> Time in milliseconds the OLTP exporter waits for each batch export. </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_bsp_schedule_delay"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_schedule_delay"> <code class="literal"> telemetry.otel_bsp_schedule_delay </code> </a> </p> <a class="indexterm" name="idm46045059432416"> </a> <a class="indexterm" name="idm46045059431376"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_bsp_schedule_delay"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_schedule_delay"> telemetry.otel_bsp_schedule_delay </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 5000 </code> </td> </tr> <tr> <th> Unit </th> <td> milliseconds </td> </tr> </tbody> </table> </div> <p> Delay interval between two consecutive exports in milliseconds </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_bsp_max_queue_size"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_max_queue_size"> <code class="literal"> telemetry.otel_bsp_max_queue_size </code> </a> </p> <a class="indexterm" name="idm46045059406928"> </a> <a class="indexterm" name="idm46045059405888"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_bsp_max_queue_size"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_max_queue_size"> telemetry.otel_bsp_max_queue_size </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 2048 </code> </td> </tr> </tbody> </table> </div> <p> Maximum queue size </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_bsp_max_export_batch_size"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_max_export_batch_size"> <code class="literal"> telemetry.otel_bsp_max_export_batch_size </code> </a> </p> <a class="indexterm" name="idm46045059383664"> </a> <a class="indexterm" name="idm46045059382544"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_bsp_max_export_batch_size"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_bsp_max_export_batch_size"> telemetry.otel_bsp_max_export_batch_size </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 512 </code> </td> </tr> </tbody> </table> </div> <p> Maximum batch size </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_min_tls"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_min_tls"> <code class="literal"> telemetry.otel_exporter_otlp_traces_min_tls </code> </a> </p> <a class="indexterm" name="idm46045059360320"> </a> <a class="indexterm" name="idm46045059359200"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_min_tls"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_min_tls"> telemetry.otel_exporter_otlp_traces_min_tls </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> [none] </code> </p> <p class="valid-value"> <code class="literal"> 1.2 </code> </p> <p class="valid-value"> <code class="literal"> 1.3 </code> </p> </td> </tr> </tbody> </table> </div> <p> </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_max_tls"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_max_tls"> <code class="literal"> telemetry.otel_exporter_otlp_traces_max_tls </code> </a> </p> <a class="indexterm" name="idm46045059332320"> </a> <a class="indexterm" name="idm46045059331200"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_max_tls"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_max_tls"> telemetry.otel_exporter_otlp_traces_max_tls </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> [none] </code> </p> <p class="valid-value"> <code class="literal"> 1.2 </code> </p> <p class="valid-value"> <code class="literal"> 1.3 </code> </p> </td> </tr> </tbody> </table> </div> <p> </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_cipher"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_cipher"> <code class="literal"> telemetry.otel_exporter_otlp_traces_cipher </code> </a> </p> <a class="indexterm" name="idm46045059304352"> </a> <a class="indexterm" name="idm46045059303232"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_cipher"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_cipher"> telemetry.otel_exporter_otlp_traces_cipher </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> </p> </li> <li class="listitem"> <p> <a name="sysvar_telemetry.otel_exporter_otlp_traces_cipher_suite"> </a> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_cipher_suite"> <code class="literal"> telemetry.otel_exporter_otlp_traces_cipher_suite </code> </a> </p> <a class="indexterm" name="idm46045059281088"> </a> <a class="indexterm" name="idm46045059279968"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry.otel_exporter_otlp_traces_cipher_suite"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="telemetry-trace-configuration.html#sysvar_telemetry.otel_exporter_otlp_traces_cipher_suite"> telemetry.otel_exporter_otlp_traces_cipher_suite </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> No </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="telemetry-trace-configuration-client"> </a> Client Configuration </h4> </div> </div> </div> <p> The MySQL client reads telemetry configuration from the <code class="literal"> [telemetry_client] </code> section of the configuration file. See <a class="xref" href="telemetry-trace-install.html#telemetry-trace-install-client" title="Installing Client Plugin"> Installing Client Plugin </a> for information on the <code class="literal"> telemetry_client </code> option. The following configuration options are available: </p> <div class="table"> <a name="idm46045059256112"> </a> <p class="title"> <b> Table 35.2 mysql client Telemetry Option Summary </b> </p> <div class="table-contents"> <table frame="box" rules="all" summary="Reference for telemetry options."> <colgroup> <col style="width: 35%"/> <col style="width: 64%"/> </colgroup> <thead> <tr> <th> Option Name </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="mysql-command-options.html#option_mysql_telemetry_client"> --telemetry_client </a> </td> <td> Enables the telemetry client. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_max_export_batch_size"> --otel_bsp_max_export_batch_size </a> </td> <td> See variable OTEL_BSP_MAX_EXPORT_BATCH_SIZE. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_max_queue_size"> --otel_bsp_max_queue_size </a> </td> <td> See variable OTEL_BSP_MAX_QUEUE_SIZE. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_schedule_delay"> --otel_bsp_schedule_delay </a> </td> <td> See variable OTEL_BSP_SCHEDULE_DELAY. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_certificates"> --otel_exporter_otlp_traces_certificates </a> </td> <td> Not in use at this time. Reserved for future development. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_client_certificates"> --otel_exporter_otlp_traces_client_certificates </a> </td> <td> Not in use at this time. Reserved for future development. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_client_key"> --otel_exporter_otlp_traces_client_key </a> </td> <td> Not in use at this time. Reserved for future development. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_compression"> --otel_exporter_otlp_traces_compression </a> </td> <td> Compression type </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_endpoint"> --otel_exporter_otlp_traces_endpoint </a> </td> <td> The trace export endpoint </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_headers"> --otel_exporter_otlp_traces_headers </a> </td> <td> Key-value pairs to be used as headers associated with HTTP requests </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_protocol"> --otel_exporter_otlp_traces_protocol </a> </td> <td> The OTLP transport protocol </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_timeout"> --otel_exporter_otlp_traces_timeout </a> </td> <td> Time OLTP exporter waits for each batch export </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel-help"> --otel-help </a> </td> <td> When enabled, prints help about telemetry_client options. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_log_level"> --otel_log_level </a> </td> <td> Controls which opentelemetry logs are printed in the server logs </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_resource_attributes"> --otel_resource_attributes </a> </td> <td> See corresponding OpenTelemetry variable OTEL_RESOURCE_ATTRIBUTES. </td> </tr> <tr> <td> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel-trace"> --otel-trace </a> </td> <td> This system variable controls whether telemetry traces are collected or not. </td> </tr> </tbody> </table> </div> <div class="table-contents"> <table cellpadding="0" cellspacing="0" style="position: fixed; top: 0px; display: none; left: 401px; width: 739px;"> <thead> <tr> <th style="width: 280.984px;"> Option Name </th> <th style="width: 457.016px;"> Description </th> </tr> </thead> </table> </div> </div> <br class="table-break"/> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel-trace"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel-trace"> <code class="option"> trace </code> </a> </p> <a class="indexterm" name="idm46045059204448"> </a> <a class="indexterm" name="idm46045059202944"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel-trace"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel-trace </code> </td> </tr> <tr> <th> Type </th> <td> Boolean </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> ON </code> </td> </tr> </tbody> </table> </div> <p> Controls whether telemetry traces are collected or not . </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel-help"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel-help"> <code class="option"> help </code> </a> </p> <a class="indexterm" name="idm46045059188784"> </a> <a class="indexterm" name="idm46045059187328"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel-help"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel-help </code> </td> </tr> <tr> <th> Type </th> <td> Boolean </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> OFF </code> </td> </tr> </tbody> </table> </div> <p> When enabled, prints help about telemetry_client options . </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_log_level"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_log_level"> <code class="option"> otel_log_level </code> </a> </p> <a class="indexterm" name="idm46045059173024"> </a> <a class="indexterm" name="idm46045059171520"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_log_level"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_log_level </code> </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> ERROR </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> ERROR </code> </p> <p class="valid-value"> <code class="literal"> SILENT </code> </p> <p class="valid-value"> <code class="literal"> WARNING </code> </p> <p class="valid-value"> <code class="literal"> INFO </code> </p> <p class="valid-value"> <code class="literal"> DEBUG </code> </p> </td> </tr> </tbody> </table> </div> <p> Controls which OpenTelemetry logs are printed in the server logs </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_resource_attributes"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_resource_attributes"> <code class="option"> otel_resource_attributes </code> </a> </p> <a class="indexterm" name="idm46045059150576"> </a> <a class="indexterm" name="idm46045059149120"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_resource_attributes"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_resource_attributes </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> See corresponding OpenTelemetry variable OTEL_RESOURCE_ATTRIBUTES. </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_protocol"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_protocol"> <code class="option"> otel_exporter_otlp_traces_protocol </code> </a> </p> <a class="indexterm" name="idm46045059134832"> </a> <a class="indexterm" name="idm46045059133312"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_protocol"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_protocol </code> </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> http/protobuf </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> http/protobuf </code> </p> <p class="valid-value"> <code class="literal"> http/json </code> </p> </td> </tr> </tbody> </table> </div> <p> OTLP transport protocol </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_endpoint"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_endpoint"> <code class="option"> otel_exporter_otlp_traces_endpoint </code> </a> </p> <a class="indexterm" name="idm46045059115200"> </a> <a class="indexterm" name="idm46045059113680"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_endpoint"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_endpoint </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> http://localhost:4318/v1/traces </code> </td> </tr> </tbody> </table> </div> <p> Target URL to which the exporter sends traces </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_certificates"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_certificates"> <code class="option"> otel_exporter_otlp_traces_certificates </code> </a> </p> <a class="indexterm" name="idm46045059099328"> </a> <a class="indexterm" name="idm46045059097808"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_certificates"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_certificates </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> The trusted certificate to use when verifying a server's TLS credentials. </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_client_key"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_client_key"> <code class="option"> otel_exporter_otlp_traces_client_key </code> </a> </p> <a class="indexterm" name="idm46045059083520"> </a> <a class="indexterm" name="idm46045059082000"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_client_key"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_client_key </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> Client's private key in PEM format. </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_client_certificates"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_client_certificates"> <code class="option"> otel_exporter_otlp_traces_client_certificates </code> </a> </p> <a class="indexterm" name="idm46045059067680"> </a> <a class="indexterm" name="idm46045059066144"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_client_certificates"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_client_certificates </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> Client certificate/chain trust for clients private key in PEM format. </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_headers"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_headers"> <code class="option"> otel_exporter_otlp_traces_headers </code> </a> </p> <a class="indexterm" name="idm46045059051840"> </a> <a class="indexterm" name="idm46045059050320"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_headers"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_headers </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> </code> </td> </tr> </tbody> </table> </div> <p> See corresponding OpenTelemetry variable OTEL_EXPORTER_TRACES_HEADERS. </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_compression"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_compression"> <code class="option"> otel_exporter_otlp_traces_compression </code> </a> </p> <a class="indexterm" name="idm46045059036112"> </a> <a class="indexterm" name="idm46045059034592"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_compression"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_compression </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> none </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> none </code> </p> <p class="valid-value"> <code class="literal"> gzip </code> </p> </td> </tr> </tbody> </table> </div> <p> Compression used by exporter </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_exporter_otlp_traces_timeout"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_exporter_otlp_traces_timeout"> <code class="option"> otel_exporter_otlp_traces_timeout </code> </a> </p> <a class="indexterm" name="idm46045059016464"> </a> <a class="indexterm" name="idm46045059014944"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_exporter_otlp_traces_timeout"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_exporter_otlp_traces_timeout </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 10000 </code> </td> </tr> </tbody> </table> </div> <p> Time OLTP exporter waits for each batch export </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_bsp_schedule_delay"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_schedule_delay"> <code class="option"> otel_bsp_schedule_delay </code> </a> </p> <a class="indexterm" name="idm46045059000640"> </a> <a class="indexterm" name="idm46045058999184"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_bsp_schedule_delay"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_bsp_schedule_delay </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 5000 </code> </td> </tr> </tbody> </table> </div> <p> Delay interval between two consecutive exports in milliseconds </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_bsp_max_queue_size"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_max_queue_size"> <code class="option"> otel_bsp_max_queue_size </code> </a> </p> <a class="indexterm" name="idm46045058984784"> </a> <a class="indexterm" name="idm46045058983328"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_bsp_max_queue_size"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_bsp_max_queue_size </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 2048 </code> </td> </tr> </tbody> </table> </div> <p> Maximum queue size </p> </li> <li class="listitem"> <p> <a name="option_mysql_telemetry_client.otel_bsp_max_export_batch_size"> </a> <a class="link" href="telemetry-trace-configuration.html#option_mysql_telemetry_client.otel_bsp_max_export_batch_size"> <code class="option"> otel_bsp_max_export_batch_size </code> </a> </p> <a class="indexterm" name="idm46045058968960"> </a> <a class="indexterm" name="idm46045058967440"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for telemetry_client.otel_bsp_max_export_batch_size"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --otel_bsp_max_export_batch_size </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 512 </code> </td> </tr> </tbody> </table> </div> <p> Maximum batch size </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="telemetry-trace-configuration-client-conf-example"> </a> Client Configuration Example </h4> </div> </div> </div> <p> The following is an example of a <code class="filename"> my.cnf </code> configuration file containing the Client Telemetry plugin configuration: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa10791966"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysql]</span> <span class="token constant">telemetry-client</span> <span class="token attr-value"><span class="token punctuation">=</span> ON</span> <span class="token selector">[telemetry_client]</span> <span class="token constant">help</span> <span class="token attr-value"><span class="token punctuation">=</span> ON</span> <span class="token constant">trace</span> <span class="token attr-value"><span class="token punctuation">=</span> OFF</span> <span class="token constant">otel-resource-attributes</span> <span class="token attr-value"><span class="token punctuation">=</span> "RK1=RV1, RK2=RV2, RK3=RV3"</span> <span class="token constant">otel-log-level</span> <span class="token attr-value"><span class="token punctuation">=</span> "error"</span> <span class="token constant">otel-exporter-otlp-traces-headers</span> <span class="token attr-value"><span class="token punctuation">=</span> "K1=V1, K2=V2"</span> <span class="token constant">otel-exporter-otlp-traces-protocol</span> <span class="token attr-value"><span class="token punctuation">=</span> "http/json"</span></code></pre> </div> <p> If <code class="literal"> telemetry-client = ON </code> is set in the configuration file, you do not need to specify <code class="literal"> --telemetry-client </code> when starting the client. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/declare-local-variable.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="declare-local-variable"> </a> 15.6.4.1 Local Variable DECLARE Statement </h4> </div> </div> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa94203297"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DECLARE</span> <em class="replaceable">var_name</em> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">var_name</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token keyword"><em class="replaceable">type</em></span> <span class="token punctuation">[</span><span class="token keyword">DEFAULT</span> <span class="token keyword"><em class="replaceable">value</em></span><span class="token punctuation">]</span></code></pre> </div> <p> This statement declares local variables within stored programs. To provide a default value for a variable, include a <code class="literal"> DEFAULT </code> clause. The value can be specified as an expression; it need not be a constant. If the <code class="literal"> DEFAULT </code> clause is missing, the initial value is <code class="literal"> NULL </code> . </p> <p> Local variables are treated like stored routine parameters with respect to data type and overflow checking. See <a class="xref" href="create-procedure.html" title="15.1.17 CREATE PROCEDURE and CREATE FUNCTION Statements"> Section 15.1.17, “CREATE PROCEDURE and CREATE FUNCTION Statements” </a> . </p> <p> Variable declarations must appear before cursor or handler declarations. </p> <p> Local variable names are not case-sensitive. Permissible characters and quoting rules are the same as for other identifiers, as described in <a class="xref" href="identifiers.html" title="11.2 Schema Object Names"> Section 11.2, “Schema Object Names” </a> . </p> <p> The scope of a local variable is the <a class="link" href="begin-end.html" title="15.6.1 BEGIN ... END Compound Statement"> <code class="literal"> BEGIN ... END </code> </a> block within which it is declared. The variable can be referred to in blocks nested within the declaring block, except those blocks that declare a variable with the same name. </p> <p> For examples of variable declarations, see <a class="xref" href="local-variable-scope.html" title="15.6.4.2 Local Variable Scope and Resolution"> Section 15.6.4.2, “Local Variable Scope and Resolution” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/linux-installation-yum-repo.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="linux-installation-yum-repo"> </a> 2.5.1 Installing MySQL on Linux Using the MySQL Yum Repository </h3> </div> </div> </div> <a class="indexterm" name="idm46045331416128"> </a> <a class="indexterm" name="idm46045331415056"> </a> <p> The <a class="ulink" href="https://dev.mysql.com/downloads/repo/yum/" target="_top"> MySQL Yum repository </a> for Oracle Linux, Red Hat Enterprise Linux, CentOS, and Fedora provides RPM packages for installing the MySQL server, client, MySQL Workbench, MySQL Utilities, MySQL Router, MySQL Shell, Connector/ODBC, Connector/Python and so on (not all packages are available for all the distributions; see <a class="xref" href="linux-installation-yum-repo.html#yum-install-components" title="Installing Additional MySQL Products and Components with Yum"> Installing Additional MySQL Products and Components with Yum </a> for details). </p> <h4> <a name="idm46045331411696"> </a> Before You Start </h4> <p> As a popular, open-source software, MySQL, in its original or re-packaged form, is widely installed on many systems from various sources, including different software download sites, software repositories, and so on. The following instructions assume that MySQL is not already installed on your system using a third-party-distributed RPM package; if that is not the case, follow the instructions given at <a class="xref" href="linux-installation-yum-repo.html#linux-installation-yum-repo-replace-third-party" title="Replacing a Native Third-Party Distribution of MySQL"> Replacing a Native Third-Party Distribution of MySQL </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Repository setup RPM file names begin with <code class="literal"> mysql84 </code> , which describes the MySQL series that is enabled by default for installation. In this case, the MySQL 8.4 LTS subrepository is enabled by default. It also contains other subrepository versions, such as MySQL 8.0 and the MySQL Innovation Series, which are disabled by default. </p> </div> <h4> <a name="idm46045331407488"> </a> Steps for a Fresh Installation of MySQL </h4> <p> Follow these steps to choose and install the latest MySQL products: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <h4> <a name="yum-repo-setup"> </a> Adding the MySQL Yum Repository </h4> <p> Add the MySQL Yum repository to your system's repository list. This is typically a one-time operation that is performed by installing the RPM provided by MySQL. Follow these steps: </p> <div class="orderedlist"> <ol class="orderedlist" type="a"> <li class="listitem"> <p> Download it from the MySQL Yum Repository page ( <a class="ulink" href="https://dev.mysql.com/downloads/repo/yum/" target="_top"> https://dev.mysql.com/downloads/repo/yum/ </a> ) in the MySQL Developer Zone. </p> </li> <li class="listitem"> <p> Select and download the release package for your platform. </p> </li> <li class="listitem"> <p> Install the downloaded release package. The package file format is: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-simple"><div class="docs-select-all right" id="sa30517919"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">mysql84<span class="token operator">-</span>community<span class="token operator">-</span>release<span class="token operator">-</span><span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">{</span>platform<span class="token punctuation">}</span></em><span class="token punctuation"></span><span class="token operator">-</span><span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">{</span>version<span class="token operator">-</span>number<span class="token punctuation">}</span></em><span class="token punctuation"></span><span class="token punctuation">.</span>noarch<span class="token punctuation">.</span>rpm</code></pre> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <em class="replaceable"> <code> mysql84 </code> </em> : Indicates the MySQL version that is enabled by default. In this case, MySQL 8.4 is enabled by default, and both MySQL 8.0 and the MySQL Innovation series are available but disabled by default. </p> </li> <li class="listitem"> <p> <em class="replaceable"> <code> {platform} </code> </em> : The platform code, such as el7, el8, el9, fc39, fc40, or fc41. The 'el' represents Enterprise Linux, 'fc' for Fedora, and it ends with the platform's base version number. </p> </li> <li class="listitem"> <p> <em class="replaceable"> <code> {version-number} </code> </em> : Version of the MySQL repository configuration RPM as they do receive occasional updates. </p> </li> </ul> </div> <p> Install the RPM you downloaded for your system, for example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa91662164"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum localinstall mysql84-community-release-<span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">{</span>platform<span class="token punctuation">}</span></em><span class="token punctuation"></span>-<span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">{</span>version-number<span class="token punctuation">}</span></em><span class="token punctuation"></span><span class="token punctuation">.</span>noarch<span class="token punctuation">.</span>rpm</code></pre> </div> <p> The installation command adds the MySQL Yum repository to your system's repository list and downloads the GnuPG key to check the integrity of the software packages. See <a class="xref" href="checking-gpg-signature.html" title="2.1.4.2 Signature Checking Using GnuPG"> Section 2.1.4.2, “Signature Checking Using GnuPG” </a> for details on GnuPG key checking. </p> <p> You can check that the MySQL Yum repository has been successfully added and enabled by the following command (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa34078240"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">yum</span> repolist enabled | grep mysql<span class="token punctuation">.</span>*-community</code></pre> </div> <p> </p> <p> Example output: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-none"><div class="docs-select-all right" id="sa23256464"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none">mysql-8.4-lts-community MySQL 8.4 LTS Community Server mysql-tools-8.4-lts-community MySQL Tools 8.4 LTS Community</code></pre> </div> <p> This also demonstrates that the latest LTS MySQL version is enabled by default. Methods to choose a different release series, such as the innovation track (which today is 9.1) or a previous series (such as MySQL 8.0), are described below. </p> </li> </ol> </div> <p> </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Once the MySQL Yum repository is enabled on your system, any system-wide update by the <span class="command"> <strong> yum update </strong> </span> command (or <span class="command"> <strong> dnf upgrade </strong> </span> for dnf-enabled systems) upgrades MySQL packages on your system and replaces any native third-party packages, if Yum finds replacements for them in the MySQL Yum repository; see <a class="xref" href="updating-yum-repo.html" title="3.8 Upgrading MySQL with the MySQL Yum Repository"> Section 3.8, “Upgrading MySQL with the MySQL Yum Repository” </a> , for a discussion on some possible effects of that on your system, see <a class="xref" href="updating-yum-repo.html#updating-yum-repo-client-lib" title="Upgrading the Shared Client Libraries"> Upgrading the Shared Client Libraries </a> . </p> </div> </li> <li class="listitem"> <h4> <a name="yum-repo-select-series"> </a> Selecting a Release Series </h4> <p> When using the MySQL Yum repository, the latest bugfix series (currently MySQL 8.4) is selected for installation by default. If this is what you want, you can skip to the next step, <a class="xref" href="linux-installation-yum-repo.html#yum-repo-installing-mysql" title="Installing MySQL"> Installing MySQL </a> . </p> <p> Within the MySQL Yum repository, each MySQL Community Server release series is hosted in a different subrepository. The subrepository for the latest LTS series (currently MySQL 8.4) is enabled by default, and the subrepositories for all other series' (for example, MySQL 8.0 and the MySQL Innovation series) are disabled by default. Use this command to see all available MySQL-related subrepositories (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa13723783"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">yum</span> repolist all | grep mysql</code></pre> </div> <p> Example output: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa91605353"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql-connectors-community MySQL Connectors Community enabled mysql-tools-8<span class="token punctuation">.</span>4-lts-community MySQL Tools 8<span class="token punctuation">.</span>4 LTS Community enabled mysql-tools-community MySQL Tools Community disabled mysql-tools-innovation-community MySQL Tools Innovation Commu disabled mysql-innovation-community MySQL Innovation Release Com disabled mysql-8<span class="token punctuation">.</span>4-lts-community MySQL 8<span class="token punctuation">.</span>4 Community LTS Server enabled mysql-8<span class="token punctuation">.</span>4-lts-community-debuginfo MySQL 8<span class="token punctuation">.</span>4 Community LTS Server - disabled mysql-8<span class="token punctuation">.</span>4-lts-community-source MySQL 8<span class="token punctuation">.</span>4 Community LTS Server - disabled mysql80-community MySQL 8<span class="token punctuation">.</span>0 Community Server - disabled mysql80-community-debuginfo MySQL 8<span class="token punctuation">.</span>0 Community Server - disabled mysql80-community-source MySQL 8<span class="token punctuation">.</span>0 Community Server - disabled</code></pre> </div> <p> To install the latest release from a specific series other than the latest LTS series, disable the bug subrepository for the latest LTS series and enable the subrepository for the specific series before running the installation command. If your platform supports the <span class="command"> <strong> yum-config-manager </strong> </span> or <span class="command"> <strong> dnf config-manager </strong> </span> command, you can do that by issuing the following commands to disable the subrepository for the 8.4 series and enable the one for the 8.0 series: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa50096814"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum-config-manager <span class="token property">--disable</span> mysql-8<span class="token punctuation">.</span>4-lts-community <span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum-config-manager <span class="token property">--enable</span> mysql80-community</code></pre> </div> <p> For dnf-enabled platforms: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa92458064"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> dnf config-manager <span class="token property">--disable</span> mysql-8<span class="token punctuation">.</span>4-lts-community <span class="token prompt">$&gt; </span><span class="token command">sudo</span> dnf config-manager <span class="token property">--enable</span> mysql80-community</code></pre> </div> <p> </p> <p> Instead of using the config-manager commands you can manually edit the <code class="filename"> /etc/yum.repos.d/mysql-community.repo </code> file by toggling the <code class="literal"> enabled </code> option. For example, a typical default entry for EL8: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa93112964"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysql-8.4-lts-community]</span> <span class="token constant">name</span><span class="token attr-value"><span class="token punctuation">=</span>MySQL 8.4 LTS Community Server</span> <span class="token constant">baseurl</span><span class="token attr-value"><span class="token punctuation">=</span>http://repo.mysql.com/yum/mysql-8.4-community/el/8/$basearch/</span> <span class="token constant">enabled</span><span class="token attr-value"><span class="token punctuation">=</span>1</span> <span class="token constant">gpgcheck</span><span class="token attr-value"><span class="token punctuation">=</span>1</span> <span class="token constant">gpgkey</span><span class="token attr-value"><span class="token punctuation">=</span>file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-2023</span></code></pre> </div> <p> Find the entry for the subrepository you want to configure and edit the <code class="option"> enabled </code> option. Specify <code class="option"> enabled=0 </code> to disable a subrepository or <code class="option"> enabled=1 </code> to enable a subrepository. For example, to install from the MySQL innovation track, make sure you have <code class="option"> enabled=0 </code> for the MySQL 8.4 subrepository entries and have <code class="option"> enabled=1 </code> for the innovation entries: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa84781896"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysql80-community]</span> <span class="token constant">name</span><span class="token attr-value"><span class="token punctuation">=</span>MySQL 8.0 Community Server</span> <span class="token constant">baseurl</span><span class="token attr-value"><span class="token punctuation">=</span>http://repo.mysql.com/yum/mysql-8.0-community/el/8/$basearch</span> <span class="token constant">enabled</span><span class="token attr-value"><span class="token punctuation">=</span>1</span> <span class="token constant">gpgcheck</span><span class="token attr-value"><span class="token punctuation">=</span>1</span> <span class="token constant">gpgkey</span><span class="token attr-value"><span class="token punctuation">=</span>file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql-2023</span></code></pre> </div> <p> You should only enable subrepository for one release series at any time. </p> <p> Verify that the correct subrepositories have been enabled and disabled by running the following command and checking its output (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa96622488"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">yum</span> repolist enabled | grep mysql</code></pre> </div> </li> <li class="listitem"> <h4> <a name="yum-repo-disabling-mysql"> </a> Disabling the Default MySQL Module </h4> <p> (EL8 systems only) EL8-based systems such as RHEL8 and Oracle Linux 8 include a MySQL module that is enabled by default. Unless this module is disabled, it masks packages provided by MySQL repositories. To disable the included module and make the MySQL repository packages visible, use the following command (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa91691480"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum module disable mysql</code></pre> </div> </li> <li class="listitem"> <h4> <a name="yum-repo-installing-mysql"> </a> Installing MySQL </h4> <p> Install MySQL by the following command (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa80039500"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum install mysql-community-server</code></pre> </div> <p> This installs the package for MySQL server ( <code class="filename"> mysql-community-server </code> ) and also packages for the components required to run the server, including packages for the client ( <code class="filename"> mysql-community-client </code> ), the common error messages and character sets for client and server ( <code class="filename"> mysql-community-common </code> ), and the shared client libraries ( <code class="filename"> mysql-community-libs </code> ). </p> </li> <li class="listitem"> <h4> <a name="yum-repo-starting-and-stopping-server"> </a> Starting the MySQL Server </h4> <p> Start the MySQL server with the following command: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa48219435"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">systemctl</span> start mysqld</code></pre> </div> <p> You can check the status of the MySQL server with the following command: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa38740896"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">systemctl</span> status mysqld</code></pre> </div> </li> </ol> </div> <p> If the operating system is systemd enabled, standard <span class="command"> <strong> systemctl </strong> </span> (or alternatively, <span class="command"> <strong> service </strong> </span> with the arguments reversed) commands such as <span class="command"> <strong> stop </strong> </span> , <span class="command"> <strong> start </strong> </span> , <span class="command"> <strong> status </strong> </span> , and <a class="link" href="restart.html" title="15.7.8.8 RESTART Statement"> <span class="command"> <strong> restart </strong> </span> </a> should be used to manage the MySQL server service. The <code class="literal"> mysqld </code> service is enabled by default, and it starts at system reboot. See <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> for additional information. </p> <p> At the initial start up of the server, the following happens, given that the data directory of the server is empty: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The server is initialized. </p> </li> <li class="listitem"> <p> SSL certificate and key files are generated in the data directory. </p> </li> <li class="listitem"> <p> <a class="link" href="validate-password.html" title="8.4.3 The Password Validation Component"> <code class="literal"> validate_password </code> </a> is installed and enabled. </p> </li> <li class="listitem"> <p> A superuser account <code class="literal"> 'root'@'localhost </code> is created. A password for the superuser is set and stored in the error log file. To reveal it, use the following command: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa98002731"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> grep <span class="token atrule">'temporary password'</span> /var/log/mysqld<span class="token punctuation">.</span>log</code></pre> </div> <p> Change the root password as soon as possible by logging in with the generated, temporary password and set a custom password for the superuser account: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa67606357"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">mysql</span> <span class="token property">-uroot</span> <span class="token property">-p</span></code></pre> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa60685561"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">USER</span> <span class="token string">'root'</span>@<span class="token string">'localhost'</span> <span class="token keyword">IDENTIFIED</span> <span class="token keyword">BY</span> <span class="token string">'MyNewPass4!'</span><span class="token punctuation">;</span></code></pre> </div> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> <a class="link" href="validate-password.html" title="8.4.3 The Password Validation Component"> <code class="literal"> validate_password </code> </a> is installed by default. The default password policy implemented by <code class="literal"> validate_password </code> requires that passwords contain at least one uppercase letter, one lowercase letter, one digit, and one special character, and that the total password length is at least 8 characters. </p> </div> </li> </ul> </div> <p> For more information on the postinstallation procedures, see <a class="xref" href="postinstallation.html" title="2.9 Postinstallation Setup and Testing"> Section 2.9, “Postinstallation Setup and Testing” </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> <a name="yum-install-compatibility-el7"> </a> <span class="emphasis"> <em> Compatibility Information for EL7-based platforms: </em> </span> The following RPM packages from the native software repositories of the platforms are incompatible with the package from the MySQL Yum repository that installs the MySQL server. Once you have installed MySQL using the MySQL Yum repository, you cannot install these packages (and vice versa). </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> akonadi-mysql </p> </li> </ul> </div> </div> <h4> <a name="yum-install-components"> </a> Installing Additional MySQL Products and Components with Yum </h4> <p> You can use Yum to install and manage individual components of MySQL. Some of these components are hosted in sub-repositories of the MySQL Yum repository: for example, the MySQL Connectors are to be found in the MySQL Connectors Community sub-repository, and the MySQL Workbench in MySQL Tools Community. You can use the following command to list the packages for all the MySQL components available for your platform from the MySQL Yum repository (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa66968771"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum <span class="token constant">--disablerepo</span><span class="token attr-value"><span class="token punctuation">=</span>\*</span> <span class="token constant">--enablerepo</span>=<span class="token atrule">'mysql*-community*'</span> list available</code></pre> </div> <p> Install any packages of your choice with the following command, replacing <em class="replaceable"> <code> package-name </code> </em> with name of the package (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa50178393"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum install <em class="replaceable">package-name</em></code></pre> </div> <p> For example, to install MySQL Workbench on Fedora: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa26949805"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> dnf install mysql-workbench-community</code></pre> </div> <p> To install the shared client libraries (for dnf-enabled systems, replace <span class="command"> <strong> yum </strong> </span> in the command with <span class="command"> <strong> dnf </strong> </span> ): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa99163932"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">sudo</span> yum install mysql-community-libs</code></pre> </div> <h4> <a name="yum-install-platform-specifics"> </a> Platform Specific Notes </h4> <p> ARM Support </p> <p> ARM 64-bit (aarch64) is supported on Oracle Linux 7 and requires the Oracle Linux 7 Software Collections Repository (ol7_software_collections). For example, to install the server: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa89496990"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">yum-config-manager</span> <span class="token property">--enable</span> ol7_software_collections <span class="token prompt">$&gt; </span><span class="token command">yum</span> install mysql-community-server</code></pre> </div> <h4> <a name="idm46045331283072"> </a> Updating MySQL with Yum </h4> <p> Besides installation, you can also perform updates for MySQL products and components using the MySQL Yum repository. See <a class="xref" href="updating-yum-repo.html" title="3.8 Upgrading MySQL with the MySQL Yum Repository"> Section 3.8, “Upgrading MySQL with the MySQL Yum Repository” </a> for details. </p> <h4> <a name="linux-installation-yum-repo-replace-third-party"> </a> Replacing a Native Third-Party Distribution of MySQL </h4> <p> If you have installed a third-party distribution of MySQL from a native software repository (that is, a software repository provided by your own Linux distribution), follow these steps: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <h4> <a name="idm46045331278304"> </a> Backing Up Your Database </h4> <p> To avoid loss of data, always back up your database before trying to replace your MySQL installation using the MySQL Yum repository. See <a class="xref" href="backup-and-recovery.html" title="Chapter 9 Backup and Recovery"> Chapter 9, <i> Backup and Recovery </i> </a> , on how to back up your database. </p> </li> <li class="listitem"> <h4> <a name="idm46045331275712"> </a> Adding the MySQL Yum Repository </h4> <p> Add the MySQL Yum repository to your system's repository list by following the instructions given in <a class="xref" href="linux-installation-yum-repo.html#yum-repo-setup" title="Adding the MySQL Yum Repository"> Adding the MySQL Yum Repository </a> . </p> </li> <li class="listitem"> <h4> <a name="idm46045331273312"> </a> Replacing the Native Third-Party Distribution by a Yum Update or a DNF Upgrade </h4> <p> By design, the MySQL Yum repository replaces your native, third-party MySQL with the latest bugfix release from the MySQL Yum repository when you perform a <span class="command"> <strong> yum update </strong> </span> command (or <span class="command"> <strong> dnf upgrade </strong> </span> for dnf-enabled systems) on the system, or a <span class="command"> <strong> yum update mysql-server </strong> </span> (or <span class="command"> <strong> dnf upgrade mysql-server </strong> </span> for dnf-enabled systems). </p> </li> </ol> </div> <p> After updating MySQL using the Yum repository, applications compiled with older versions of the shared client libraries should continue to work. However, <span class="emphasis"> <em> if you want to recompile applications and dynamically link them with the updated libraries </em> </span> , see <a class="xref" href="updating-yum-repo.html#updating-yum-repo-client-lib" title="Upgrading the Shared Client Libraries"> Upgrading the Shared Client Libraries </a> , for some special considerations. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> <span class="emphasis"> <em> For EL7-based platforms: </em> </span> See <a class="xref" href="linux-installation-yum-repo.html#yum-install-compatibility-el7"> Compatibility Information for EL7-based platforms </a> . </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/thread-commands.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="thread-commands"> </a> 10.14.2 Thread Command Values </h3> </div> </div> </div> <a class="indexterm" name="idm46045221954704"> </a> <p> A thread can have any of the following <code class="literal"> Command </code> values: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="indexterm" name="idm46045221951680"> </a> <a class="indexterm" name="idm46045221950192"> </a> <code class="literal"> Binlog Dump </code> </p> <p> This is a thread on a replication source for sending binary log contents to a replica. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221946720"> </a> <a class="indexterm" name="idm46045221945232"> </a> <code class="literal"> Change user </code> </p> <p> The thread is executing a change user operation. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221941808"> </a> <a class="indexterm" name="idm46045221940320"> </a> <code class="literal"> Close stmt </code> </p> <p> The thread is closing a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221936912"> </a> <a class="indexterm" name="idm46045221935424"> </a> <code class="literal"> Connect </code> </p> <p> Used by replication receiver threads connected to the source, and by replication worker threads. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221931952"> </a> <a class="indexterm" name="idm46045221930464"> </a> <code class="literal"> Connect Out </code> </p> <p> A replica is connecting to its source. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221927056"> </a> <a class="indexterm" name="idm46045221925568"> </a> <code class="literal"> Create DB </code> </p> <p> The thread is executing a create database operation. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221922144"> </a> <a class="indexterm" name="idm46045221920656"> </a> <code class="literal"> Daemon </code> </p> <p> This thread is internal to the server, not a thread that services a client connection. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221917184"> </a> <a class="indexterm" name="idm46045221915696"> </a> <code class="literal"> Debug </code> </p> <p> The thread is generating debugging information. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221912288"> </a> <a class="indexterm" name="idm46045221910800"> </a> <code class="literal"> Delayed insert </code> </p> <p> The thread is a delayed insert handler. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221907392"> </a> <a class="indexterm" name="idm46045221905904"> </a> <code class="literal"> Drop DB </code> </p> <p> The thread is executing a drop database operation. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221902480"> </a> <a class="indexterm" name="idm46045221900992"> </a> <code class="literal"> Error </code> </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221898048"> </a> <a class="indexterm" name="idm46045221896560"> </a> <code class="literal"> Execute </code> </p> <p> The thread is executing a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221893152"> </a> <a class="indexterm" name="idm46045221891664"> </a> <code class="literal"> Fetch </code> </p> <p> The thread is fetching the results from executing a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221888208"> </a> <a class="indexterm" name="idm46045221886720"> </a> <code class="literal"> Field List </code> </p> <p> The thread is retrieving information for table columns. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221883296"> </a> <a class="indexterm" name="idm46045221881808"> </a> <code class="literal"> Init DB </code> </p> <p> The thread is selecting a default database. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221878400"> </a> <a class="indexterm" name="idm46045221876912"> </a> <code class="literal"> Kill </code> </p> <p> The thread is killing another thread. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221873504"> </a> <a class="indexterm" name="idm46045221872016"> </a> <code class="literal"> Long Data </code> </p> <p> The thread is retrieving long data in the result of executing a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221868560"> </a> <a class="indexterm" name="idm46045221867072"> </a> <code class="literal"> Ping </code> </p> <p> The thread is handling a server ping request. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221863664"> </a> <a class="indexterm" name="idm46045221862176"> </a> <code class="literal"> Prepare </code> </p> <p> The thread is preparing a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221858768"> </a> <a class="indexterm" name="idm46045221857280"> </a> <code class="literal"> Processlist </code> </p> <p> The thread is producing information about server threads. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221853856"> </a> <a class="indexterm" name="idm46045221852368"> </a> <code class="literal"> Query </code> </p> <p> Employed for user clients while executing queries by single-threaded replication applier threads, as well as by the replication coordinator thread. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221848832"> </a> <a class="indexterm" name="idm46045221847344"> </a> <code class="literal"> Quit </code> </p> <p> The thread is terminating. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221843952"> </a> <a class="indexterm" name="idm46045221842464"> </a> <code class="literal"> Refresh </code> </p> <p> The thread is flushing table, logs, or caches, or resetting status variable or replication server information. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221838976"> </a> <a class="indexterm" name="idm46045221837488"> </a> <code class="literal"> Register Slave </code> </p> <p> The thread is registering a replica server. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221834080"> </a> <a class="indexterm" name="idm46045221832592"> </a> <code class="literal"> Reset stmt </code> </p> <p> The thread is resetting a prepared statement. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221829184"> </a> <a class="indexterm" name="idm46045221827696"> </a> <code class="literal"> Set option </code> </p> <p> The thread is setting or resetting a client statement execution option. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221824240"> </a> <a class="indexterm" name="idm46045221822752"> </a> <code class="literal"> Shutdown </code> </p> <p> The thread is shutting down the server. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221819344"> </a> <a class="indexterm" name="idm46045221817856"> </a> <code class="literal"> Sleep </code> </p> <p> The thread is waiting for the client to send a new statement to it. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221814416"> </a> <a class="indexterm" name="idm46045221812928"> </a> <code class="literal"> Statistics </code> </p> <p> The thread is producing server status information. </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045221809504"> </a> <a class="indexterm" name="idm46045221808016"> </a> <code class="literal"> Time </code> </p> <p> Unused. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/testing-server.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="testing-server"> </a> 2.9.3 Testing the Server </h3> </div> </div> </div> <p> After the data directory is initialized and you have started the server, perform some simple tests to make sure that it works satisfactorily. This section assumes that your current location is the MySQL installation directory and that it has a <code class="filename"> bin </code> subdirectory containing the MySQL programs used here. If that is not true, adjust the command path names accordingly. </p> <a class="indexterm" name="idm46045326753360"> </a> <a class="indexterm" name="idm46045326752272"> </a> <p> Alternatively, add the <code class="filename"> bin </code> directory to your <code class="literal"> PATH </code> environment variable setting. That enables your shell (command interpreter) to find MySQL programs properly, so that you can run a program by typing only its name, not its path name. See <a class="xref" href="setting-environment-variables.html" title="6.2.9 Setting Environment Variables"> Section 6.2.9, “Setting Environment Variables” </a> . </p> <p> Use <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin </strong> </span> </a> to verify that the server is running. The following commands provide simple tests to check whether the server is up and responding to connections: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa51889759"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqladmin</span> version <span class="token prompt">$&gt; </span><span class="token command">bin/mysqladmin</span> variables</code></pre> </div> <p> If you cannot connect to the server, specify a <code class="option"> -u root </code> option to connect as <code class="literal"> root </code> . If you have assigned a password for the <code class="literal"> root </code> account already, you'll also need to specify <code class="option"> -p </code> on the command line and enter the password when prompted. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa15515748"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqladmin</span> <span class="token property">-u</span> root <span class="token property">-p</span> version Enter password<span class="token punctuation">:</span> <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">(</span>enter root password here<span class="token punctuation">)</span></em><span class="token punctuation"></span></code></pre> </div> <p> The output from <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin version </strong> </span> </a> varies slightly depending on your platform and version of MySQL, but should be similar to that shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa30600810"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqladmin</span> version mysqladmin Ver 14<span class="token punctuation">.</span>12 Distrib 8<span class="token punctuation">.</span>4<span class="token punctuation">.</span>3<span class="token punctuation">,</span> for pc-linux-gnu on i686 <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> Server version 8<span class="token punctuation">.</span>4<span class="token punctuation">.</span>3 Protocol version 10 Connection Localhost via UNIX socket UNIX socket /var/lib/mysql/mysql<span class="token punctuation">.</span>sock Uptime<span class="token punctuation">:</span> 14 days 5 hours 5 min 21 sec Threads<span class="token punctuation">:</span> 1 Questions<span class="token punctuation">:</span> 366 Slow queries<span class="token punctuation">:</span> 0 Opens<span class="token punctuation">:</span> 0 Flush tables<span class="token punctuation">:</span> 1 Open tables<span class="token punctuation">:</span> 19 Queries per second avg<span class="token punctuation">:</span> 0<span class="token punctuation">.</span>000</code></pre> </div> <p> To see what else you can do with <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin </strong> </span> </a> , invoke it with the <a class="link" href="mysqladmin.html#option_mysqladmin_help"> <code class="option"> --help </code> </a> option. </p> <a class="indexterm" name="idm46045326732240"> </a> <a class="indexterm" name="idm46045326730752"> </a> <p> Verify that you can shut down the server (include a <code class="option"> -p </code> option if the <code class="literal"> root </code> account has a password already): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa47561349"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqladmin</span> <span class="token property">-u</span> root shutdown</code></pre> </div> <p> Verify that you can start the server again. Do this by using <a class="link" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> <span class="command"> <strong> mysqld_safe </strong> </span> </a> or by invoking <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> directly. For example: </p> <a class="indexterm" name="idm46045326723008"> </a> <a class="indexterm" name="idm46045326721520"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa97629545"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqld_safe</span> <span class="token constant">--user</span><span class="token attr-value"><span class="token punctuation">=</span>mysql</span> &amp;</code></pre> </div> <p> If <a class="link" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> <span class="command"> <strong> mysqld_safe </strong> </span> </a> fails, see <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> . </p> <p> Run some simple tests to verify that you can retrieve information from the server. The output should be similar to that shown here. </p> <p> Use <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow </strong> </span> </a> to see what databases exist: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa46147811"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqlshow</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Databases <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> information_schema <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> mysql <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> performance_schema <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> sys <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The list of installed databases may vary, but always includes at least <code class="literal"> mysql </code> and <code class="literal"> information_schema </code> . </p> <p> If you specify a database name, <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow </strong> </span> </a> displays a list of the tables within the database: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa3464741"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysqlshow</span> mysql Database<span class="token punctuation">:</span> mysql <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Tables <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> columns_priv <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> component <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> db <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> default_roles <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> engine_cost <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> func <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> general_log <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> global_grants <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> gtid_executed <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> help_category <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> help_keyword <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> help_relation <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> help_topic <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> innodb_index_stats <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> innodb_table_stats <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> ndb_binlog_index <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> password_history <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> plugin <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> procs_priv <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> proxies_priv <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> role_edges <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> server_cost <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> servers <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> slave_master_info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> slave_relay_log_info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> slave_worker_info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> slow_log <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> tables_priv <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> time_zone <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> time_zone_leap_second <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> time_zone_name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> time_zone_transition <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> time_zone_transition_type <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> user <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Use the <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> program to select information from a table in the <code class="literal"> mysql </code> schema: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa38081982"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">bin/mysql</span> <span class="token property">-e</span> <span class="token atrule">"SELECT User, Host, plugin FROM mysql.user"</span> mysql <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> User <span class="token punctuation">|</span> Host <span class="token punctuation">|</span> plugin <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> root <span class="token punctuation">|</span> localhost <span class="token punctuation">|</span> caching_sha2_password <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> At this point, your server is running and you can access it. To tighten security if you have not yet assigned a password to the initial account, follow the instructions in <a class="xref" href="default-privileges.html" title="2.9.4 Securing the Initial MySQL Account"> Section 2.9.4, “Securing the Initial MySQL Account” </a> . </p> <p> For more information about <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> , <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin </strong> </span> </a> , and <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow </strong> </span> </a> , see <a class="xref" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> Section 6.5.1, “mysql — The MySQL Command-Line Client” </a> , <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> , and <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/error-handling.html
<div id="docs-body"> <div class="appendix"> <div class="titlepage"> <div> <div> <h1 class="title"> <a name="error-handling"> </a> Appendix B Error Messages and Common Problems </h1> </div> </div> </div> <div class="toc"> <p> <b> Table of Contents </b> </p> <dl class="toc"> <dt> <span class="section"> <a href="error-message-elements.html"> B.1 Error Message Sources and Elements </a> </span> </dt> <dt> <span class="section"> <a href="error-interfaces.html"> B.2 Error Information Interfaces </a> </span> </dt> <dt> <span class="section"> <a href="problems.html"> B.3 Problems and Common Errors </a> </span> </dt> <dd> <dl> <dt> <span class="section"> <a href="what-is-crashing.html"> B.3.1 How to Determine What Is Causing a Problem </a> </span> </dt> <dt> <span class="section"> <a href="common-errors.html"> B.3.2 Common Errors When Using MySQL Programs </a> </span> </dt> <dt> <span class="section"> <a href="administration-issues.html"> B.3.3 Administration-Related Issues </a> </span> </dt> <dt> <span class="section"> <a href="query-issues.html"> B.3.4 Query-Related Issues </a> </span> </dt> <dt> <span class="section"> <a href="optimizer-issues.html"> B.3.5 Optimizer-Related Issues </a> </span> </dt> <dt> <span class="section"> <a href="table-definition-issues.html"> B.3.6 Table Definition-Related Issues </a> </span> </dt> <dt> <span class="section"> <a href="known-issues.html"> B.3.7 Known Issues in MySQL </a> </span> </dt> </dl> </dd> </dl> </div> <p> This appendix describes the types of error information MySQL provides and how to obtain information about them. The final section is for troubleshooting. It describes common problems and errors that may occur and potential resolutions. </p> <h2> <a name="idm46045054787296"> </a> Additional Resources </h2> <p> Other error-related documentation includes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Information about configuring where and how the server writes the error log: <a class="xref" href="error-log.html" title="7.4.2 The Error Log"> Section 7.4.2, “The Error Log” </a> </p> </li> <li class="listitem"> <p> Information about the character set used for error messages: <a class="xref" href="charset-errors.html" title="12.6 Error Message Character Set"> Section 12.6, “Error Message Character Set” </a> </p> </li> <li class="listitem"> <p> Information about the language used for error messages: <a class="xref" href="error-message-language.html" title="12.12 Setting the Error Message Language"> Section 12.12, “Setting the Error Message Language” </a> </p> </li> <li class="listitem"> <p> Information about errors related to <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> : <a class="xref" href="innodb-error-handling.html" title="17.20.5 InnoDB Error Handling"> Section 17.20.5, “InnoDB Error Handling” </a> </p> </li> <li class="listitem"> <p> Information about errors specific to NDB Cluster: <a class="ulink" href="/doc/ndb-internals/en/ndb-errors.html" target="_top"> NDB Cluster API Errors </a> ; see also <a class="ulink" href="/doc/ndbapi/en/ndb-api-errors.html" target="_top"> NDB API Errors and Error Handling </a> , and <a class="ulink" href="/doc/ndbapi/en/mgm-errors.html" target="_top"> MGM API Errors </a> </p> </li> <li class="listitem"> <p> Descriptions of the error messages that the MySQL server and client programs generate: <a class="ulink" href="/doc/mysql-errors/8.4/en/" target="_top"> MySQL 8.4 Error Message Reference </a> </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/locale-support.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="locale-support"> </a> 12.16 MySQL Server Locale Support </h2> </div> </div> </div> <p> The locale indicated by the <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> system variable controls the language used to display day and month names and abbreviations. This variable affects the output from the <a class="link" href="date-and-time-functions.html#function_date-format"> <code class="literal"> DATE_FORMAT() </code> </a> , <a class="link" href="date-and-time-functions.html#function_dayname"> <code class="literal"> DAYNAME() </code> </a> , and <a class="link" href="date-and-time-functions.html#function_monthname"> <code class="literal"> MONTHNAME() </code> </a> functions. </p> <p> <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> does not affect the <a class="link" href="date-and-time-functions.html#function_str-to-date"> <code class="literal"> STR_TO_DATE() </code> </a> or <a class="link" href="date-and-time-functions.html#function_get-format"> <code class="literal"> GET_FORMAT() </code> </a> function. </p> <p> The <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> value does not affect the result from <a class="link" href="string-functions.html#function_format"> <code class="literal"> FORMAT() </code> </a> , but this function takes an optional third parameter that enables a locale to be specified to be used for the result number's decimal point, thousands separator, and grouping between separators. Permissible locale values are the same as the legal values for the <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> system variable. </p> <p> Locale names have language and region subtags listed by IANA ( <a class="ulink" href="http://www.iana.org/assignments/language-subtag-registry" target="_blank"> http://www.iana.org/assignments/language-subtag-registry </a> ) such as <code class="literal"> 'ja_JP' </code> or <code class="literal"> 'pt_BR' </code> . The default value is <code class="literal"> 'en_US' </code> regardless of your system's locale setting, but you can set the value at server startup, or set the <code class="literal"> GLOBAL </code> value at runtime if you have privileges sufficient to set global system variables; see <a class="xref" href="system-variable-privileges.html" title="7.1.9.1 System Variable Privileges"> Section 7.1.9.1, “System Variable Privileges” </a> . Any client can examine the value of <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> or set its <code class="literal"> SESSION </code> value to affect the locale for its own connection. </p> <p> (The first <a class="link" href="set-names.html" title="15.7.6.3 SET NAMES Statement"> <code class="literal"> SET NAMES </code> </a> statement in the following example may not be necessary if no settings relating to character set and collation have been changed from their defaults; we include it for completeness.) </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa31080634"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">NAMES</span> <span class="token string">'utf8mb4'</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.09 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token variable">@@lc_time_names</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> @@lc_time_names <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> en_US <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DAYNAME</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token function">MONTHNAME</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> DAYNAME('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01') <span class="token punctuation">|</span> MONTHNAME('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01') <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Wednesday <span class="token punctuation">|</span> January <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DATE_FORMAT</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">,</span><span class="token string">'%W %a %M %b'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> DATE_FORMAT('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01','%W %a %M %b') <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Wednesday Wed January Jan <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> lc_time_names <span class="token operator">=</span> <span class="token string">'es_MX'</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token variable">@@lc_time_names</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> @@lc_time_names <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> es_MX <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DAYNAME</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token function">MONTHNAME</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> DAYNAME('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01') <span class="token punctuation">|</span> MONTHNAME('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01') <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> miércoles <span class="token punctuation">|</span> enero <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DATE_FORMAT</span><span class="token punctuation">(</span><span class="token string">'2020-01-01'</span><span class="token punctuation">,</span><span class="token string">'%W %a %M %b'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> DATE_FORMAT('2020<span class="token punctuation">-</span>01<span class="token punctuation">-</span>01','%W %a %M %b') <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> miércoles mié enero ene <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> The day or month name for each of the affected functions is converted from <code class="literal"> utf8mb4 </code> to the character set indicated by the <a class="link" href="server-system-variables.html#sysvar_character_set_connection"> <code class="literal"> character_set_connection </code> </a> system variable. </p> <p> <a class="link" href="server-system-variables.html#sysvar_lc_time_names"> <code class="literal"> lc_time_names </code> </a> may be set to any of the following locale values. The set of locales supported by MySQL may differ from those supported by your operating system. </p> <div class="informaltable"> <table summary="Locale values to which lc_time_names may be set. The locale values are presented in a two-column table and in alphabetical order from top to bottom."> <colgroup> <col style="width: 50%"/> <col style="width: 50%"/> </colgroup> <thead> <tr> <th> Locale Value </th> <th> Meaning </th> </tr> </thead> <tbody> <tr> <td> <code class="literal"> ar_AE </code> </td> <td> Arabic - United Arab Emirates </td> </tr> <tr> <td> <code class="literal"> ar_BH </code> </td> <td> Arabic - Bahrain </td> </tr> <tr> <td> <code class="literal"> ar_DZ </code> </td> <td> Arabic - Algeria </td> </tr> <tr> <td> <code class="literal"> ar_EG </code> </td> <td> Arabic - Egypt </td> </tr> <tr> <td> <code class="literal"> ar_IN </code> </td> <td> Arabic - India </td> </tr> <tr> <td> <code class="literal"> ar_IQ </code> </td> <td> Arabic - Iraq </td> </tr> <tr> <td> <code class="literal"> ar_JO </code> </td> <td> Arabic - Jordan </td> </tr> <tr> <td> <code class="literal"> ar_KW </code> </td> <td> Arabic - Kuwait </td> </tr> <tr> <td> <code class="literal"> ar_LB </code> </td> <td> Arabic - Lebanon </td> </tr> <tr> <td> <code class="literal"> ar_LY </code> </td> <td> Arabic - Libya </td> </tr> <tr> <td> <code class="literal"> ar_MA </code> </td> <td> Arabic - Morocco </td> </tr> <tr> <td> <code class="literal"> ar_OM </code> </td> <td> Arabic - Oman </td> </tr> <tr> <td> <code class="literal"> ar_QA </code> </td> <td> Arabic - Qatar </td> </tr> <tr> <td> <code class="literal"> ar_SA </code> </td> <td> Arabic - Saudi Arabia </td> </tr> <tr> <td> <code class="literal"> ar_SD </code> </td> <td> Arabic - Sudan </td> </tr> <tr> <td> <code class="literal"> ar_SY </code> </td> <td> Arabic - Syria </td> </tr> <tr> <td> <code class="literal"> ar_TN </code> </td> <td> Arabic - Tunisia </td> </tr> <tr> <td> <code class="literal"> ar_YE </code> </td> <td> Arabic - Yemen </td> </tr> <tr> <td> <code class="literal"> be_BY </code> </td> <td> Belarusian - Belarus </td> </tr> <tr> <td> <code class="literal"> bg_BG </code> </td> <td> Bulgarian - Bulgaria </td> </tr> <tr> <td> <code class="literal"> ca_ES </code> </td> <td> Catalan - Spain </td> </tr> <tr> <td> <code class="literal"> cs_CZ </code> </td> <td> Czech - Czech Republic </td> </tr> <tr> <td> <code class="literal"> da_DK </code> </td> <td> Danish - Denmark </td> </tr> <tr> <td> <code class="literal"> de_AT </code> </td> <td> German - Austria </td> </tr> <tr> <td> <code class="literal"> de_BE </code> </td> <td> German - Belgium </td> </tr> <tr> <td> <code class="literal"> de_CH </code> </td> <td> German - Switzerland </td> </tr> <tr> <td> <code class="literal"> de_DE </code> </td> <td> German - Germany </td> </tr> <tr> <td> <code class="literal"> de_LU </code> </td> <td> German - Luxembourg </td> </tr> <tr> <td> <code class="literal"> el_GR </code> </td> <td> Greek - Greece </td> </tr> <tr> <td> <code class="literal"> en_AU </code> </td> <td> English - Australia </td> </tr> <tr> <td> <code class="literal"> en_CA </code> </td> <td> English - Canada </td> </tr> <tr> <td> <code class="literal"> en_GB </code> </td> <td> English - United Kingdom </td> </tr> <tr> <td> <code class="literal"> en_IN </code> </td> <td> English - India </td> </tr> <tr> <td> <code class="literal"> en_NZ </code> </td> <td> English - New Zealand </td> </tr> <tr> <td> <code class="literal"> en_PH </code> </td> <td> English - Philippines </td> </tr> <tr> <td> <code class="literal"> en_US </code> </td> <td> English - United States </td> </tr> <tr> <td> <code class="literal"> en_ZA </code> </td> <td> English - South Africa </td> </tr> <tr> <td> <code class="literal"> en_ZW </code> </td> <td> English - Zimbabwe </td> </tr> <tr> <td> <code class="literal"> es_AR </code> </td> <td> Spanish - Argentina </td> </tr> <tr> <td> <code class="literal"> es_BO </code> </td> <td> Spanish - Bolivia </td> </tr> <tr> <td> <code class="literal"> es_CL </code> </td> <td> Spanish - Chile </td> </tr> <tr> <td> <code class="literal"> es_CO </code> </td> <td> Spanish - Colombia </td> </tr> <tr> <td> <code class="literal"> es_CR </code> </td> <td> Spanish - Costa Rica </td> </tr> <tr> <td> <code class="literal"> es_DO </code> </td> <td> Spanish - Dominican Republic </td> </tr> <tr> <td> <code class="literal"> es_EC </code> </td> <td> Spanish - Ecuador </td> </tr> <tr> <td> <code class="literal"> es_ES </code> </td> <td> Spanish - Spain </td> </tr> <tr> <td> <code class="literal"> es_GT </code> </td> <td> Spanish - Guatemala </td> </tr> <tr> <td> <code class="literal"> es_HN </code> </td> <td> Spanish - Honduras </td> </tr> <tr> <td> <code class="literal"> es_MX </code> </td> <td> Spanish - Mexico </td> </tr> <tr> <td> <code class="literal"> es_NI </code> </td> <td> Spanish - Nicaragua </td> </tr> <tr> <td> <code class="literal"> es_PA </code> </td> <td> Spanish - Panama </td> </tr> <tr> <td> <code class="literal"> es_PE </code> </td> <td> Spanish - Peru </td> </tr> <tr> <td> <code class="literal"> es_PR </code> </td> <td> Spanish - Puerto Rico </td> </tr> <tr> <td> <code class="literal"> es_PY </code> </td> <td> Spanish - Paraguay </td> </tr> <tr> <td> <code class="literal"> es_SV </code> </td> <td> Spanish - El Salvador </td> </tr> <tr> <td> <code class="literal"> es_US </code> </td> <td> Spanish - United States </td> </tr> <tr> <td> <code class="literal"> es_UY </code> </td> <td> Spanish - Uruguay </td> </tr> <tr> <td> <code class="literal"> es_VE </code> </td> <td> Spanish - Venezuela </td> </tr> <tr> <td> <code class="literal"> et_EE </code> </td> <td> Estonian - Estonia </td> </tr> <tr> <td> <code class="literal"> eu_ES </code> </td> <td> Basque - Spain </td> </tr> <tr> <td> <code class="literal"> fi_FI </code> </td> <td> Finnish - Finland </td> </tr> <tr> <td> <code class="literal"> fo_FO </code> </td> <td> Faroese - Faroe Islands </td> </tr> <tr> <td> <code class="literal"> fr_BE </code> </td> <td> French - Belgium </td> </tr> <tr> <td> <code class="literal"> fr_CA </code> </td> <td> French - Canada </td> </tr> <tr> <td> <code class="literal"> fr_CH </code> </td> <td> French - Switzerland </td> </tr> <tr> <td> <code class="literal"> fr_FR </code> </td> <td> French - France </td> </tr> <tr> <td> <code class="literal"> fr_LU </code> </td> <td> French - Luxembourg </td> </tr> <tr> <td> <code class="literal"> gl_ES </code> </td> <td> Galician - Spain </td> </tr> <tr> <td> <code class="literal"> gu_IN </code> </td> <td> Gujarati - India </td> </tr> <tr> <td> <code class="literal"> he_IL </code> </td> <td> Hebrew - Israel </td> </tr> <tr> <td> <code class="literal"> hi_IN </code> </td> <td> Hindi - India </td> </tr> <tr> <td> <code class="literal"> hr_HR </code> </td> <td> Croatian - Croatia </td> </tr> <tr> <td> <code class="literal"> hu_HU </code> </td> <td> Hungarian - Hungary </td> </tr> <tr> <td> <code class="literal"> id_ID </code> </td> <td> Indonesian - Indonesia </td> </tr> <tr> <td> <code class="literal"> is_IS </code> </td> <td> Icelandic - Iceland </td> </tr> <tr> <td> <code class="literal"> it_CH </code> </td> <td> Italian - Switzerland </td> </tr> <tr> <td> <code class="literal"> it_IT </code> </td> <td> Italian - Italy </td> </tr> <tr> <td> <code class="literal"> ja_JP </code> </td> <td> Japanese - Japan </td> </tr> <tr> <td> <code class="literal"> ko_KR </code> </td> <td> Korean - Republic of Korea </td> </tr> <tr> <td> <code class="literal"> lt_LT </code> </td> <td> Lithuanian - Lithuania </td> </tr> <tr> <td> <code class="literal"> lv_LV </code> </td> <td> Latvian - Latvia </td> </tr> <tr> <td> <code class="literal"> mk_MK </code> </td> <td> Macedonian - North Macedonia </td> </tr> <tr> <td> <code class="literal"> mn_MN </code> </td> <td> Mongolia - Mongolian </td> </tr> <tr> <td> <code class="literal"> ms_MY </code> </td> <td> Malay - Malaysia </td> </tr> <tr> <td> <code class="literal"> nb_NO </code> </td> <td> Norwegian(Bokmål) - Norway </td> </tr> <tr> <td> <code class="literal"> nl_BE </code> </td> <td> Dutch - Belgium </td> </tr> <tr> <td> <code class="literal"> nl_NL </code> </td> <td> Dutch - The Netherlands </td> </tr> <tr> <td> <code class="literal"> no_NO </code> </td> <td> Norwegian - Norway </td> </tr> <tr> <td> <code class="literal"> pl_PL </code> </td> <td> Polish - Poland </td> </tr> <tr> <td> <code class="literal"> pt_BR </code> </td> <td> Portugese - Brazil </td> </tr> <tr> <td> <code class="literal"> pt_PT </code> </td> <td> Portugese - Portugal </td> </tr> <tr> <td> <code class="literal"> rm_CH </code> </td> <td> Romansh - Switzerland </td> </tr> <tr> <td> <code class="literal"> ro_RO </code> </td> <td> Romanian - Romania </td> </tr> <tr> <td> <code class="literal"> ru_RU </code> </td> <td> Russian - Russia </td> </tr> <tr> <td> <code class="literal"> ru_UA </code> </td> <td> Russian - Ukraine </td> </tr> <tr> <td> <code class="literal"> sk_SK </code> </td> <td> Slovak - Slovakia </td> </tr> <tr> <td> <code class="literal"> sl_SI </code> </td> <td> Slovenian - Slovenia </td> </tr> <tr> <td> <code class="literal"> sq_AL </code> </td> <td> Albanian - Albania </td> </tr> <tr> <td> <code class="literal"> sr_RS </code> </td> <td> Serbian - Serbia </td> </tr> <tr> <td> <code class="literal"> sv_FI </code> </td> <td> Swedish - Finland </td> </tr> <tr> <td> <code class="literal"> sv_SE </code> </td> <td> Swedish - Sweden </td> </tr> <tr> <td> <code class="literal"> ta_IN </code> </td> <td> Tamil - India </td> </tr> <tr> <td> <code class="literal"> te_IN </code> </td> <td> Telugu - India </td> </tr> <tr> <td> <code class="literal"> th_TH </code> </td> <td> Thai - Thailand </td> </tr> <tr> <td> <code class="literal"> tr_TR </code> </td> <td> Turkish - Turkey </td> </tr> <tr> <td> <code class="literal"> uk_UA </code> </td> <td> Ukrainian - Ukraine </td> </tr> <tr> <td> <code class="literal"> ur_PK </code> </td> <td> Urdu - Pakistan </td> </tr> <tr> <td> <code class="literal"> vi_VN </code> </td> <td> Vietnamese - Vietnam </td> </tr> <tr> <td> <code class="literal"> zh_CN </code> </td> <td> Chinese - China </td> </tr> <tr> <td> <code class="literal"> zh_HK </code> </td> <td> Chinese - Hong Kong </td> </tr> <tr> <td> <code class="literal"> zh_TW </code> </td> <td> Chinese - Taiwan </td> </tr> </tbody> </table> </div> <div class="informaltable"> <table cellpadding="0" cellspacing="0" style="position: fixed; top: 0px; display: none; left: 401px; width: 414px;"> <thead> <tr> <th style="width: 206.312px;"> Locale Value </th> <th style="width: 206.312px;"> Meaning </th> </tr> </thead> </table> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/innodb-doublewrite-buffer.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="innodb-doublewrite-buffer"> </a> 17.6.4 Doublewrite Buffer </h3> </div> </div> </div> <p> The doublewrite buffer is a storage area where <code class="literal"> InnoDB </code> writes pages flushed from the buffer pool before writing the pages to their proper positions in the <code class="literal"> InnoDB </code> data files. If there is an operating system, storage subsystem, or unexpected <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> process exit in the middle of a page write, <code class="literal"> InnoDB </code> can find a good copy of the page from the doublewrite buffer during crash recovery. </p> <p> Although data is written twice, the doublewrite buffer does not require twice as much I/O overhead or twice as many I/O operations. Data is written to the doublewrite buffer in a large sequential chunk, with a single <code class="literal"> fsync() </code> call to the operating system (except in the case that <a class="link" href="innodb-parameters.html#sysvar_innodb_flush_method"> <code class="literal"> innodb_flush_method </code> </a> is set to <code class="literal"> O_DIRECT_NO_FSYNC </code> ). </p> <p> The doublewrite buffer storage area is located in doublewrite files. </p> <p> The following variables are provided for doublewrite buffer configuration: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> </p> <p> The <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> variable controls whether the doublewrite buffer is enabled. It is enabled by default in most cases. To disable the doublewrite buffer, set <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> to <code class="literal"> OFF </code> . Consider disabling the doublewrite buffer if you are more concerned with performance than data integrity, as may be the case when performing benchmarks, for example. </p> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> supports <code class="literal"> DETECT_AND_RECOVER </code> and <code class="literal"> DETECT_ONLY </code> settings. </p> <p> The <code class="literal"> DETECT_AND_RECOVER </code> setting is the same as the <code class="literal"> ON </code> setting. With this setting, the doublewrite buffer is fully enabled, with database page content written to the doublewrite buffer where it is accessed during recovery to fix incomplete page writes. </p> <p> With the <code class="literal"> DETECT_ONLY </code> setting, only metadata is written to the doublewrite buffer. Database page content is not written to the doublewrite buffer, and recovery does not use the doublewrite buffer to fix incomplete page writes. This lightweight setting is intended for detecting incomplete page writes only. </p> <p> MySQL supports dynamic changes to the <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> setting that enables the doublewrite buffer, between <code class="literal"> ON </code> , <code class="literal"> DETECT_AND_RECOVER </code> , and <code class="literal"> DETECT_ONLY </code> . MySQL does not support dynamic changes between a setting that enables the doublewrite buffer and <code class="literal"> OFF </code> or vice versa. </p> <p> If the doublewrite buffer is located on a Fusion-io device that supports atomic writes, the doublewrite buffer is automatically disabled and data file writes are performed using Fusion-io atomic writes instead. However, be aware that the <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite"> <code class="literal"> innodb_doublewrite </code> </a> setting is global. When the doublewrite buffer is disabled, it is disabled for all data files including those that do not reside on Fusion-io hardware. This feature is only supported on Fusion-io hardware and is only enabled for Fusion-io NVMFS on Linux. To take full advantage of this feature, an <a class="link" href="innodb-parameters.html#sysvar_innodb_flush_method"> <code class="literal"> innodb_flush_method </code> </a> setting of <code class="literal"> O_DIRECT </code> is recommended. </p> </li> <li class="listitem"> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_dir"> <code class="literal"> innodb_doublewrite_dir </code> </a> </p> <p> The <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_dir"> <code class="literal"> innodb_doublewrite_dir </code> </a> variable defines the directory where <code class="literal"> InnoDB </code> creates doublewrite files. If no directory is specified, doublewrite files are created in the <a class="link" href="innodb-parameters.html#sysvar_innodb_data_home_dir"> <code class="literal"> innodb_data_home_dir </code> </a> directory, which defaults to the data directory if unspecified. </p> <p> A hash symbol '#' is automatically prefixed to the specified directory name to avoid conflicts with schema names. However, if a '.', '#'. or '/' prefix is specified explicitly in the directory name, the hash symbol '#' is not prefixed to the directory name. </p> <p> Ideally, the doublewrite directory should be placed on the fastest storage media available. </p> </li> <li class="listitem"> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_files"> <code class="literal"> innodb_doublewrite_files </code> </a> </p> <p> The <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_files"> <code class="literal"> innodb_doublewrite_files </code> </a> variable defines the number of doublewrite files, which defaults to 2. By default, two doublewrite files are created for each buffer pool instance: A flush list doublewrite file and an LRU list doublewrite file. </p> <p> The flush list doublewrite file is for pages flushed from the buffer pool flush list. The default size of a flush list doublewrite file is the <code class="literal"> InnoDB </code> page size * doublewrite page bytes. </p> <p> The LRU list doublewrite file is for pages flushed from the buffer pool LRU list. It also contains slots for single page flushes. The default size of an LRU list doublewrite file is the <code class="literal"> InnoDB </code> page size * (doublewrite pages + (512 / the number of buffer pool instances)) where 512 is the total number of slots reserved for single page flushes. </p> <p> At a minimum, there are two doublewrite files. The maximum number of doublewrite files is two times the number of buffer pool instances. (The number of buffer pool instances is controlled by the <a class="link" href="innodb-parameters.html#sysvar_innodb_buffer_pool_instances"> <code class="literal"> innodb_buffer_pool_instances </code> </a> variable.) </p> <p> Doublewrite file names have the following format: <code class="filename"> #ib_ <em class="replaceable"> <code> page_size </code> </em> _ <em class="replaceable"> <code> file_number </code> </em> .dblwr </code> (or <code class="filename"> .bdblwr </code> with the <code class="literal"> DETECT_ONLY </code> setting). For example, the following doublewrite files are created for a MySQL instance with an <code class="literal"> InnoDB </code> pages size of 16KB and a single buffer pool: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-none"><div class="docs-select-all right" id="sa87586679"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none">#ib_16384_0.dblwr #ib_16384_1.dblwr</code></pre> </div> <p> The <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_files"> <code class="literal"> innodb_doublewrite_files </code> </a> variable is intended for advanced performance tuning. The default setting should be suitable for most users. </p> </li> <li class="listitem"> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_pages"> <code class="literal"> innodb_doublewrite_pages </code> </a> </p> <p> The <a class="link" href="innodb-parameters.html#sysvar_innodb_doublewrite_pages"> <code class="literal"> innodb_doublewrite_pages </code> </a> variable controls the maximum number of doublewrite pages per thread. This variable is intended for advanced performance tuning. The default value should be suitable for most users. </p> </li> </ul> </div> <p> <code class="literal"> InnoDB </code> automatically encrypts doublewrite file pages that belong to encrypted tablespaces (see <a class="xref" href="innodb-data-encryption.html" title="17.13 InnoDB Data-at-Rest Encryption"> Section 17.13, “InnoDB Data-at-Rest Encryption” </a> ). Likewise, doublewrite file pages belonging to page-compressed tablespaces are compressed. As a result, doublewrite files can contain different page types including unencrypted and uncompressed pages, encrypted pages, compressed pages, and pages that are both encrypted and compressed. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/authentication-plugins.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="authentication-plugins"> </a> 8.4.1 Authentication Plugins </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="native-pluggable-authentication.html"> 8.4.1.1 Native Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="caching-sha2-pluggable-authentication.html"> 8.4.1.2 Caching SHA-2 Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="sha256-pluggable-authentication.html"> 8.4.1.3 SHA-256 Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="cleartext-pluggable-authentication.html"> 8.4.1.4 Client-Side Cleartext Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="pam-pluggable-authentication.html"> 8.4.1.5 PAM Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="windows-pluggable-authentication.html"> 8.4.1.6 Windows Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="ldap-pluggable-authentication.html"> 8.4.1.7 LDAP Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="kerberos-pluggable-authentication.html"> 8.4.1.8 Kerberos Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="no-login-pluggable-authentication.html"> 8.4.1.9 No-Login Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="socket-pluggable-authentication.html"> 8.4.1.10 Socket Peer-Credential Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="webauthn-pluggable-authentication.html"> 8.4.1.11 WebAuthn Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="test-pluggable-authentication.html"> 8.4.1.12 Test Pluggable Authentication </a> </span> </dt> <dt> <span class="section"> <a href="pluggable-authentication-system-variables.html"> 8.4.1.13 Pluggable Authentication System Variables </a> </span> </dt> </dl> </div> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> If you are looking for information about the <code class="literal"> authentication_oci </code> plugin, it is HeatWave Service only. See <a class="ulink" href="https://docs.oracle.com/en-us/iaas/mysql-database/doc/connecting-db-system.html#MYAAS-GUID-232CA959-1FDD-4AA8-A77D-0A551C881C09" target="_blank"> authentication_oci plugin </a> , in the <em class="citetitle"> HeatWave Service </em> manual. </p> </div> <p> The following sections describe pluggable authentication methods available in MySQL and the plugins that implement these methods. For general discussion of the authentication process, see <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> . </p> <p> The default authentication plugin is determined as described in <a class="xref" href="pluggable-authentication.html#pluggable-authentication-default-plugin" title="The Default Authentication Plugin"> The Default Authentication Plugin </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/diagnostics-area.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="diagnostics-area"> </a> 15.6.7.7 The MySQL Diagnostics Area </h4> </div> </div> </div> <p> SQL statements produce diagnostic information that populates the diagnostics area. Standard SQL has a diagnostics area stack, containing a diagnostics area for each nested execution context. Standard SQL also supports <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET STACKED DIAGNOSTICS </code> </a> syntax for referring to the second diagnostics area during condition handler execution. </p> <p> The following discussion describes the structure of the diagnostics area in MySQL, the information items recognized by MySQL, how statements clear and set the diagnostics area, and how diagnostics areas are pushed to and popped from the stack. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="diagnostics-area.html#diagnostics-area-structure" title="Diagnostics Area Structure"> Diagnostics Area Structure </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="diagnostics-area.html#diagnostics-area-information-items" title="Diagnostics Area Information Items"> Diagnostics Area Information Items </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="diagnostics-area.html#diagnostics-area-populating" title="How the Diagnostics Area is Cleared and Populated"> How the Diagnostics Area is Cleared and Populated </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="diagnostics-area.html#diagnostics-area-stack" title="How the Diagnostics Area Stack Works"> How the Diagnostics Area Stack Works </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="diagnostics-area.html#diagnostics-area-system-variables" title="Diagnostics Area-Related System Variables"> Diagnostics Area-Related System Variables </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="diagnostics-area-structure"> </a> Diagnostics Area Structure </h5> </div> </div> </div> <p> The diagnostics area contains two kinds of information: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Statement information, such as the number of conditions that occurred or the affected-rows count. </p> </li> <li class="listitem"> <p> Condition information, such as the error code and message. If a statement raises multiple conditions, this part of the diagnostics area has a condition area for each one. If a statement raises no conditions, this part of the diagnostics area is empty. </p> </li> </ul> </div> <p> For a statement that produces three conditions, the diagnostics area contains statement and condition information like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-none"><div class="docs-select-all right" id="sa39555671"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none">Statement information: row count ... other statement information items ... Condition area list: Condition area 1: error code for condition 1 error message for condition 1 ... other condition information items ... Condition area 2: error code for condition 2: error message for condition 2 ... other condition information items ... Condition area 3: error code for condition 3 error message for condition 3 ... other condition information items ...</code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="diagnostics-area-information-items"> </a> Diagnostics Area Information Items </h5> </div> </div> </div> <p> The diagnostics area contains statement and condition information items. Numeric items are integers. The character set for character items is UTF-8. No item can be <code class="literal"> NULL </code> . If a statement or condition item is not set by a statement that populates the diagnostics area, its value is 0 or the empty string, depending on the item data type. </p> <p> The statement information part of the diagnostics area contains these items: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> NUMBER </code> : An integer indicating the number of condition areas that have information. </p> </li> <li class="listitem"> <p> <code class="literal"> ROW_COUNT </code> : An integer indicating the number of rows affected by the statement. <code class="literal"> ROW_COUNT </code> has the same value as the <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> function (see <a class="xref" href="information-functions.html" title="14.15 Information Functions"> Section 14.15, “Information Functions” </a> ). </p> </li> </ul> </div> <p> The condition information part of the diagnostics area contains a condition area for each condition. Condition areas are numbered from 1 to the value of the <code class="literal"> NUMBER </code> statement condition item. If <code class="literal"> NUMBER </code> is 0, there are no condition areas. </p> <p> Each condition area contains the items in the following list. All items are standard SQL except <code class="literal"> MYSQL_ERRNO </code> , which is a MySQL extension. The definitions apply for conditions generated other than by a signal (that is, by a <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> or <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> statement). For nonsignal conditions, MySQL populates only those condition items not described as always empty. The effects of signals on the condition area are described later. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> CLASS_ORIGIN </code> : A string containing the class of the <code class="literal"> RETURNED_SQLSTATE </code> value. If the <code class="literal"> RETURNED_SQLSTATE </code> value begins with a class value defined in SQL standards document ISO 9075-2 (section 24.1, SQLSTATE), <code class="literal"> CLASS_ORIGIN </code> is <code class="literal"> 'ISO 9075' </code> . Otherwise, <code class="literal"> CLASS_ORIGIN </code> is <code class="literal"> 'MySQL' </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> SUBCLASS_ORIGIN </code> : A string containing the subclass of the <code class="literal"> RETURNED_SQLSTATE </code> value. If <code class="literal"> CLASS_ORIGIN </code> is <code class="literal"> 'ISO 9075' </code> or <code class="literal"> RETURNED_SQLSTATE </code> ends with <code class="literal"> '000' </code> , <code class="literal"> SUBCLASS_ORIGIN </code> is <code class="literal"> 'ISO 9075' </code> . Otherwise, <code class="literal"> SUBCLASS_ORIGIN </code> is <code class="literal"> 'MySQL' </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> RETURNED_SQLSTATE </code> : A string that indicates the <code class="literal"> SQLSTATE </code> value for the condition. </p> </li> <li class="listitem"> <p> <code class="literal"> MESSAGE_TEXT </code> : A string that indicates the error message for the condition. </p> </li> <li class="listitem"> <p> <code class="literal"> MYSQL_ERRNO </code> : An integer that indicates the MySQL error code for the condition. </p> </li> <li class="listitem"> <p> <code class="literal"> CONSTRAINT_CATALOG </code> , <code class="literal"> CONSTRAINT_SCHEMA </code> , <code class="literal"> CONSTRAINT_NAME </code> : Strings that indicate the catalog, schema, and name for a violated constraint. They are always empty. </p> </li> <li class="listitem"> <p> <code class="literal"> CATALOG_NAME </code> , <code class="literal"> SCHEMA_NAME </code> , <code class="literal"> TABLE_NAME </code> , <code class="literal"> COLUMN_NAME </code> : Strings that indicate the catalog, schema, table, and column related to the condition. They are always empty. </p> </li> <li class="listitem"> <p> <code class="literal"> CURSOR_NAME </code> : A string that indicates the cursor name. This is always empty. </p> </li> </ul> </div> <p> For the <code class="literal"> RETURNED_SQLSTATE </code> , <code class="literal"> MESSAGE_TEXT </code> , and <code class="literal"> MYSQL_ERRNO </code> values for particular errors, see <a class="ulink" href="/doc/mysql-errors/8.4/en/server-error-reference.html" target="_top"> Server Error Message Reference </a> . </p> <p> If a <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> (or <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> ) statement populates the diagnostics area, its <code class="literal"> SET </code> clause can assign to any condition information item except <code class="literal"> RETURNED_SQLSTATE </code> any value that is legal for the item data type. <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> also sets the <code class="literal"> RETURNED_SQLSTATE </code> value, but not directly in its <code class="literal"> SET </code> clause. That value comes from the <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> statement <code class="literal"> SQLSTATE </code> argument. </p> <p> <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> also sets statement information items. It sets <code class="literal"> NUMBER </code> to 1. It sets <code class="literal"> ROW_COUNT </code> to −1 for errors and 0 otherwise. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="diagnostics-area-populating"> </a> How the Diagnostics Area is Cleared and Populated </h5> </div> </div> </div> <p> Nondiagnostic SQL statements populate the diagnostics area automatically, and its contents can be set explicitly with the <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> and <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> statements. The diagnostics area can be examined with <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET DIAGNOSTICS </code> </a> to extract specific items, or with <a class="link" href="show-warnings.html" title="15.7.7.42 SHOW WARNINGS Statement"> <code class="literal"> SHOW WARNINGS </code> </a> or <a class="link" href="show-errors.html" title="15.7.7.18 SHOW ERRORS Statement"> <code class="literal"> SHOW ERRORS </code> </a> to see conditions or errors. </p> <p> SQL statements clear and set the diagnostics area as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> When the server starts executing a statement after parsing it, it clears the diagnostics area for nondiagnostic statements. Diagnostic statements do not clear the diagnostics area. These statements are diagnostic: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET DIAGNOSTICS </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="show-errors.html" title="15.7.7.18 SHOW ERRORS Statement"> <code class="literal"> SHOW ERRORS </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="show-warnings.html" title="15.7.7.42 SHOW WARNINGS Statement"> <code class="literal"> SHOW WARNINGS </code> </a> </p> </li> </ul> </div> </li> <li class="listitem"> <p> If a statement raises a condition, the diagnostics area is cleared of conditions that belong to earlier statements. The exception is that conditions raised by <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET DIAGNOSTICS </code> </a> and <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> are added to the diagnostics area without clearing it. </p> </li> </ul> </div> <p> Thus, even a statement that does not normally clear the diagnostics area when it begins executing clears it if the statement raises a condition. </p> <p> The following example shows the effect of various statements on the diagnostics area, using <a class="link" href="show-warnings.html" title="15.7.7.42 SHOW WARNINGS Statement"> <code class="literal"> SHOW WARNINGS </code> </a> to display information about conditions stored there. </p> <p> This <a class="link" href="drop-table.html" title="15.1.32 DROP TABLE Statement"> <code class="literal"> DROP TABLE </code> </a> statement clears the diagnostics area and populates it when the condition occurs: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51187543"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">DROP</span> <span class="token keyword">TABLE</span> <span class="token keyword">IF</span> <span class="token keyword">EXISTS</span> test<span class="token punctuation">.</span>no_such_table<span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected, 1 warning (0.01 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Level <span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Message <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Note <span class="token punctuation">|</span> 1051 <span class="token punctuation">|</span> Unknown table 'test.no_such_table' <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> This <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET </code> </a> statement generates an error, so it clears and populates the diagnostics area: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa88025821"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token variable">@x</span> <span class="token operator">=</span> <span class="token variable">@@x</span><span class="token punctuation">;</span> <span class="token output">ERROR 1193 (HY000)<span class="token punctuation">:</span> Unknown system variable 'x' </span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Level <span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Message <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Error <span class="token punctuation">|</span> 1193 <span class="token punctuation">|</span> Unknown system variable 'x' <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> The previous <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET </code> </a> statement produced a single condition, so 1 is the only valid condition number for <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET DIAGNOSTICS </code> </a> at this point. The following statement uses a condition number of 2, which produces a warning that is added to the diagnostics area without clearing it: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa23336558"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">GET</span> <span class="token keyword">DIAGNOSTICS</span> <span class="token keyword">CONDITION</span> <span class="token number">2</span> <span class="token variable">@p</span> <span class="token operator">=</span> <span class="token keyword">MESSAGE_TEXT</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Level <span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Message <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Error <span class="token punctuation">|</span> 1193 <span class="token punctuation">|</span> Unknown system variable 'xx' <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Error <span class="token punctuation">|</span> 1753 <span class="token punctuation">|</span> Invalid condition number <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">2 rows in set (0.00 sec)</span></code></pre> </div> <p> Now there are two conditions in the diagnostics area, so the same <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET DIAGNOSTICS </code> </a> statement succeeds: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa81062759"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">GET</span> <span class="token keyword">DIAGNOSTICS</span> <span class="token keyword">CONDITION</span> <span class="token number">2</span> <span class="token variable">@p</span> <span class="token operator">=</span> <span class="token keyword">MESSAGE_TEXT</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token variable">@p</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> @p <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Invalid condition number <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.01 sec)</span></code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="diagnostics-area-stack"> </a> How the Diagnostics Area Stack Works </h5> </div> </div> </div> <p> When a push to the diagnostics area stack occurs, the first (current) diagnostics area becomes the second (stacked) diagnostics area and a new current diagnostics area is created as a copy of it. Diagnostics areas are pushed to and popped from the stack under the following circumstances: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Execution of a stored program </p> <p> A push occurs before the program executes and a pop occurs afterward. If the stored program ends while handlers are executing, there can be more than one diagnostics area to pop; this occurs due to an exception for which there are no appropriate handlers or due to <a class="link" href="return.html" title="15.6.5.7 RETURN Statement"> <code class="literal"> RETURN </code> </a> in the handler. </p> <p> Any warning or error conditions in the popped diagnostics areas then are added to the current diagnostics area, except that, for triggers, only errors are added. When the stored program ends, the caller sees these conditions in its current diagnostics area. </p> </li> <li class="listitem"> <p> Execution of a condition handler within a stored program </p> <p> When a push occurs as a result of condition handler activation, the stacked diagnostics area is the area that was current within the stored program prior to the push. The new now-current diagnostics area is the handler's current diagnostics area. <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET [CURRENT] DIAGNOSTICS </code> </a> and <a class="link" href="get-diagnostics.html" title="15.6.7.3 GET DIAGNOSTICS Statement"> <code class="literal"> GET STACKED DIAGNOSTICS </code> </a> can be used within the handler to access the contents of the current (handler) and stacked (stored program) diagnostics areas. Initially, they return the same result, but statements executing within the handler modify the current diagnostics area, clearing and setting its contents according to the normal rules (see <a class="xref" href="diagnostics-area.html#diagnostics-area-populating" title="How the Diagnostics Area is Cleared and Populated"> How the Diagnostics Area is Cleared and Populated </a> ). The stacked diagnostics area cannot be modified by statements executing within the handler except <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> . </p> <p> If the handler executes successfully, the current (handler) diagnostics area is popped and the stacked (stored program) diagnostics area again becomes the current diagnostics area. Conditions added to the handler diagnostics area during handler execution are added to the current diagnostics area. </p> </li> <li class="listitem"> <p> Execution of <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> </p> <p> The <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> statement passes on the error condition information that is available during execution of a condition handler within a compound statement inside a stored program. <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> may change some or all information before passing it on, modifying the diagnostics stack as described in <a class="xref" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> Section 15.6.7.4, “RESIGNAL Statement” </a> . </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="diagnostics-area-system-variables"> </a> Diagnostics Area-Related System Variables </h5> </div> </div> </div> <p> Certain system variables control or are related to some aspects of the diagnostics area: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> controls the number of condition areas in the diagnostics area. If more conditions than this occur, MySQL silently discards information for the excess conditions. (Conditions added by <a class="link" href="resignal.html" title="15.6.7.4 RESIGNAL Statement"> <code class="literal"> RESIGNAL </code> </a> are always added, with older conditions being discarded as necessary to make room.) </p> </li> <li class="listitem"> <p> <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> indicates the number of conditions that occurred. This includes errors, warnings, and notes. Normally, <code class="literal"> NUMBER </code> and <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> are the same. However, as the number of conditions generated exceeds <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> , the value of <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> continues to rise whereas <code class="literal"> NUMBER </code> remains capped at <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> because no additional conditions are stored in the diagnostics area. </p> </li> <li class="listitem"> <p> <a class="link" href="server-system-variables.html#sysvar_error_count"> <code class="literal"> error_count </code> </a> indicates the number of errors that occurred. This value includes <span class="quote"> “ <span class="quote"> not found </span> ” </span> and exception conditions, but excludes warnings and notes. Like <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> , its value can exceed <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> . </p> </li> <li class="listitem"> <p> If the <a class="link" href="server-system-variables.html#sysvar_sql_notes"> <code class="literal"> sql_notes </code> </a> system variable is set to 0, notes are not stored and do not increment <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> . </p> </li> </ul> </div> <p> Example: If <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> is 10, the diagnostics area can contain a maximum of 10 condition areas. Suppose that a statement raises 20 conditions, 12 of which are errors. In that case, the diagnostics area contains the first 10 conditions, <code class="literal"> NUMBER </code> is 10, <a class="link" href="server-system-variables.html#sysvar_warning_count"> <code class="literal"> warning_count </code> </a> is 20, and <a class="link" href="server-system-variables.html#sysvar_error_count"> <code class="literal"> error_count </code> </a> is 12. </p> <p> Changes to the value of <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> have no effect until the next attempt to modify the diagnostics area. If the diagnostics area contains 10 condition areas and <a class="link" href="server-system-variables.html#sysvar_max_error_count"> <code class="literal"> max_error_count </code> </a> is set to 5, that has no immediate effect on the size or content of the diagnostics area. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-python-table-select.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysql-shell-tutorial-python-table-select"> </a> 22.4.4.2 Select Tables </h4> </div> </div> </div> <a class="indexterm" name="idm46045126875440"> </a> <p> You can use the <code class="literal"> select() </code> method to query for and return records from a table in a database. The X DevAPI provides additional methods to use with the <code class="literal"> select() </code> method to filter and sort the returned records. </p> <p> MySQL provides the following operators to specify search conditions: <code class="literal"> OR </code> ( <code class="literal"> || </code> ), <code class="literal"> AND </code> ( <code class="literal"> &amp;&amp; </code> ), <code class="literal"> XOR </code> , <code class="literal"> IS </code> , <code class="literal"> NOT </code> , <code class="literal"> BETWEEN </code> , <code class="literal"> IN </code> , <code class="literal"> LIKE </code> , <code class="literal"> != </code> , <code class="literal"> &lt;&gt; </code> , <code class="literal"> &gt; </code> , <code class="literal"> &gt;= </code> , <code class="literal"> &lt; </code> , <code class="literal"> &lt;= </code> , <code class="literal"> &amp; </code> , <code class="literal"> | </code> , <code class="literal"> &lt;&lt; </code> , <code class="literal"> &gt;&gt; </code> , <code class="literal"> + </code> , <code class="literal"> - </code> , <code class="literal"> * </code> , <code class="literal"> / </code> , <code class="literal"> ~ </code> , and <code class="literal"> % </code> . </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="mysql-shell-tutorial-python-select-all-records"> </a> Select All Records </h5> </div> </div> </div> <a class="indexterm" name="idm46045126852400"> </a> <p> To issue a query that returns all records from an existing table, use the <code class="literal"> select() </code> method without specifying search conditions. The following example selects all records from the city table in the <code class="literal"> world_x </code> database. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Limit the use of the empty <code class="literal"> select() </code> method to interactive statements. Always use explicit column-name selections in your application code. </p> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa45054559"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ID <span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span> District <span class="token punctuation">|</span> Info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> Kabul <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span> Kabol <span class="token punctuation">|</span>{"Population": 1780000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> Qandahar <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span> Qandahar <span class="token punctuation">|</span>{"Population": 237500} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> Herat <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span> Herat <span class="token punctuation">|</span>{"Population": 186800} <span class="token punctuation">|</span></span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token output"><span class="token punctuation">|</span> 4079 <span class="token punctuation">|</span> Rafah <span class="token punctuation">|</span> PSE <span class="token punctuation">|</span> Rafah <span class="token punctuation">|</span>{"Population": 92020} <span class="token punctuation">|</span></span> <span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">-</span> <span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">-</span><span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">-</span><span class="token operator">+</span> <span class="token output">4082 rows in set (0.01 sec)</span></code></pre> </div> <p> An empty set (no matching records) returns the following information: </p> <pre class="screen">Empty set (0.00 sec) </pre> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="mysql-shell-tutorial-python-filter-searches"> </a> Filter Searches </h5> </div> </div> </div> <a class="indexterm" name="idm46045126842336"> </a> <p> To issue a query that returns a set of table columns, use the <code class="literal"> select() </code> method and specify the columns to return between square brackets. This query returns the Name and CountryCode columns from the city table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa23520567"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">]</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Kabul <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Qandahar <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Herat <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Mazar<span class="token punctuation">-</span>e<span class="token punctuation">-</span>Sharif <span class="token punctuation">|</span> AFG <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Amsterdam <span class="token punctuation">|</span> NLD <span class="token punctuation">|</span></span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token output"><span class="token punctuation">|</span> Rafah <span class="token punctuation">|</span> PSE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Olympia <span class="token punctuation">|</span> USA <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Little Falls <span class="token punctuation">|</span> USA <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Happy Valley <span class="token punctuation">|</span> USA <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">4082 rows in set (0.00 sec)</span></code></pre> </div> <p> To issue a query that returns rows matching specific search conditions, use the <code class="literal"> where() </code> method to include those conditions. For example, the following example returns the names and country codes of the cities that start with the letter Z. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa73841917"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span><span class="token string">"Name like 'Z%'"</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Zaanstad <span class="token punctuation">|</span> NLD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zoetermeer <span class="token punctuation">|</span> NLD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zwolle <span class="token punctuation">|</span> NLD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zenica <span class="token punctuation">|</span> BIH <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zagazig <span class="token punctuation">|</span> EGY <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zaragoza <span class="token punctuation">|</span> ESP <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zamboanga <span class="token punctuation">|</span> PHL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zahedan <span class="token punctuation">|</span> IRN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zanjan <span class="token punctuation">|</span> IRN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zabol <span class="token punctuation">|</span> IRN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zama <span class="token punctuation">|</span> JPN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhezqazghan <span class="token punctuation">|</span> KAZ <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhengzhou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token output"><span class="token punctuation">|</span> Zeleznogorsk <span class="token punctuation">|</span> RUS <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">59 rows in set (0.00 sec)</span></code></pre> </div> <p> You can separate a value from the search condition by using the <code class="literal"> bind() </code> method. For example, instead of using "Name = 'Z%' " as the condition, substitute a named placeholder consisting of a colon followed by a name that begins with a letter, such as <span class="emphasis"> <em> name </em> </span> . Then include the placeholder and value in the <code class="literal"> bind() </code> method as follows: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa55233003"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span> <span class="token string">"Name like :name"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">bind</span><span class="token punctuation">(</span><span class="token string">"name"</span><span class="token punctuation">,</span> <span class="token string">"Z%"</span><span class="token punctuation">)</span></code></pre> </div> <div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Tip </div> <p> Within a program, binding enables you to specify placeholders in your expressions, which are filled in with values before execution and can benefit from automatic escaping, as appropriate. </p> <p> Always use binding to sanitize input. Avoid introducing values in queries using string concatenation, which can produce invalid input and, in some cases, can cause security issues. </p> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="mysql-shell-tutorial-python-project-results"> </a> Project Results </h5> </div> </div> </div> <a class="indexterm" name="idm46045126826208"> </a> <p> To issue a query using the <a class="link" href="logical-operators.html#operator_and"> <code class="literal"> AND </code> </a> operator, add the operator between search conditions in the <code class="literal"> where() </code> method. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa16302921"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span> <span class="token string">"Name like 'Z%' and CountryCode = 'CHN'"</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Zhengzhou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zibo <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhangjiakou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhuzhou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhangjiang <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zigong <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zaozhuang <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token output"><span class="token punctuation">|</span> Zhangjiagang <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">22 rows in set (0.01 sec)</span></code></pre> </div> <p> To specify multiple conditional operators, you can enclose the search conditions in parenthesis to change the operator precedence. The following example demonstrates the placement of <a class="link" href="logical-operators.html#operator_and"> <code class="literal"> AND </code> </a> and <a class="link" href="logical-operators.html#operator_or"> <code class="literal"> OR </code> </a> operators. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa85019118"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span> <span class="token string">"Name like 'Z%' and (CountryCode = 'CHN' or CountryCode = 'RUS')"</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Zhengzhou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zibo <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhangjiakou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Zhuzhou <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span></span> <span class="token operator">...</span> <span class="token operator">...</span> <span class="token output"><span class="token punctuation">|</span> Zeleznogorsk <span class="token punctuation">|</span> RUS <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">29 rows in set (0.01 sec)</span></code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="mysql-shell-tutorial-python-limit-order-offset-results"> </a> Limit, Order, and Offset Results </h5> </div> </div> </div> <a class="indexterm" name="idm46045126813584"> </a> <p> You can apply the <code class="literal"> limit() </code> , <code class="literal"> order_by() </code> , and <code class="literal"> offset() </code> methods to manage the number and order of records returned by the <code class="literal"> select() </code> method. </p> <p> To specify the number of records included in a result set, append the <code class="literal"> limit() </code> method with a value to the <code class="literal"> select() </code> method. For example, the following query returns the first five records in the country table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa46684713"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>country<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Code"</span><span class="token punctuation">,</span> <span class="token string">"Name"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">limit</span><span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ABW <span class="token punctuation">|</span> Aruba <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> AFG <span class="token punctuation">|</span> Afghanistan <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> AGO <span class="token punctuation">|</span> Angola <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> AIA <span class="token punctuation">|</span> Anguilla <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> ALB <span class="token punctuation">|</span> Albania <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">5 rows in set (0.00 sec)</span></code></pre> </div> <p> To specify an order for the results, append the <code class="literal"> order_by() </code> method to the <code class="literal"> select() </code> method. Pass to the <code class="literal"> order_by() </code> method a list of one or more columns to sort by and, optionally, the descending ( <code class="literal"> desc </code> ) or ascending ( <code class="literal"> asc </code> ) attribute as appropriate. Ascending order is the default order type. </p> <p> For example, the following query sorts all records by the Name column and then returns the first three records in descending order . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa56543032"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>country<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Code"</span><span class="token punctuation">,</span> <span class="token string">"Name"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">order_by</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name desc"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">limit</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ZWE <span class="token punctuation">|</span> Zimbabwe <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> ZMB <span class="token punctuation">|</span> Zambia <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> YUG <span class="token punctuation">|</span> Yugoslavia <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span></code></pre> </div> <p> By default, the <code class="literal"> limit() </code> method starts from the first record in the table. You can use the <code class="literal"> offset() </code> method to change the starting record. For example, to ignore the first record and return the next three records matching the condition, pass to the <code class="literal"> offset() </code> method a value of 1. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa42275066"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-py&gt;</span> db<span class="token punctuation">.</span>country<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Code"</span><span class="token punctuation">,</span> <span class="token string">"Name"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">order_by</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"Name desc"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">limit</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">offset</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ZMB <span class="token punctuation">|</span> Zambia <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> YUG <span class="token punctuation">|</span> Yugoslavia <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> YEM <span class="token punctuation">|</span> Yemen <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span></code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="idm46045126793184"> </a> Related Information </h5> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <a class="link" href="functions.html" title="Chapter 14 Functions and Operators"> MySQL Reference Manual </a> provides detailed documentation on functions and operators. </p> </li> <li class="listitem"> <p> See <a class="ulink" href="/doc/x-devapi-userguide/en/crud-ebnf-table-crud-functions.html#crud-ebnf-tableselectfunction" target="_top"> TableSelectFunction </a> for the full syntax definition. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/group-replication-multi-primary-mode.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="group-replication-multi-primary-mode"> </a> 20.1.3.2 Multi-Primary Mode </h4> </div> </div> </div> <a class="indexterm" name="idm46045134440000"> </a> <p> In multi-primary mode ( <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_single_primary_mode"> <code class="literal"> group_replication_single_primary_mode=OFF </code> </a> ) no member has a special role. Any member that is compatible with the other group members is set to read/write mode when joining the group, and can process write transactions, even if they are issued concurrently. </p> <p> If a member stops accepting write transactions, for example, in the event of an unexpected server exit, clients connected to it can be redirected, or failed over, to any other member that is in read/write mode. Group Replication does not handle client-side failover itself, so you need to arrange this using a middleware framework such as <a class="ulink" href="/doc/mysql-router/8.4/en/" target="_top"> MySQL Router 8.4 </a> , a proxy, a connector, or the application itself. <a class="xref" href="group-replication-multi-primary-mode.html#group-replication-multi-primary-diagram" title="Figure 20.5 Client Failover"> Figure 20.5, “Client Failover” </a> shows how clients can reconnect to an alternative group member if a member leaves the group. </p> <div class="figure"> <a name="group-replication-multi-primary-diagram"> </a> <p class="title"> <b> Figure 20.5 Client Failover </b> </p> <div class="figure-contents"> <div class="mediaobject"> <img alt="Five server instances, S1, S2, S3, S4, and S5, are deployed as an interconnected group. All of the servers are primaries. Write clients are communicating with servers S1 and S2, and a read client is communicating with server S4. Server S1 then fails, breaking communication with its write client. This client reconnects to server S3." src="images/multi-primary.png" style="width: 100%; max-width: 899px;"/> </div> </div> </div> <br class="figure-break"/> <p> Group Replication is an eventual consistency system. This means that as soon as the incoming traffic slows down or stops, all group members have the same data content. While traffic is flowing, transactions can be externalized on some members before the others, especially if some members have less write throughput than others, creating the possibility of stale reads. In multi-primary mode, slower members can also build up an excessive backlog of transactions to certify and apply, leading to a greater risk of conflicts and certification failure. To limit these issues, you can activate and tune Group Replication's flow control mechanism to minimize the difference between fast and slow members. For more information on flow control, see <a class="xref" href="group-replication-flow-control.html" title="20.7.2 Flow Control"> Section 20.7.2, “Flow Control” </a> . </p> <p> If you want transaction consistency guaranteed for every transaction in the group, you can do this using the <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_consistency"> <code class="literal"> group_replication_consistency </code> </a> system variable. You can choose a setting that suits the workload of your group and your priorities for data reads and writes, taking into account the performance impact of the synchronization required to increase consistency. You can also set the system variable for individual sessions to protect particularly concurrency-sensitive transactions. For more information on transaction consistency, see <a class="xref" href="group-replication-consistency-guarantees.html" title="20.5.3 Transaction Consistency Guarantees"> Section 20.5.3, “Transaction Consistency Guarantees” </a> . </p> <div class="section"> <div class="titlepage"> <div> <div> <h5 class="title"> <a name="group-replication-multi-primary-checks"> </a> 20.1.3.2.1 Transaction Checks </h5> </div> </div> </div> <p> When a group is deployed in multi-primary mode, transactions are checked to ensure they are compatible with the mode. The following strict consistency checks are made when Group Replication is deployed in multi-primary mode: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> If a transaction is executed under the SERIALIZABLE isolation level, then its commit fails when synchronizing itself with the group. </p> </li> <li class="listitem"> <p> If a transaction executes against a table that has foreign keys with cascading constraints, then its commit fails when synchronizing itself with the group. </p> </li> </ul> </div> <p> The checks are controlled by the <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_enforce_update_everywhere_checks"> <code class="literal"> group_replication_enforce_update_everywhere_checks </code> </a> system variable. In multi-primary mode, the system variable should normally be set to <code class="literal"> ON </code> , but the checks can optionally be deactivated by setting the system variable to <code class="literal"> OFF </code> . When deploying in single-primary mode, the system variable must be set to <code class="literal"> OFF </code> . </p> </div> <div class="section"> <div class="titlepage"> <div> <div> <h5 class="title"> <a name="group-replication-data-definition-statements"> </a> 20.1.3.2.2 Data Definition Statements </h5> </div> </div> </div> <a class="indexterm" name="idm46045134412416"> </a> <p> In a Group Replication topology in multi-primary mode, care needs to be taken when executing data definition statements, also commonly known as data definition language (DDL). </p> <p> MySQL 8.4 supports atomic Data Definition Language (DDL) statements, where the complete DDL statement is either committed or rolled back as a single atomic transaction. DDL statements, atomic or otherwise, implicitly end any transaction that is active in the current session, as if you had done a <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> COMMIT </code> </a> before executing the statement. This means that DDL statements cannot be performed within another transaction, within transaction control statements such as <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> START TRANSACTION ... COMMIT </code> </a> , or combined with other statements within the same transaction. </p> <p> Group Replication is based on an optimistic replication paradigm, where statements are optimistically executed and rolled back later if necessary. Each server executes without securing group agreement first. Therefore, more care needs to be taken when replicating DDL statements in multi-primary mode. If you make schema changes (using DDL) and changes to the data that an object contains (using DML) for the same object, the changes need to be handled through the same server while the schema operation has not yet completed and replicated everywhere. Failure to do so can result in data inconsistency when operations are interrupted or only partially completed. If the group is deployed in single-primary mode this issue does not occur, because all changes are performed through the same server, the primary. </p> <p> For more information about atomic DDL support, see <a class="xref" href="atomic-ddl.html" title="15.1.1 Atomic Data Definition Statement Support"> Section 15.1.1, “Atomic Data Definition Statement Support” </a> . </p> </div> <div class="section"> <div class="titlepage"> <div> <div> <h5 class="title"> <a name="group-replication-multi-primary-compatibility"> </a> 20.1.3.2.3 Version Compatibility </h5> </div> </div> </div> <p> For optimal compatibility and performance, all members of a group should run the same version of MySQL Server and therefore of Group Replication. In multi-primary mode, this is more significant because all members would normally join the group in read/write mode. If a group includes members running more than one MySQL Server version, there is a potential for some members to be incompatible with others, because they support functions others do not, or lack functions others have. To guard against this, when a new member joins (including a former member that has been upgraded and restarted), the member carries out compatibility checks against the rest of the group. </p> <p> One result of these compatibility checks is particularly important in multi-primary mode. If a joining member is running a higher MySQL Server version than the lowest version that the existing group members are running, it joins the group but remains in read-only mode. (In a group that is running in single-primary mode, new members default to read-only in any case.) Members take into account the major.minor.release version of the MySQL software (and thus, of the Group Replication plugin) when checking their compatibility. </p> <p> In a group running in multi-primary mode with members that use different MySQL Server versions, Group Replication automatically manages their read/write and read-only status. If a member leaves the group, the members running the version that is now the lowest are automatically set to read/write mode. When you change a group that was running in single-primary mode to run in multi-primary mode, using the function <a class="link" href="group-replication-functions-for-mode.html#function_group-replication-switch-to-multi-primary-mode"> <code class="literal"> group_replication_switch_to_multi_primary_mode() </code> </a> , Group Replication automatically sets members to the correct mode. Members are automatically placed in read-only mode if they are running a higher MySQL server version than the lowest version present in the group, and members running the lowest version are placed in read/write mode. </p> <p> For full information on version compatibility in a group and how this influences the behavior of a group during an upgrade process, see <a class="xref" href="group-replication-online-upgrade-combining-versions.html" title="20.8.1 Combining Different Member Versions in a Group"> Section 20.8.1, “Combining Different Member Versions in a Group” </a> . </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/problems-with-float.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="problems-with-float"> </a> B.3.4.8 Problems with Floating-Point Values </h4> </div> </div> </div> <p> Floating-point numbers sometimes cause confusion because they are approximate and not stored as exact values. A floating-point value as written in an SQL statement may not be the same as the value represented internally. Attempts to treat floating-point values as exact in comparisons may lead to problems. They are also subject to platform or implementation dependencies. The <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> FLOAT </code> </a> and <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> data types are subject to these issues. For <a class="link" href="fixed-point-types.html" title="13.1.3 Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC"> <code class="literal"> DECIMAL </code> </a> columns, MySQL performs operations with a precision of 65 decimal digits, which should solve most common inaccuracy problems. </p> <p> The following example uses <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> to demonstrate how calculations that are done using floating-point operations are subject to floating-point error. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa17237125"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>i <span class="token datatype">INT</span><span class="token punctuation">,</span> d1 <span class="token datatype">DOUBLE</span><span class="token punctuation">,</span> d2 <span class="token datatype">DOUBLE</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t1 <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span> <span class="token number">101.40</span><span class="token punctuation">,</span> <span class="token number">21.40</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">80.00</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">13.20</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> <span class="token number">59.60</span><span class="token punctuation">,</span> <span class="token number">46.40</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> <span class="token number">30.40</span><span class="token punctuation">,</span> <span class="token number">30.40</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">,</span> <span class="token number">37.00</span><span class="token punctuation">,</span> <span class="token number">7.40</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">29.60</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">,</span> <span class="token number">60.00</span><span class="token punctuation">,</span> <span class="token number">15.40</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">10.60</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">34.00</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span> <span class="token number">33.00</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">25.80</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">,</span> <span class="token number">7.20</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token number">6</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">6</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">51.40</span><span class="token punctuation">,</span> <span class="token number">0.00</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d1<span class="token punctuation">)</span> <span class="token keyword">AS</span> a<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d2<span class="token punctuation">)</span> <span class="token keyword">AS</span> b <span class="token prompt"> -&gt;</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> i <span class="token keyword">HAVING</span> a <span class="token operator">&lt;&gt;</span> b<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> a <span class="token punctuation">|</span> b <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 21.4 <span class="token punctuation">|</span> 21.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 76.8 <span class="token punctuation">|</span> 76.8 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 7.4 <span class="token punctuation">|</span> 7.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 4 <span class="token punctuation">|</span> 15.4 <span class="token punctuation">|</span> 15.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 7.2 <span class="token punctuation">|</span> 7.2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 6 <span class="token punctuation">|</span> <span class="token punctuation">-</span>51.4 <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The result is correct. Although the first five records look like they should not satisfy the comparison (the values of <code class="literal"> a </code> and <code class="literal"> b </code> do not appear to be different), they may do so because the difference between the numbers shows up around the tenth decimal or so, depending on factors such as computer architecture or the compiler version or optimization level. For example, different CPUs may evaluate floating-point numbers differently. </p> <p> If columns <code class="literal"> d1 </code> and <code class="literal"> d2 </code> had been defined as <a class="link" href="fixed-point-types.html" title="13.1.3 Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC"> <code class="literal"> DECIMAL </code> </a> rather than <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> , the result of the <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> query would have contained only one row—the last one shown above. </p> <p> The correct way to do floating-point number comparison is to first decide on an acceptable tolerance for differences between the numbers and then do the comparison against the tolerance value. For example, if we agree that floating-point numbers should be regarded the same if they are same within a precision of one in ten thousand (0.0001), the comparison should be written to find differences larger than the tolerance value: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa37469620"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d1<span class="token punctuation">)</span> <span class="token keyword">AS</span> a<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d2<span class="token punctuation">)</span> <span class="token keyword">AS</span> b <span class="token keyword">FROM</span> t1 <span class="token prompt"> -&gt;</span> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> i <span class="token keyword">HAVING</span> <span class="token function">ABS</span><span class="token punctuation">(</span>a <span class="token operator">-</span> b<span class="token punctuation">)</span> <span class="token operator">&gt;</span> <span class="token number">0.0001</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> a <span class="token punctuation">|</span> b <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 6 <span class="token punctuation">|</span> <span class="token punctuation">-</span>51.4 <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> Conversely, to get rows where the numbers are the same, the test should find differences within the tolerance value: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51891303"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d1<span class="token punctuation">)</span> <span class="token keyword">AS</span> a<span class="token punctuation">,</span> <span class="token function">SUM</span><span class="token punctuation">(</span>d2<span class="token punctuation">)</span> <span class="token keyword">AS</span> b <span class="token keyword">FROM</span> t1 <span class="token prompt"> -&gt;</span> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> i <span class="token keyword">HAVING</span> <span class="token function">ABS</span><span class="token punctuation">(</span>a <span class="token operator">-</span> b<span class="token punctuation">)</span> <span class="token operator">&lt;=</span> <span class="token number">0.0001</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> a <span class="token punctuation">|</span> b <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 21.4 <span class="token punctuation">|</span> 21.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 76.8 <span class="token punctuation">|</span> 76.8 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 7.4 <span class="token punctuation">|</span> 7.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 4 <span class="token punctuation">|</span> 15.4 <span class="token punctuation">|</span> 15.4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 7.2 <span class="token punctuation">|</span> 7.2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">5 rows in set (0.03 sec)</span></code></pre> </div> <p> Floating-point values are subject to platform or implementation dependencies. Suppose that you execute the following statements: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa15144527"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1<span class="token punctuation">(</span>c1 <span class="token datatype">FLOAT</span><span class="token punctuation">(</span><span class="token number">53</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">,</span> c2 <span class="token datatype">FLOAT</span><span class="token punctuation">(</span><span class="token number">53</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t1 <span class="token keyword">VALUES</span><span class="token punctuation">(</span><span class="token string">'1e+52'</span><span class="token punctuation">,</span><span class="token string">'-1e+52'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1<span class="token punctuation">;</span></code></pre> </div> <p> On some platforms, the <code class="literal"> SELECT </code> statement returns <code class="literal"> inf </code> and <code class="literal"> -inf </code> . On others, it returns <code class="literal"> 0 </code> and <code class="literal"> -0 </code> . </p> <p> An implication of the preceding issues is that if you attempt to create a replica by dumping table contents with <a class="link" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> <span class="command"> <strong> mysqldump </strong> </span> </a> on the source and reloading the dump file into the replica, tables containing floating-point columns might differ between the two hosts. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/views.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="views"> </a> 27.5 Using Views </h2> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="view-syntax.html"> 27.5.1 View Syntax </a> </span> </dt> <dt> <span class="section"> <a href="view-algorithms.html"> 27.5.2 View Processing Algorithms </a> </span> </dt> <dt> <span class="section"> <a href="view-updatability.html"> 27.5.3 Updatable and Insertable Views </a> </span> </dt> <dt> <span class="section"> <a href="view-check-option.html"> 27.5.4 The View WITH CHECK OPTION Clause </a> </span> </dt> <dt> <span class="section"> <a href="view-metadata.html"> 27.5.5 View Metadata </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045081912128"> </a> <p> MySQL supports views, including updatable views. Views are stored queries that when invoked produce a result set. A view acts as a virtual table. </p> <p> The following discussion describes the syntax for creating and dropping views, and shows some examples of how to use them. </p> <h3> <a name="idm46045081909968"> </a> Additional Resources </h3> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> You may find the <a class="ulink" href="https://forums.mysql.com/list.php?20" target="_blank"> MySQL User Forums </a> helpful when working with views. </p> </li> <li class="listitem"> <p> For answers to some commonly asked questions regarding views in MySQL, see <a class="xref" href="faqs-views.html" title="A.6 MySQL 8.4 FAQ: Views"> Section A.6, “MySQL 8.4 FAQ: Views” </a> . </p> </li> <li class="listitem"> <p> There are some restrictions on the use of views; see <a class="xref" href="view-restrictions.html" title="27.9 Restrictions on Views"> Section 27.9, “Restrictions on Views” </a> . </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/fulltext-stopwords.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="fulltext-stopwords"> </a> 14.9.4 Full-Text Stopwords </h3> </div> </div> </div> <a class="indexterm" name="idm46045201599184"> </a> <p> The stopword list is loaded and searched for full-text queries using the server character set and collation (the values of the <a class="link" href="server-system-variables.html#sysvar_character_set_server"> <code class="literal"> character_set_server </code> </a> and <a class="link" href="server-system-variables.html#sysvar_collation_server"> <code class="literal"> collation_server </code> </a> system variables). False hits or misses might occur for stopword lookups if the stopword file or columns used for full-text indexing or searches have a character set or collation different from <a class="link" href="server-system-variables.html#sysvar_character_set_server"> <code class="literal"> character_set_server </code> </a> or <a class="link" href="server-system-variables.html#sysvar_collation_server"> <code class="literal"> collation_server </code> </a> . </p> <p> Case sensitivity of stopword lookups depends on the server collation. For example, lookups are case-insensitive if the collation is <code class="literal"> utf8mb4_0900_ai_ci </code> , whereas lookups are case-sensitive if the collation is <code class="literal"> utf8mb4_0900_as_cs </code> or <code class="literal"> utf8mb4_bin </code> . </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="fulltext-stopwords.html#fulltext-stopwords-stopwords-for-innodb-search-indexes" title="Stopwords for InnoDB Search Indexes"> Stopwords for InnoDB Search Indexes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="fulltext-stopwords.html#fulltext-stopwords-stopwords-for-myisam-search-indexes" title="Stopwords for MyISAM Search Indexes"> Stopwords for MyISAM Search Indexes </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="fulltext-stopwords-stopwords-for-innodb-search-indexes"> </a> Stopwords for InnoDB Search Indexes </h4> </div> </div> </div> <p> <code class="literal"> InnoDB </code> has a relatively short list of default stopwords, because documents from technical, literary, and other sources often use short words as keywords or in significant phrases. For example, you might search for <span class="quote"> “ <span class="quote"> to be or not to be </span> ” </span> and expect to get a sensible result, rather than having all those words ignored. </p> <p> To see the default <code class="literal"> InnoDB </code> stopword list, query the Information Schema <a class="link" href="information-schema-innodb-ft-default-stopword-table.html" title="28.4.16 The INFORMATION_SCHEMA INNODB_FT_DEFAULT_STOPWORD Table"> <code class="literal"> INNODB_FT_DEFAULT_STOPWORD </code> </a> table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa77622641"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>INNODB_FT_DEFAULT_STOPWORD<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> a <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> about <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> an <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> are <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> as <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> at <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> be <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> by <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> com <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> de <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> en <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> for <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> from <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> how <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> in <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> is <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> it <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> la <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> of <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> on <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> or <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> that <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> the <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> this <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> to <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> was <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> what <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> when <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> who <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> will <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> with <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> und <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> the <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> www <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">36 rows in set (0.00 sec)</span></code></pre> </div> <p> To define your own stopword list for all <code class="literal"> InnoDB </code> tables, define a table with the same structure as the <a class="link" href="information-schema-innodb-ft-default-stopword-table.html" title="28.4.16 The INFORMATION_SCHEMA INNODB_FT_DEFAULT_STOPWORD Table"> <code class="literal"> INNODB_FT_DEFAULT_STOPWORD </code> </a> table, populate it with stopwords, and set the value of the <a class="link" href="innodb-parameters.html#sysvar_innodb_ft_server_stopword_table"> <code class="literal"> innodb_ft_server_stopword_table </code> </a> option to a value in the form <code class="literal"> <em class="replaceable"> <code> db_name </code> </em> / <em class="replaceable"> <code> table_name </code> </em> </code> before creating the full-text index. The stopword table must have a single <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> column named <code class="literal"> value </code> . The following example demonstrates creating and configuring a new global stopword table for <code class="literal"> InnoDB </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa66282707"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token comment" spellcheck="true">-- Create a new stopword table</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> my_stopwords<span class="token punctuation">(</span><span class="token keyword">value</span> <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token keyword">ENGINE</span> <span class="token operator">=</span> INNODB<span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.01 sec)</span> <span class="token comment" spellcheck="true">-- Insert stopwords (for simplicity, a single stopword is used in this example)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> my_stopwords<span class="token punctuation">(</span><span class="token keyword">value</span><span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'Ishmael'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 1 row affected (0.00 sec)</span> <span class="token comment" spellcheck="true">-- Create the table</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> opening_lines <span class="token punctuation">(</span> id <span class="token datatype">INT</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> opening_line <span class="token datatype">TEXT</span><span class="token punctuation">(</span><span class="token number">500</span><span class="token punctuation">)</span><span class="token punctuation">,</span> author <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">200</span><span class="token punctuation">)</span><span class="token punctuation">,</span> title <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">200</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">ENGINE</span><span class="token operator">=</span>InnoDB<span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.01 sec)</span> <span class="token comment" spellcheck="true">-- Insert data into the table</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> opening_lines<span class="token punctuation">(</span>opening_line<span class="token punctuation">,</span>author<span class="token punctuation">,</span>title<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'Call me Ishmael.'</span><span class="token punctuation">,</span><span class="token string">'Herman Melville'</span><span class="token punctuation">,</span><span class="token string">'Moby-Dick'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'A screaming comes across the sky.'</span><span class="token punctuation">,</span><span class="token string">'Thomas Pynchon'</span><span class="token punctuation">,</span><span class="token string">'Gravity\'s Rainbow'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'I am an invisible man.'</span><span class="token punctuation">,</span><span class="token string">'Ralph Ellison'</span><span class="token punctuation">,</span><span class="token string">'Invisible Man'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'Where now? Who now? When now?'</span><span class="token punctuation">,</span><span class="token string">'Samuel Beckett'</span><span class="token punctuation">,</span><span class="token string">'The Unnamable'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'It was love at first sight.'</span><span class="token punctuation">,</span><span class="token string">'Joseph Heller'</span><span class="token punctuation">,</span><span class="token string">'Catch-22'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'All this happened, more or less.'</span><span class="token punctuation">,</span><span class="token string">'Kurt Vonnegut'</span><span class="token punctuation">,</span><span class="token string">'Slaughterhouse-Five'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'Mrs. Dalloway said she would buy the flowers herself.'</span><span class="token punctuation">,</span><span class="token string">'Virginia Woolf'</span><span class="token punctuation">,</span><span class="token string">'Mrs. Dalloway'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'It was a pleasure to burn.'</span><span class="token punctuation">,</span><span class="token string">'Ray Bradbury'</span><span class="token punctuation">,</span><span class="token string">'Fahrenheit 451'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 8 rows affected (0.00 sec)</span> <span class="token output">Records: 8 Duplicates: 0 Warnings: 0</span> <span class="token comment" spellcheck="true">-- Set the innodb_ft_server_stopword_table option to the new stopword table</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">GLOBAL</span> innodb_ft_server_stopword_table <span class="token operator">=</span> <span class="token string">'test/my_stopwords'</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.00 sec)</span> <span class="token comment" spellcheck="true">-- Create the full-text index (which rebuilds the table if no FTS_DOC_ID column is defined)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">FULLTEXT</span> <span class="token keyword">INDEX</span> idx <span class="token keyword">ON</span> opening_lines<span class="token punctuation">(</span>opening_line<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected, 1 warning (1.17 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 1</span></code></pre> </div> <p> Verify that the specified stopword ('Ishmael') does not appear by querying the Information Schema <a class="link" href="information-schema-innodb-ft-index-table-table.html" title="28.4.19 The INFORMATION_SCHEMA INNODB_FT_INDEX_TABLE Table"> <code class="literal"> INNODB_FT_INDEX_TABLE </code> </a> table. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> By default, words less than 3 characters in length or greater than 84 characters in length do not appear in an <code class="literal"> InnoDB </code> full-text search index. Maximum and minimum word length values are configurable using the <a class="link" href="innodb-parameters.html#sysvar_innodb_ft_max_token_size"> <code class="literal"> innodb_ft_max_token_size </code> </a> and <a class="link" href="innodb-parameters.html#sysvar_innodb_ft_min_token_size"> <code class="literal"> innodb_ft_min_token_size </code> </a> variables. This default behavior does not apply to the ngram parser plugin. ngram token size is defined by the <a class="link" href="server-system-variables.html#sysvar_ngram_token_size"> <code class="literal"> ngram_token_size </code> </a> option. </p> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa64209090"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">GLOBAL</span> innodb_ft_aux_table<span class="token operator">=</span><span class="token string">'test/opening_lines'</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> word <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>INNODB_FT_INDEX_TABLE <span class="token keyword">LIMIT</span> <span class="token number">15</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> word <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> across <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> all <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> burn <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> buy <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> call <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> comes <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> dalloway <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> first <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> flowers <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> happened <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> herself <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> invisible <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> less <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> love <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> man <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">15 rows in set (0.00 sec)</span></code></pre> </div> <p> To create stopword lists on a table-by-table basis, create other stopword tables and use the <a class="link" href="innodb-parameters.html#sysvar_innodb_ft_user_stopword_table"> <code class="literal"> innodb_ft_user_stopword_table </code> </a> option to specify the stopword table that you want to use before you create the full-text index. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="fulltext-stopwords-stopwords-for-myisam-search-indexes"> </a> Stopwords for MyISAM Search Indexes </h4> </div> </div> </div> <p> The stopword file is loaded and searched using <code class="literal"> latin1 </code> if <code class="literal"> character_set_server </code> is <code class="literal"> ucs2 </code> , <code class="literal"> utf16 </code> , <code class="literal"> utf16le </code> , or <code class="literal"> utf32 </code> . </p> <p> <a class="indexterm" name="idm46045201549024"> </a> <a class="indexterm" name="idm46045201547536"> </a> To override the default stopword list for MyISAM tables, set the <a class="link" href="server-system-variables.html#sysvar_ft_stopword_file"> <code class="literal"> ft_stopword_file </code> </a> system variable. (See <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> .) The variable value should be the path name of the file containing the stopword list, or the empty string to disable stopword filtering. The server looks for the file in the data directory unless an absolute path name is given to specify a different directory. After changing the value of this variable or the contents of the stopword file, restart the server and rebuild your <code class="literal"> FULLTEXT </code> indexes. </p> <p> The stopword list is free-form, separating stopwords with any nonalphanumeric character such as newline, space, or comma. Exceptions are the underscore character ( <code class="literal"> _ </code> ) and a single apostrophe ( <code class="literal"> ' </code> ) which are treated as part of a word. The character set of the stopword list is the server's default character set; see <a class="xref" href="charset-server.html" title="12.3.2 Server Character Set and Collation"> Section 12.3.2, “Server Character Set and Collation” </a> . </p> <p> The following list shows the default stopwords for <code class="literal"> MyISAM </code> search indexes. In a MySQL source distribution, you can find this list in the <code class="filename"> storage/myisam/ft_static.c </code> file. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-simple"><div class="docs-select-all right" id="sa50952060"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">a's able about above according accordingly across actually after afterwards again against ain't all allow allows almost alone along already also although always am among amongst an and another any anybody anyhow anyone anything anyway anyways anywhere apart appear appreciate appropriate are aren't around as aside ask asking associated at available away awfully be became because become becomes becoming been before beforehand behind being believe below beside besides best better between beyond both brief but by c'mon c's came can can't cannot cant cause causes certain certainly changes clearly co com come comes concerning consequently consider considering contain containing contains corresponding could couldn't course currently definitely described despite did didn't different do does doesn't doing don't done down downwards during each edu eg eight either else elsewhere enough entirely especially et etc even ever every everybody everyone everything everywhere ex exactly example except far few fifth first five followed following follows for former formerly forth four from further furthermore get gets getting given gives go goes going gone got gotten greetings had hadn't happens hardly has hasn't have haven't having he he's hello help hence her here here's hereafter hereby herein hereupon hers herself hi him himself his hither hopefully how howbeit however i'd i'll i'm i've ie if ignored immediate in inasmuch inc indeed indicate indicated indicates inner insofar instead into inward is isn't it it'd it'll it's its itself just keep keeps kept know known knows last lately later latter latterly least less lest let let's like liked likely little look looking looks ltd mainly many may maybe me mean meanwhile merely might more moreover most mostly much must my myself name namely nd near nearly necessary need needs neither never nevertheless new next nine no nobody non none noone nor normally not nothing novel now nowhere obviously of off often oh ok okay old on once one ones only onto or other others otherwise ought our ours ourselves out outside over overall own particular particularly per perhaps placed please plus possible presumably probably provides que quite qv rather rd re really reasonably regarding regardless regards relatively respectively right said same saw say saying says second secondly see seeing seem seemed seeming seems seen self selves sensible sent serious seriously seven several shall she should shouldn't since six so some somebody somehow someone something sometime sometimes somewhat somewhere soon sorry specified specify specifying still sub such sup sure t's take taken tell tends th than thank thanks thanx that that's thats the their theirs them themselves then thence there there's thereafter thereby therefore therein theres thereupon these they they'd they'll they're they've think third this thorough thoroughly those though three through throughout thru thus to together too took toward towards tried tries truly try trying twice two un under unfortunately unless unlikely until unto up upon us use used useful uses using usually value various very via viz vs want wants was wasn't way we we'd we'll we're we've welcome well went were weren't what what's whatever when whence whenever where where's whereafter whereas whereby wherein whereupon wherever whether which while whither who who's whoever whole whom whose why will willing wish with within without won't wonder would wouldn't yes yet you you'd you'll you're you've your yours yourself yourselves zero</code></pre> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/myisam-table-formats.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="myisam-table-formats"> </a> 18.2.3 MyISAM Table Storage Formats </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="static-format.html"> 18.2.3.1 Static (Fixed-Length) Table Characteristics </a> </span> </dt> <dt> <span class="section"> <a href="dynamic-format.html"> 18.2.3.2 Dynamic Table Characteristics </a> </span> </dt> <dt> <span class="section"> <a href="compressed-format.html"> 18.2.3.3 Compressed Table Characteristics </a> </span> </dt> </dl> </div> <p> <code class="literal"> MyISAM </code> supports three different storage formats. Two of them, fixed and dynamic format, are chosen automatically depending on the type of columns you are using. The third, compressed format, can be created only with the <a class="link" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> <span class="command"> <strong> myisampack </strong> </span> </a> utility (see <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> ). </p> <p> When you use <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> for a table that has no <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> columns, you can force the table format to <code class="literal"> FIXED </code> or <code class="literal"> DYNAMIC </code> with the <code class="literal"> ROW_FORMAT </code> table option. </p> <p> See <a class="xref" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> Section 15.1.20, “CREATE TABLE Statement” </a> , for information about <code class="literal"> ROW_FORMAT </code> . </p> <p> You can decompress (unpack) compressed <code class="literal"> MyISAM </code> tables using <a class="link" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> <span class="command"> <strong> myisamchk </strong> </span> </a> <a class="link" href="myisamchk-repair-options.html#option_myisamchk_unpack"> <code class="option"> --unpack </code> </a> ; see <a class="xref" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> Section 6.6.4, “myisamchk — MyISAM Table-Maintenance Utility” </a> , for more information. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/dynindex-option.html
<div id="docs-body"> <div class="index"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="dynindex-option"> </a> Option Index </h2> </div> </div> </div> <p> <a name="option-index-top"> </a> <a class="link" href="dynindex-option.html#option-index-Symbols" title="Symbols"> Symbols </a> | <a class="link" href="dynindex-option.html#option-index-A" title="A"> A </a> | <a class="link" href="dynindex-option.html#option-index-B" title="B"> B </a> | <a class="link" href="dynindex-option.html#option-index-C" title="C"> C </a> | <a class="link" href="dynindex-option.html#option-index-D" title="D"> D </a> | <a class="link" href="dynindex-option.html#option-index-E" title="E"> E </a> | <a class="link" href="dynindex-option.html#option-index-F" title="F"> F </a> | <a class="link" href="dynindex-option.html#option-index-G" title="G"> G </a> | <a class="link" href="dynindex-option.html#option-index-H" title="H"> H </a> | <a class="link" href="dynindex-option.html#option-index-I" title="I"> I </a> | <a class="link" href="dynindex-option.html#option-index-J" title="J"> J </a> | <a class="link" href="dynindex-option.html#option-index-K" title="K"> K </a> | <a class="link" href="dynindex-option.html#option-index-L" title="L"> L </a> | <a class="link" href="dynindex-option.html#option-index-M" title="M"> M </a> | <a class="link" href="dynindex-option.html#option-index-N" title="N"> N </a> | <a class="link" href="dynindex-option.html#option-index-O" title="O"> O </a> | <a class="link" href="dynindex-option.html#option-index-P" title="P"> P </a> | <a class="link" href="dynindex-option.html#option-index-Q" title="Q"> Q </a> | <a class="link" href="dynindex-option.html#option-index-R" title="R"> R </a> | <a class="link" href="dynindex-option.html#option-index-S" title="S"> S </a> | <a class="link" href="dynindex-option.html#option-index-T" title="T"> T </a> | <a class="link" href="dynindex-option.html#option-index-U" title="U"> U </a> | <a class="link" href="dynindex-option.html#option-index-V" title="V"> V </a> | <a class="link" href="dynindex-option.html#option-index-W" title="W"> W </a> | <a class="link" href="dynindex-option.html#option-index-X" title="X"> X </a> | <a class="link" href="dynindex-option.html#option-index-Y" title="Y"> Y </a> | <a class="link" href="dynindex-option.html#option-index-Z" title="Z"> Z </a> </p> <div class="indexdiv"> <a name="option-index-Symbols"> </a> <h3 class="title"> Symbols </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -- </h3> <dl> <dt> <a class="xref" href="ansi-diff-comments.html" title="1.7.2.4 '--' as the Start of a Comment"> Section 1.7.2.4, “'--' as the Start of a Comment” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -# </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="dbug-package.html" title="7.9.4 The DBUG Package"> Section 7.9.4, “The DBUG Package” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -1 </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> 1231 </h3> <dl> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -? </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="features.html" title="1.2.2 The Main Features of MySQL"> Section 1.2.2, “The Main Features of MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-A"> </a> <h3 class="title"> A </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -A </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -a </h3> <dl> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-hashicorp-plugin.html" title="8.4.4.8 Using the HashiCorp Vault Keyring Plugin"> Section 8.4.4.8, “Using the HashiCorp Vault Keyring Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --abort-on-error </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --abort-slave-event-count </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --add-drop-database </h3> <dl> <dt> <a class="xref" href="mysqldump-sql-format.html" title="9.4.1 Dumping Data in SQL Format with mysqldump"> Section 9.4.1, “Dumping Data in SQL Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --add-drop-table </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --add-drop-trigger </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --add-locks </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --add-missing </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin-ssl </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin-tls-version </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin_ssl_ca </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin_ssl_capath </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin_ssl_cert </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --admin_ssl_crl </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ai-increment </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ai-offset </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ai-prefetch-sz </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --all </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --all-databases </h3> <dl> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-mysqldump" title="19.1.2.5.1 Creating a Data Snapshot Using mysqldump"> Section 19.1.2.5.1, “Creating a Data Snapshot Using mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-dictionary-usage-differences.html" title="16.7 Data Dictionary Usage Differences"> Section 16.7, “Data Dictionary Usage Differences” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-sql-format.html" title="9.4.1 Dumping Data in SQL Format with mysqldump"> Section 9.4.1, “Dumping Data in SQL Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo.html" title="25.6.17 ndbinfo: The NDB Cluster Information Database"> Section 25.6.17, “ndbinfo: The NDB Cluster Information Database” </a> </dt> <dd> </dd> <dt> <a class="xref" href="rebuilding-tables.html" title="3.14 Rebuilding or Repairing Tables or Indexes"> Section 3.14, “Rebuilding or Repairing Tables or Indexes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="reloading-sql-format-dumps.html" title="9.4.2 Reloading SQL-Format Backups"> Section 9.4.2, “Reloading SQL-Format Backups” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-binary-package.html" title="3.7 Upgrading MySQL Binary or Package-based Installations on Unix/Linux"> Section 3.7, “Upgrading MySQL Binary or Package-based Installations on Unix/Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --all-in-1 </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --all-tablespaces </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --allow-keywords </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --allow-mismatches </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --allow-pk-changes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --allow-suspicious-udfs </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --analyze </h3> <dl> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ansi </h3> <dl> <dt> <a class="xref" href="compatibility.html" title="1.7 MySQL Standards Compliance"> Section 1.7, “MySQL Standards Compliance” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> antonio </h3> <dl> <dt> <a class="xref" href="pam-pluggable-authentication.html" title="8.4.1.5 PAM Pluggable Authentication"> Section 8.4.1.5, “PAM Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --append </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --apply-replica-statements </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --apply-slave-statements </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --audit-log </h3> <dl> <dt> <a class="xref" href="audit-log-reference.html" title="8.4.5.11 Audit Log Reference"> Section 8.4.5.11, “Audit Log Reference” </a> </dt> <dd> </dd> <dt> <a class="xref" href="audit-log-installation.html" title="8.4.5.2 Installing or Uninstalling MySQL Enterprise Audit"> Section 8.4.5.2, “Installing or Uninstalling MySQL Enterprise Audit” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-add-autoincrement </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-execute-number </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-guid-primary </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-load-type </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-secondary-indexes </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-unique-query-number </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-unique-write-number </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-generate-sql-write-number </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-inc </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-rehash </h3> <dl> <dt> <a class="xref" href="innodb-statistics-estimation.html" title="17.8.10.2 Configuring Non-Persistent Optimizer Statistics Parameters"> Section 17.8.10.2, “Configuring Non-Persistent Optimizer Statistics Parameters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> auto-rehash </h3> <dl> <dt> <a class="xref" href="innodb-statistics-estimation.html" title="17.8.10.2 Configuring Non-Persistent Optimizer Statistics Parameters"> Section 17.8.10.2, “Configuring Non-Persistent Optimizer Statistics Parameters” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-repair </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --auto-vertical-output </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --autocommit </h3> <dl> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-B"> </a> <h3 class="title"> B </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -B </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -b </h3> <dl> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --back_log </h3> <dl> <dt> <a class="xref" href="solaris-installation.html" title="2.7 Installing MySQL on Solaris"> Section 2.7, “Installing MySQL on Solaris” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup-key-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup-password </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup-password-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backup-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> backup-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> backup-to-image </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --backupid </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --base64-output </h3> <dl> <dt> <a class="xref" href="replication-sbr-rbr.html" title="19.2.1.1 Advantages and Disadvantages of Statement-Based and Row-Based Replication"> Section 19.2.1.1, “Advantages and Disadvantages of Statement-Based and Row-Based Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-row-events.html" title="6.6.9.2 mysqlbinlog Row Event Display"> Section 6.6.9.2, “mysqlbinlog Row Event Display” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rbr-usage.html" title="19.2.1.2 Usage of Row-Based Logging and Replication"> Section 19.2.1.2, “Usage of Row-Based Logging and Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --basedir </h3> <dl> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-syntax.html" title="25.2.7.1 Noncompliance with SQL Syntax in NDB Cluster"> Section 25.2.7.1, “Noncompliance with SQL Syntax in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> basedir </h3> <dl> <dt> <a class="xref" href="windows-create-option-file.html" title="2.3.3.2 Creating an Option File"> Section 2.3.3.2, “Creating an Option File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-server.html" title="6.3.3 mysql.server — MySQL Server Startup Script"> Section 6.3.3, “mysql.server — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-troubleshooting.html" title="2.3.4 Troubleshooting a Microsoft Windows MySQL Server Installation"> Section 2.3.4, “Troubleshooting a Microsoft Windows MySQL Server Installation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --batch </h3> <dl> <dt> <a class="xref" href="mysql-logging.html" title="6.5.1.3 mysql Client Logging"> Section 6.5.1.3, “mysql Client Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binary-as-hex </h3> <dl> <dt> <a class="xref" href="aggregate-functions.html" title="14.19.1 Aggregate Function Descriptions"> Section 14.19.1, “Aggregate Function Descriptions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="audit-log-reference.html" title="8.4.5.11 Audit Log Reference"> Section 8.4.5.11, “Audit Log Reference” </a> </dt> <dd> </dd> <dt> <a class="xref" href="bit-functions.html" title="14.12 Bit Functions and Operators"> Section 14.12, “Bit Functions and Operators” </a> </dt> <dd> </dd> <dt> <a class="xref" href="cast-functions.html" title="14.10 Cast Functions and Operators"> Section 14.10, “Cast Functions and Operators” </a> </dt> <dd> </dd> <dt> <a class="xref" href="encryption-functions.html" title="14.13 Encryption and Compression Functions"> Section 14.13, “Encryption and Compression Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="miscellaneous-functions.html" title="14.23 Miscellaneous Functions"> Section 14.23, “Miscellaneous Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-masking-plugin-functions.html" title="8.5.3.4 MySQL Enterprise Data Masking and De-Identification Plugin Function Descriptions"> Section 8.5.3.4, “MySQL Enterprise Data Masking and De-Identification Plugin Function Descriptions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="audit-log-file-reading.html" title="8.4.5.6 Reading Audit Log Files"> Section 8.4.5.6, “Reading Audit Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="string-comparison-functions.html" title="14.8.1 String Comparison Functions and Operators"> Section 14.8.1, “String Comparison Functions and Operators” </a> </dt> <dd> </dd> <dt> <a class="xref" href="string-functions.html" title="14.8 String Functions and Operators"> Section 14.8, “String Functions and Operators” </a> </dt> <dd> </dd> <dt> <a class="xref" href="string-literals.html" title="11.1.1 String Literals"> Section 11.1.1, “String Literals” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> Section 13.3.3, “The BINARY and VARBINARY Types” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-binary-set.html" title="12.10.8 The Binary Character Set"> Section 12.10.8, “The Binary Character Set” </a> </dt> <dd> </dd> <dt> <a class="xref" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> Section 13.3.4, “The BLOB and TEXT Types” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binary-mode </h3> <dl> <dt> <a class="xref" href="comments.html" title="11.7 Comments"> Section 11.7, “Comments” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-binlog.html" title="9.5.1 Point-in-Time Recovery Using Binary Log"> Section 9.5.1, “Point-in-Time Recovery Using Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --bind-address </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --bind-host </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-checksum </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-do-db </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-db-options.html" title="19.2.5.1 Evaluation of Database-Level Replication and Binary Logging Options"> Section 19.2.5.1, “Evaluation of Database-Level Replication and Binary Logging Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-format </h3> <dl> <dt> <a class="xref" href="binary-log-formats.html" title="7.4.4.1 Binary Logging Formats"> Section 7.4.4.1, “Binary Logging Formats” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-general.html" title="25.7.2 General Requirements for NDB Cluster Replication"> Section 25.7.2, “General Requirements for NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-stored-procs.html" title="A.4 MySQL 8.4 FAQ: Stored Procedures and Functions"> Section A.4, “MySQL 8.4 FAQ: Stored Procedures and Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-starting.html" title="25.7.6 Starting NDB Cluster Replication (Single Replication Channel)"> Section 25.7.6, “Starting NDB Cluster Replication (Single Replication Channel)” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-unsupported.html" title="25.2.7.6 Unsupported or Missing Features in NDB Cluster"> Section 25.2.7.6, “Unsupported or Missing Features in NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-ignore-db </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-db-options.html" title="19.2.5.1 Evaluation of Database-Level Replication and Binary Logging Options"> Section 19.2.5.1, “Evaluation of Database-Level Replication and Binary Logging Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-privilege-checks-account.html" title="19.3.3.1 Privileges For The Replication PRIVILEGE_CHECKS_USER Account"> Section 19.3.3.1, “Privileges For The Replication PRIVILEGE_CHECKS_USER Account” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-row-event-max-size </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --binlog-transaction-compression </h3> <dl> <dt> <a class="xref" href="binary-log-transaction-compression.html" title="7.4.4.5 Binary Log Transaction Compression"> Section 7.4.4.5, “Binary Log Transaction Compression” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --blob-info </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --block-search </h3> <dl> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --bootstrap </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --bound-hostname </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-C"> </a> <h3 class="title"> C </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -C </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -c </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-binary.html" title="25.3.2.1 Installing NDB Cluster on Windows from a Binary Release"> Section 25.3.2.1, “Installing NDB Cluster on Windows from a Binary Release” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-hashicorp-plugin.html" title="8.4.4.8 Using the HashiCorp Vault Keyring Plugin"> Section 8.4.4.8, “Using the HashiCorp Vault Keyring Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-cert </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-days </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-ordinal </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-search-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --CA-tool </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --cflags </h3> <dl> <dt> <a class="xref" href="compilation-problems.html" title="2.8.8 Dealing with Problems Compiling MySQL"> Section 2.8.8, “Dealing with Problems Compiling MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --character-set-client-handshake </h3> <dl> <dt> <a class="xref" href="faqs-cjk.html" title="A.11 MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets"> Section A.11, “MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --character-set-server </h3> <dl> <dt> <a class="xref" href="charset-configuration.html" title="12.15 Character Set Configuration"> Section 12.15, “Character Set Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-cjk.html" title="A.11 MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets"> Section A.11, “MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-server.html" title="12.3.2 Server Character Set and Collation"> Section 12.3.2, “Server Character Set and Collation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --character-sets-dir </h3> <dl> <dt> <a class="xref" href="cannot-initialize-character-set.html" title="B.3.2.15 Can't initialize character set"> Section B.3.2.15, “Can't initialize character set” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-configuration.html" title="12.15 Character Set Configuration"> Section 12.15, “Character Set Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --charset </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --check </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --check-missing </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --check-only-changed </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --check-orphans </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --check-upgrade </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --chroot </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --clone </h3> <dl> <dt> <a class="xref" href="clone-plugin-installation.html" title="7.6.7.1 Installing the Clone Plugin"> Section 7.6.7.1, “Installing the Clone Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> cluster-config-suffix </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_BUILD_TYPE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_C_FLAGS </h3> <dl> <dt> <a class="xref" href="compiling-for-debugging.html" title="7.9.1.1 Compiling MySQL for Debugging"> Section 7.9.1.1, “Compiling MySQL for Debugging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="compilation-problems.html" title="2.8.8 Dealing with Problems Compiling MySQL"> Section 2.8.8, “Dealing with Problems Compiling MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_C_FLAGS_build_type </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_C_FLAGS_RELWITHDEBINFO </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_CXX_FLAGS </h3> <dl> <dt> <a class="xref" href="compiling-for-debugging.html" title="7.9.1.1 Compiling MySQL for Debugging"> Section 7.9.1.1, “Compiling MySQL for Debugging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="compilation-problems.html" title="2.8.8 Dealing with Problems Compiling MySQL"> Section 2.8.8, “Dealing with Problems Compiling MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_CXX_FLAGS_build_type </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_CXX_FLAGS_RELWITHDEBINFO </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_INSTALL_PREFIX </h3> <dl> <dt> <a class="xref" href="installing-development-tree.html" title="2.8.5 Installing MySQL Using a Development Source Tree"> Section 2.8.5, “Installing MySQL Using a Development Source Tree” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> CMAKE_PREFIX_PATH </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --collation-server </h3> <dl> <dt> <a class="xref" href="adding-collation.html" title="12.14 Adding a Collation to a Character Set"> Section 12.14, “Adding a Collation to a Character Set” </a> </dt> <dd> </dd> <dt> <a class="xref" href="full-text-adding-collation.html" title="14.9.7 Adding a User-Defined Collation for Full-Text Indexing"> Section 14.9.7, “Adding a User-Defined Collation for Full-Text Indexing” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-configuration.html" title="12.15 Character Set Configuration"> Section 12.15, “Character Set Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-server.html" title="12.3.2 Server Character Set and Collation"> Section 12.3.2, “Server Character Set and Collation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --collation_server </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --color </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --column-names </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --column-statistics </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --column-type-info </h3> <dl> <dt> <a class="xref" href="limit-optimization.html" title="10.2.1.19 LIMIT Query Optimization"> Section 10.2.1.19, “LIMIT Query Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --columns </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --comments </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --commit </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --compact </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --compatible </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> COMPILATION_COMMENT </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> COMPILATION_COMMENT_SERVER </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --complete-insert </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --component-dir </h3> <dl> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --compress </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-compression-control.html" title="6.2.8 Connection Compression Control"> Section 6.2.8, “Connection Compression Control” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --compression-algorithms </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-compression-control.html" title="6.2.8 Connection Compression Control"> Section 6.2.8, “Connection Compression Control” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --concurrency </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --config-binary-file </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --config-cache </h3> <dl> <dt> <a class="xref" href="mysql-cluster-config-file.html" title="25.4.3 NDB Cluster Configuration Files"> Section 25.4.3, “NDB Cluster Configuration Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --config-dir </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --config-file </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-first-start.html" title="25.3.4 Initial Startup of NDB Cluster"> Section 25.3.4, “Initial Startup of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-initial-start.html" title="25.3.2.3 Initial Startup of NDB Cluster on Windows"> Section 25.3.2.3, “Initial Startup of NDB Cluster on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-service.html" title="25.3.2.4 Installing NDB Cluster Processes as Windows Services"> Section 25.3.2.4, “Installing NDB Cluster Processes as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-config-example.html" title="25.4.3.1 NDB Cluster Configuration: Basic Example"> Section 25.4.3.1, “NDB Cluster Configuration: Basic Example” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --config_from_node </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --configdir </h3> <dl> <dt> <a class="xref" href="mysql-cluster-config-file.html" title="25.4.3 NDB Cluster Configuration Files"> Section 25.4.3, “NDB Cluster Configuration Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --configinfo </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-delay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-expired-password </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="expired-password-handling.html" title="8.2.16 Server Handling of Expired Passwords"> Section 8.2.16, “Server Handling of Expired Passwords” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-retries </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-retry-delay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-string </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connect-timeout </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connection-control </h3> <dl> <dt> <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connection-control-failed-login-attempts </h3> <dl> <dt> <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connection-server-id </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-server-id.html" title="6.6.9.4 Specifying the mysqlbinlog Server ID"> Section 6.6.9.4, “Specifying the mysqlbinlog Server ID” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connection-timeout </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-error-reporter.html" title="25.5.12 ndb_error_reporter — NDB Error-Reporting Utility"> Section 25.5.12, “ndb_error_reporter — NDB Error-Reporting Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --connections </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --console </h3> <dl> <dt> <a class="xref" href="error-log-destination-configuration.html" title="7.4.2.2 Default Error Log Destination Configuration"> Section 7.4.2.2, “Default Error Log Destination Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-enabling-monitors.html" title="17.17.2 Enabling InnoDB Monitors"> Section 17.17.2, “Enabling InnoDB Monitors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="error-log-configuration.html" title="7.4.2.1 Error Log Configuration"> Section 7.4.2.1, “Error Log Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-initial-start.html" title="25.3.2.3 Initial Startup of NDB Cluster on Windows"> Section 25.3.2.3, “Initial Startup of NDB Cluster on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-troubleshooting.html" title="17.20 InnoDB Troubleshooting"> Section 17.20, “InnoDB Troubleshooting” </a> </dt> <dd> </dd> <dt> <a class="xref" href="resetting-permissions.html#resetting-permissions-windows" title="B.3.3.2.1 Resetting the Root Password: Windows Systems"> Section B.3.3.2.1, “Resetting the Root Password: Windows Systems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-command-line.html" title="2.3.3.6 Starting MySQL from the Windows Command Line"> Section 2.3.3.6, “Starting MySQL from the Windows Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-server-first-start.html" title="2.3.3.5 Starting the Server for the First Time"> Section 2.3.3.5, “Starting the Server for the First Time” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --context </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --continue </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --control-directory-number </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> copy-back-and-apply-log </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --core-file </h3> <dl> <dt> <a class="xref" href="using-gdb-on-mysqld.html" title="7.9.1.4 Debugging mysqld under gdb"> Section 7.9.1.4, “Debugging mysqld under gdb” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-buffer-pool-in-core-file.html" title="17.8.3.7 Excluding or Including Buffer Pool Pages from Core Files"> Section 17.8.3.7, “Excluding or Including Buffer Pool Pages from Core Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> core-file </h3> <dl> <dt> <a class="xref" href="making-windows-dumps.html" title="7.9.1.3 Using WER with PDB to create a Windows crashdump"> Section 7.9.1.3, “Using WER with PDB to create a Windows crashdump” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --core-file-size </h3> <dl> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --correct-checksum </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --count </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --create </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --create-CA </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --create-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --create-options </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --create-schema </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --csv </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --csvopt </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --curve </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --cxxflags </h3> <dl> <dt> <a class="xref" href="compilation-problems.html" title="2.8.8 Dealing with Problems Compiling MySQL"> Section 2.8.8, “Dealing with Problems Compiling MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-D"> </a> <h3 class="title"> D </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -D </h3> <dl> <dt> <a class="xref" href="adding-character-set.html" title="12.13 Adding a Character Set"> Section 12.13, “Adding a Character Set” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-linux-source.html" title="25.3.1.4 Building NDB Cluster from Source on Linux"> Section 25.3.1.4, “Building NDB Cluster from Source on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="cannot-initialize-character-set.html" title="B.3.2.15 Can't initialize character set"> Section B.3.2.15, “Can't initialize character set” </a> </dt> <dd> </dd> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="compiling-for-debugging.html" title="7.9.1.1 Compiling MySQL for Debugging"> Section 7.9.1.1, “Compiling MySQL for Debugging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-ssl-library-configuration.html" title="2.8.6 Configuring SSL Library Support"> Section 2.8.6, “Configuring SSL Library Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-dictionary-schema.html" title="16.1 Data Dictionary Schema"> Section 16.1, “Data Dictionary Schema” </a> </dt> <dd> </dd> <dt> <a class="xref" href="debugging-client.html" title="7.9.2 Debugging a MySQL Client"> Section 7.9.2, “Debugging a MySQL Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="x-plugin-disabling.html" title="22.5.2 Disabling X Plugin"> Section 22.5.2, “Disabling X Plugin” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-general-info.html" title="25.1 General Information"> Section 25.1, “General Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="installing-source-distribution.html" title="2.8.4 Installing MySQL Using a Standard Source Distribution"> Section 2.8.4, “Installing MySQL Using a Standard Source Distribution” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mysqld.html" title="25.6.10 MySQL Server Usage for NDB Cluster"> Section 25.6.10, “MySQL Server Usage for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-parse-tree.html" title="15.7.7.26 SHOW PARSE_TREE Statement"> Section 15.7.7.26, “SHOW PARSE_TREE Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="archive-storage-engine.html" title="18.5 The ARCHIVE Storage Engine"> Section 18.5, “The ARCHIVE Storage Engine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="blackhole-storage-engine.html" title="18.6 The BLACKHOLE Storage Engine"> Section 18.6, “The BLACKHOLE Storage Engine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="example-storage-engine.html" title="18.9 The EXAMPLE Storage Engine"> Section 18.9, “The EXAMPLE Storage Engine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="federated-storage-engine.html" title="18.8 The FEDERATED Storage Engine"> Section 18.8, “The FEDERATED Storage Engine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="lock-order-tool.html" title="7.9.3 The LOCK_ORDER Tool"> Section 7.9.3, “The LOCK_ORDER Tool” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> <dt> <a class="xref" href="crashing.html" title="B.3.3.3 What to Do If MySQL Keeps Crashing"> Section B.3.3.3, “What to Do If MySQL Keeps Crashing” </a> </dt> <dd> </dd> <dt> <a class="xref" href="which-version.html" title="2.1.2 Which MySQL Version and Distribution to Install"> Section 2.1.2, “Which MySQL Version and Distribution to Install” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -d </h3> <dl> <dt> <a class="xref" href="docker-mysql-getting-started.html" title="2.5.6.1 Basic Steps for MySQL Server Deployment with Docker"> Section 2.5.6.1, “Basic Steps for MySQL Server Deployment with Docker” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-okv-plugin.html" title="8.4.4.6 Using the keyring_okv KMIP Plugin"> Section 8.4.4.6, “Using the keyring_okv KMIP Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --daemon </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --daemonize </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --data-file-length </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --database </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --databases </h3> <dl> <dt> <a class="xref" href="mysqldump-copying-to-other-server.html" title="9.4.5.2 Copy a Database from one Server to Another"> Section 9.4.5.2, “Copy a Database from one Server to Another” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-mysqldump" title="19.1.2.5.1 Creating a Data Snapshot Using mysqldump"> Section 19.1.2.5.1, “Creating a Data Snapshot Using mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-sql-format.html" title="9.4.1 Dumping Data in SQL Format with mysqldump"> Section 9.4.1, “Dumping Data in SQL Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-copying-database.html" title="9.4.5.1 Making a Copy of a Database"> Section 9.4.5.1, “Making a Copy of a Database” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo.html" title="25.6.17 ndbinfo: The NDB Cluster Information Database"> Section 25.6.17, “ndbinfo: The NDB Cluster Information Database” </a> </dt> <dd> </dd> <dt> <a class="xref" href="rebuilding-tables.html" title="3.14 Rebuilding or Repairing Tables or Indexes"> Section 3.14, “Rebuilding or Repairing Tables or Indexes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="reloading-sql-format-dumps.html" title="9.4.2 Reloading SQL-Format Backups"> Section 9.4.2, “Reloading SQL-Format Backups” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --datadir </h3> <dl> <dt> <a class="xref" href="windows-create-option-file.html" title="2.3.3.2 Creating an Option File"> Section 2.3.3.2, “Creating an Option File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-security-mysql-security-procedures.html" title="25.6.21.3 NDB Cluster and MySQL Security Procedures"> Section 25.6.21.3, “NDB Cluster and MySQL Security Procedures” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-data-directories.html" title="7.8.1 Setting Up Multiple Data Directories"> Section 7.8.1, “Setting Up Multiple Data Directories” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory.html" title="7.2 The MySQL Data Directory"> Section 7.2, “The MySQL Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> datadir </h3> <dl> <dt> <a class="xref" href="windows-create-option-file.html" title="2.3.3.2 Creating an Option File"> Section 2.3.3.2, “Creating an Option File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="macos-installation-notes.html" title="2.4.1 General Notes on Installing MySQL on macOS"> Section 2.4.1, “General Notes on Installing MySQL on macOS” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-server.html" title="6.3.3 mysql.server — MySQL Server Startup Script"> Section 6.3.3, “mysql.server — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-troubleshooting.html" title="2.3.4 Troubleshooting a Microsoft Windows MySQL Server Installation"> Section 2.3.4, “Troubleshooting a Microsoft Windows MySQL Server Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-restrictions.html" title="2.3.6 Windows Platform Restrictions"> Section 2.3.6, “Windows Platform Restrictions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --db-workers </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ddl-rewriter </h3> <dl> <dt> <a class="xref" href="ddl-rewriter-options.html" title="7.6.5.2 ddl_rewriter Plugin Options"> Section 7.6.5.2, “ddl_rewriter Plugin Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ddl-rewriter-installation.html" title="7.6.5.1 Installing or Uninstalling ddl_rewriter"> Section 7.6.5.1, “Installing or Uninstalling ddl_rewriter” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --debug </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="compiling-for-debugging.html" title="7.9.1.1 Compiling MySQL for Debugging"> Section 7.9.1.1, “Compiling MySQL for Debugging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-command-line.html" title="2.3.3.6 Starting MySQL from the Windows Command Line"> Section 2.3.3.6, “Starting MySQL from the Windows Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="dbug-package.html" title="7.9.4 The DBUG Package"> Section 7.9.4, “The DBUG Package” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> debug </h3> <dl> <dt> <a class="xref" href="data-dictionary-schema.html" title="16.1 Data Dictionary Schema"> Section 16.1, “Data Dictionary Schema” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --debug-check </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --debug-info </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --debug-sync-timeout </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --decrypt </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --decrypt-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --decrypt-key-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --decrypt-password </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --decrypt-password-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --default-auth </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="native-pluggable-authentication.html" title="8.4.1.1 Native Pluggable Authentication"> Section 8.4.1.1, “Native Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --default-character-set </h3> <dl> <dt> <a class="xref" href="user-names.html" title="8.2.1 Account User Names and Passwords"> Section 8.2.1, “Account User Names and Passwords” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-configuration.html" title="12.15 Character Set Configuration"> Section 12.15, “Character Set Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-connection.html" title="12.4 Connection Character Sets and Collations"> Section 12.4, “Connection Character Sets and Collations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-batch-commands.html" title="6.5.1.5 Executing SQL Statements from a Text File"> Section 6.5.1.5, “Executing SQL Statements from a Text File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data.html" title="15.2.9 LOAD DATA Statement"> Section 15.2.9, “LOAD DATA Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --default-time-zone </h3> <dl> <dt> <a class="xref" href="time-zone-support.html" title="7.1.15 MySQL Server Time Zone Support"> Section 7.1.15, “MySQL Server Time Zone Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --default.key_buffer_size </h3> <dl> <dt> <a class="xref" href="structured-system-variables.html" title="7.1.9.5 Structured System Variables"> Section 7.1.9.5, “Structured System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> DEFAULT_CHARSET </h3> <dl> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-server.html" title="12.3.2 Server Character Set and Collation"> Section 12.3.2, “Server Character Set and Collation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> DEFAULT_COLLATION </h3> <dl> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="charset-server.html" title="12.3.2 Server Character Set and Collation"> Section 12.3.2, “Server Character Set and Collation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --defaults-extra-file </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-variables-info-table.html" title="29.12.14.2 Performance Schema variables_info Table"> Section 29.12.14.2, “Performance Schema variables_info Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --defaults-file </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-security-user.html" title="8.1.2.1 End-User Guidelines for Password Security"> Section 8.1.2.1, “End-User Guidelines for Password Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-init-startup-configuration.html" title="17.8.1 InnoDB Startup Configuration"> Section 17.8.1, “InnoDB Startup Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-variables-info-table.html" title="29.12.14.2 Performance Schema variables_info Table"> Section 29.12.14.2, “Performance Schema variables_info Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="resetting-permissions.html#resetting-permissions-unix" title="B.3.3.2.2 Resetting the Root Password: Unix and Unix-Like Systems"> Section B.3.3.2.2, “Resetting the Root Password: Unix and Unix-Like Systems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="resetting-permissions.html#resetting-permissions-windows" title="B.3.3.2.1 Resetting the Root Password: Windows Systems"> Section B.3.3.2.1, “Resetting the Root Password: Windows Systems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-configuration-validation.html" title="7.1.3 Server Configuration Validation"> Section 7.1.3, “Server Configuration Validation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-windows-services.html" title="7.8.2.2 Starting Multiple MySQL Instances as Windows Services"> Section 7.8.2.2, “Starting Multiple MySQL Instances as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-windows-command-line-servers.html" title="7.8.2.1 Starting Multiple MySQL Instances at the Windows Command Line"> Section 7.8.2.1, “Starting Multiple MySQL Instances at the Windows Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --defaults-group-suffix </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="environment-variables.html" title="6.9 Environment Variables"> Section 6.9, “Environment Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delay-key-write </h3> <dl> <dt> <a class="xref" href="external-locking.html" title="10.11.5 External Locking"> Section 10.11.5, “External Locking” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> delay_key_write </h3> <dl> <dt> <a class="xref" href="myisam-start.html" title="18.2.1 MyISAM Startup Options"> Section 18.2.1, “MyISAM Startup Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delete </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delete-master-logs </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delete-orphans </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delete-source-logs </h3> <dl> <dt> <a class="xref" href="backup-policy.html" title="9.3.1 Establishing a Backup Policy"> Section 9.3.1, “Establishing a Backup Policy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --delimiter </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --descending </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --description </h3> <dl> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --destination-keyring </h3> <dl> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --destination-keyring-configuration-dir </h3> <dl> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --detach </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --detailed-info </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --diff-default </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable </h3> <dl> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-auto-rehash </h3> <dl> <dt> <a class="xref" href="innodb-statistics-estimation.html" title="17.8.10.2 Configuring Non-Persistent Optimizer Statistics Parameters"> Section 17.8.10.2, “Configuring Non-Persistent Optimizer Statistics Parameters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-indexes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-keys </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-log-bin </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-privilege-checks-account.html" title="19.3.3.1 Privileges For The Replication PRIVILEGE_CHECKS_USER Account"> Section 19.3.3.1, “Privileges For The Replication PRIVILEGE_CHECKS_USER Account” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="stored-programs-logging.html" title="27.7 Stored Program Binary Logging"> Section 27.7, “Stored Program Binary Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-named-commands </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disable-plugin_name </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> DISABLE_PSI_THREAD </h3> <dl> <dt> <a class="xref" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> Section 29.12.22.7, “The processlist Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disconnect-slave-event-count </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --disk </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --diskscan </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dns-srv-name </h3> <dl> <dt> <a class="xref" href="connecting-using-dns-srv.html" title="6.2.6 Connecting to the Server Using DNS SRV Records"> Section 6.2.6, “Connecting to the Server Using DNS SRV Records” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> do-* </h3> <dl> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dont-ignore-systab-0 </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> DOWNLOAD_BOOST </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> DOWNLOAD_BOOST_TIMEOUT </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --drop-source </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dry-scp </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-error-reporter.html" title="25.5.12 ndb_error_reporter — NDB Error-Reporting Utility"> Section 25.5.12, “ndb_error_reporter — NDB Error-Reporting Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dump </h3> <dl> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dump-date </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dump-file </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dump-replica </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-transaction-inconsistencies.html" title="19.5.1.34 Replication and Transaction Inconsistencies"> Section 19.5.1.34, “Replication and Transaction Inconsistencies” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --dump-slave </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --duration </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-E"> </a> <h3 class="title"> E </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -E </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -e </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-check.html" title="9.6.2 How to Check MyISAM Tables for Errors"> Section 9.6.2, “How to Check MyISAM Tables for Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-xml.html" title="15.2.10 LOAD XML Statement"> Section 15.2.10, “LOAD XML Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-backups.html" title="25.7.9 NDB Cluster Backups With NDB Cluster Replication"> Section 25.7.9, “NDB Cluster Backups With NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-table-info.html" title="6.6.4.5 Obtaining Table Information with myisamchk"> Section 6.6.4.5, “Obtaining Table Information with myisamchk” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-shutdown-restart.html" title="25.3.6 Safe Shutdown and Restart of NDB Cluster"> Section 25.3.6, “Safe Shutdown and Restart of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --early-plugin-load </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> <dt> <a class="xref" href="macos-installation-launchd.html" title="2.4.3 Installing and Using the MySQL Launch Daemon"> Section 2.4.3, “Installing and Using the MySQL Launch Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-component-installation.html" title="8.4.4.2 Keyring Component Installation"> Section 8.4.4.2, “Keyring Component Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-component-plugin-comparison.html" title="8.4.4.1 Keyring Components Versus Keyring Plugins"> Section 8.4.4.1, “Keyring Components Versus Keyring Plugins” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-plugin-installation.html" title="8.4.4.3 Keyring Plugin Installation"> Section 8.4.4.3, “Keyring Plugin Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-binary-package.html" title="3.7 Upgrading MySQL Binary or Package-based Installations on Unix/Linux"> Section 3.7, “Upgrading MySQL Binary or Package-based Installations on Unix/Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-hashicorp-plugin.html" title="8.4.4.8 Using the HashiCorp Vault Keyring Plugin"> Section 8.4.4.8, “Using the HashiCorp Vault Keyring Plugin” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-aws-plugin.html" title="8.4.4.7 Using the keyring_aws Amazon Web Services Keyring Plugin"> Section 8.4.4.7, “Using the keyring_aws Amazon Web Services Keyring Plugin” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-okv-plugin.html" title="8.4.4.6 Using the keyring_okv KMIP Plugin"> Section 8.4.4.6, “Using the keyring_okv KMIP Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --enable-cleartext-plugin </h3> <dl> <dt> <a class="xref" href="cleartext-pluggable-authentication.html" title="8.4.1.4 Client-Side Cleartext Pluggable Authentication"> Section 8.4.1.4, “Client-Side Cleartext Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ldap-pluggable-authentication.html" title="8.4.1.7 LDAP Pluggable Authentication"> Section 8.4.1.7, “LDAP Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="pam-pluggable-authentication.html" title="8.4.1.5 PAM Pluggable Authentication"> Section 8.4.1.5, “PAM Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --enable-plugin_name </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> enabled </h3> <dl> <dt> <a class="xref" href="linux-installation-yum-repo.html" title="2.5.1 Installing MySQL on Linux Using the MySQL Yum Repository"> Section 2.5.1, “Installing MySQL on Linux Using the MySQL Yum Repository” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ENABLED_LOCAL_INFILE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-backup </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-block-size </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-cipher </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-kdf-iter-count </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-key-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-password </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --encrypt-password-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --end-page </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --enforce-gtid-consistency </h3> <dl> <dt> <a class="xref" href="replication-options-gtids.html" title="19.1.6.5 Global Transaction ID System Variables"> Section 19.1.6.5, “Global Transaction ID System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-restrictions.html" title="19.1.3.7 Restrictions on Replication with GTIDs"> Section 19.1.3.7, “Restrictions on Replication with GTIDs” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --engine </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --env </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --errins-delay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --errins-type </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --errmsg-file </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --error-insert </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --event-scheduler </h3> <dl> <dt> <a class="xref" href="events-configuration.html" title="27.4.2 Event Scheduler Configuration"> Section 27.4.2, “Event Scheduler Configuration” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> event-scheduler </h3> <dl> <dt> <a class="xref" href="events-configuration.html" title="27.4.2 Event Scheduler Configuration"> Section 27.4.2, “Event Scheduler Configuration” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --events </h3> <dl> <dt> <a class="xref" href="data-dictionary-usage-differences.html" title="16.7 Data Dictionary Usage Differences"> Section 16.7, “Data Dictionary Usage Differences” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-definition-data-dumps.html" title="9.4.5.4 Dumping Table Definitions and Content Separately"> Section 9.4.5.4, “Dumping Table Definitions and Content Separately” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-binary-package.html" title="3.7 Upgrading MySQL Binary or Package-based Installations on Unix/Linux"> Section 3.7, “Upgrading MySQL Binary or Package-based Installations on Unix/Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --example </h3> <dl> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-databases </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-gtids </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-intermediate-sql-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-missing-columns </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-missing-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exclude-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --excludedbs </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --excludetables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --execute </h3> <dl> <dt> <a class="xref" href="mysql-logging.html" title="6.5.1.3 mysql Client Logging"> Section 6.5.1.3, “mysql Client Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --exit-info </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --expire-logs-days </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extend-check </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extended </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extended-insert </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --external-locking </h3> <dl> <dt> <a class="xref" href="external-locking.html" title="10.11.5 External Locking"> Section 10.11.5, “External Locking” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-start.html" title="18.2.1 MyISAM Startup Options"> Section 18.2.1, “MyISAM Startup Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extra-file </h3> <dl> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extra-node-info </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --extra-partition-info </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo-cluster-operations.html" title="25.6.17.8 The ndbinfo cluster_operations Table"> Section 25.6.17.8, “The ndbinfo cluster_operations Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo-server-operations.html" title="25.6.17.55 The ndbinfo server_operations Table"> Section 25.6.17.55, “The ndbinfo server_operations Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-F"> </a> <h3 class="title"> F </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -F </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -f </h3> <dl> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-first-start.html" title="25.3.4 Initial Startup of NDB Cluster"> Section 25.3.4, “Initial Startup of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-initial-start.html" title="25.3.2.3 Initial Startup of NDB Cluster on Windows"> Section 25.3.2.3, “Initial Startup of NDB Cluster on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-stack-trace.html" title="7.9.1.5 Using a Stack Trace"> Section 7.9.1.5, “Using a Stack Trace” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fast </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --federated </h3> <dl> <dt> <a class="xref" href="federated-storage-engine.html" title="18.8 The FEDERATED Storage Engine"> Section 18.8, “The FEDERATED Storage Engine” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fido-register-factor </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields-enclosed-by </h3> <dl> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields-escaped-by </h3> <dl> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields-optionally-enclosed-by </h3> <dl> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields-terminated-by </h3> <dl> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fields-xxx </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --file-key </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --file-key-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --filesystem-password </h3> <dl> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tde-setup.html" title="25.6.14.1 NDB File System Encryption Setup and Usage"> Section 25.6.14.1, “NDB File System Encryption Setup and Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --filesystem-password-from-stdin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tde-setup.html" title="25.6.14.1 NDB File System Encryption Setup and Usage"> Section 25.6.14.1, “NDB File System Encryption Setup and Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --flush </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="crashing.html" title="B.3.3.3 What to Do If MySQL Keeps Crashing"> Section B.3.3.3, “What to Do If MySQL Keeps Crashing” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --flush-logs </h3> <dl> <dt> <a class="xref" href="backup-policy.html" title="9.3.1 Establishing a Backup Policy"> Section 9.3.1, “Establishing a Backup Policy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-logs.html" title="7.4 MySQL Server Logs"> Section 7.4, “MySQL Server Logs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="log-file-maintenance.html" title="7.4.6 Server Log Maintenance"> Section 7.4.6, “Server Log Maintenance” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --flush-privileges </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --force </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="batch-mode.html" title="5.5 Using mysql in Batch Mode"> Section 5.5, “Using mysql in Batch Mode” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --force-if-open </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --force-read </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --foreground </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --format </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> FPROFILE_GENERATE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> FPROFILE_USE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fragment-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --fs </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-error-reporter.html" title="25.5.12 ndb_error_reporter — NDB Error-Reporting Utility"> Section 25.5.12, “ndb_error_reporter — NDB Error-Reporting Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-G"> </a> <h3 class="title"> G </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -G </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -g </h3> <dl> <dt> <a class="xref" href="compiling-for-debugging.html" title="7.9.1.1 Compiling MySQL for Debugging"> Section 7.9.1.1, “Compiling MySQL for Debugging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --gci </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --gci64 </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --gdb </h3> <dl> <dt> <a class="xref" href="using-gdb-on-mysqld.html" title="7.9.1.4 Debugging mysqld under gdb"> Section 7.9.1.4, “Debugging mysqld under gdb” </a> </dt> <dd> </dd> <dt> <a class="xref" href="restart.html" title="15.7.8.8 RESTART Statement"> Section 15.7.8.8, “RESTART Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="unix-signal-response.html" title="6.10 Unix Signal Handling in MySQL"> Section 6.10, “Unix Signal Handling in MySQL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --general-log </h3> <dl> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-system-variables.html" title="7.1.9 Using System Variables"> Section 7.1.9, “Using System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --general_log </h3> <dl> <dt> <a class="xref" href="log-destinations.html" title="7.4.1 Selecting General Query Log and Slow Query Log Output Destinations"> Section 7.4.1, “Selecting General Query Log and Slow Query Log Output Destinations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="query-log.html" title="7.4.3 The General Query Log"> Section 7.4.3, “The General Query Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-system-variables.html" title="7.1.9 Using System Variables"> Section 7.1.9, “Using System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --general_log_file </h3> <dl> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="query-log.html" title="7.4.3 The General Query Log"> Section 7.4.3, “The General Query Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --get-server-public-key </h3> <dl> <dt> <a class="xref" href="caching-sha2-pluggable-authentication.html" title="8.4.1.2 Caching SHA-2 Pluggable Authentication"> Section 8.4.1.2, “Caching SHA-2 Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --graph </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-H"> </a> <h3 class="title"> H </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -H </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -h </h3> <dl> <dt> <a class="xref" href="manual-info.html" title="1.1 About This Manual"> Section 1.1, “About This Manual” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --header </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --header-file </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --HELP </h3> <dl> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --help </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-service.html" title="25.3.2.4 Installing NDB Cluster Processes as Windows Services"> Section 25.3.2.4, “Installing NDB Cluster Processes as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-error-reporter.html" title="25.5.12 ndb_error_reporter — NDB Error-Reporting Utility"> Section 25.5.12, “ndb_error_reporter — NDB Error-Reporting Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="programs-overview.html" title="6.1 Overview of MySQL Programs"> Section 6.1, “Overview of MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="testing-server.html" title="2.9.3 Testing the Server"> Section 2.9.3, “Testing the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="features.html" title="1.2.2 The Main Features of MySQL"> Section 1.2.2, “The Main Features of MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="tutorial.html" title="Chapter 5 Tutorial"> Chapter 5, <i> Tutorial </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> help </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --hex </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --hex-blob </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --hexdump </h3> <dl> <dt> <a class="xref" href="mysqlbinlog-hexdump.html" title="6.6.9.1 mysqlbinlog Hex Dump Format"> Section 6.6.9.1, “mysqlbinlog Hex Dump Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --histignore </h3> <dl> <dt> <a class="xref" href="mysql-logging.html" title="6.5.1.3 mysql Client Logging"> Section 6.5.1.3, “mysql Client Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --host </h3> <dl> <dt> <a class="xref" href="manual-info.html" title="1.1 About This Manual"> Section 1.1, “About This Manual” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-defaults-equals.html" title="6.2.2.6 Option Defaults, Options Expecting Values, and the = Sign"> Section 6.2.2.6, “Option Defaults, Options Expecting Values, and the = Sign” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-server-clients.html" title="7.8.4 Using Client Programs in a Multiple-Server Environment"> Section 7.8.4, “Using Client Programs in a Multiple-Server Environment” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="x-plugin-options-system-variables.html" title="22.5.6.2 X Plugin Options and System Variables"> Section 22.5.6.2, “X Plugin Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> host </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --host-cache-size </h3> <dl> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --hostname </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --html </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-I"> </a> <h3 class="title"> I </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -I </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -i </h3> <dl> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-check.html" title="9.6.2 How to Check MyISAM Tables for Errors"> Section 9.6.2, “How to Check MyISAM Tables for Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --i-am-a-dummy </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --id </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --idempotent </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --idlesleep </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --idlespin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ignore-* </h3> <dl> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-error </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-extended-pk-updates </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-lines </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-spaces </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-table </h3> <dl> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-mysqldump" title="19.1.2.5.1 Creating a Data Snapshot Using mysqldump"> Section 19.1.2.5.1, “Creating a Data Snapshot Using mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ignore-views </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --in-file-errlog </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --in-file-toclient </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include </h3> <dl> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-databases </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-gtids </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-master-host-port </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-source-host-port </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-stored-grants </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --include-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --info </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --information </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --init-command </h3> <dl> <dt> <a class="xref" href="mysql-cluster-importing-data.html" title="25.6.9 Importing Data Into MySQL Cluster"> Section 25.6.9, “Importing Data Into MySQL Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> init-command </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --init-command-add </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> init-command-add </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --init_connect </h3> <dl> <dt> <a class="xref" href="charset-applications.html" title="12.5 Configuring Application Character Set and Collation"> Section 12.5, “Configuring Application Character Set and Collation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --initial </h3> <dl> <dt> <a class="xref" href="mysql-cluster-online-add-node-basics.html" title="25.6.7.2 Adding NDB Cluster Data Nodes Online: Basic procedure"> Section 25.6.7.2, “Adding NDB Cluster Data Nodes Online: Basic procedure” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-online-add-node-example.html" title="25.6.7.3 Adding NDB Cluster Data Nodes Online: Detailed Example"> Section 25.6.7.3, “Adding NDB Cluster Data Nodes Online: Detailed Example” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mgm-definition.html" title="25.4.3.5 Defining an NDB Cluster Management Server"> Section 25.4.3.5, “Defining an NDB Cluster Management Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-computer-definition.html" title="25.4.3.4 Defining Computers in an NDB Cluster"> Section 25.4.3.4, “Defining Computers in an NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-api-definition.html" title="25.4.3.7 Defining SQL and Other API Nodes in an NDB Cluster"> Section 25.4.3.7, “Defining SQL and Other API Nodes in an NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-system-definition.html" title="25.4.3.8 Defining the System"> Section 25.4.3.8, “Defining the System” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-first-start.html" title="25.3.4 Initial Startup of NDB Cluster"> Section 25.3.4, “Initial Startup of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-initial-start.html" title="25.3.2.3 Initial Startup of NDB Cluster on Windows"> Section 25.3.2.3, “Initial Startup of NDB Cluster on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-multiple-nodes.html" title="25.2.7.10 Limitations Relating to Multiple NDB Cluster Nodes"> Section 25.2.7.10, “Limitations Relating to Multiple NDB Cluster Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-config-file.html" title="25.4.3 NDB Cluster Configuration Files"> Section 25.4.3, “NDB Cluster Configuration Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-disk-data-storage-requirements.html" title="25.6.11.2 NDB Cluster Disk Data Storage Requirements"> Section 25.6.11.2, “NDB Cluster Disk Data Storage Requirements” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-shm-definition.html" title="25.4.3.12 NDB Cluster Shared-Memory Connections"> Section 25.4.3.12, “NDB Cluster Shared-Memory Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tcp-definition.html" title="25.4.3.10 NDB Cluster TCP/IP Connections"> Section 25.4.3.10, “NDB Cluster TCP/IP Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tde-setup.html" title="25.6.14.1 NDB File System Encryption Setup and Usage"> Section 25.6.14.1, “NDB File System Encryption Setup and Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbmtd.html" title="25.5.3 ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)"> Section 25.5.3, “ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-configuration-overview.html" title="25.4.2 Overview of NDB Cluster Configuration Parameters, Options, and Variables"> Section 25.4.2, “Overview of NDB Cluster Configuration Parameters, Options, and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-rolling-restart.html" title="25.6.5 Performing a Rolling Restart of an NDB Cluster"> Section 25.6.5, “Performing a Rolling Restart of an NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-pitr.html" title="25.7.9.2 Point-In-Time Recovery Using NDB Cluster Replication"> Section 25.7.9.2, “Point-In-Time Recovery Using NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-start-phases.html" title="25.6.4 Summary of NDB Cluster Start Phases"> Section 25.6.4, “Summary of NDB Cluster Start Phases” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --initial-start </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --initialize </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-create-option-file.html" title="2.3.3.2 Creating an Option File"> Section 2.3.3.2, “Creating an Option File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-linux-binary.html" title="25.3.1.1 Installing an NDB Cluster Binary Release on Linux"> Section 25.3.1.1, “Installing an NDB Cluster Binary Release on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="sys-schema.html" title="Chapter 30 MySQL sys Schema"> Chapter 30, <i> MySQL sys Schema </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-system-tablespace.html" title="17.6.3.1 The System Tablespace"> Section 17.6.3.1, “The System Tablespace” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --initialize-insecure </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-create-option-file.html" title="2.3.3.2 Creating an Option File"> Section 2.3.3.2, “Creating an Option File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-linux-binary.html" title="25.3.1.1 Installing an NDB Cluster Binary Release on Linux"> Section 25.3.1.1, “Installing an NDB Cluster Binary Release on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="sys-schema.html" title="Chapter 30 MySQL sys Schema"> Chapter 30, <i> MySQL sys Schema </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-system-tablespace.html" title="17.6.3.1 The System Tablespace"> Section 17.6.3.1, “The System Tablespace” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-adaptive-hash-index </h3> <dl> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-dedicated-server </h3> <dl> <dt> <a class="xref" href="innodb-dedicated-server.html" title="17.8.12 Enabling Automatic InnoDB Configuration for a Dedicated MySQL Server"> Section 17.8.12, “Enabling Automatic InnoDB Configuration for a Dedicated MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-redo-log.html" title="17.6.5 Redo Log"> Section 17.6.5, “Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-file-per-table </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> innodb-file-per-table </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-rollback-on-timeout </h3> <dl> <dt> <a class="xref" href="innodb-error-handling.html" title="17.20.5 InnoDB Error Handling"> Section 17.20.5, “InnoDB Error Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-status-file </h3> <dl> <dt> <a class="xref" href="innodb-enabling-monitors.html" title="17.17.2 Enabling InnoDB Monitors"> Section 17.17.2, “Enabling InnoDB Monitors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --innodb-xxx </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> innodb_file_per_table </h3> <dl> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-rawdata" title="19.1.2.5.2 Creating a Data Snapshot Using Raw Data Files"> Section 19.1.2.5.2, “Creating a Data Snapshot Using Raw Data Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --input-type </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --input-workers </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --insert-ignore </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --install </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-service.html" title="25.3.2.4 Installing NDB Cluster Processes as Windows Services"> Section 25.3.2.4, “Installing NDB Cluster Processes as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-windows-services.html" title="7.8.2.2 Starting Multiple MySQL Instances as Windows Services"> Section 7.8.2.2, “Starting Multiple MySQL Instances as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --install-manual </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-windows-services.html" title="7.8.2.2 Starting Multiple MySQL Instances as Windows Services"> Section 7.8.2.2, “Starting Multiple MySQL Instances as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> INSTALL_LAYOUT </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> INSTALL_LIBDIR </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> INSTALL_PRIV_LIBDIR </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> INSTALL_SECURE_FILE_PRIVDIR </h3> <dl> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --interactive </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --iterations </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-J"> </a> <h3 class="title"> J </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -j </h3> <dl> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --join </h3> <dl> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-K"> </a> <h3 class="title"> K </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -K </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -k </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keep-state </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keep_files_on_create </h3> <dl> <dt> <a class="xref" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> Section 15.1.20, “CREATE TABLE Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-destination </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-from-component </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-host </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-password </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-port </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-socket </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-source </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-to-component </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keyring-migration-user </h3> <dl> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keys </h3> <dl> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keys-to-dir </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --keys-used </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-L"> </a> <h3 class="title"> L </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -L </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perl-support-problems.html" title="2.10.3 Problems Using the Perl DBI/DBD Interface"> Section 2.10.3, “Problems Using the Perl DBI/DBD Interface” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -l </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --language </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --large-pages </h3> <dl> <dt> <a class="xref" href="large-page-support.html" title="10.12.3.3 Enabling Large Page Support"> Section 10.12.3.3, “Enabling Large Page Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lc-messages </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lc-messages-dir </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ledir </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --length </h3> <dl> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --libs </h3> <dl> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --libs_r </h3> <dl> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --line-numbers </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lines-terminated-by </h3> <dl> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> LINK_RANDOMIZE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --load-data-local-dir </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --loadqueries </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --local </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --local-infile </h3> <dl> <dt> <a class="xref" href="load-xml.html" title="15.2.10 LOAD XML Statement"> Section 15.2.10, “LOAD XML Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --local-load </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --local-service </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lock </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lock-all-tables </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lock-order </h3> <dl> <dt> <a class="xref" href="lock-order-tool.html" title="7.9.3 The LOCK_ORDER Tool"> Section 7.9.3, “The LOCK_ORDER Tool” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lock-tables </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-bin </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-policy.html" title="9.3.1 Establishing a Backup Policy"> Section 9.3.1, “Establishing a Backup Policy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="known-issues.html" title="B.3.7 Known Issues in MySQL"> Section B.3.7, “Known Issues in MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-moving-data-files-offline.html" title="17.6.3.6 Moving Tablespace Files While the Server is Offline"> Section 17.6.3.6, “Moving Tablespace Files While the Server is Offline” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-syntax.html" title="25.2.7.1 Noncompliance with SQL Syntax in NDB Cluster"> Section 25.2.7.1, “Noncompliance with SQL Syntax in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-binlog.html" title="9.5.1 Point-in-Time Recovery Using Binary Log"> Section 9.5.1, “Point-in-Time Recovery Using Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="purge-binary-logs.html" title="15.4.1.1 PURGE BINARY LOGS Statement"> Section 15.4.1.1, “PURGE BINARY LOGS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-howto-masterbaseconfig.html" title="19.1.2.1 Setting the Replication Source Configuration"> Section 19.1.2.1, “Setting the Replication Source Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-solutions-switch.html" title="19.4.8 Switching Sources During Failover"> Section 19.4.8, “Switching Sources During Failover” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="recovery-from-backups.html" title="9.3.2 Using Backups for Recovery"> Section 9.3.2, “Using Backups for Recovery” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-enterprise-backup.html" title="20.5.6 Using MySQL Enterprise Backup with Group Replication"> Section 20.5.6, “Using MySQL Enterprise Backup with Group Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-bin-index </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-syntax.html" title="25.2.7.1 Noncompliance with SQL Syntax in NDB Cluster"> Section 25.2.7.1, “Noncompliance with SQL Syntax in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-error </h3> <dl> <dt> <a class="xref" href="error-log-destination-configuration.html" title="7.4.2.2 Default Error Log Destination Configuration"> Section 7.4.2.2, “Default Error Log Destination Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="error-log-configuration.html" title="7.4.2.1 Error Log Configuration"> Section 7.4.2.1, “Error Log Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-defaults-equals.html" title="6.2.2.6 Option Defaults, Options Expecting Values, and the = Sign"> Section 6.2.2.6, “Option Defaults, Options Expecting Values, and the = Sign” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="log-file-maintenance.html" title="7.4.6 Server Log Maintenance"> Section 7.4.6, “Server Log Maintenance” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-command-line.html" title="2.3.3.6 Starting MySQL from the Windows Command Line"> Section 2.3.3.6, “Starting MySQL from the Windows Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-server-first-start.html" title="2.3.3.5 Starting the Server for the First Time"> Section 2.3.3.5, “Starting the Server for the First Time” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-isam </h3> <dl> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-level </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-name </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-raw </h3> <dl> <dt> <a class="xref" href="password-logging.html" title="8.1.2.3 Passwords and Logging"> Section 8.1.2.3, “Passwords and Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="query-log.html" title="7.4.3 The General Query Log"> Section 7.4.3, “The General Query Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-replica-updates </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-mode-change-online-disable-gtids.html" title="19.1.4.3 Disabling GTID Transactions Online"> Section 19.1.4.3, “Disabling GTID Transactions Online” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-bugs.html" title="19.5.5 How to Report Replication Bugs or Problems"> Section 19.5.5, “How to Report Replication Bugs or Problems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-solutions-performance.html" title="19.4.7 Improving Replication Performance"> Section 19.4.7, “Improving Replication Performance” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-howto-slavebaseconfig.html" title="19.1.2.2 Setting the Replica Configuration"> Section 19.1.2.2, “Setting the Replica Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-howto.html" title="19.1.3.4 Setting Up Replication Using GTIDs"> Section 19.1.3.4, “Setting Up Replication Using GTIDs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-solutions-switch.html" title="19.4.8 Switching Sources During Failover"> Section 19.4.8, “Switching Sources During Failover” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-short-format </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="slow-query-log.html" title="7.4.5 The Slow Query Log"> Section 7.4.5, “The Slow Query Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-tc </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log-tc-size </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-status-variables.html" title="7.1.10 Server Status Variables"> Section 7.1.10, “Server Status Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log_bin </h3> <dl> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log_output </h3> <dl> <dt> <a class="xref" href="log-destinations.html" title="7.4.1 Selecting General Query Log and Slow Query Log Output Destinations"> Section 7.4.1, “Selecting General Query Log and Slow Query Log Output Destinations” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --log_timestamps </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --logbuffer-size </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --login-path </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --loops </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --loose </h3> <dl> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --loose-opt_name </h3> <dl> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lossy-conversions </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --low-priority </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --low-priority-updates </h3> <dl> <dt> <a class="xref" href="concurrent-inserts.html" title="10.11.3 Concurrent Inserts"> Section 10.11.3, “Concurrent Inserts” </a> </dt> <dd> </dd> <dt> <a class="xref" href="insert.html" title="15.2.7 INSERT Statement"> Section 15.2.7, “INSERT Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="table-locking.html" title="10.11.2 Table Locking Issues"> Section 10.11.2, “Table Locking Issues” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --lower-case-table-names </h3> <dl> <dt> <a class="xref" href="identifier-case-sensitivity.html" title="11.2.3 Identifier Case Sensitivity"> Section 11.2.3, “Identifier Case Sensitivity” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-M"> </a> <h3 class="title"> M </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -M </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -m </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-backups.html" title="25.7.9 NDB Cluster Backups With NDB Cluster Replication"> Section 25.7.9, “NDB Cluster Backups With NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --malloc-lib </h3> <dl> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --master-data </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --master-info-file </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --master-info-repository </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --master-retry-count </h3> <dl> <dt> <a class="xref" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> Section 15.4.2.2, “CHANGE REPLICATION SOURCE TO Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-allowed-packet </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-binlog-dump-events </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-binlog-size </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-join-size </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-record-length </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="repair-table.html" title="15.7.3.5 REPAIR TABLE Statement"> Section 15.7.3.5, “REPAIR TABLE Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-relay-log-size </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --max-seeks-for-key </h3> <dl> <dt> <a class="xref" href="table-scan-avoidance.html" title="10.2.1.23 Avoiding Full Table Scans"> Section 10.2.1.23, “Avoiding Full Table Scans” </a> </dt> <dd> </dd> <dt> <a class="xref" href="optimizer-issues.html" title="B.3.5 Optimizer-Related Issues"> Section B.3.5, “Optimizer-Related Issues” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --maximum </h3> <dl> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --maximum-back_log </h3> <dl> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --maximum-max_heap_table_size </h3> <dl> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --maximum-sort-buffer-size </h3> <dl> <dt> <a class="xref" href="using-system-variables.html" title="7.1.9 Using System Variables"> Section 7.1.9, “Using System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --maximum-var_name </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-system-variables.html" title="7.1.9 Using System Variables"> Section 7.1.9, “Using System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --measured-load </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --medium-check </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --memlock </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-system-tablespace.html" title="17.6.3.1 The System Tablespace"> Section 17.6.3.1, “The System Tablespace” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --missing-ai-column </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --monitor </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mount </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --my-option </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --my-plugin </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --my_plugin </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mycnf </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --myisam-block-size </h3> <dl> <dt> <a class="xref" href="key-cache-block-size.html" title="10.10.2.5 Key Cache Block Size"> Section 10.10.2.5, “Key Cache Block Size” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --myisam_sort_buffer_size </h3> <dl> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysql-native-password </h3> <dl> <dt> <a class="xref" href="native-pluggable-authentication.html" title="8.4.1.1 Native Pluggable Authentication"> Section 8.4.1.1, “Native Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_ALLOW_EMPTY_PASSWORD </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_DATABASE </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_LOG_CONSOLE </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_MAINTAINER_MODE </h3> <dl> <dt> <a class="xref" href="compilation-problems.html" title="2.8.8 Dealing with Problems Compiling MySQL"> Section 2.8.8, “Dealing with Problems Compiling MySQL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_ONETIME_PASSWORD </h3> <dl> <dt> <a class="xref" href="docker-mysql-getting-started.html" title="2.5.6.1 Basic Steps for MySQL Server Deployment with Docker"> Section 2.5.6.1, “Basic Steps for MySQL Server Deployment with Docker” </a> </dt> <dd> </dd> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_PASSWORD </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_RANDOM_ROOT_PASSWORD </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_ROOT_HOST </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_ROOT_PASSWORD </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_TCP_PORT </h3> <dl> <dt> <a class="xref" href="installing-development-tree.html" title="2.8.5 Installing MySQL Using a Development Source Tree"> Section 2.8.5, “Installing MySQL Using a Development Source Tree” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_UNIX_ADDR </h3> <dl> <dt> <a class="xref" href="problems-with-mysql-sock.html" title="B.3.3.6 How to Protect or Change the MySQL Unix Socket File"> Section B.3.3.6, “How to Protect or Change the MySQL Unix Socket File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="installing-development-tree.html" title="2.8.5 Installing MySQL Using a Development Source Tree"> Section 2.8.5, “Installing MySQL Using a Development Source Tree” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="x-plugin-options-system-variables.html" title="22.5.6.2 X Plugin Options and System Variables"> Section 22.5.6.2, “X Plugin Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQL_USER </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqladmin </h3> <dl> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqld </h3> <dl> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqld-long-query-time </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqld-safe-log-timestamps </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqld-version </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --mysqlx </h3> <dl> <dt> <a class="xref" href="x-plugin-disabling.html" title="22.5.2 Disabling X Plugin"> Section 22.5.2, “Disabling X Plugin” </a> </dt> <dd> </dd> <dt> <a class="xref" href="x-plugin-options-system-variables.html" title="22.5.6.2 X Plugin Options and System Variables"> Section 22.5.6.2, “X Plugin Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> mysqlx </h3> <dl> <dt> <a class="xref" href="x-plugin-disabling.html" title="22.5.2 Disabling X Plugin"> Section 22.5.2, “Disabling X Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> MYSQLX_UNIX_ADDR </h3> <dl> <dt> <a class="xref" href="x-plugin-options-system-variables.html" title="22.5.6.2 X Plugin Options and System Variables"> Section 22.5.6.2, “X Plugin Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-N"> </a> <h3 class="title"> N </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -N </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -n </h3> <dl> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --name </h3> <dl> <dt> <a class="xref" href="docker-mysql-getting-started.html" title="2.5.6.1 Basic Steps for MySQL Server Deployment with Docker"> Section 2.5.6.1, “Basic Steps for MySQL Server Deployment with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --name-file </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --named-commands </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-allow-copying-alter-table </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-applier-allow-skip-epoch </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-batch-size </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-blob-read-batch-bytes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-blob-write-batch-bytes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-cluster </h3> <dl> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-cluster-connection-pool </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-cluster-connection-pool-nodeids </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-connectstring </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-windows-binary.html" title="25.3.2.1 Installing NDB Cluster on Windows from a Binary Release"> Section 25.3.2.1, “Installing NDB Cluster on Windows from a Binary Release” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mysqld.html" title="25.6.10 MySQL Server Usage for NDB Cluster"> Section 25.6.10, “MySQL Server Usage for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-security-mysql-privileges.html" title="25.6.21.2 NDB Cluster and MySQL Privileges"> Section 25.6.21.2, “NDB Cluster and MySQL Privileges” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-basics.html" title="25.2.1 NDB Cluster Core Concepts"> Section 25.2.1, “NDB Cluster Core Concepts” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-config-starting.html" title="25.4.3.2 Recommended Starting Configuration for NDB Cluster"> Section 25.4.3.2, “Recommended Starting Configuration for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ndb-connectstring </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-default-column-format </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-deferred-constraints </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-distribution </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-apply-status </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-bin </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-starting.html" title="25.7.6 Starting NDB Cluster Replication (Single Replication Channel)"> Section 25.7.6, “Starting NDB Cluster Replication (Single Replication Channel)” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-empty-epochs </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-empty-update </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-exclusive-reads </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-fail-terminate </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-orig </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-transaction-compression </h3> <dl> <dt> <a class="xref" href="binary-log-transaction-compression.html" title="7.4.4.5 Binary Log Transaction Compression"> Section 7.4.4.5, “Binary Log Transaction Compression” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-transaction-dependency </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-transaction-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-conflict-resolution.html" title="25.7.12 NDB Cluster Replication Conflict Resolution"> Section 25.7.12, “NDB Cluster Replication Conflict Resolution” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables" title="25.4.3.9.2 NDB Cluster System Variables"> Section 25.4.3.9.2, “NDB Cluster System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-update-as-write </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-conflict-resolution.html" title="25.7.12 NDB Cluster Replication Conflict Resolution"> Section 25.7.12, “NDB Cluster Replication Conflict Resolution” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-mta.html" title="25.7.11 NDB Cluster Replication Using the Multithreaded Applier"> Section 25.7.11, “NDB Cluster Replication Using the Multithreaded Applier” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-update-minimal </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-mta.html" title="25.7.11 NDB Cluster Replication Using the Multithreaded Applier"> Section 25.7.11, “NDB Cluster Replication Using the Multithreaded Applier” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-log-updated-only </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-conflict-resolution.html" title="25.7.12 NDB Cluster Replication Conflict Resolution"> Section 25.7.12, “NDB Cluster Replication Conflict Resolution” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-mta.html" title="25.7.11 NDB Cluster Replication Using the Multithreaded Applier"> Section 25.7.11, “NDB Cluster Replication Using the Multithreaded Applier” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-mgm-tls </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ndb-mgm-tls </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-mgmd-host </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-nodegroup-map </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-nodeid </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-optimization-delay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> Section 15.7.3.4, “OPTIMIZE TABLE Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-optimized-node-selection </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-replica-batch-size </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-replica-blob-write-batch-bytes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-schema-dist-timeout </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-tls-search-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ndb-tls-search-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-transid-mysql-connection-map </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="information-schema-ndb-transid-mysql-connection-map-table.html" title="28.3.18 The INFORMATION_SCHEMA ndb_transid_mysql_connection_map Table"> Section 28.3.18, “The INFORMATION_SCHEMA ndb_transid_mysql_connection_map Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-wait-connected </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb-wait-setup </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndb_extra_logging </h3> <dl> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndbcluster </h3> <dl> <dt> <a class="xref" href="mysql-cluster-configuration.html" title="25.4 Configuration of NDB Cluster"> Section 25.4, “Configuration of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-binary.html" title="25.3.2.1 Installing NDB Cluster on Windows from a Binary Release"> Section 25.3.2.1, “Installing NDB Cluster on Windows from a Binary Release” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mysqld.html" title="25.6.10 MySQL Server Usage for NDB Cluster"> Section 25.6.10, “MySQL Server Usage for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-security-mysql-privileges.html" title="25.6.21.2 NDB Cluster and MySQL Privileges"> Section 25.6.21.2, “NDB Cluster and MySQL Privileges” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-basics.html" title="25.2.1 NDB Cluster Core Concepts"> Section 25.2.1, “NDB Cluster Core Concepts” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo.html" title="25.6.17 ndbinfo: The NDB Cluster Information Database"> Section 25.6.17, “ndbinfo: The NDB Cluster Information Database” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-config-starting.html" title="25.4.3.2 Recommended Starting Configuration for NDB Cluster"> Section 25.4.3.2, “Recommended Starting Configuration for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-engines.html" title="15.7.7.17 SHOW ENGINES Statement"> Section 15.7.7.17, “SHOW ENGINES Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="information-schema-engines-table.html" title="28.3.13 The INFORMATION_SCHEMA ENGINES Table"> Section 28.3.13, “The INFORMATION_SCHEMA ENGINES Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ndbinfo </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --net-buffer-length </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> net_retry_count </h3> <dl> <dt> <a class="xref" href="replication-threads-monitor-main.html" title="19.2.3.1 Monitoring Replication Main Threads"> Section 19.2.3.1, “Monitoring Replication Main Threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> net_write_timeout </h3> <dl> <dt> <a class="xref" href="replication-threads-monitor-main.html" title="19.2.3.1 Monitoring Replication Main Threads"> Section 19.2.3.1, “Monitoring Replication Main Threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --network </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --network-namespace </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="network-namespace-support.html" title="7.1.14 Network Namespace Support"> Section 7.1.14, “Network Namespace Support” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --network-timeout </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --new </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nice </h3> <dl> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-asynch </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-auto-rehash </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-autocommit </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-beep </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-binlog </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-check </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-config </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-contact </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-create-db </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-create-info </h3> <dl> <dt> <a class="xref" href="mysqldump-definition-data-dumps.html" title="9.4.5.4 Dumping Table Definitions and Content Separately"> Section 9.4.5.4, “Dumping Table Definitions and Content Separately” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-data </h3> <dl> <dt> <a class="xref" href="mysqldump-definition-data-dumps.html" title="9.4.5.4 Dumping Table Definitions and Content Separately"> Section 9.4.5.4, “Dumping Table Definitions and Content Separately” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-dd-upgrade </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-defaults </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="persisted-system-variables.html" title="7.1.9.3 Persisted System Variables"> Section 7.1.9.3, “Persisted System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-drop </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-hint </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-log </h3> <dl> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-login-paths </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-monitor </h3> <dl> <dt> <a class="xref" href="windows-installation.html" title="2.3 Installing MySQL on Microsoft Windows"> Section 2.3, “Installing MySQL on Microsoft Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="restart.html" title="15.7.8.8 RESTART Statement"> Section 15.7.8.8, “RESTART Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-nodeid-checks </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-print-rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-restore-disk-objects </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-set-names </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-tablespaces </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --no-upgrade </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nodaemon </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nodata </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --node-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --node-type </h3> <dl> <dt> <a class="xref" href="mysql-cluster-tls-keys.html" title="25.6.15.2 Creating a CA and Keys"> Section 25.6.15.2, “Creating a CA and Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nodeid </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nodes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nostart </h3> <dl> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --not-started </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --nowait-nodes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-online-add-node-example.html" title="25.6.7.3 Adding NDB Cluster Data Nodes Online: Detailed Example"> Section 25.6.7.3, “Adding NDB Cluster Data Nodes Online: Detailed Example” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --num-slices </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --number-char-cols </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --number-int-cols </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --number-of-queries </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-O"> </a> <h3 class="title"> O </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -O </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -o </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="disk-issues.html" title="10.12.1 Optimizing Disk I/O"> Section 10.12.1, “Optimizing Disk I/O” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --oci-config-file </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --offset </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --old </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --oldpackage </h3> <dl> <dt> <a class="xref" href="linux-installation-rpm.html" title="2.5.4 Installing MySQL on Linux Using RPM Packages from Oracle"> Section 2.5.4, “Installing MySQL on Linux Using RPM Packages from Oracle” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ON </h3> <dl> <dt> <a class="xref" href="multiple-tables.html" title="5.3.4.9 Using More Than one Table"> Section 5.3.4.9, “Using More Than one Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --one-database </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --online-migration </h3> <dl> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --only-print </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --opbatch </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --opbytes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --open-files-limit </h3> <dl> <dt> <a class="xref" href="not-enough-file-handles.html" title="B.3.2.16 File Not Found and Similar Errors"> Section B.3.2.16, “File Not Found and Similar Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --opt </h3> <dl> <dt> <a class="xref" href="optimizing-innodb-bulk-data-loading.html" title="10.5.5 Bulk Data Loading for InnoDB Tables"> Section 10.5.5, “Bulk Data Loading for InnoDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --opt_name </h3> <dl> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --optimize </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> options </h3> <dl> <dt> <a class="xref" href="gis-wkb-functions.html" title="14.16.4 Functions That Create Geometry Values from WKB Values"> Section 14.16.4, “Functions That Create Geometry Values from WKB Values” </a> </dt> <dd> </dd> <dt> <a class="xref" href="gis-wkt-functions.html" title="14.16.3 Functions That Create Geometry Values from WKT Values"> Section 14.16.3, “Functions That Create Geometry Values from WKT Values” </a> </dt> <dd> </dd> <dt> <a class="xref" href="gis-format-conversion-functions.html" title="14.16.6 Geometry Format Conversion Functions"> Section 14.16.6, “Geometry Format Conversion Functions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --order </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --order-by-primary </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --os-load </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_bsp_max_export_batch_size </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_bsp_max_queue_size </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_bsp_schedule_delay </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_certificates </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_client_certificates </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_client_key </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_compression </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_endpoint </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_headers </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_protocol </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_exporter_otlp_traces_timeout </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_log_level </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> otel_resource_attributes </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --out-dir </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --out-file </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --output-as-version </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --output-type </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --output-workers </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-P"> </a> <h3 class="title"> P </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -P </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-backup-using-management-client.html" title="25.6.8.2 Using The NDB Cluster Management Client to Create a Backup"> Section 25.6.8.2, “Using The NDB Cluster Management Client to Create a Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -p </h3> <dl> <dt> <a class="xref" href="user-names.html" title="8.2.1 Account User Names and Passwords"> Section 8.2.1, “Account User Names and Passwords” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-online-add-node-example.html" title="25.6.7.3 Adding NDB Cluster Data Nodes Online: Detailed Example"> Section 25.6.7.3, “Adding NDB Cluster Data Nodes Online: Detailed Example” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-security-user.html" title="8.1.2.1 End-User Guidelines for Password Security"> Section 8.1.2.1, “End-User Guidelines for Password Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="partitioning-key.html" title="26.2.5 KEY Partitioning"> Section 26.2.5, “KEY Partitioning” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-too-long.html" title="B.3.2.4 Password Fails When Entered Interactively"> Section B.3.2.4, “Password Fails When Entered Interactively” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-command-line.html" title="2.3.3.6 Starting MySQL from the Windows Command Line"> Section 2.3.3.6, “Starting MySQL from the Windows Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-testing.html" title="2.3.3.9 Testing The MySQL Installation"> Section 2.3.3.9, “Testing The MySQL Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="testing-server.html" title="2.9.3 Testing the Server"> Section 2.9.3, “Testing the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo-cluster-operations.html" title="25.6.17.8 The ndbinfo cluster_operations Table"> Section 25.6.17.8, “The ndbinfo cluster_operations Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbinfo-server-operations.html" title="25.6.17.55 The ndbinfo server_operations Table"> Section 25.6.17.55, “The ndbinfo server_operations Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrading.html" title="Chapter 3 Upgrading MySQL"> Chapter 3, <i> Upgrading MySQL </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-upgrading.html" title="3.11 Upgrading MySQL on Windows"> Section 3.11, “Upgrading MySQL on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-postinstallation.html" title="2.3.5 Windows Postinstallation Procedures"> Section 2.3.5, “Windows Postinstallation Procedures” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --page </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --page-type-dump </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --page-type-summary </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pagecnt </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pager </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pagesize </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --parallelism </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> parallelism </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --parsable </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --passphrase </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --passwd </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --password </h3> <dl> <dt> <a class="xref" href="user-names.html" title="8.2.1 Account User Names and Passwords"> Section 8.2.1, “Account User Names and Passwords” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-security-user.html" title="8.1.2.1 End-User Guidelines for Password Security"> Section 8.1.2.1, “End-User Guidelines for Password Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-strategy-example.html" title="9.3 Example Backup and Recovery Strategy"> Section 9.3, “Example Backup and Recovery Strategy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multifactor-authentication.html" title="8.2.18 Multifactor Authentication"> Section 8.2.18, “Multifactor Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-too-long.html" title="B.3.2.4 Password Fails When Entered Interactively"> Section B.3.2.4, “Password Fails When Entered Interactively” </a> </dt> <dd> </dd> <dt> <a class="xref" href="test-pluggable-authentication.html" title="8.4.1.12 Test Pluggable Authentication"> Section 8.4.1.12, “Test Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> password </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --password1 </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multifactor-authentication.html" title="8.2.18 Multifactor Authentication"> Section 8.2.18, “Multifactor Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --password2 </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multifactor-authentication.html" title="8.2.18 Multifactor Authentication"> Section 8.2.18, “Multifactor Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --password3 </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multifactor-authentication.html" title="8.2.18 Multifactor Authentication"> Section 8.2.18, “Multifactor Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pending </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-consumer_name </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-stages-current </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-stages-history </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-stages-history-long </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-statements-cpu </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-statements-current </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-statements-history </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-statements-history-long </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-transactions-current </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-transactions-history </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-transactions-history-long </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-waits-current </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-waits-history </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-events-waits-history-long </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-global-instrumentation </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-statements-digest </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-consumer-thread-instrumentation </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-instrument </h3> <dl> <dt> <a class="xref" href="performance-schema-options.html" title="29.14 Performance Schema Command Options"> Section 29.14, “Performance Schema Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-startup-configuration.html" title="29.3 Performance Schema Startup Configuration"> Section 29.3, “Performance Schema Startup Configuration” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance-schema-xxx </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance_schema_max_mutex_classes </h3> <dl> <dt> <a class="xref" href="performance-schema-status-monitoring.html" title="29.7 Performance Schema Status Monitoring"> Section 29.7, “Performance Schema Status Monitoring” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --performance_schema_max_mutex_instances </h3> <dl> <dt> <a class="xref" href="performance-schema-status-monitoring.html" title="29.7 Performance Schema Status Monitoring"> Section 29.7, “Performance Schema Status Monitoring” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pid-file </h3> <dl> <dt> <a class="xref" href="error-log-destination-configuration.html" title="7.4.2.2 Default Error Log Destination Configuration"> Section 7.4.2.2, “Default Error Log Destination Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="error-log-configuration.html" title="7.4.2.1 Error Log Configuration"> Section 7.4.2.1, “Error Log Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> pid-file </h3> <dl> <dt> <a class="xref" href="mysql-server.html" title="6.3.3 mysql.server — MySQL Server Startup Script"> Section 6.3.3, “mysql.server — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pipe </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-testing.html" title="2.3.3.9 Testing The MySQL Installation"> Section 2.3.3.9, “Testing The MySQL Installation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-authentication-kerberos-client-mode </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-authentication-webauthn-client-preserve-privacy </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="webauthn-pluggable-authentication.html" title="8.4.1.11 WebAuthn Pluggable Authentication"> Section 8.4.1.11, “WebAuthn Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-dir </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ldap-pluggable-authentication.html" title="8.4.1.7 LDAP Pluggable Authentication"> Section 8.4.1.7, “LDAP Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-innodb-file-per-table </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-load </h3> <dl> <dt> <a class="xref" href="audit-log-reference.html" title="8.4.5.11 Audit Log Reference"> Section 8.4.5.11, “Audit Log Reference” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ddl-rewriter-options.html" title="7.6.5.2 ddl_rewriter Plugin Options"> Section 7.6.5.2, “ddl_rewriter Plugin Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="install-plugin.html" title="15.7.4.4 INSTALL PLUGIN Statement"> Section 15.7.4.4, “INSTALL PLUGIN Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-options.html" title="8.4.4.15 Keyring Command Options"> Section 8.4.4.15, “Keyring Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-plugin-installation.html" title="8.4.4.3 Keyring Plugin Installation"> Section 8.4.4.3, “Keyring Plugin Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="validate-password-transitioning.html" title="8.4.3.3 Transitioning to the Password Validation Component"> Section 8.4.3.3, “Transitioning to the Password Validation Component” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-load-add </h3> <dl> <dt> <a class="xref" href="audit-log-reference.html" title="8.4.5.11 Audit Log Reference"> Section 8.4.5.11, “Audit Log Reference” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ddl-rewriter-options.html" title="7.6.5.2 ddl_rewriter Plugin Options"> Section 7.6.5.2, “ddl_rewriter Plugin Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> <dt> <a class="xref" href="clone-plugin-installation.html" title="7.6.7.1 Installing the Clone Plugin"> Section 7.6.7.1, “Installing the Clone Plugin” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-plugin-installation.html" title="8.4.4.3 Keyring Plugin Installation"> Section 8.4.4.3, “Keyring Plugin Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ldap-pluggable-authentication.html" title="8.4.1.7 LDAP Pluggable Authentication"> Section 8.4.1.7, “LDAP Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="no-login-pluggable-authentication.html" title="8.4.1.9 No-Login Pluggable Authentication"> Section 8.4.1.9, “No-Login Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="pam-pluggable-authentication.html" title="8.4.1.5 PAM Pluggable Authentication"> Section 8.4.1.5, “PAM Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="validate-password-options-variables.html" title="8.4.3.2 Password Validation Options and Variables"> Section 8.4.3.2, “Password Validation Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="socket-pluggable-authentication.html" title="8.4.1.10 Socket Peer-Credential Pluggable Authentication"> Section 8.4.1.10, “Socket Peer-Credential Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="test-pluggable-authentication.html" title="8.4.1.12 Test Pluggable Authentication"> Section 8.4.1.12, “Test Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="thread-pool-installation.html" title="7.6.3.2 Thread Pool Installation"> Section 7.6.3.2, “Thread Pool Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="validate-password-transitioning.html" title="8.4.3.3 Transitioning to the Password Validation Component"> Section 8.4.3.3, “Transitioning to the Password Validation Component” </a> </dt> <dd> </dd> <dt> <a class="xref" href="webauthn-pluggable-authentication.html" title="8.4.1.11 WebAuthn Pluggable Authentication"> Section 8.4.1.11, “WebAuthn Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-pluggable-authentication.html" title="8.4.1.6 Windows Pluggable Authentication"> Section 8.4.1.6, “Windows Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> plugin-load-add </h3> <dl> <dt> <a class="xref" href="group-replication-configuring-instances.html" title="20.2.1.2 Configuring an Instance for Group Replication"> Section 20.2.1.2, “Configuring an Instance for Group Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="clone-plugin-installation.html" title="7.6.7.1 Installing the Clone Plugin"> Section 7.6.7.1, “Installing the Clone Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-sql-mode </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin-xxx </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin_dir </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugin_name </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> PLUGIN_OPT_ALLOW_EARLY </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --plugindir </h3> <dl> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --polltimeout </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --port </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-server-clients.html" title="7.8.4 Using Client Programs in a Multiple-Server Environment"> Section 7.8.4, “Using Client Programs in a Multiple-Server Environment” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> port </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --port-open-timeout </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --post-query </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --post-system </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pre-query </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pre-system </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> PREFIX </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-linux-source.html" title="25.3.1.4 Building NDB Cluster from Source on Linux"> Section 25.3.1.4, “Building NDB Cluster from Source on Linux” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --preserve-trailing-spaces </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --pretty </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-data </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-defaults </h3> <dl> <dt> <a class="xref" href="option-file-options.html" title="6.2.2.3 Command-Line Options that Affect Option-File Handling"> Section 6.2.2.3, “Command-Line Options that Affect Option-File Handling” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-troubleshooting.html" title="3.13 Upgrade Troubleshooting"> Section 3.13, “Upgrade Troubleshooting” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-full-config </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-header-words </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-log </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-meta </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-restored-rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-rows-per-page </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> print-sql-log </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print-table-metadata </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --print_* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --progress-frequency </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --promote </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --promote-attributes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --prompt </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --protocol </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="transport-protocols.html" title="6.2.7 Connection Transport Protocols"> Section 6.2.7, “Connection Transport Protocols” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-server-first-start.html" title="2.3.3.5 Starting the Server for the First Time"> Section 2.3.3.5, “Starting the Server for the First Time” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-testing.html" title="2.3.3.9 Testing The MySQL Installation"> Section 2.3.3.9, “Testing The MySQL Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="features.html" title="1.2.2 The Main Features of MySQL"> Section 1.2.2, “The Main Features of MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-server-clients.html" title="7.8.4 Using Client Programs in a Multiple-Server Environment"> Section 7.8.4, “Using Client Programs in a Multiple-Server Environment” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-Q"> </a> <h3 class="title"> Q </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -Q </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -q </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --query </h3> <dl> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --query-all </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --quick </h3> <dl> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> Section 6.5.1, “mysql — The MySQL Command-Line Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="out-of-memory.html" title="B.3.2.6 Out of memory"> Section B.3.2.6, “Out of memory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-crash-recovery.html" title="9.6.1 Using myisamchk for Crash Recovery"> Section 9.6.1, “Using myisamchk for Crash Recovery” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --quiet </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --quote-names </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-R"> </a> <h3 class="title"> R </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -R </h3> <dl> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -r </h3> <dl> <dt> <a class="xref" href="myisam-repair.html" title="9.6.3 How to Repair MyISAM Tables"> Section 9.6.3, “How to Repair MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="linux-installation-rpm.html" title="2.5.4 Installing MySQL on Linux Using RPM Packages from Oracle"> Section 2.5.4, “Installing MySQL on Linux Using RPM Packages from Oracle” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-installation.html" title="2.2 Installing MySQL on Unix/Linux Using Generic Binaries"> Section 2.2, “Installing MySQL on Unix/Linux Using Generic Binaries” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --raw </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-failover.html" title="19.1.3.5 Using GTIDs for Failover and Scaleout"> Section 19.1.3.5, “Using GTIDs for Failover and Scaleout” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --read-from-remote-master </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --read-from-remote-server </h3> <dl> <dt> <a class="xref" href="replication-binlog-encryption.html" title="19.3.2 Encrypting Binary Log Files and Relay Log Files"> Section 19.3.2, “Encrypting Binary Log Files and Relay Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-binlog.html" title="9.5.1 Point-in-Time Recovery Using Binary Log"> Section 9.5.1, “Point-in-Time Recovery Using Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-server-id.html" title="6.6.9.4 Specifying the mysqlbinlog Server ID"> Section 6.6.9.4, “Specifying the mysqlbinlog Server ID” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-failover.html" title="19.1.3.5 Using GTIDs for Failover and Scaleout"> Section 19.1.3.5, “Using GTIDs for Failover and Scaleout” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --read-from-remote-source </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-failover.html" title="19.1.3.5 Using GTIDs for Failover and Scaleout"> Section 19.1.3.5, “Using GTIDs for Failover and Scaleout” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --read-only </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rebuild-indexes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --reconnect </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --recover </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --register-factor </h3> <dl> <dt> <a class="xref" href="alter-user.html" title="15.7.1.1 ALTER USER Statement"> Section 15.7.1.1, “ALTER USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="webauthn-pluggable-authentication.html" title="8.4.1.11 WebAuthn Pluggable Authentication"> Section 8.4.1.11, “WebAuthn Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rejects </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relative </h3> <dl> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log </h3> <dl> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-enterprise-backup.html" title="20.5.6 Using MySQL Enterprise Backup with Group Replication"> Section 20.5.6, “Using MySQL Enterprise Backup with Group Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-index </h3> <dl> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-info-file </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-info-repository </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-purge </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-recovery </h3> <dl> <dt> <a class="xref" href="replication-solutions-unexpected-replica-halt.html" title="19.4.2 Handling an Unexpected Halt of a Replica"> Section 19.4.2, “Handling an Unexpected Halt of a Replica” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-transaction-inconsistencies.html" title="19.5.1.34 Replication and Transaction Inconsistencies"> Section 19.5.1.34, “Replication and Transaction Inconsistencies” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-shutdown.html" title="7.1.19 The Server Shutdown Process"> Section 7.1.19, “The Server Shutdown Process” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --relay-log-space-limit </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --reload </h3> <dl> <dt> <a class="xref" href="mysql-cluster-online-add-node-basics.html" title="25.6.7.2 Adding NDB Cluster Data Nodes Online: Basic procedure"> Section 25.6.7.2, “Adding NDB Cluster Data Nodes Online: Basic procedure” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-online-add-node-example.html" title="25.6.7.3 Adding NDB Cluster Data Nodes Online: Detailed Example"> Section 25.6.7.3, “Adding NDB Cluster Data Nodes Online: Detailed Example” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-first-start.html" title="25.3.4 Initial Startup of NDB Cluster"> Section 25.3.4, “Initial Startup of NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-initial-start.html" title="25.3.2.3 Initial Startup of NDB Cluster on Windows"> Section 25.3.2.3, “Initial Startup of NDB Cluster on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-multiple-nodes.html" title="25.2.7.10 Limitations Relating to Multiple NDB Cluster Nodes"> Section 25.2.7.10, “Limitations Relating to Multiple NDB Cluster Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-config-file.html" title="25.4.3 NDB Cluster Configuration Files"> Section 25.4.3, “NDB Cluster Configuration Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tde-setup.html" title="25.6.14.1 NDB File System Encryption Setup and Usage"> Section 25.6.14.1, “NDB File System Encryption Setup and Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-rolling-restart.html" title="25.6.5 Performing a Rolling Restart of an NDB Cluster"> Section 25.6.5, “Performing a Rolling Restart of an NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --remap-column </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --remote-CA-host </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --remote-exec-path </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --remote-openssl </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --remove </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-windows-service.html" title="25.3.2.4 Installing NDB Cluster Processes as Windows Services"> Section 25.3.2.4, “Installing NDB Cluster Processes as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-windows-services.html" title="7.8.2.2 Starting Multiple MySQL Instances as Windows Services"> Section 7.8.2.2, “Starting Multiple MySQL Instances as Windows Services” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --repair </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replace </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replace-by </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-net-timeout </h3> <dl> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-parallel-workers </h3> <dl> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-preserve-commit-order </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-skip-counter </h3> <dl> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-skip-errors </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-failover.html" title="25.7.8 Implementing Failover with NDB Cluster Replication"> Section 25.7.8, “Implementing Failover with NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-errors.html" title="19.5.1.29 Replica Errors During Replication"> Section 19.5.1.29, “Replica Errors During Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replica-sql-verify-checksum </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-* </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-channel-based-filters.html" title="19.2.5.4 Replication Channel Based Filters"> Section 19.2.5.4, “Replication Channel Based Filters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-replication-applier-filters-table.html" title="29.12.11.3 The replication_applier_filters Table"> Section 29.12.11.3, “The replication_applier_filters Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-replication-applier-global-filters-table.html" title="29.12.11.4 The replication_applier_global_filters Table"> Section 29.12.11.4, “The replication_applier_global_filters Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-*-db </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="stored-program-restrictions.html" title="27.8 Restrictions on Stored Programs"> Section 27.8, “Restrictions on Stored Programs” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-do-* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-do-db </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-db-options.html" title="19.2.5.1 Evaluation of Database-Level Replication and Binary Logging Options"> Section 19.2.5.1, “Evaluation of Database-Level Replication and Binary Logging Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-solutions-partitioning.html" title="19.4.6 Replicating Different Databases to Different Replicas"> Section 19.4.6, “Replicating Different Databases to Different Replicas” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-reserved-words.html" title="19.5.1.26 Replication and Reserved Words"> Section 19.5.1.26, “Replication and Reserved Words” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-temptables.html" title="19.5.1.31 Replication and Temporary Tables"> Section 19.5.1.31, “Replication and Temporary Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-channel-based-filters.html" title="19.2.5.4 Replication Channel Based Filters"> Section 19.2.5.4, “Replication Channel Based Filters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> Section 15.3.1, “START TRANSACTION, COMMIT, and ROLLBACK Statements” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="xa-statements.html" title="15.3.8.1 XA Transaction SQL Statements"> Section 15.3.8.1, “XA Transaction SQL Statements” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-do-db:channel_1:db_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-do-table </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-table-options.html" title="19.2.5.2 Evaluation of Table-Level Replication Options"> Section 19.2.5.2, “Evaluation of Table-Level Replication Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-examples.html" title="19.2.5.3 Interactions Between Replication Filtering Options"> Section 19.2.5.3, “Interactions Between Replication Filtering Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-reserved-words.html" title="19.5.1.26 Replication and Reserved Words"> Section 19.5.1.26, “Replication and Reserved Words” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-temptables.html" title="19.5.1.31 Replication and Temporary Tables"> Section 19.5.1.31, “Replication and Temporary Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="blackhole-storage-engine.html" title="18.6 The BLACKHOLE Storage Engine"> Section 18.6, “The BLACKHOLE Storage Engine” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-do-table:channel_1:db_name.tbl_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-ignore-* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-ignore-db </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-db-options.html" title="19.2.5.1 Evaluation of Database-Level Replication and Binary Logging Options"> Section 19.2.5.1, “Evaluation of Database-Level Replication and Binary Logging Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-examples.html" title="19.2.5.3 Interactions Between Replication Filtering Options"> Section 19.2.5.3, “Interactions Between Replication Filtering Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-reserved-words.html" title="19.5.1.26 Replication and Reserved Words"> Section 19.5.1.26, “Replication and Reserved Words” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-channel-based-filters.html" title="19.2.5.4 Replication Channel Based Filters"> Section 19.2.5.4, “Replication Channel Based Filters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> Section 15.3.1, “START TRANSACTION, COMMIT, and ROLLBACK Statements” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="xa-statements.html" title="15.3.8.1 XA Transaction SQL Statements"> Section 15.3.8.1, “XA Transaction SQL Statements” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-ignore-db:channel_1:db_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-ignore-table </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-table-options.html" title="19.2.5.2 Evaluation of Table-Level Replication Options"> Section 19.2.5.2, “Evaluation of Table-Level Replication Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-reserved-words.html" title="19.5.1.26 Replication and Reserved Words"> Section 19.5.1.26, “Replication and Reserved Words” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-temptables.html" title="19.5.1.31 Replication and Temporary Tables"> Section 19.5.1.31, “Replication and Temporary Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="reset-replica.html" title="15.4.2.3 RESET REPLICA Statement"> Section 15.4.2.3, “RESET REPLICA Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="blackhole-storage-engine.html" title="18.6 The BLACKHOLE Storage Engine"> Section 18.6, “The BLACKHOLE Storage Engine” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-ignore-table:channel_1:db_name.tbl_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-rewrite-db </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-same-server-id </h3> <dl> <dt> <a class="xref" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> Section 15.4.2.2, “CHANGE REPLICATION SOURCE TO Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-mode-change-online-disable-gtids.html" title="19.1.4.3 Disabling GTID Transactions Online"> Section 19.1.4.3, “Disabling GTID Transactions Online” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options.html" title="19.1.6 Replication and Binary Logging Options and Variables"> Section 19.1.6, “Replication and Binary Logging Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-wild-*-table </h3> <dl> <dt> <a class="xref" href="replication-rules-channel-based-filters.html" title="19.2.5.4 Replication Channel Based Filters"> Section 19.2.5.4, “Replication Channel Based Filters” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-wild-do-table </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-table-options.html" title="19.2.5.2 Evaluation of Table-Level Replication Options"> Section 19.2.5.2, “Evaluation of Table-Level Replication Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules.html" title="19.2.5 How Servers Evaluate Replication Filtering Rules"> Section 19.2.5, “How Servers Evaluate Replication Filtering Rules” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-solutions-partitioning.html" title="19.4.6 Replicating Different Databases to Different Replicas"> Section 19.4.6, “Replicating Different Databases to Different Replicas” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-temptables.html" title="19.5.1.31 Replication and Temporary Tables"> Section 19.5.1.31, “Replication and Temporary Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-channel-based-filters.html" title="19.2.5.4 Replication Channel Based Filters"> Section 19.2.5.4, “Replication Channel Based Filters” </a> </dt> <dd> </dd> <dt> <a class="xref" href="stored-program-restrictions.html" title="27.8 Restrictions on Stored Programs"> Section 27.8, “Restrictions on Stored Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-wild-do-table:channel_1:db_name.tbl_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-wild-ignore-table </h3> <dl> <dt> <a class="xref" href="change-replication-filter.html" title="15.4.2.1 CHANGE REPLICATION FILTER Statement"> Section 15.4.2.1, “CHANGE REPLICATION FILTER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rules-table-options.html" title="19.2.5.2 Evaluation of Table-Level Replication Options"> Section 19.2.5.2, “Evaluation of Table-Level Replication Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-issues.html" title="25.7.3 Known Issues in NDB Cluster Replication"> Section 25.7.3, “Known Issues in NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-replication.html" title="A.14 MySQL 8.4 FAQ: Replication"> Section A.14, “MySQL 8.4 FAQ: Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-temptables.html" title="19.5.1.31 Replication and Temporary Tables"> Section 19.5.1.31, “Replication and Temporary Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replica-status.html" title="15.7.7.35 SHOW REPLICA STATUS Statement"> Section 15.7.7.35, “SHOW REPLICA STATUS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --replicate-wild-ignore:channel_1:db_name.tbl_name </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> replication-ignore-table </h3> <dl> <dt> <a class="xref" href="replication-features-views.html" title="19.5.1.40 Replication and Views"> Section 19.5.1.40, “Replication and Views” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --report-host </h3> <dl> <dt> <a class="xref" href="replication-administration-status.html" title="19.1.7.1 Checking Replication Status"> Section 19.1.7.1, “Checking Replication Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-frequently-asked-questions.html" title="20.10 Frequently Asked Questions"> Section 20.10, “Frequently Asked Questions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --report-password </h3> <dl> <dt> <a class="xref" href="replication-options-source.html" title="19.1.6.2 Replication Source Options and Variables"> Section 19.1.6.2, “Replication Source Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --report-port </h3> <dl> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --report-user </h3> <dl> <dt> <a class="xref" href="replication-options-source.html" title="19.1.6.2 Replication Source Options and Variables"> Section 19.1.6.2, “Replication Source Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --require-row-format </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-privilege-checks.html" title="19.3.3 Replication Privilege Checks"> Section 19.3.3, “Replication Privilege Checks” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --restart </h3> <dl> <dt> <a class="xref" href="docker-mysql-getting-started.html" title="2.5.6.1 Basic Steps for MySQL Server Deployment with Docker"> Section 2.5.6.1, “Basic Steps for MySQL Server Deployment with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --restore-data </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --restore-epoch </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-backups.html" title="25.7.9 NDB Cluster Backups With NDB Cluster Replication"> Section 25.7.9, “NDB Cluster Backups With NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-pitr.html" title="25.7.9.2 Point-In-Time Recovery Using NDB Cluster Replication"> Section 25.7.9.2, “Point-In-Time Recovery Using NDB Cluster Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --restore-meta </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --restore-privilege-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --result-file </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --resume </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --retries </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rewrite-database </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rewrite-db </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rm </h3> <dl> <dt> <a class="xref" href="docker-mysql-more-topics.html" title="2.5.6.2 More Topics on Deploying MySQL Server with Docker"> Section 2.5.6.2, “More Topics on Deploying MySQL Server with Docker” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rotate-CA </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --routines </h3> <dl> <dt> <a class="xref" href="data-dictionary-usage-differences.html" title="16.7 Data Dictionary Usage Differences"> Section 16.7, “Data Dictionary Usage Differences” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-definition-data-dumps.html" title="9.4.5.4 Dumping Table Definitions and Content Separately"> Section 9.4.5.4, “Dumping Table Definitions and Content Separately” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-binary-package.html" title="3.7 Upgrading MySQL Binary or Package-based Installations on Unix/Linux"> Section 3.7, “Upgrading MySQL Binary or Package-based Installations on Unix/Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rowbatch </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rowbytes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rowid </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rowid-file </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-S"> </a> <h3 class="title"> S </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -S </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -s </h3> <dl> <dt> <a class="xref" href="myisam-check.html" title="9.6.2 How to Check MyISAM Tables for Errors"> Section 9.6.2, “How to Check MyISAM Tables for Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-repair.html" title="9.6.3 How to Repair MyISAM Tables"> Section 9.6.3, “How to Repair MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="linux-installation-rpm.html" title="2.5.4 Installing MySQL on Linux Using RPM Packages from Oracle"> Section 2.5.4, “Installing MySQL on Linux Using RPM Packages from Oracle” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-installation.html" title="2.2 Installing MySQL on Unix/Linux Using Generic Binaries"> Section 2.2, “Installing MySQL on Unix/Linux Using Generic Binaries” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-maintenance-schedule.html" title="9.6.5 Setting Up a MyISAM Table Maintenance Schedule"> Section 9.6.5, “Setting Up a MyISAM Table Maintenance Schedule” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --safe-recover </h3> <dl> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --safe-updates </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --safe-user-create </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --savequeries </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-size-pl.html" title="25.5.29 ndb_size.pl — NDBCLUSTER Size Requirement Estimator"> Section 25.5.29, “ndb_size.pl — NDBCLUSTER Size Requirement Estimator” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --schedule </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --secure-auth </h3> <dl> <dt> <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --select-limit </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --server-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-general.html" title="25.7.2 General Requirements for NDB Cluster Replication"> Section 25.7.2, “General Requirements for NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --server-id-bits </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --server-public-key-path </h3> <dl> <dt> <a class="xref" href="caching-sha2-pluggable-authentication.html" title="8.4.1.2 Caching SHA-2 Pluggable Authentication"> Section 8.4.1.2, “Caching SHA-2 Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="sha256-pluggable-authentication.html" title="8.4.1.3 SHA-256 Pluggable Authentication"> Section 8.4.1.3, “SHA-256 Pluggable Authentication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> service-startup-timeout </h3> <dl> <dt> <a class="xref" href="mysql-server.html" title="6.3.3 mysql.server — MySQL Server Startup Script"> Section 6.3.3, “mysql.server — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --set-auto-increment </h3> <dl> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --set-charset </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --set-collation </h3> <dl> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --set-gtid-purged </h3> <dl> <dt> <a class="xref" href="copying-databases.html" title="3.15 Copying MySQL Databases to Another Machine"> Section 3.15, “Copying MySQL Databases to Another Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-mysqldump" title="19.1.2.5.1 Creating a Data Snapshot Using mysqldump"> Section 19.1.2.5.1, “Creating a Data Snapshot Using mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-sql-format.html" title="9.4.1 Dumping Data in SQL Format with mysqldump"> Section 9.4.1, “Dumping Data in SQL Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-multi-source-provision-replica.html" title="19.1.5.2 Provisioning a Multi-Source Replica for GTID-Based Replication"> Section 19.1.5.2, “Provisioning a Multi-Source Replica for GTID-Based Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-functions.html" title="19.1.3.8 Stored Function Examples to Manipulate GTIDs"> Section 19.1.3.8, “Stored Function Examples to Manipulate GTIDs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-failover.html" title="19.1.3.5 Using GTIDs for Failover and Scaleout"> Section 19.1.3.5, “Using GTIDs for Failover and Scaleout” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --shared-memory-base-name </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-server-clients.html" title="7.8.4 Using Client Programs in a Multiple-Server Environment"> Section 7.8.4, “Using Client Programs in a Multiple-Server Environment” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --shell </h3> <dl> <dt> <a class="xref" href="linux-installation-rpm.html" title="2.5.4 Installing MySQL on Linux Using RPM Packages from Oracle"> Section 2.5.4, “Installing MySQL on Linux Using RPM Packages from Oracle” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --short-form </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show </h3> <dl> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-create-skip-secondary-engine </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-ignored-rows </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-replica-auth-info </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-source.html" title="19.1.6.2 Replication Source Options and Variables"> Section 19.1.6.2, “Replication Source Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-replicas.html" title="15.7.7.36 SHOW REPLICAS Statement"> Section 15.7.7.36, “SHOW REPLICAS Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-slave-auth-info </h3> <dl> <dt> <a class="xref" href="replication-options-source.html" title="19.1.6.2 Replication Source Options and Variables"> Section 19.1.6.2, “Replication Source Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-table-type </h3> <dl> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-temp-status </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --show-warnings </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --shutdown-timeout </h3> <dl> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sigint-ignore </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="unix-signal-response.html" title="6.10 Unix Signal Handling in MySQL"> Section 6.10, “Unix Signal Handling in MySQL” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sign </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --silent </h3> <dl> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-maintenance-schedule.html" title="9.6.5 Setting Up a MyISAM Table Maintenance Schedule"> Section 9.6.5, “Setting Up a MyISAM Table Maintenance Schedule” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --single-transaction </h3> <dl> <dt> <a class="xref" href="backup-methods.html" title="9.2 Database Backup Methods"> Section 9.2, “Database Backup Methods” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-policy.html" title="9.3.1 Establishing a Backup Policy"> Section 9.3.1, “Establishing a Backup Policy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-backup.html" title="17.18.1 InnoDB Backup"> Section 17.18.1, “InnoDB Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-purge-configuration.html" title="17.8.9 Purge Configuration"> Section 17.8.9, “Purge Configuration” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --single-user </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-modifiers.html" title="6.2.2.4 Program Option Modifiers"> Section 6.2.2.4, “Program Option Modifiers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-add-drop-table </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-add-locks </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-auto-rehash </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-binary-as-hex </h3> <dl> <dt> <a class="xref" href="encryption-functions.html" title="14.13 Encryption and Compression Functions"> Section 14.13, “Encryption and Compression Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-binlog </h3> <dl> <dt> <a class="xref" href="group-replication-enterprise-backup.html" title="20.5.6 Using MySQL Enterprise Backup with Group Replication"> Section 20.5.6, “Using MySQL Enterprise Backup with Group Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-broken-objects </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-character-set-client-handshake </h3> <dl> <dt> <a class="xref" href="faqs-cjk.html" title="A.11 MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets"> Section A.11, “MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-color </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-colors </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-column-names </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-comments </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-config-cache </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-config-file </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-data </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-database </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-disable-keys </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-dump-date </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-engine_name </h3> <dl> <dt> <a class="xref" href="show-engines.html" title="15.7.7.17 SHOW ENGINES Statement"> Section 15.7.7.17, “SHOW ENGINES Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="information-schema-engines-table.html" title="28.3.13 The INFORMATION_SCHEMA ENGINES Table"> Section 28.3.13, “The INFORMATION_SCHEMA ENGINES Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-events </h3> <dl> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-extended-insert </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-external-locking </h3> <dl> <dt> <a class="xref" href="external-locking.html" title="10.11.5 External Locking"> Section 10.11.5, “External Locking” </a> </dt> <dd> </dd> <dt> <a class="xref" href="general-thread-states.html" title="10.14.3 General Thread States"> Section 10.14.3, “General Thread States” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="crashing.html" title="B.3.3.3 What to Do If MySQL Keeps Crashing"> Section B.3.3.3, “What to Do If MySQL Keeps Crashing” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-federated </h3> <dl> <dt> <a class="xref" href="replication-solutions-diffengines.html" title="19.4.4 Using Replication with Different Source and Replica Storage Engines"> Section 19.4.4, “Using Replication with Different Source and Replica Storage Engines” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-generated-invisible-primary-key </h3> <dl> <dt> <a class="xref" href="create-table-gipks.html" title="15.1.20.11 Generated Invisible Primary Keys"> Section 15.1.20.11, “Generated Invisible Primary Keys” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-grant-tables </h3> <dl> <dt> <a class="xref" href="create-function-loadable.html" title="15.7.4.1 CREATE FUNCTION Statement for Loadable Functions"> Section 15.7.4.1, “CREATE FUNCTION Statement for Loadable Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="events-configuration.html" title="27.4.2 Event Scheduler Configuration"> Section 27.4.2, “Event Scheduler Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="flush.html" title="15.7.8.3 FLUSH Statement"> Section 15.7.8.3, “FLUSH Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="install-component.html" title="15.7.4.3 INSTALL COMPONENT Statement"> Section 15.7.4.3, “INSTALL COMPONENT Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="install-plugin.html" title="15.7.4.4 INSTALL PLUGIN Statement"> Section 15.7.4.4, “INSTALL PLUGIN Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="component-loading.html" title="7.5.1 Installing and Uninstalling Components"> Section 7.5.1, “Installing and Uninstalling Components” </a> </dt> <dd> </dd> <dt> <a class="xref" href="function-loading.html" title="7.7.1 Installing and Uninstalling Loadable Functions"> Section 7.7.1, “Installing and Uninstalling Loadable Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="password-management.html" title="8.2.15 Password Management"> Section 8.2.15, “Password Management” </a> </dt> <dd> </dd> <dt> <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="resetting-permissions.html#resetting-permissions-generic" title="B.3.3.2.3 Resetting the Root Password: Generic Instructions"> Section B.3.3.2.3, “Resetting the Root Password: Generic Instructions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="information-schema-user-attributes-table.html" title="28.3.45 The INFORMATION_SCHEMA USER_ATTRIBUTES Table"> Section 28.3.45, “The INFORMATION_SCHEMA USER_ATTRIBUTES Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="system-schema.html" title="7.3 The mysql System Schema"> Section 7.3, “The mysql System Schema” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privilege-changes.html" title="8.2.13 When Privilege Changes Take Effect"> Section 8.2.13, “When Privilege Changes Take Effect” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-graphs </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-gtids </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-innodb </h3> <dl> <dt> <a class="xref" href="faqs-replication.html" title="A.14 MySQL 8.4 FAQ: Replication"> Section A.14, “MySQL 8.4 FAQ: Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-innodb-adaptive-hash-index </h3> <dl> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-kill-mysqld </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-line-numbers </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-lock-tables </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-log-bin </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-howto-slavebaseconfig.html" title="19.1.2.2 Setting the Replica Configuration"> Section 19.1.2.2, “Setting the Replica Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-howto-masterbaseconfig.html" title="19.1.2.1 Setting the Replication Source Configuration"> Section 19.1.2.1, “Setting the Replication Source Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-howto.html" title="19.1.3.4 Setting Up Replication Using GTIDs"> Section 19.1.3.4, “Setting Up Replication Using GTIDs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="stored-programs-logging.html" title="27.7 Stored Program Binary Logging"> Section 27.7, “Stored Program Binary Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-problems.html" title="19.5.4 Troubleshooting Replication"> Section 19.5.4, “Troubleshooting Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-mysqlx </h3> <dl> <dt> <a class="xref" href="x-plugin-disabling.html" title="22.5.2 Disabling X Plugin"> Section 22.5.2, “Disabling X Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-named-commands </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-ndb-optimized-node-selection </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-ndbcluster </h3> <dl> <dt> <a class="xref" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld" title="25.4.3.9.1 MySQL Server Options for NDB Cluster"> Section 25.4.3.9.1, “MySQL Server Options for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-option-tables.html" title="25.4.2.5 NDB Cluster mysqld Option and Variable Reference"> Section 25.4.2.5, “NDB Cluster mysqld Option and Variable Reference” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-network-timeout </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-new </h3> <dl> <dt> <a class="xref" href="debugging-server.html" title="7.9.1 Debugging a MySQL Server"> Section 7.9.1, “Debugging a MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> Section 15.7.3.4, “OPTIMIZE TABLE Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-nodegroup </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-error-reporter.html" title="25.5.12 ndb_error_reporter — NDB Error-Reporting Utility"> Section 25.5.12, “ndb_error_reporter — NDB Error-Reporting Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-opt </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-pager </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-password </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-password1 </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-plugin-innodb-file-per-table </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-plugin_name </h3> <dl> <dt> <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-quick </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-quote-names </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-reconnect </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-relaylog </h3> <dl> <dt> <a class="xref" href="group-replication-enterprise-backup.html" title="20.5.6 Using MySQL Enterprise Backup with Group Replication"> Section 20.5.6, “Using MySQL Enterprise Backup with Group Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-replica-preserve-commit-order </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log.html" title="7.4.4 The Binary Log"> Section 7.4.4, “The Binary Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-replica-start </h3> <dl> <dt> <a class="xref" href="replication-howto-additionalslaves.html" title="19.1.2.8 Adding Replicas to a Replication Environment"> Section 19.1.2.8, “Adding Replicas to a Replication Environment” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-backups.html" title="25.7.9 NDB Cluster Backups With NDB Cluster Replication"> Section 25.7.9, “NDB Cluster Backups With NDB Cluster Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-preparation.html" title="25.7.5 Preparing the NDB Cluster for Replication"> Section 25.7.5, “Preparing the NDB Cluster for Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-howto.html" title="19.1.3.4 Setting Up Replication Using GTIDs"> Section 19.1.3.4, “Setting Up Replication Using GTIDs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-setup-replicas.html#replication-howto-existingdata" title="19.1.2.6.2 Setting Up Replication with Existing Data"> Section 19.1.2.6.2, “Setting Up Replication with Existing Data” </a> </dt> <dd> </dd> <dt> <a class="xref" href="start-replica.html" title="15.4.2.4 START REPLICA Statement"> Section 15.4.2.4, “START REPLICA Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-replication-starting.html" title="25.7.6 Starting NDB Cluster Replication (Single Replication Channel)"> Section 25.7.6, “Starting NDB Cluster Replication (Single Replication Channel)” </a> </dt> <dd> </dd> <dt> <a class="xref" href="channels-startup-options.html" title="19.2.2.3 Startup Options and Replication Channels"> Section 19.2.2.3, “Startup Options and Replication Channels” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-problems.html" title="19.5.4 Troubleshooting Replication"> Section 19.5.4, “Troubleshooting Replication” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-restrict-fk-on-non-standard-key </h3> <dl> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-routines </h3> <dl> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-safe-updates </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-set-charset </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-show-database </h3> <dl> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="show-databases.html" title="15.7.7.15 SHOW DATABASES Statement"> Section 15.7.7.15, “SHOW DATABASES Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-sign </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-slave-start </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-sort </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-stack-trace </h3> <dl> <dt> <a class="xref" href="using-gdb-on-mysqld.html" title="7.9.1.4 Debugging mysqld under gdb"> Section 7.9.1.4, “Debugging mysqld under gdb” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-super-large-pages </h3> <dl> <dt> <a class="xref" href="large-page-support.html" title="10.12.3.3 Enabling Large Page Support"> Section 10.12.3.3, “Enabling Large Page Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-symbolic-links </h3> <dl> <dt> <a class="xref" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> Section 15.1.20, “CREATE TABLE Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="security-against-attack.html" title="8.1.3 Making MySQL Secure Against Attackers"> Section 8.1.3, “Making MySQL Secure Against Attackers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-symbolic-links.html" title="10.12.2.3 Using Symbolic Links for Databases on Windows"> Section 10.12.2.3, “Using Symbolic Links for Databases on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="symbolic-links-to-tables.html" title="10.12.2.2 Using Symbolic Links for MyISAM Tables on Unix"> Section 10.12.2.2, “Using Symbolic Links for MyISAM Tables on Unix” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-syslog </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-system-command </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-table-check </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-triggers </h3> <dl> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-tz-utc </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-unknown-objects </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-warn </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip-write-binlog </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --skip_grant_tables </h3> <dl> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slave-rows-search-algorithms </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slave-skip-errors </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slave-sql-verify-checksum </h3> <dl> <dt> <a class="xref" href="replication-options-replica.html" title="19.1.6.3 Replica Server Options and Variables"> Section 19.1.6.3, “Replica Server Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sleep </h3> <dl> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sleep-time </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slice-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> slice-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slow-start-timeout </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slow_query_log </h3> <dl> <dt> <a class="xref" href="log-destinations.html" title="7.4.1 Selecting General Query Log and Slow Query Log Output Destinations"> Section 7.4.1, “Selecting General Query Log and Slow Query Log Output Destinations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="slow-query-log.html" title="7.4.5 The Slow Query Log"> Section 7.4.5, “The Slow Query Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --slow_query_log_file </h3> <dl> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="slow-query-log.html" title="7.4.5 The Slow Query Log"> Section 7.4.5, “The Slow Query Log” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --socket </h3> <dl> <dt> <a class="xref" href="can-not-connect-to-server.html" title="B.3.2.2 Can't connect to [local] MySQL server"> Section B.3.2.2, “Can't connect to [local] MySQL server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting.html" title="6.2.4 Connecting to the MySQL Server Using Command Options"> Section 6.2.4, “Connecting to the MySQL Server Using Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="deploy-mysql-nonlinux-docker.html" title="2.5.6.3 Deploying MySQL on Windows and Other Non-Linux Platforms with Docker"> Section 2.5.6.3, “Deploying MySQL on Windows and Other Non-Linux Platforms with Docker” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-with-mysql-sock.html" title="B.3.3.6 How to Protect or Change the MySQL Unix Socket File"> Section B.3.3.6, “How to Protect or Change the MySQL Unix Socket File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-unix-servers.html" title="7.8.3 Running Multiple MySQL Instances on Unix"> Section 7.8.3, “Running Multiple MySQL Instances on Unix” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-testing.html" title="2.3.3.9 Testing The MySQL Installation"> Section 2.3.3.9, “Testing The MySQL Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="problems-connecting.html" title="8.2.22 Troubleshooting Problems Connecting to MySQL"> Section 8.2.22, “Troubleshooting Problems Connecting to MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-server-clients.html" title="7.8.4 Using Client Programs in a Multiple-Server Environment"> Section 7.8.4, “Using Client Programs in a Multiple-Server Environment” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> socket </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sort </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sort-index </h3> <dl> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sort-records </h3> <dl> <dt> <a class="xref" href="myisam-optimization.html" title="9.6.4 MyISAM Table Optimization"> Section 9.6.4, “MyISAM Table Optimization” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sort-recover </h3> <dl> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sort_buffer_size </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --source-data </h3> <dl> <dt> <a class="xref" href="replication-snapshot-method.html#replication-howto-mysqldump" title="19.1.2.5.1 Creating a Data Snapshot Using mysqldump"> Section 19.1.2.5.1, “Creating a Data Snapshot Using mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-policy.html" title="9.3.1 Establishing a Backup Policy"> Section 9.3.1, “Establishing a Backup Policy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-howto-masterstatus.html" title="19.1.2.4 Obtaining the Replication Source Binary Log Coordinates"> Section 19.1.2.4, “Obtaining the Replication Source Binary Log Coordinates” </a> </dt> <dd> </dd> <dt> <a class="xref" href="privileges-provided.html" title="8.2.2 Privileges Provided by MySQL"> Section 8.2.2, “Privileges Provided by MySQL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="log-file-maintenance.html" title="7.4.6 Server Log Maintenance"> Section 7.4.6, “Server Log Maintenance” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-gtids-failover.html" title="19.1.3.5 Using GTIDs for Failover and Scaleout"> Section 19.1.3.5, “Using GTIDs for Failover and Scaleout” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --source-keyring </h3> <dl> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --source-keyring-configuration-dir </h3> <dl> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sporadic-binlog-dump-fail </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sql-mode </h3> <dl> <dt> <a class="xref" href="functions.html" title="Chapter 14 Functions and Operators"> Chapter 14, <i> Functions and Operators </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-sql-modes.html" title="A.3 MySQL 8.4 FAQ: Server SQL Mode"> Section A.3, “MySQL 8.4 FAQ: Server SQL Mode” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="sql-mode.html" title="7.1.11 Server SQL Modes"> Section 7.1.11, “Server SQL Modes” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> sql-mode </h3> <dl> <dt> <a class="xref" href="sql-mode.html" title="7.1.11 Server SQL Modes"> Section 7.1.11, “Server SQL Modes” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl* </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-ca </h3> <dl> <dt> <a class="xref" href="alter-user.html" title="15.7.1.1 ALTER USER Statement"> Section 15.7.1.1, “ALTER USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> Section 15.7.1.3, “CREATE USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="creating-ssl-files-using-openssl.html" title="8.3.3.2 Creating SSL Certificates and Keys Using openssl"> Section 8.3.3.2, “Creating SSL Certificates and Keys Using openssl” </a> </dt> <dd> </dd> <dt> <a class="xref" href="nonpersistible-system-variables.html" title="7.1.9.4 Nonpersistible and Persist-Restricted System Variables"> Section 7.1.9.4, “Nonpersistible and Persist-Restricted System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-capath </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-cert </h3> <dl> <dt> <a class="xref" href="alter-user.html" title="15.7.1.1 ALTER USER Statement"> Section 15.7.1.1, “ALTER USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> Section 15.7.1.3, “CREATE USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="creating-ssl-files-using-openssl.html" title="8.3.3.2 Creating SSL Certificates and Keys Using openssl"> Section 8.3.3.2, “Creating SSL Certificates and Keys Using openssl” </a> </dt> <dd> </dd> <dt> <a class="xref" href="nonpersistible-system-variables.html" title="7.1.9.4 Nonpersistible and Persist-Restricted System Variables"> Section 7.1.9.4, “Nonpersistible and Persist-Restricted System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-cipher </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="encrypted-connection-protocols-ciphers.html" title="8.3.2 Encrypted Connection TLS Protocols and Ciphers"> Section 8.3.2, “Encrypted Connection TLS Protocols and Ciphers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-crl </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-crlpath </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-fips-mode </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="fips-mode.html" title="8.8 FIPS Support"> Section 8.8, “FIPS Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-key </h3> <dl> <dt> <a class="xref" href="alter-user.html" title="15.7.1.1 ALTER USER Statement"> Section 15.7.1.1, “ALTER USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> Section 15.7.1.3, “CREATE USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="creating-ssl-files-using-openssl.html" title="8.3.3.2 Creating SSL Certificates and Keys Using openssl"> Section 8.3.3.2, “Creating SSL Certificates and Keys Using openssl” </a> </dt> <dd> </dd> <dt> <a class="xref" href="nonpersistible-system-variables.html" title="7.1.9.4 Nonpersistible and Persist-Restricted System Variables"> Section 7.1.9.4, “Nonpersistible and Persist-Restricted System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-mode </h3> <dl> <dt> <a class="xref" href="alter-user.html" title="15.7.1.1 ALTER USER Statement"> Section 15.7.1.1, “ALTER USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connecting-using-uri-or-key-value-pairs.html" title="6.2.5 Connecting to the Server Using URI-Like Strings or Key-Value Pairs"> Section 6.2.5, “Connecting to the Server Using URI-Like Strings or Key-Value Pairs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> Section 15.7.1.3, “CREATE USER Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-binlog.html" title="9.5.1 Point-in-Time Recovery Using Binary Log"> Section 9.5.1, “Point-in-Time Recovery Using Binary Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="load-data-local-security.html" title="8.1.6 Security Considerations for LOAD DATA LOCAL"> Section 8.1.6, “Security Considerations for LOAD DATA LOCAL” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-encrypted-connections.html" title="19.3.1 Setting Up Replication to Use Encrypted Connections"> Section 19.3.1, “Setting Up Replication to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-session-data </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="reusing-ssl-sessions.html" title="8.3.5 Reusing SSL Sessions"> Section 8.3.5, “Reusing SSL Sessions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-session-data-continue-on-failed-reuse </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="reusing-ssl-sessions.html" title="8.3.5 Reusing SSL Sessions"> Section 8.3.5, “Reusing SSL Sessions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> ssl-session-data-continue-on-failed-reuse </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl-xxx </h3> <dl> <dt> <a class="xref" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> Section 15.4.2.2, “CHANGE REPLICATION SOURCE TO Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-encrypted-connections.html" title="19.3.1 Setting Up Replication to Use Encrypted Connections"> Section 19.3.1, “Setting Up Replication to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl_ca </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl_capath </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl_cert </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --ssl_crl </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --staging-tries </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --standalone </h3> <dl> <dt> <a class="xref" href="making-trace-files.html" title="7.9.1.2 Creating Trace Files"> Section 7.9.1.2, “Creating Trace Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-command-line.html" title="2.3.3.6 Starting MySQL from the Windows Command Line"> Section 2.3.3.6, “Starting MySQL from the Windows Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --start-datetime </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-positions.html" title="9.5.2 Point-in-Time Recovery Using Event Positions"> Section 9.5.2, “Point-in-Time Recovery Using Event Positions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --start-page </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --start-position </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-positions.html" title="9.5.2 Point-in-Time Recovery Using Event Positions"> Section 9.5.2, “Point-in-Time Recovery Using Event Positions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --state-dir </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stats </h3> <dl> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --status </h3> <dl> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stdio </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stop-datetime </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-positions.html" title="9.5.2 Point-in-Time Recovery Using Event Positions"> Section 9.5.2, “Point-in-Time Recovery Using Event Positions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stop-never </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-server-id.html" title="6.6.9.4 Specifying the mysqlbinlog Server ID"> Section 6.6.9.4, “Specifying the mysqlbinlog Server ID” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stop-never-slave-server-id </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --stop-position </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="point-in-time-recovery-positions.html" title="9.5.2 Point-in-Time Recovery Using Event Positions"> Section 9.5.2, “Point-in-Time Recovery Using Event Positions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --strict-check </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --super-large-pages </h3> <dl> <dt> <a class="xref" href="large-page-support.html" title="10.12.3.3 Enabling Large Page Support"> Section 10.12.3.3, “Enabling Large Page Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --symbolic-links </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="symbolic-links-to-tables.html" title="10.12.2.2 Using Symbolic Links for MyISAM Tables on Unix"> Section 10.12.2.2, “Using Symbolic Links for MyISAM Tables on Unix” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-* </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-check </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-create </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-create-if-not-exist </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-create-if-not-valid </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-drop </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-skip-events </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sys-skip-tables </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> SYSCONFDIR </h3> <dl> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --sysdate-is-now </h3> <dl> <dt> <a class="xref" href="replication-sbr-rbr.html" title="19.2.1.1 Advantages and Disadvantages of Statement-Based and Row-Based Replication"> Section 19.2.1.1, “Advantages and Disadvantages of Statement-Based and Row-Based Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="date-and-time-functions.html" title="14.7 Date and Time Functions"> Section 14.7, “Date and Time Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-features-functions.html" title="19.5.1.14 Replication and System Functions"> Section 19.5.1.14, “Replication and System Functions” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --syslog </h3> <dl> <dt> <a class="xref" href="environment-variables.html" title="6.9 Environment Variables"> Section 6.9, “Environment Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-systemd.html" title="2.5.9 Managing MySQL Server with systemd"> Section 2.5.9, “Managing MySQL Server with systemd” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-logging.html" title="6.5.1.3 mysql Client Logging"> Section 6.5.1.3, “mysql Client Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-tips.html" title="6.5.1.6 mysql Client Tips"> Section 6.5.1.6, “mysql Client Tips” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --syslog-tag </h3> <dl> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --system </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --system-command </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-T"> </a> <h3 class="title"> T </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -T </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -t </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-redo-log-reader.html" title="25.5.22 ndb_redo_log_reader — Check and Print Content of Cluster Redo Log"> Section 25.5.22, “ndb_redo_log_reader — Check and Print Content of Cluster Redo Log” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tab </h3> <dl> <dt> <a class="xref" href="backup-types.html" title="9.1 Backup and Recovery Types"> Section 9.1, “Backup and Recovery Types” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-methods.html" title="9.2 Database Backup Methods"> Section 9.2, “Database Backup Methods” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump-delimited-text.html" title="9.4.3 Dumping Data in Delimited-Text Format with mysqldump"> Section 9.4.3, “Dumping Data in Delimited-Text Format with mysqldump” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-mysqldump.html" title="9.4 Using mysqldump for Backups"> Section 9.4, “Using mysqldump for Backups” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --table </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --table-id </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tables </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tc-heuristic-recover </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tcp-ip </h3> <dl> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tee </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --telemetry_client </h3> <dl> <dt> <a class="xref" href="telemetry-trace-install.html" title="35.1 Installing OpenTelemetry Support"> Section 35.1, “Installing OpenTelemetry Support” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> telemetry_client </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tempdelay </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --temperrors </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --test </h3> <dl> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --test-tls </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-tls-using.html" title="25.6.15.3 Using TLS Connections"> Section 25.6.15.3, “Using TLS Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-what-is-new.html" title="25.2.4 What is New in MySQL NDB Cluster 8.4"> Section 25.2.4, “What is New in MySQL NDB Cluster 8.4” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> Text </h3> <dl> <dt> <a class="xref" href="manual-info.html" title="1.1 About This Manual"> Section 1.1, “About This Manual” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --text </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --thread-pool-size </h3> <dl> <dt> <a class="xref" href="thread-pool-tuning.html" title="7.6.3.4 Thread Pool Tuning"> Section 7.6.3.4, “Thread Pool Tuning” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --thread_cache_size </h3> <dl> <dt> <a class="xref" href="using-gdb-on-mysqld.html" title="7.9.1.4 Debugging mysqld under gdb"> Section 7.9.1.4, “Debugging mysqld under gdb” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --timeout </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --timestamp-printouts </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --timezone </h3> <dl> <dt> <a class="xref" href="time-zone-support.html" title="7.1.15 MySQL Server Time Zone Support"> Section 7.1.15, “MySQL Server Time Zone Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="timezone-problems.html" title="B.3.3.7 Time Zone Problems"> Section B.3.3.7, “Time Zone Problems” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tls-certificates-enforced-validation </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tls-ciphersuites </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="encrypted-connection-protocols-ciphers.html" title="8.3.2 Encrypted Connection TLS Protocols and Ciphers"> Section 8.3.2, “Encrypted Connection TLS Protocols and Ciphers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tls-sni-servername </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tls-version </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> <dt> <a class="xref" href="encrypted-connection-protocols-ciphers.html" title="8.3.2 Encrypted Connection TLS Protocols and Ciphers"> Section 8.3.2, “Encrypted Connection TLS Protocols and Ciphers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tls-xxx </h3> <dl> <dt> <a class="xref" href="change-replication-source-to.html" title="15.4.2.2 CHANGE REPLICATION SOURCE TO Statement"> Section 15.4.2.2, “CHANGE REPLICATION SOURCE TO Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> tls_version </h3> <dl> <dt> <a class="xref" href="using-encrypted-connections.html" title="8.3.1 Configuring MySQL to Use Encrypted Connections"> Section 8.3.1, “Configuring MySQL to Use Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tmpdir </h3> <dl> <dt> <a class="xref" href="cannot-create.html" title="B.3.2.11 Can't create/write to file"> Section B.3.2.11, “Can't create/write to file” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-memory.html" title="6.6.4.6 myisamchk Memory Usage"> Section 6.6.4.6, “myisamchk Memory Usage” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="multiple-servers.html" title="7.8 Running Multiple MySQL Instances on One Machine"> Section 7.8, “Running Multiple MySQL Instances on One Machine” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-start-service.html" title="2.3.3.8 Starting MySQL as a Windows Service"> Section 2.3.3.8, “Starting MySQL as a Windows Service” </a> </dt> <dd> </dd> <dt> <a class="xref" href="temporary-files.html" title="B.3.3.5 Where MySQL Stores Temporary Files"> Section B.3.3.5, “Where MySQL Stores Temporary Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> tmpdir </h3> <dl> <dt> <a class="xref" href="windows-installation.html" title="2.3 Installing MySQL on Microsoft Windows"> Section 2.3, “Installing MySQL on Microsoft Windows” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --to-dir </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --to-last-log </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-server-id.html" title="6.6.9.4 Specifying the mysqlbinlog Server ID"> Section 6.6.9.4, “Specifying the mysqlbinlog Server ID” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> trace </h3> <dl> <dt> <a class="xref" href="telemetry-trace-configuration.html" title="35.3.1 Configuring Trace Telemetry"> Section 35.3.1, “Configuring Trace Telemetry” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --transaction-isolation </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-transaction-isolation-levels.html" title="17.7.2.1 Transaction Isolation Levels"> Section 17.7.2.1, “Transaction Isolation Levels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --transaction-read-only </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --transactional </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --triggers </h3> <dl> <dt> <a class="xref" href="mysqldump-stored-programs.html" title="9.4.5.3 Dumping Stored Programs"> Section 9.4.5.3, “Dumping Stored Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --try-reconnect </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tupscan </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --type </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --tz-utc </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-U"> </a> <h3 class="title"> U </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -U </h3> <dl> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -u </h3> <dl> <dt> <a class="xref" href="user-names.html" title="8.2.1 Account User Names and Passwords"> Section 8.2.1, “Account User Names and Passwords” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-testing.html" title="2.3.3.9 Testing The MySQL Installation"> Section 2.3.3.9, “Testing The MySQL Installation” </a> </dt> <dd> </dd> <dt> <a class="xref" href="testing-server.html" title="2.9.3 Testing the Server"> Section 2.9.3, “Testing the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrading.html" title="Chapter 3 Upgrading MySQL"> Chapter 3, <i> Upgrading MySQL </i> </a> </dt> <dd> </dd> <dt> <a class="xref" href="windows-postinstallation.html" title="2.3.5 Windows Postinstallation Procedures"> Section 2.3.5, “Windows Postinstallation Procedures” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --unbuffered </h3> <dl> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --unpack </h3> <dl> <dt> <a class="xref" href="myisam-table-formats.html" title="18.2.3 MyISAM Table Storage Formats"> Section 18.2.3, “MyISAM Table Storage Formats” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-repair-options.html" title="6.6.4.3 myisamchk Repair Options"> Section 6.6.4.3, “myisamchk Repair Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --unqualified </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --update </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --update-state </h3> <dl> <dt> <a class="xref" href="myisam-repair.html" title="9.6.3 How to Repair MyISAM Tables"> Section 9.6.3, “How to Repair MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-check-options.html" title="6.6.4.2 myisamchk Check Options"> Section 6.6.4.2, “myisamchk Check Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> Section 18.2, “The MyISAM Storage Engine” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --upgrade </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrade-binary-package.html" title="3.7 Upgrading MySQL Binary or Package-based Installations on Unix/Linux"> Section 3.7, “Upgrading MySQL Binary or Package-based Installations on Unix/Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> <dt> <a class="xref" href="upgrading-what-is-upgraded.html" title="3.4 What the MySQL Upgrade Process Upgrades"> Section 3.4, “What the MySQL Upgrade Process Upgrades” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --uri </h3> <dl> <dt> <a class="xref" href="connecting-using-uri-or-key-value-pairs.html" title="6.2.5 Connecting to the Server Using URI-Like Strings or Key-Value Pairs"> Section 6.2.5, “Connecting to the Server Using URI-Like Strings or Key-Value Pairs” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --usage </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --use-default </h3> <dl> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --use-frm </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --use-threads </h3> <dl> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> USE_LD_LLD </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --useHexFormat </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --user </h3> <dl> <dt> <a class="xref" href="user-names.html" title="8.2.1 Account User Names and Passwords"> Section 8.2.1, “Account User Names and Passwords” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="backup-strategy-example.html" title="9.3 Example Backup and Recovery Strategy"> Section 9.3, “Example Backup and Recovery Strategy” </a> </dt> <dd> </dd> <dt> <a class="xref" href="not-enough-file-handles.html" title="B.3.2.16 File Not Found and Similar Errors"> Section B.3.2.16, “File Not Found and Similar Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="changing-mysql-user.html" title="8.1.5 How to Run MySQL as a Normal User"> Section 8.1.5, “How to Run MySQL as a Normal User” </a> </dt> <dd> </dd> <dt> <a class="xref" href="data-directory-initialization.html" title="2.9.1 Initializing the Data Directory"> Section 2.9.1, “Initializing the Data Directory” </a> </dt> <dd> </dd> <dt> <a class="xref" href="invoking-programs.html" title="6.2.1 Invoking MySQL Programs"> Section 6.2.1, “Invoking MySQL Programs” </a> </dt> <dd> </dd> <dt> <a class="xref" href="kerberos-pluggable-authentication.html" title="8.4.1.8 Kerberos Pluggable Authentication"> Section 8.4.1.8, “Kerberos Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="security-against-attack.html" title="8.1.3 Making MySQL Secure Against Attackers"> Section 8.1.3, “Making MySQL Secure Against Attackers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-key-migration.html" title="8.4.4.11 Migrating Keys Between Keyring Keystores"> Section 8.4.4.11, “Migrating Keys Between Keyring Keystores” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-logging.html" title="6.5.1.3 mysql Client Logging"> Section 6.5.1.3, “mysql Client Logging” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> Section 6.4.2, “mysql_secure_installation — Improve MySQL Installation Security” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-safe.html" title="6.3.2 mysqld_safe — MySQL Server Startup Script"> Section 6.3.2, “mysqld_safe — MySQL Server Startup Script” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-security-mysql-security-procedures.html" title="25.6.21.3 NDB Cluster and MySQL Security Procedures"> Section 25.6.21.3, “NDB Cluster and MySQL Security Procedures” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-defaults-equals.html" title="6.2.2.6 Option Defaults, Options Expecting Values, and the = Sign"> Section 6.2.2.6, “Option Defaults, Options Expecting Values, and the = Sign” </a> </dt> <dd> </dd> <dt> <a class="xref" href="resetting-permissions.html#resetting-permissions-unix" title="B.3.3.2.2 Resetting the Root Password: Unix and Unix-Like Systems"> Section B.3.3.2.2, “Resetting the Root Password: Unix and Unix-Like Systems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="socket-pluggable-authentication.html" title="8.4.1.10 Socket Peer-Credential Pluggable Authentication"> Section 8.4.1.10, “Socket Peer-Credential Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="program-options.html" title="6.2.2 Specifying Program Options"> Section 6.2.2, “Specifying Program Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server.html" title="2.9.2 Starting the Server"> Section 2.9.2, “Starting the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="test-pluggable-authentication.html" title="8.4.1.12 Test Pluggable Authentication"> Section 8.4.1.12, “Test Pluggable Authentication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-backup.html" title="6.6.9.3 Using mysqlbinlog to Back Up Binary Log Files"> Section 6.6.9.3, “Using mysqlbinlog to Back Up Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> user </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-V"> </a> <h3 class="title"> V </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -V </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -v </h3> <dl> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-check.html" title="9.6.2 How to Check MyISAM Tables for Errors"> Section 9.6.2, “How to Check MyISAM Tables for Errors” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-row-events.html" title="6.6.9.2 mysqlbinlog Row Event Display"> Section 6.6.9.2, “mysqlbinlog Row Event Display” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-table-info.html" title="6.6.4.5 Obtaining Table Information with myisamchk"> Section 6.6.4.5, “Obtaining Table Information with myisamchk” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> <dt> <a class="xref" href="keyring-okv-plugin.html" title="8.4.4.6 Using the keyring_okv KMIP Plugin"> Section 8.4.4.6, “Using the keyring_okv KMIP Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --validate-config </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-configuration-validation.html" title="7.1.3 Server Configuration Validation"> Section 7.1.3, “Server Configuration Validation” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --validate-password </h3> <dl> <dt> <a class="xref" href="validate-password-options-variables.html" title="8.4.3.2 Password Validation Options and Variables"> Section 8.4.3.2, “Password Validation Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="validate-password-transitioning.html" title="8.4.3.3 Transitioning to the Password Validation Component"> Section 8.4.3.3, “Transitioning to the Password Validation Component” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --validate-user-plugins </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --var_name </h3> <dl> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --variable </h3> <dl> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --verbose </h3> <dl> <dt> <a class="xref" href="replication-sbr-rbr.html" title="19.2.1.1 Advantages and Disadvantages of Statement-Based and Row-Based Replication"> Section 19.2.1.1, “Advantages and Disadvantages of Statement-Based and Row-Based Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-options-binary-log.html" title="19.1.6.4 Binary Logging Options and Variables"> Section 19.1.6.4, “Binary Logging Options and Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-mgm-client-commands.html" title="25.6.1 Commands in the NDB Cluster Management Client"> Section 25.6.1, “Commands in the NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-batch-commands.html" title="6.5.1.5 Executing SQL Statements from a Text File"> Section 6.5.1.5, “Executing SQL Statements from a Text File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-transaction-compression.html#binary-log-transaction-compression-monitoring" title="7.4.4.5.3 Monitoring Binary Log Transaction Compression"> Section 7.4.4.5.3, “Monitoring Binary Log Transaction Compression” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisam-ftdump.html" title="6.6.3 myisam_ftdump — Display Full-Text Index information"> Section 6.6.3, “myisam_ftdump — Display Full-Text Index information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog-row-events.html" title="6.6.9.2 mysqlbinlog Row Event Display"> Section 6.6.9.2, “mysqlbinlog Row Event Display” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-other-options.html" title="6.6.4.4 Other myisamchk Options"> Section 6.6.4.4, “Other myisamchk Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="starting-server-troubleshooting.html" title="2.9.2.1 Troubleshooting Problems Starting the MySQL Server"> Section 2.9.2.1, “Troubleshooting Problems Starting the MySQL Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="replication-rbr-usage.html" title="19.2.1.2 Usage of Row-Based Logging and Replication"> Section 19.2.1.2, “Usage of Row-Based Logging and Replication” </a> </dt> <dd> </dd> <dt> <a class="xref" href="option-files.html" title="6.2.2.2 Using Option Files"> Section 6.2.2.2, “Using Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --verify-binlog-checksum </h3> <dl> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --version </h3> <dl> <dt> <a class="xref" href="comp-err.html" title="6.4.1 comp_err — Compile MySQL Error Message File"> Section 6.4.1, “comp_err — Compile MySQL Error Message File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="my-print-defaults.html" title="6.7.2 my_print_defaults — Display Options from Option Files"> Section 6.7.2, “my_print_defaults — Display Options from Option Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config.html" title="6.7.1 mysql_config — Display Options for Compiling Clients"> Section 6.7.1, “mysql_config — Display Options for Compiling Clients” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> Section 6.6.8, “mysql_migrate_keyring — Keyring Key Migration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqld-multi.html" title="6.3.4 mysqld_multi — Manage Multiple MySQL Servers"> Section 6.3.4, “mysqld_multi — Manage Multiple MySQL Servers” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-blob-tool.html" title="25.5.6 ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables"> Section 25.5.6, “ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-delete-all.html" title="25.5.8 ndb_delete_all — Delete All Rows from an NDB Table"> Section 25.5.8, “ndb_delete_all — Delete All Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-index.html" title="25.5.10 ndb_drop_index — Drop Index from an NDB Table"> Section 25.5.10, “ndb_drop_index — Drop Index from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-drop-table.html" title="25.5.11 ndb_drop_table — Drop an NDB Table"> Section 25.5.11, “ndb_drop_table — Drop an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-import.html" title="25.5.13 ndb_import — Import CSV Data Into NDB"> Section 25.5.13, “ndb_import — Import CSV Data Into NDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-index-stat.html" title="25.5.14 ndb_index_stat — NDB Index Statistics Utility"> Section 25.5.14, “ndb_index_stat — NDB Index Statistics Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> Section 25.5.5, “ndb_mgm — The NDB Cluster Management Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> Section 25.5.4, “ndb_mgmd — The NDB Cluster Management Server Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-move-data.html" title="25.5.15 ndb_move_data — NDB Data Copy Utility"> Section 25.5.15, “ndb_move_data — NDB Data Copy Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-perror.html" title="25.5.16 ndb_perror — Obtain NDB Error Message Information"> Section 25.5.16, “ndb_perror — Obtain NDB Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-backup-file.html" title="25.5.17 ndb_print_backup_file — Print NDB Backup File Contents"> Section 25.5.17, “ndb_print_backup_file — Print NDB Backup File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-print-file.html" title="25.5.18 ndb_print_file — Print NDB Disk Data File Contents"> Section 25.5.18, “ndb_print_file — Print NDB Disk Data File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-secretsfile-reader.html" title="25.5.24 ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File"> Section 25.5.24, “ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-count.html" title="25.5.26 ndb_select_count — Print Row Counts for NDB Tables"> Section 25.5.26, “ndb_select_count — Print Row Counts for NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> Section 25.5.27, “ndb_show_tables — Display List of NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-sign-keys.html" title="25.5.28 ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster"> Section 25.5.28, “ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> Section 25.5.1, “ndbd — The NDB Cluster Data Node Daemon” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbinfo-select-all.html" title="25.5.2 ndbinfo_select_all — Select From ndbinfo Tables"> Section 25.5.2, “ndbinfo_select_all — Select From ndbinfo Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndbxfrm.html" title="25.5.32 ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster"> Section 25.5.32, “ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="perror.html" title="6.8.1 perror — Display MySQL Error Message Information"> Section 6.8.1, “perror — Display MySQL Error Message Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="command-line-options.html" title="6.2.2.1 Using Options on the Command Line"> Section 6.2.2.1, “Using Options on the Command Line” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --vertical </h3> <dl> <dt> <a class="xref" href="bug-reports.html" title="1.6 How to Report Bugs or Problems"> Section 1.6, “How to Report Bugs or Problems” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-W"> </a> <h3 class="title"> W </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -W </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -w </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamlog.html" title="6.6.5 myisamlog — Display MyISAM Log File Contents"> Section 6.6.5, “myisamlog — Display MyISAM Log File Contents” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --wait </h3> <dl> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --wait-nodes </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-waiter.html" title="25.5.31 ndb_waiter — Wait for NDB Cluster to Reach a Given Status"> Section 25.5.31, “ndb_waiter — Wait for NDB Cluster to Reach a Given Status” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --warn </h3> <dl> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --where </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --with-apply-status </h3> <dl> <dt> <a class="xref" href="mysql-cluster-replication-schema.html" title="25.7.4 NDB Cluster Replication Schema and Tables"> Section 25.7.4, “NDB Cluster Replication Schema and Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_ANT </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_BOOST </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_CLASSPATH </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-linux-source.html" title="25.3.1.4 Building NDB Cluster from Source on Linux"> Section 25.3.1.4, “Building NDB Cluster from Source on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_CLIENT_PROTOCOL_TRACING </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_CURL </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_DEBUG </h3> <dl> <dt> <a class="xref" href="ibd2sdi.html" title="6.6.1 ibd2sdi — InnoDB Tablespace SDI Extraction Utility"> Section 6.6.1, “ibd2sdi — InnoDB Tablespace SDI Extraction Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisamchk-general-options.html" title="6.6.4.1 myisamchk General Options"> Section 6.6.4.1, “myisamchk General Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="myisampack.html" title="6.6.6 myisampack — Generate Compressed, Read-Only MyISAM Tables"> Section 6.6.6, “myisampack — Generate Compressed, Read-Only MyISAM Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-config-editor.html" title="6.6.7 mysql_config_editor — MySQL Configuration Utility"> Section 6.6.7, “mysql_config_editor — MySQL Configuration Utility” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldumpslow.html" title="6.6.10 mysqldumpslow — Summarize Slow Query Log Files"> Section 6.6.10, “mysqldumpslow — Summarize Slow Query Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_EDITLINE </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_ICU </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_JEMALLOC </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LD </h3> <dl> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LIBEVENT </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LOCK_ORDER </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="lock-order-tool.html" title="7.9.3 The LOCK_ORDER Tool"> Section 7.9.3, “The LOCK_ORDER Tool” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LTO </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LZ4 </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_LZMA </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_MECAB </h3> <dl> <dt> <a class="xref" href="fulltext-search-mecab.html" title="14.9.9 MeCab Full-Text Parser Plugin"> Section 14.9.9, “MeCab Full-Text Parser Plugin” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_NDB </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-linux-source.html" title="25.3.1.4 Building NDB Cluster from Source on Linux"> Section 25.3.1.4, “Building NDB Cluster from Source on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_NDB_JAVA </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-linux-source.html" title="25.3.1.4 Building NDB Cluster from Source on Linux"> Section 25.3.1.4, “Building NDB Cluster from Source on Linux” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_NDBCLUSTER </h3> <dl> <dt> <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_NUMA </h3> <dl> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_PROTOBUF </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_RE2 </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_SSL </h3> <dl> <dt> <a class="xref" href="source-ssl-library-configuration.html" title="2.8.6 Configuring SSL Library Support"> Section 2.8.6, “Configuring SSL Library Support” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="source-installation-prerequisites.html" title="2.8.2 Source Installation Prerequisites"> Section 2.8.2, “Source Installation Prerequisites” </a> </dt> <dd> </dd> <dt> <a class="xref" href="encrypted-connections.html" title="8.3 Using Encrypted Connections"> Section 8.3, “Using Encrypted Connections” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_SYSTEMD </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-nutshell.html" title="1.4 What Is New in MySQL 8.4 since MySQL 8.0"> Section 1.4, “What Is New in MySQL 8.4 since MySQL 8.0” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_TCMALLOC </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_TEST_TRACE_PLUGIN </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_ZLIB </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> WITH_ZSTD </h3> <dl> <dt> <a class="xref" href="source-configuration-options.html" title="2.8.7 MySQL Source-Configuration Options"> Section 2.8.7, “MySQL Source-Configuration Options” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --write </h3> <dl> <dt> <a class="xref" href="innochecksum.html" title="6.6.2 innochecksum — Offline InnoDB File Checksum Utility"> Section 6.6.2, “innochecksum — Offline InnoDB File Checksum Utility” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --write-binlog </h3> <dl> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-X"> </a> <h3 class="title"> X </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -X </h3> <dl> <dt> <a class="xref" href="mysql-commands.html" title="6.5.1.2 mysql Client Commands"> Section 6.5.1.2, “mysql Client Commands” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -x </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> Section 25.5.9, “ndb_desc — Describe NDB Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-top.html" title="25.5.30 ndb_top — View CPU usage information for NDB threads"> Section 25.5.30, “ndb_top — View CPU usage information for NDB threads” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --xml </h3> <dl> <dt> <a class="xref" href="load-xml.html" title="15.2.10 LOAD XML Statement"> Section 15.2.10, “LOAD XML Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-config.html" title="25.5.7 ndb_config — Extract NDB Cluster Configuration Information"> Section 25.5.7, “ndb_config — Extract NDB Cluster Configuration Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="xml-functions.html" title="14.11 XML Functions"> Section 14.11, “XML Functions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-Y"> </a> <h3 class="title"> Y </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -Y </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -y </h3> <dl> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="option-index-Z"> </a> <h3 class="title"> Z </h3> <p> [ <a class="link" href="dynindex-option.html#option-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> -z </h3> <dl> <dt> <a class="xref" href="mysql-cluster-programs-ndb-restore.html" title="25.5.23 ndb_restore — Restore an NDB Cluster Backup"> Section 25.5.23, “ndb_restore — Restore an NDB Cluster Backup” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> --zstd-compression-level </h3> <dl> <dt> <a class="xref" href="connection-options.html" title="6.2.3 Command Options for Connecting to the Server"> Section 6.2.3, “Command Options for Connecting to the Server” </a> </dt> <dd> </dd> <dt> <a class="xref" href="connection-compression-control.html" title="6.2.8 Connection Compression Control"> Section 6.2.8, “Connection Compression Control” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-command-options.html" title="6.5.1.1 mysql Client Options"> Section 6.5.1.1, “mysql Client Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> Section 6.5.2, “mysqladmin — A MySQL Server Administration Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> Section 6.6.9, “mysqlbinlog — Utility for Processing Binary Log Files” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> Section 6.5.3, “mysqlcheck — A Table Maintenance Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> Section 6.5.5, “mysqlimport — A Data Import Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> Section 6.5.6, “mysqlshow — Display Database, Table, and Column Information” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> Section 6.5.7, “mysqlslap — A Load Emulation Client” </a> </dt> <dd> </dd> </dl> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/kerberos-pluggable-authentication.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="kerberos-pluggable-authentication"> </a> 8.4.1.8 Kerberos Pluggable Authentication </h4> </div> </div> </div> <a class="indexterm" name="idm46045244659952"> </a> <a class="indexterm" name="idm46045244658848"> </a> <a class="indexterm" name="idm46045244657360"> </a> <a class="indexterm" name="idm46045244656256"> </a> <a class="indexterm" name="idm46045244654752"> </a> <a class="indexterm" name="idm46045244653264"> </a> <a class="indexterm" name="idm46045244651776"> </a> <a class="indexterm" name="idm46045244650688"> </a> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Kerberos pluggable authentication is an extension included in MySQL Enterprise Edition, a commercial product. To learn more about commercial products, see <a class="ulink" href="https://www.mysql.com/products/" target="_blank"> https://www.mysql.com/products/ </a> . </p> </div> <p> MySQL Enterprise Edition supports an authentication method that enables users to authenticate to MySQL Server using Kerberos, provided that appropriate Kerberos tickets are available or can be obtained. </p> <p> This authentication method is available in MySQL 8.4 for MySQL servers and clients on Linux. It is useful in Linux environments where applications have access to Microsoft Active Directory, which has Kerberos enabled by default. The client-side plugin is supported on Windows as well. The server-side plugin is still supported only on Linux. </p> <p> Kerberos pluggable authentication provides these capabilities: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> External authentication: Kerberos authentication enables MySQL Server to accept connections from users defined outside the MySQL grant tables who have obtained the proper Kerberos tickets. </p> </li> <li class="listitem"> <p> Security: Kerberos uses tickets together with symmetric-key cryptography, enabling authentication without sending passwords over the network. Kerberos authentication supports userless and passwordless scenarios. </p> </li> </ul> </div> <p> The following table shows the plugin and library file names. The file name suffix might differ on your system. The file must be located in the directory named by the <a class="link" href="server-system-variables.html#sysvar_plugin_dir"> <code class="literal"> plugin_dir </code> </a> system variable. For installation information, see <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-installation" title="Installing Kerberos Pluggable Authentication"> Installing Kerberos Pluggable Authentication </a> . </p> <div class="table"> <a name="idm46045244640384"> </a> <p class="title"> <b> Table 8.23 Plugin and Library Names for Kerberos Authentication </b> </p> <div class="table-contents"> <table summary="Names for the plugins and library file used for Kerberos authentication."> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <thead> <tr> <th> Plugin or File </th> <th> Plugin or File Name </th> </tr> </thead> <tbody> <tr> <td> Server-side plugin </td> <td> <code class="literal"> authentication_kerberos </code> </td> </tr> <tr> <td> Client-side plugin </td> <td> <code class="literal"> authentication_kerberos_client </code> </td> </tr> <tr> <td> Library file </td> <td> <code class="filename"> authentication_kerberos.so </code> , <code class="filename"> authentication_kerberos_client.so </code> </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <p> The server-side Kerberos authentication plugin is included only in MySQL Enterprise Edition. It is not included in MySQL community distributions. The client-side plugin is included in all distributions, including community distributions. This enables clients from any distribution to connect to a server that has the server-side plugin loaded. </p> <p> The following sections provide installation and usage information specific to Kerberos pluggable authentication: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-prerequisites" title="Prerequisites for Kerberos Pluggable Authentication"> Prerequisites for Kerberos Pluggable Authentication </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-process" title="How Kerberos Authentication of MySQL Users Works"> How Kerberos Authentication of MySQL Users Works </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-installation" title="Installing Kerberos Pluggable Authentication"> Installing Kerberos Pluggable Authentication </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage" title="Using Kerberos Pluggable Authentication"> Using Kerberos Pluggable Authentication </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-debugging" title="Kerberos Authentication Debugging"> Kerberos Authentication Debugging </a> </p> </li> </ul> </div> <p> For general information about pluggable authentication in MySQL, see <a class="xref" href="pluggable-authentication.html" title="8.2.17 Pluggable Authentication"> Section 8.2.17, “Pluggable Authentication” </a> . </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="kerberos-pluggable-authentication-prerequisites"> </a> Prerequisites for Kerberos Pluggable Authentication </h5> </div> </div> </div> <p> To use Kerberos pluggable authentication for MySQL, these prerequisites must be satisfied: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> A Kerberos service must be available for the Kerberos authentication plugins to communicate with. </p> </li> <li class="listitem"> <p> Each Kerberos user (principal) to be authenticated by MySQL must be present in the database managed by the KDC server. </p> </li> <li class="listitem"> <p> A Kerberos client library must be available on systems where either the server-side or client-side Kerberos authentication plugin is used. In addition, GSSAPI is used as the interface for accessing Kerberos authentication, so a GSSAPI library must be available. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="kerberos-pluggable-authentication-process"> </a> How Kerberos Authentication of MySQL Users Works </h5> </div> </div> </div> <p> This section provides an overview of how MySQL and Kerberos work together to authenticate MySQL users. For examples showing how to set up MySQL accounts to use the Kerberos authentication plugins, see <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage" title="Using Kerberos Pluggable Authentication"> Using Kerberos Pluggable Authentication </a> . </p> <p> Familiarity is assumed here with Kerberos concepts and operation. The following list briefly defines several common Kerberos terms. You may also find the Glossary section of <a class="ulink" href="https://tools.ietf.org/html/rfc4120" target="_blank"> RFC 4120 </a> helpful. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_principal" title="principal"> Principal </a> : A named entity, such as a user or server. In this discussion, certain principal-related terms occur frequently: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_service_principal_name" title="service principal name"> SPN </a> : Service principal name; the name of a principal that represents a service. </p> </li> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_user_principal_name" title="user principal name"> UPN </a> : User principal name; the name of a principal that represents a user. </p> </li> </ul> </div> </li> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_key_distribution_center" title="key distribution center"> KDC </a> : The key distribution center, comprising the AS and TGS: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_authentication_server" title="authentication server"> AS </a> : The authentication server; provides the initial ticket-granting ticket needed to obtain additional tickets. </p> </li> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_ticket_granting_server" title="ticket-granting server"> TGS </a> : The ticket-granting server; provides additional tickets to Kerberos clients that possess a valid TGT. </p> </li> </ul> </div> </li> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_ticket_granting_ticket" title="ticket-granting ticket"> TGT </a> : The ticket-granting ticket; presented to the TGS to obtain service tickets for service access. </p> </li> <li class="listitem"> <p> <a class="link" href="glossary.html#glos_service_ticket" title="service ticket"> ST </a> : A service ticket; provides access to a service such as that offered by a MySQL server. </p> </li> </ul> </div> <p> Authentication using Kerberos requires a KDC server, for example, as provided by Microsoft Active Directory. </p> <p> Kerberos authentication in MySQL uses Generic Security Service Application Program Interface (GSSAPI), which is a security abstraction interface. Kerberos is an instance of a specific security protocol that can be used through that abstract interface. Using GSSAPI, applications authenticate to Kerberos to obtain service credentials, then use those credentials in turn to enable secure access to other services. </p> <p> On Windows, the <code class="literal"> authentication_kerberos_client </code> authentication plugin supports two modes, which the client user can set at runtime or specify in an option file: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> SSPI </code> mode: Security Support Provider Interface (SSPI) implements GSSAPI (see <a class="link" href="kerberos-pluggable-authentication.html#kerberos-usage-win-sspi-client-commands"> Commands for Windows Clients in SSPI Mode </a> ). SSPI, while being compatible with GSSAPI at the wire level, only supports the Windows single sign-on scenario and specifically refers to the logged-on user. SSPI is the default mode on most Windows clients. </p> </li> <li class="listitem"> <p> <code class="literal"> GSSAPI </code> mode: Supports GSSAPI through the MIT Kerberos library on Windows (see <a class="link" href="kerberos-pluggable-authentication.html#kerberos-usage-win-gssapi-client-commands"> Commands for Windows Clients in GSSAPI Mode </a> ). </p> </li> </ul> </div> <p> With the Kerberos authentication plugins, applications and MySQL servers are able to use the Kerberos authentication protocol to mutually authenticate users and MySQL services. This way both the user and the server are able to verify each other's identity. No passwords are sent over the network and Kerberos protocol messages are protected against eavesdropping and replay attacks. </p> <p> Kerberos authentication follows these steps, where the server-side and client-side parts are performed using the <code class="literal"> authentication_kerberos </code> and <code class="literal"> authentication_kerberos_client </code> authentication plugins, respectively: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> The MySQL server sends to the client application its service principal name. This SPN must be registered in the Kerberos system, and is configured on the server side using the <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_principal"> <code class="literal"> authentication_kerberos_service_principal </code> </a> system variable. </p> </li> <li class="listitem"> <p> Using GSSAPI, the client application creates a Kerberos client-side authentication session and exchanges Kerberos messages with the Kerberos KDC: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The client obtains a ticket-granting ticket from the authentication server. </p> </li> <li class="listitem"> <p> Using the TGT, the client obtains a service ticket for MySQL from the ticket-granting service. </p> </li> </ul> </div> <p> This step can be skipped or partially skipped if the TGT, ST, or both are already cached locally. The client optionally may use a client keytab file to obtain a TGT and ST without supplying a password. </p> </li> <li class="listitem"> <p> Using GSSAPI, the client application presents the MySQL ST to the MySQL server. </p> </li> <li class="listitem"> <p> Using GSSAPI, the MySQL server creates a Kerberos server-side authentication session. The server validates the user identity and the validity of the user request. It authenticates the ST using the service key configured in its service keytab file to determine whether authentication succeeds or fails, and returns the authentication result to the client. </p> </li> </ol> </div> <p> Applications are able to authenticate using a provided user name and password, or using a locally cached TGT or ST (for example, created using <span class="command"> <strong> kinit </strong> </span> or similar). This design therefore covers use cases ranging from completely userless and passwordless connections, where Kerberos service tickets are obtained from a locally stored Kerberos cache, to connections where both user name and password are provided and used to obtain a valid Kerberos service ticket from a KDC, to send to the MySQL server. </p> <p> As indicated in the preceding description, MySQL Kerberos authentication uses two kinds of keytab files: </p> <a class="indexterm" name="idm46045244570544"> </a> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> On the client host, a client keytab file may be used to obtain a TGT and ST without supplying a password. See <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-mysql-client-config-parameters" title="Client Configuration Parameters for Kerberos Authentication"> Client Configuration Parameters for Kerberos Authentication </a> . </p> </li> <li class="listitem"> <p> On the MySQL server host, a server-side service keytab file is used to verify service tickets received by the MySQL server from clients. The keytab file name is configured using the <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_key_tab"> <code class="literal"> authentication_kerberos_service_key_tab </code> </a> system variable. </p> </li> </ul> </div> <p> For information about keytab files, see <a class="ulink" href="https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html" target="_blank"> https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="kerberos-pluggable-authentication-installation"> </a> Installing Kerberos Pluggable Authentication </h5> </div> </div> </div> <p> This section describes how to install the server-side Kerberos authentication plugin. For general information about installing plugins, see <a class="xref" href="plugin-loading.html" title="7.6.1 Installing and Uninstalling Plugins"> Section 7.6.1, “Installing and Uninstalling Plugins” </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> The server-side plugin is supported only on Linux systems. On Windows systems, only the client-side plugin is supported, which can be used on a Windows system to connect to a Linux server that uses Kerberos authentication. </p> </div> <p> To be usable by the server, the plugin library file must be located in the MySQL plugin directory (the directory named by the <a class="link" href="server-system-variables.html#sysvar_plugin_dir"> <code class="literal"> plugin_dir </code> </a> system variable). If necessary, configure the plugin directory location by setting the value of <a class="link" href="server-system-variables.html#sysvar_plugin_dir"> <code class="literal"> plugin_dir </code> </a> at server startup. </p> <p> The server-side plugin library file base name is <code class="literal"> authentication_kerberos </code> . The file name suffix for Unix and Unix-like systems is <code class="filename"> .so </code> . </p> <p> To load the plugin at server startup, use the <a class="link" href="server-options.html#option_mysqld_plugin-load-add"> <code class="option"> --plugin-load-add </code> </a> option to name the library file that contains it. With this plugin-loading method, the option must be given each time the server starts. Also, specify values for any plugin-provided system variables you wish to configure. The plugin exposes these system variables, enabling its operation to be configured: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_principal"> <code class="literal"> authentication_kerberos_service_principal </code> </a> : The MySQL service principal name (SPN). This name is sent to clients that attempt to authenticate using Kerberos. The SPN must be present in the database managed by the KDC server. The default is <code class="literal"> mysql/ <em class="replaceable"> <code> host_name </code> </em> @ <em class="replaceable"> <code> realm_name </code> </em> </code> . </p> </li> <li class="listitem"> <p> <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_key_tab"> <code class="literal"> authentication_kerberos_service_key_tab </code> </a> : The keytab file for authenticating tickets received from clients. This file must exist and contain a valid key for the SPN or authentication of clients will fail. The default is <code class="filename"> mysql.keytab </code> in the data directory. </p> <a class="indexterm" name="idm46045244545872"> </a> </li> </ul> </div> <p> For details about all Kerberos authentication system variables, see <a class="xref" href="pluggable-authentication-system-variables.html" title="8.4.1.13 Pluggable Authentication System Variables"> Section 8.4.1.13, “Pluggable Authentication System Variables” </a> . </p> <p> To load the plugin and configure it, put lines such as these in your <code class="filename"> my.cnf </code> file, using values for the system variables that are appropriate for your installation: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa35523648"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysqld]</span> <span class="token constant">plugin-load-add</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos.so</span> <span class="token constant">authentication_kerberos_service_principal</span><span class="token attr-value"><span class="token punctuation">=</span>mysql/[email protected]</span> <span class="token constant">authentication_kerberos_service_key_tab</span><span class="token attr-value"><span class="token punctuation">=</span>/var/mysql/data/mysql.keytab</span></code></pre> </div> <p> After modifying <code class="filename"> my.cnf </code> , restart the server to cause the new settings to take effect. </p> <p> Alternatively, to load the plugin at runtime, use this statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa94057788"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INSTALL</span> <span class="token keyword">PLUGIN</span> authentication_kerberos <span class="token keyword">SONAME</span> <span class="token string">'authentication_kerberos.so'</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="install-plugin.html" title="15.7.4.4 INSTALL PLUGIN Statement"> <code class="literal"> INSTALL PLUGIN </code> </a> loads the plugin immediately, and also registers it in the <code class="literal"> mysql.plugins </code> system table to cause the server to load it for each subsequent normal startup without the need for <a class="link" href="server-options.html#option_mysqld_plugin-load-add"> <code class="option"> --plugin-load-add </code> </a> . </p> <p> When you install the plugin at runtime without configuring its system variables in the <code class="filename"> my.cnf </code> file, the system variable <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_key_tab"> <code class="literal"> authentication_kerberos_service_key_tab </code> </a> is set to the default value of <code class="filename"> mysql.keytab </code> in the data directory. The value of this system variable cannot be changed at runtime, so if you need to specify a different file, you need to add the setting to your <code class="filename"> my.cnf </code> file then restart the MySQL server. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa1548752"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysqld]</span> <span class="token constant">authentication_kerberos_service_key_tab</span><span class="token attr-value"><span class="token punctuation">=</span>/var/mysql/data/mysql.keytab</span></code></pre> </div> <p> If the keytab file is not in the correct place or does not contain a valid SPN key, the MySQL server does not validate this, but clients return authentication errors until you fix the issue. </p> <p> The <a class="link" href="pluggable-authentication-system-variables.html#sysvar_authentication_kerberos_service_principal"> <code class="literal"> authentication_kerberos_service_principal </code> </a> system variable can be set and persisted at runtime without restarting the server, by using a <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET PERSIST </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa45202989"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SET</span> <span class="token keyword">PERSIST</span> authentication_kerberos_service_principal<span class="token operator">=</span><span class="token string">'mysql/[email protected]'</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET PERSIST </code> </a> sets a value for the running MySQL instance. It also saves the value, causing it to carry over to subsequent server restarts. To change a value for the running MySQL instance without having it carry over to subsequent restarts, use the <code class="literal"> GLOBAL </code> keyword rather than <code class="literal"> PERSIST </code> . See <a class="xref" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> Section 15.7.6.1, “SET Syntax for Variable Assignment” </a> . </p> <p> To verify plugin installation, examine the Information Schema <a class="link" href="information-schema-plugins-table.html" title="28.3.22 The INFORMATION_SCHEMA PLUGINS Table"> <code class="literal"> PLUGINS </code> </a> table or use the <a class="link" href="show-plugins.html" title="15.7.7.27 SHOW PLUGINS Statement"> <code class="literal"> SHOW PLUGINS </code> </a> statement (see <a class="xref" href="obtaining-plugin-information.html" title="7.6.2 Obtaining Server Plugin Information"> Section 7.6.2, “Obtaining Server Plugin Information” </a> ). For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51100850"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> PLUGIN_NAME<span class="token punctuation">,</span> PLUGIN_STATUS <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span><span class="token keyword">PLUGINS</span> <span class="token keyword">WHERE</span> PLUGIN_NAME <span class="token operator">=</span> <span class="token string">'authentication_kerberos'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> PLUGIN_NAME <span class="token punctuation">|</span> PLUGIN_STATUS <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> authentication_kerberos <span class="token punctuation">|</span> ACTIVE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> If a plugin fails to initialize, check the server error log for diagnostic messages. </p> <p> To associate MySQL accounts with the Kerberos plugin, see <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage" title="Using Kerberos Pluggable Authentication"> Using Kerberos Pluggable Authentication </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="kerberos-pluggable-authentication-usage"> </a> Using Kerberos Pluggable Authentication </h5> </div> </div> </div> <p> This section describes how to enable MySQL accounts to connect to the MySQL server using Kerberos pluggable authentication. It is assumed that the server is running with the server-side plugin enabled, as described in <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-installation" title="Installing Kerberos Pluggable Authentication"> Installing Kerberos Pluggable Authentication </a> , and that the client-side plugin is available on the client host. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-usage-kerberos-setup" title="Verify Kerberos Availability"> Verify Kerberos Availability </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-usage-mysql-account-setup" title="Create a MySQL Account That Uses Kerberos Authentication"> Create a MySQL Account That Uses Kerberos Authentication </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-usage-mysql-client-usage" title="Use the MySQL Account to Connect to the MySQL Server"> Use the MySQL Account to Connect to the MySQL Server </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-mysql-client-config-parameters" title="Client Configuration Parameters for Kerberos Authentication"> Client Configuration Parameters for Kerberos Authentication </a> </p> </li> </ul> </div> <h6> <a name="kerberos-usage-kerberos-setup"> </a> Verify Kerberos Availability </h6> <p> The following example shows how to test availability of Kerberos in Active Directory. The example makes these assumptions: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Active Directory is running on the host named <code class="literal"> krbauth.example.com </code> with IP address <code class="literal"> 198.51.100.11 </code> . </p> </li> <li class="listitem"> <p> MySQL-related Kerberos authentication uses the <code class="literal"> MYSQL.LOCAL </code> domain, and also uses <code class="literal"> MYSQL.LOCAL </code> as the realm name. </p> </li> <li class="listitem"> <p> A principal named <code class="literal"> [email protected] </code> is registered with the KDC. (In later discussion, this principal name is associated with the MySQL account that authenticates to the MySQL server using Kerberos.) </p> </li> </ul> </div> <p> With those assumptions satisfied, follow this procedure: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Verify that the Kerberos library is installed and configured correctly in the operating system. For example, to configure a <code class="literal"> MYSQL.LOCAL </code> domain and realm for use during MySQL authentication, the <code class="filename"> /etc/krb5.conf </code> Kerberos configuration file should contain something like this: </p> <a class="indexterm" name="idm46045244492208"> </a> <a class="indexterm" name="idm46045244490720"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa76524010"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[realms]</span> <span class="token constant"> MYSQL.LOCAL</span> <span class="token attr-value"><span class="token punctuation">=</span> {</span> <span class="token constant"> kdc</span> <span class="token attr-value"><span class="token punctuation">=</span> krbauth.example.com</span> <span class="token constant"> admin_server</span> <span class="token attr-value"><span class="token punctuation">=</span> krbauth.example.com</span> <span class="token constant"> default_domain</span> <span class="token attr-value"><span class="token punctuation">=</span> MYSQL.LOCAL</span> }</code></pre> </div> </li> <li class="listitem"> <p> You may need to add an entry to <code class="filename"> /etc/hosts </code> for the server host: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-simple"><div class="docs-select-all right" id="sa10955029"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">198<span class="token punctuation">.</span>51<span class="token punctuation">.</span>100<span class="token punctuation">.</span>11 krbauth krbauth<span class="token punctuation">.</span>example<span class="token punctuation">.</span>com</code></pre> </div> </li> <li class="listitem"> <p> Check whether Kerberos authentication works correctly: </p> <div class="orderedlist"> <ol class="orderedlist" type="a"> <li class="listitem"> <p> Use <span class="command"> <strong> kinit </strong> </span> to authenticate to Kerberos: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa56628315"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">kinit</span> karl@MYSQL<span class="token punctuation">.</span>LOCAL Password for karl@MYSQL<span class="token punctuation">.</span>LOCAL<span class="token punctuation">:</span> <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">(</span>enter password here<span class="token punctuation">)</span></em><span class="token punctuation"></span></code></pre> </div> <p> The command authenticates for the Kerberos principal named <code class="literal"> [email protected] </code> . Enter the principal's password when the command prompts for it. The KDC returns a TGT that is cached on the client side for use by other Kerberos-aware applications. </p> </li> <li class="listitem"> <p> Use <span class="command"> <strong> klist </strong> </span> to check whether the TGT was obtained correctly. The output should be similar to this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa53794313"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">klist</span> Ticket cache<span class="token punctuation">:</span> FILE<span class="token punctuation">:</span>/tmp/krb5cc_244306 Default principal<span class="token punctuation">:</span> karl@MYSQL<span class="token punctuation">.</span>LOCAL Valid starting Expires Service principal 03/23/2021 08<span class="token punctuation">:</span>18<span class="token punctuation">:</span>33 03/23/2021 18<span class="token punctuation">:</span>18<span class="token punctuation">:</span>33 krbtgt/MYSQL<span class="token punctuation">.</span>LOCAL@MYSQL<span class="token punctuation">.</span>LOCAL</code></pre> </div> </li> </ol> </div> </li> </ol> </div> <h6> <a name="kerberos-usage-mysql-account-setup"> </a> Create a MySQL Account That Uses Kerberos Authentication </h6> <p> MySQL authentication using the <code class="literal"> authentication_kerberos </code> authentication plugin is based on a Kerberos user principal name (UPN). The instructions here assume that a MySQL user named <code class="literal"> karl </code> authenticates to MySQL using Kerberos, that the Kerberos realm is named <code class="literal"> MYSQL.LOCAL </code> , and that the user principal name is <code class="literal"> [email protected] </code> . This UPN must be registered in several places: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The Kerberos administrator should register the user name as a Kerberos principal. This name includes a realm name. Clients use the principal name and password to authenticate with Kerberos and obtain a ticket-granting ticket (TGT). </p> </li> <li class="listitem"> <p> The MySQL DBA should create an account that corresponds to the Kerberos principal name and that authenticates using the Kerberos plugin. </p> </li> </ul> </div> <p> Assume that the Kerberos user principal name has been registered by the appropriate service administrator, and that, as previously described in <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-installation" title="Installing Kerberos Pluggable Authentication"> Installing Kerberos Pluggable Authentication </a> , the MySQL server has been started with appropriate configuration settings for the server-side Kerberos plugin. To create a MySQL account that corresponds to a Kerberos UPN of <code class="literal"> <em class="replaceable"> <code> user </code> </em> @ <em class="replaceable"> <code> realm_name </code> </em> </code> , the MySQL DBA uses a statement like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa48834019"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">USER</span> <span class="token keyword"><em class="replaceable">user</em></span> <span class="token keyword">IDENTIFIED</span> <span class="token keyword">WITH</span> authentication_kerberos <span class="token keyword">BY</span> <span class="token string">'<em class="replaceable">realm_name</em>'</span><span class="token punctuation">;</span></code></pre> </div> <p> The account named by <em class="replaceable"> <code> user </code> </em> can include or omit the host name part. If the host name is omitted, it defaults to <code class="literal"> % </code> as usual. The <em class="replaceable"> <code> realm_name </code> </em> is stored as the <code class="literal"> authentication_string </code> value for the account in the <code class="literal"> mysql.user </code> system table. </p> <p> To create a MySQL account that corresponds to the UPN <code class="literal"> [email protected] </code> , use this statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa83172145"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">USER</span> <span class="token string">'karl'</span> <span class="token keyword">IDENTIFIED</span> <span class="token keyword">WITH</span> authentication_kerberos <span class="token keyword">BY</span> <span class="token string">'MYSQL.LOCAL'</span><span class="token punctuation">;</span></code></pre> </div> <p> If MySQL must construct the UPN for this account, for example, to obtain or validate tickets (TGTs or STs), it does so by combining the account name (ignoring any host name part) and the realm name. For example, the full account name resulting from the preceding <a class="link" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> <code class="literal"> CREATE USER </code> </a> statement is <code class="literal"> 'karl'@'%' </code> . MySQL constructs the UPN from the user name part <code class="literal"> karl </code> (ignoring the host name part) and the realm name <code class="literal"> MYSQL.LOCAL </code> to produce <code class="literal"> [email protected] </code> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Observe that when creating an account that authenticates using <code class="literal"> authentication_kerberos </code> , the <a class="link" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> <code class="literal"> CREATE USER </code> </a> statement does not include the UPN realm as part of the user name. Instead, specify the realm ( <code class="literal"> MYSQL.LOCAL </code> in this case) as the authentication string in the <code class="literal"> BY </code> clause. This differs from creating accounts that use the <code class="literal"> authentication_ldap_sasl </code> SASL LDAP authentication plugin with the GSSAPI/Kerberos authentication method. For such accounts, the <a class="link" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> <code class="literal"> CREATE USER </code> </a> statement does include the UPN realm as part of the user name. See <a class="xref" href="ldap-pluggable-authentication.html#ldap-gssapi-mysql-account-setup" title="Create a MySQL Account That Uses GSSAPI/Kerberos for LDAP Authentication"> Create a MySQL Account That Uses GSSAPI/Kerberos for LDAP Authentication </a> . </p> </div> <p> With the account set up, clients can use it to connect to the MySQL server. The procedure depends on whether the client host runs Linux or Windows, as indicated in the following discussion. </p> <p> Use of <code class="literal"> authentication_kerberos </code> is subject to the restriction that UPNs with the same user part but a different realm part are not supported. For example, you cannot create MySQL accounts that correspond to both these UPNs: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa52485206"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql">kate<span class="token variable">@MYSQL.LOCAL</span> kate<span class="token variable">@EXAMPLE.COM</span></code></pre> </div> <p> Both UPNs have a user part of <code class="literal"> kate </code> but differ in the realm part ( <code class="literal"> MYSQL.LOCAL </code> versus <code class="literal"> EXAMPLE.COM </code> ). This is disallowed. </p> <h6> <a name="kerberos-usage-mysql-client-usage"> </a> Use the MySQL Account to Connect to the MySQL Server </h6> <p> After a MySQL account that authenticates using Kerberos has been set up, clients can use it to connect to the MySQL server as follows: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Authenticate to Kerberos with the user principal name (UPN) and its password to obtain a ticket-granting ticket (TGT). </p> </li> <li class="listitem"> <p> Use the TGT to obtain a service ticket (ST) for MySQL. </p> </li> <li class="listitem"> <p> Authenticate to the MySQL server by presenting the MySQL ST. </p> </li> </ol> </div> <p> The first step (authenticating to Kerberos) can be performed various ways: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Prior to connecting to MySQL: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> On Linux or on Windows in <code class="literal"> GSSAPI </code> mode, invoke <span class="command"> <strong> kinit </strong> </span> to obtain the TGT and save it in the Kerberos credentials cache. </p> </li> <li class="listitem"> <p> On Windows in <code class="literal"> SSPI </code> mode, authentication may already have been done at login time, which saves the TGT for the logged-in user in the Windows in-memory cache. <span class="command"> <strong> kinit </strong> </span> is not used and there is no Kerberos cache. </p> </li> </ul> </div> </li> <li class="listitem"> <p> When connecting to MySQL, the client program itself can obtain the TGT, if it can determine the required Kerberos UPN and password: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> That information can come from sources such as command options or the operating system. </p> </li> <li class="listitem"> <p> On Linux, clients also can use a keytab file or the <code class="filename"> /etc/krb5.conf </code> configuration file. Windows clients in <code class="literal"> GSSAPI </code> mode use a configuration file. Windows clients in <code class="literal"> SSPI </code> mode use neither. </p> </li> </ul> </div> </li> </ul> </div> <p> Details of the client commands for connecting to the MySQL server differ for Linux and Windows, so each host type is discussed separately, but these command properties apply regardless of host type: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Each command shown includes the following options, but each one may be omitted under certain conditions: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The <a class="link" href="connection-options.html#option_general_default-auth"> <code class="option"> --default-auth </code> </a> option specifies the name of the client-side authentication plugin ( <code class="literal"> authentication_kerberos_client </code> ). This option may be omitted when the <a class="link" href="connection-options.html#option_general_user"> <code class="option"> --user </code> </a> option is specified because in that case MySQL can determine the plugin from the user account information sent by MySQL server. </p> </li> <li class="listitem"> <p> The <a class="link" href="connection-options.html#option_general_plugin-dir"> <code class="option"> --plugin-dir </code> </a> option indicates to the client program the location of the <code class="literal"> authentication_kerberos_client </code> plugin. This option may be omitted if the plugin is installed in the default (compiled-in) location. </p> </li> </ul> </div> </li> <li class="listitem"> <p> Commands should also include any other options such as <a class="link" href="connection-options.html#option_general_host"> <code class="option"> --host </code> </a> or <a class="link" href="connection-options.html#option_general_port"> <code class="option"> --port </code> </a> that are required to specify which MySQL server to connect to. </p> </li> <li class="listitem"> <p> Enter each command on a single line. If the command includes a <a class="link" href="connection-options.html#option_general_password"> <code class="option"> --password </code> </a> option to solicit a password, enter the password of the Kerberos UPN associated with the MySQL user when prompted. </p> </li> </ul> </div> <p> <span class="strong"> <a name="kerberos-usage-linux-client-commands"> </a> <strong> Connection Commands for Linux Clients </strong> </span> </p> <p> On Linux, the appropriate client command for connecting to the MySQL server varies depending on whether the command authenticates using a TGT from the Kerberos cache, or based on command options for the MySQL user name and the UPN password: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Prior to invoking the MySQL client program, the client user can obtain a TGT from the KDC independently of MySQL. For example, the client user can use <span class="command"> <strong> kinit </strong> </span> to authenticate to Kerberos by providing a Kerberos user principal name and the principal password: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa46768751"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">kinit</span> karl@MYSQL<span class="token punctuation">.</span>LOCAL Password for karl@MYSQL<span class="token punctuation">.</span>LOCAL<span class="token punctuation">:</span> <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">(</span>enter password here<span class="token punctuation">)</span></em><span class="token punctuation"></span></code></pre> </div> <p> The resulting TGT for the UPN is cached and becomes available for use by other Kerberos-aware applications, such as programs that use the client-side Kerberos authentication plugin. In this case, invoke the client without specifying a user-name or password option: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa55840832"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span></code></pre> </div> <p> The client-side plugin finds the TGT in the cache, uses it to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> <p> As just described, when the TGT for the UPN is cached, user-name and password options are not needed in the client command. If the command includes them anyway, they are handled as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> This command includes a user-name option: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa57899421"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token constant">--user</span><span class="token attr-value"><span class="token punctuation">=</span>karl</span></code></pre> </div> <p> In this case, authentication fails if the user name specified by the option does not match the user name part of the UPN in the TGT. </p> </li> <li class="listitem"> <p> This command includes a password option, which you enter when prompted: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa22498145"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token property">--password</span></code></pre> </div> <p> In this case, the client-side plugin ignores the password. Because authentication is based on the TGT, it can succeed <span class="emphasis"> <em> even if the user-provided password is incorrect </em> </span> . For this reason, the plugin produces a warning if a valid TGT is found that causes a password to be ignored. </p> </li> </ul> </div> </li> <li class="listitem"> <p> If the Kerberos cache contains no TGT, the client-side Kerberos authentication plugin itself can obtain the TGT from the KDC. Invoke the client with options for the MySQL user name and the password, then enter the UPN password when prompted: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa2023431"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token constant">--user</span><span class="token attr-value"><span class="token punctuation">=</span>karl</span> <span class="token property">--password</span></code></pre> </div> <p> The client-side Kerberos authentication plugin combines the user name ( <code class="literal"> karl </code> ) and the realm specified in the user account ( <code class="literal"> MYSQL.LOCAL </code> ) to construct the UPN ( <code class="literal"> [email protected] </code> ). The client-side plugin uses the UPN and password to obtain a TGT, uses the TGT to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> <p> Or, suppose that the Kerberos cache contains no TGT and the command specifies a password option but no user-name option: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa6035891"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token property">--password</span></code></pre> </div> <p> The client-side Kerberos authentication plugin uses the operating system login name as the MySQL user name. It combines that user name and the realm in the user' MySQL account to construct the UPN. The client-side plugin uses the UPN and the password to obtain a TGT, uses the TGT to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> </li> </ul> </div> <p> If you are uncertain whether a TGT exists, you can use <span class="command"> <strong> klist </strong> </span> to check. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> When the client-side Kerberos authentication plugin itself obtains the TGT, the client user may not want the TGT to be reused. As described in <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-mysql-client-config-parameters" title="Client Configuration Parameters for Kerberos Authentication"> Client Configuration Parameters for Kerberos Authentication </a> , the local <code class="literal"> /etc/krb5.conf </code> file can be used to cause the client-side plugin to destroy the TGT when done with it. </p> </div> <p> <span class="strong"> <a name="kerberos-usage-win-sspi-client-commands"> </a> <strong> Connection Commands for Windows Clients in SSPI Mode </strong> </span> </p> <p> On Windows, using the default client-side plugin option (SSPI), the appropriate client command for connecting to the MySQL server varies depending on whether the command authenticates based on command options for the MySQL user name and the UPN password, or instead uses a TGT from the Windows in-memory cache. For details about GSSAPI mode on Windows, see <a class="link" href="kerberos-pluggable-authentication.html#kerberos-usage-win-gssapi-client-commands"> Commands for Windows Clients in GSSAPI Mode </a> . </p> <p> A command can explicitly specify options for the MySQL user name and the UPN password, or the command can omit those options: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> This command includes options for the MySQL user name and UPN password: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa56152124"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token constant">--user</span><span class="token attr-value"><span class="token punctuation">=</span>karl</span> <span class="token property">--password</span></code></pre> </div> <p> The client-side Kerberos authentication plugin combines the user name ( <code class="literal"> karl </code> ) and the realm specified in the user account ( <code class="literal"> MYSQL.LOCAL </code> ) to construct the UPN ( <code class="literal"> [email protected] </code> ). The client-side plugin uses the UPN and password to obtain a TGT, uses the TGT to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> <p> Any information in the Windows in-memory cache is ignored; the user-name and password option values take precedence. </p> </li> <li class="listitem"> <p> This command includes an option for the UPN password but not for the MySQL user name: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa55821074"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token property">--password</span></code></pre> </div> <p> The client-side Kerberos authentication plugin uses the logged-in user name as the MySQL user name and combines that user name and the realm in the user's MySQL account to construct the UPN. The client-side plugin uses the UPN and the password to obtain a TGT, uses the TGT to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> </li> <li class="listitem"> <p> This command includes no options for the MySQL user name or UPN password: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa65959498"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span></code></pre> </div> <p> The client-side plugin obtains the TGT from the Windows in-memory cache, uses the TGT to obtain a MySQL ST, and uses the ST to authenticate to the MySQL server. </p> <p> This approach requires the client host to be part of the Windows Server Active Directory (AD) domain. If that is not the case, help the MySQL client discover the IP address for the AD domain by manually entering the AD server and realm as the DNS server and prefix: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Start <code class="literal"> console.exe </code> and select <span class="guilabel"> Network and Sharing Center </span> . </p> </li> <li class="listitem"> <p> From the sidebar of the Network and Sharing Center window, select <span class="guilabel"> Change adapter settings </span> . </p> </li> <li class="listitem"> <p> In the Network Connections window, right-click the network or VPN connection to configure and select <span class="guimenuitem"> Properties </span> . </p> </li> <li class="listitem"> <p> From the <span class="guilabel"> Network </span> tab, locate and click <span class="guilabel"> Internet Protocol Version 4 (TCP/IPv4) </span> , and then click <span class="guibutton"> Properties </span> . </p> </li> <li class="listitem"> <p> Click <span class="guibutton"> Advanced </span> in the Internet Protocol Version 4 (TCP/IPv4) Properties dialog. The Advanced TCP/IP Settings dialog opens. </p> </li> <li class="listitem"> <p> From the <span class="guilabel"> DNS </span> tab, add the Active Directory server and realm as a DNS server and prefix. </p> </li> </ol> </div> </li> <li class="listitem"> <p> This command includes an option for the MySQL user name but not for the UPN password: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa70067522"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token constant">--default-auth</span><span class="token attr-value"><span class="token punctuation">=</span>authentication_kerberos_client</span> <span class="token constant">--plugin-dir</span><span class="token attr-value"><span class="token punctuation">=</span><em class="replaceable">path/to/plugin/directory</em></span> <span class="token constant">--user</span><span class="token attr-value"><span class="token punctuation">=</span>karl</span></code></pre> </div> <p> The client-side Kerberos authentication plugin compares the name specified by the user-name option against the logged-in user name. If the names are the same, the plugin uses the logged-in user TGT for authentication. If the names differ, authentication fails. </p> </li> </ul> </div> <p> <span class="strong"> <a name="kerberos-usage-win-gssapi-client-commands"> </a> <strong> Connection Commands for Windows Clients in GSSAPI Mode </strong> </span> </p> <p> On Windows, the client user must specify <code class="literal"> GSSAPI </code> mode explicitly using the <code class="literal"> plugin_authentication_kerberos_client_mode </code> plugin option to enable support through the MIT Kerberos library. The default mode is <code class="literal"> SSPI </code> (see <a class="link" href="kerberos-pluggable-authentication.html#kerberos-usage-win-sspi-client-commands"> Commands for Windows Clients in SSPI Mode </a> ). </p> <a class="indexterm" name="idm46045244339984"> </a> <a class="indexterm" name="idm46045244338528"> </a> <p> It is possible to specify <code class="literal"> GSSAPI </code> mode: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Prior to invoking the MySQL client program in an option file. The plugin variable name is valid using either underscores or dashes: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa65254352"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysql]</span> <span class="token constant">plugin_authentication_kerberos_client_mode</span><span class="token attr-value"><span class="token punctuation">=</span>GSSAPI</span></code></pre> </div> <p> Or: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa47453159"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysql]</span> <span class="token constant">plugin-authentication-kerberos-client-mode</span><span class="token attr-value"><span class="token punctuation">=</span>GSSAPI</span></code></pre> </div> </li> <li class="listitem"> <p> At runtime from the command line using the <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> or <a class="link" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> <span class="command"> <strong> mysqldump </strong> </span> </a> client programs. For example, the following commands (with underscores or dashes) causes <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> to connect to the server through the MIT Kerberos library on Windows. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa80472590"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">[</span>connection-options<span class="token punctuation">]</span></em><span class="token punctuation"></span> <span class="token constant">--plugin_authentication_kerberos_client_mode</span><span class="token attr-value"><span class="token punctuation">=</span>GSSAPI</span></code></pre> </div> <p> Or: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa85431522"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysql <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">[</span>connection-options<span class="token punctuation">]</span></em><span class="token punctuation"></span> <span class="token constant">--plugin-authentication-kerberos-client-mode</span><span class="token attr-value"><span class="token punctuation">=</span>GSSAPI</span></code></pre> </div> </li> <li class="listitem"> <p> Client users can select <code class="literal"> GSSAPI </code> mode from MySQL Workbench and some MySQL connectors. On client hosts running Windows, you can override the default location of: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The Kerberos configuration file by setting the <code class="literal"> KRB5_CONFIG </code> environment variable. </p> </li> <li class="listitem"> <p> The default credential cache name with the <code class="literal"> KRB5CCNAME </code> environment variable (for example, <code class="literal"> KRB5CCNAME=DIR:/mydir/ </code> ). </p> </li> </ul> </div> <p> For specific client-side plugin information, see the documentation at <a class="ulink" href="/doc/" target="_top"> https://dev.mysql.com/doc/ </a> . </p> </li> </ul> </div> <p> The appropriate client command for connecting to the MySQL server varies depending on whether the command authenticates using a TGT from the MIT Kerberos cache, or based on command options for the MySQL user name and the UPN password. GSSAPI support through the MIT library on Windows is similar to GSSAPI on Linux (see <a class="link" href="kerberos-pluggable-authentication.html#kerberos-usage-linux-client-commands"> Commands for Linux Clients </a> ), with the following exceptions: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Tickets are always retrieved from or placed into the MIT Kerberos cache on hosts running Windows. </p> </li> <li class="listitem"> <p> <span class="command"> <strong> kinit </strong> </span> runs with Functional Accounts on Windows that have narrow permissions and specific roles. The client user does not know the <span class="command"> <strong> kinit </strong> </span> password. For an overview, see <a class="ulink" href="https://docs.oracle.com/en/java/javase/11/tools/kinit.html" target="_blank"> https://docs.oracle.com/en/java/javase/11/tools/kinit.html </a> . </p> </li> <li class="listitem"> <p> If the client user supplies a password, the MIT Kerberos library on Windows decides whether to use it or rely on the existing ticket. </p> </li> <li class="listitem"> <p> The <code class="literal"> destroy_tickets </code> parameter, described in <a class="xref" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-mysql-client-config-parameters" title="Client Configuration Parameters for Kerberos Authentication"> Client Configuration Parameters for Kerberos Authentication </a> , is not supported because the MIT Kerberos library on Windows does not support the required API member ( <code class="code"> get_profile_boolean </code> ) to read its value from configuration file. </p> </li> </ul> </div> <h6> <a name="kerberos-pluggable-authentication-mysql-client-config-parameters"> </a> Client Configuration Parameters for Kerberos Authentication </h6> <p> This section applies only for client hosts running Linux, not client hosts running Windows. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> A client host running Windows with the <code class="literal"> authentication_kerberos_client </code> client-side Kerberos plugin set to <code class="literal"> GSSAPI </code> mode does support client configuration parameters, in general, but the MIT Kerberos library on Windows does not support the <code class="literal"> destroy_tickets </code> parameter described in this section. </p> </div> <p> If no valid ticket-granting ticket (TGT) exists at the time of MySQL client application invocation, the application itself may obtain and cache the TGT. If during the Kerberos authentication process the client application causes a TGT to be cached, any such TGT that was added can be destroyed after it is no longer needed, by setting the appropriate configuration parameter. </p> <p> The <code class="literal"> authentication_kerberos_client </code> client-side Kerberos plugin reads the local <code class="filename"> /etc/krb5.conf </code> file. If this file is missing or inaccessible, an error occurs. Assuming that the file is accessible, it can include an optional <code class="literal"> [appdefaults] </code> section to provide information used by the plugin. Place the information within the <code class="literal"> mysql </code> part of the section. For example: </p> <a class="indexterm" name="idm46045244297312"> </a> <a class="indexterm" name="idm46045244295824"> </a> <a class="indexterm" name="idm46045244294336"> </a> <a class="indexterm" name="idm46045244292832"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa11158014"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[appdefaults]</span> <span class="token constant"> mysql</span> <span class="token attr-value"><span class="token punctuation">=</span> {</span> <span class="token constant"> destroy_tickets</span> <span class="token attr-value"><span class="token punctuation">=</span> true</span> }</code></pre> </div> <p> The client-side plugin recognizes these parameters in the <code class="literal"> mysql </code> section: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <code class="literal"> destroy_tickets </code> value indicates whether the client-side plugin destroys the TGT after obtaining and using it. By default, <code class="literal"> destroy_tickets </code> is <code class="literal"> false </code> , but can be set to <code class="literal"> true </code> to avoid TGT reuse. (This setting applies only to TGTs created by the client-side plugin, not TGTs created by other plugins or externally to MySQL.) </p> </li> </ul> </div> <a class="indexterm" name="idm46045244284768"> </a> <p> On the client host, a client keytab file may be used to obtain a TGT and TS without supplying a password. For information about keytab files, see <a class="ulink" href="https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html" target="_blank"> https://web.mit.edu/kerberos/krb5-latest/doc/basic/keytab_def.html </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="kerberos-pluggable-authentication-debugging"> </a> Kerberos Authentication Debugging </h5> </div> </div> </div> <a class="indexterm" name="idm46045244280704"> </a> <a class="indexterm" name="idm46045244279664"> </a> <p> The <code class="literal"> AUTHENTICATION_KERBEROS_CLIENT_LOG </code> environment variable enables or disables debug output for Kerberos authentication. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Despite <code class="literal"> CLIENT </code> in the name <code class="literal"> AUTHENTICATION_KERBEROS_CLIENT_LOG </code> , the same environment variable applies to the server-side plugin as well as the client-side plugin. </p> </div> <p> On the server side, the permitted values are 0 (off) and 1 (on). Log messages are written to the server error log, subject to the server error-logging verbosity level. For example, if you are using priority-based log filtering, the <a class="link" href="server-system-variables.html#sysvar_log_error_verbosity"> <code class="literal"> log_error_verbosity </code> </a> system variable controls verbosity, as described in <a class="xref" href="error-log-priority-based-filtering.html" title="7.4.2.5 Priority-Based Error Log Filtering (log_filter_internal)"> Section 7.4.2.5, “Priority-Based Error Log Filtering (log_filter_internal)” </a> . </p> <p> On the client side, the permitted values are from 1 to 5 and are written to the standard error output. The following table shows the meaning of each log-level value. </p> <div class="informaltable"> <table summary="Permitted client-side AUTHENTICATION_KERBEROS_CLIENT_LOG log levels and corresponding meanings"> <colgroup> <col style="width: 40%"/> <col style="width: 40%"/> </colgroup> <thead> <tr> <th> Log Level </th> <th> Meaning </th> </tr> </thead> <tbody> <tr> <td> 1 or not set </td> <td> No logging </td> </tr> <tr> <td> 2 </td> <td> Error messages </td> </tr> <tr> <td> 3 </td> <td> Error and warning messages </td> </tr> <tr> <td> 4 </td> <td> Error, warning, and information messages </td> </tr> <tr> <td> 5 </td> <td> Error, warning, information, and debug messages </td> </tr> </tbody> </table> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/identifier-case-sensitivity.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="identifier-case-sensitivity"> </a> 11.2.3 Identifier Case Sensitivity </h3> </div> </div> </div> <a class="indexterm" name="idm46045219900384"> </a> <a class="indexterm" name="idm46045219898896"> </a> <a class="indexterm" name="idm46045219897408"> </a> <a class="indexterm" name="idm46045219895920"> </a> <a class="indexterm" name="idm46045219894432"> </a> <a class="indexterm" name="idm46045219892944"> </a> <a class="indexterm" name="idm46045219891456"> </a> <a class="indexterm" name="idm46045219889968"> </a> <a class="indexterm" name="idm46045219888480"> </a> <p> In MySQL, databases correspond to directories within the data directory. Each table within a database corresponds to at least one file within the database directory (and possibly more, depending on the storage engine). Triggers also correspond to files. Consequently, the case sensitivity of the underlying operating system plays a part in the case sensitivity of database, table, and trigger names. This means such names are not case-sensitive in Windows, but are case-sensitive in most varieties of Unix. One notable exception is macOS, which is Unix-based but uses a default file system type (HFS+) that is not case-sensitive. However, macOS also supports UFS volumes, which are case-sensitive just as on any Unix. See <a class="xref" href="extensions-to-ansi.html" title="1.7.1 MySQL Extensions to Standard SQL"> Section 1.7.1, “MySQL Extensions to Standard SQL” </a> . The <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> system variable also affects how the server handles identifier case sensitivity, as described later in this section. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Although database, table, and trigger names are not case-sensitive on some platforms, you should not refer to one of these using different cases within the same statement. The following statement would not work because it refers to a table both as <code class="literal"> my_table </code> and as <code class="literal"> MY_TABLE </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa40517084"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> my_table <span class="token keyword">WHERE</span> MY_TABLE<span class="token punctuation">.</span>col<span class="token operator">=</span><span class="token number">1</span><span class="token punctuation">;</span></code></pre> </div> </div> <p> Partition, subpartition, column, index, stored routine, event, and resource group names are not case-sensitive on any platform, nor are column aliases. </p> <p> However, names of logfile groups are case-sensitive. This differs from standard SQL. </p> <p> By default, table aliases are case-sensitive on Unix, but not so on Windows or macOS. The following statement would not work on Unix, because it refers to the alias both as <code class="literal"> a </code> and as <code class="literal"> A </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36264493"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <em class="replaceable">col_name</em> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">AS</span> a <span class="token keyword">WHERE</span> a<span class="token punctuation">.</span><em class="replaceable">col_name</em> <span class="token operator">=</span> <span class="token number">1</span> <span class="token operator">OR</span> A<span class="token punctuation">.</span><em class="replaceable">col_name</em> <span class="token operator">=</span> <span class="token number">2</span><span class="token punctuation">;</span></code></pre> </div> <p> However, this same statement is permitted on Windows. To avoid problems caused by such differences, it is best to adopt a consistent convention, such as always creating and referring to databases and tables using lowercase names. This convention is recommended for maximum portability and ease of use. </p> <p> How table and database names are stored on disk and used in MySQL is affected by the <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> system variable. <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> can take the values shown in the following table. This variable does <span class="emphasis"> <em> not </em> </span> affect case sensitivity of trigger identifiers. On Unix, the default value of <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> is 0. On Windows, the default value is 1. On macOS, the default value is 2. </p> <p> <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> can only be configured when initializing the server. Changing the <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> setting after the server is initialized is prohibited. </p> <div class="informaltable"> <table summary="Values for the lower_case_table_names system variable."> <colgroup> <col style="width: 10%"/> <col style="width: 90%"/> </colgroup> <thead> <tr> <th> Value </th> <th> Meaning </th> </tr> </thead> <tbody> <tr> <td> <code class="literal"> 0 </code> </td> <td> Table and database names are stored on disk using the lettercase specified in the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="create-database.html" title="15.1.12 CREATE DATABASE Statement"> <code class="literal"> CREATE DATABASE </code> </a> statement. Name comparisons are case-sensitive. You should <span class="emphasis"> <em> not </em> </span> set this variable to 0 if you are running MySQL on a system that has case-insensitive file names (such as Windows or macOS). If you force this variable to 0 with <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="option"> --lower-case-table-names=0 </code> </a> on a case-insensitive file system and access <code class="literal"> MyISAM </code> tablenames using different lettercases, index corruption may result. </td> </tr> <tr> <td> <code class="literal"> 1 </code> </td> <td> Table names are stored in lowercase on disk and name comparisons are not case-sensitive. MySQL converts all table names to lowercase on storage and lookup. This behavior also applies to database names and table aliases. </td> </tr> <tr> <td> <code class="literal"> 2 </code> </td> <td> Table and database names are stored on disk using the lettercase specified in the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="create-database.html" title="15.1.12 CREATE DATABASE Statement"> <code class="literal"> CREATE DATABASE </code> </a> statement, but MySQL converts them to lowercase on lookup. Name comparisons are not case-sensitive. This works <span class="emphasis"> <em> only </em> </span> on file systems that are not case-sensitive! <code class="literal"> InnoDB </code> table names and view names are stored in lowercase, as for <code class="literal"> lower_case_table_names=1 </code> . </td> </tr> </tbody> </table> </div> <p> If you are using MySQL on only one platform, you do not normally have to use a <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names </code> </a> setting other than the default. However, you may encounter difficulties if you want to transfer tables between platforms that differ in file system case sensitivity. For example, on Unix, you can have two different tables named <code class="literal"> my_table </code> and <code class="literal"> MY_TABLE </code> , but on Windows these two names are considered identical. To avoid data transfer problems arising from lettercase of database or table names, you have two options: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Use <code class="literal"> lower_case_table_names=1 </code> on all systems. The main disadvantage with this is that when you use <a class="link" href="show-tables.html" title="15.7.7.39 SHOW TABLES Statement"> <code class="literal"> SHOW TABLES </code> </a> or <a class="link" href="show-databases.html" title="15.7.7.15 SHOW DATABASES Statement"> <code class="literal"> SHOW DATABASES </code> </a> , you do not see the names in their original lettercase. </p> </li> <li class="listitem"> <p> Use <code class="literal"> lower_case_table_names=0 </code> on Unix and <code class="literal"> lower_case_table_names=2 </code> on Windows. This preserves the lettercase of database and table names. The disadvantage of this is that you must ensure that your statements always refer to your database and table names with the correct lettercase on Windows. If you transfer your statements to Unix, where lettercase is significant, they do not work if the lettercase is incorrect. </p> <p> <span class="bold"> <strong> Exception </strong> </span> : If you are using <code class="literal"> InnoDB </code> tables and you are trying to avoid these data transfer problems, you should use <a class="link" href="server-system-variables.html#sysvar_lower_case_table_names"> <code class="literal"> lower_case_table_names=1 </code> </a> on all platforms to force names to be converted to lowercase. </p> </li> </ul> </div> <p> Object names may be considered duplicates if their uppercase forms are equal according to a binary collation. That is true for names of cursors, conditions, procedures, functions, savepoints, stored routine parameters, stored program local variables, and plugins. It is not true for names of columns, constraints, databases, partitions, statements prepared with <a class="link" href="prepare.html" title="15.5.1 PREPARE Statement"> <code class="literal"> PREPARE </code> </a> , tables, triggers, users, and user-defined variables. </p> <p> File system case sensitivity can affect searches in string columns of <code class="literal"> INFORMATION_SCHEMA </code> tables. For more information, see <a class="xref" href="charset-collation-information-schema.html" title="12.8.7 Using Collation in INFORMATION_SCHEMA Searches"> Section 12.8.7, “Using Collation in INFORMATION_SCHEMA Searches” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/group-replication-upgrading-member.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="group-replication-upgrading-member"> </a> 20.8.3.2 Upgrading a Group Replication Member </h4> </div> </div> </div> <a class="indexterm" name="idm46045131600000"> </a> <p> This section explains the steps required for upgrading a member of a group. This procedure is part of the methods described at <a class="xref" href="group-replication-online-upgrade-methods.html" title="20.8.3.3 Group Replication Online Upgrade Methods"> Section 20.8.3.3, “Group Replication Online Upgrade Methods” </a> . The process of upgrading a member of a group is common to all methods and is explained first. The way which you join upgraded members can depend on which method you are following, and other factors such as whether the group is operating in single-primary or multi-primary mode. How you upgrade the server instance, using either the in-place or provision approach, does not impact on the methods described here. </p> <p> The process of upgrading a member consists of removing it from the group, following your chosen method of upgrading the member, and then rejoining the upgraded member to a group. The recommended order of upgrading members in a single-primary group is to upgrade all secondaries, and then upgrade the primary last. If the primary is upgraded before a secondary, a new primary using the older MySQL version is chosen, but there is no need for this step. </p> <p> To upgrade a member of a group: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Connect a client to the group member and issue <a class="link" href="stop-group-replication.html" title="15.4.3.2 STOP GROUP_REPLICATION Statement"> <code class="literal"> STOP GROUP_REPLICATION </code> </a> . Before proceeding, ensure that the member's status is <code class="literal"> OFFLINE </code> by monitoring the <a class="link" href="performance-schema-replication-group-members-table.html" title="29.12.11.16 The replication_group_members Table"> <code class="literal"> replication_group_members </code> </a> table. </p> </li> <li class="listitem"> <p> Disable Group Replication from starting up automatically so that you can safely connect to the member after upgrading and configure it without it rejoining the group by setting <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_start_on_boot"> <code class="literal"> group_replication_start_on_boot=0 </code> </a> . </p> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> If an upgraded member has <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_start_on_boot"> <code class="literal"> group_replication_start_on_boot=1 </code> </a> then it could rejoin the group before you can perform the MySQL upgrade procedure and could result in issues. For example, if the upgrade fails and the server restarts again, then a possibly broken server could try to join the group. </p> </div> </li> <li class="listitem"> <p> Stop the member, for example using <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin shutdown </strong> </span> </a> or the <a class="link" href="shutdown.html" title="15.7.8.9 SHUTDOWN Statement"> <code class="literal"> SHUTDOWN </code> </a> statement. Any other members in the group continue running. </p> </li> <li class="listitem"> <p> Upgrade the member, using the in-place or provisioning approach. See <a class="xref" href="upgrading.html" title="Chapter 3 Upgrading MySQL"> Chapter 3, <i> Upgrading MySQL </i> </a> for details. When restarting the upgraded member, because <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_start_on_boot"> <code class="literal"> group_replication_start_on_boot </code> </a> is set to 0, Group Replication does not start on the instance, and therefore it does not rejoin the group. </p> </li> <li class="listitem"> <p> Once the MySQL upgrade procedure has been performed on the member, <a class="link" href="group-replication-system-variables.html#sysvar_group_replication_start_on_boot"> <code class="literal"> group_replication_start_on_boot </code> </a> must be set to 1 to ensure Group Replication starts correctly after restart. Restart the member. </p> </li> <li class="listitem"> <p> Connect to the upgraded member and issue <a class="link" href="start-group-replication.html" title="15.4.3.1 START GROUP_REPLICATION Statement"> <code class="literal"> START GROUP_REPLICATION </code> </a> . This rejoins the member to the group. The Group Replication metadata is in place on the upgraded server, therefore there is usually no need to reconfigure Group Replication. The server has to catch up with any transactions processed by the group while the server was offline. Once it has caught up with the group, it becomes an online member of the group. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> The longer it takes to upgrade a server, the more time that member is offline and therefore the more time it takes for the server to catch up when added back to the group. </p> </div> </li> </ul> </div> <p> When an upgraded member joins a group which has any member running an earlier MySQL Server version, the upgraded member joins with <a class="link" href="server-system-variables.html#sysvar_super_read_only"> <code class="literal"> super_read_only=on </code> </a> . This ensures that no writes are made to upgraded members until all members are running the newer version. In a multi-primary mode group, when the upgrade has been completed successfully and the group is ready to process transactions, members that are intended as writeable primaries must be set to read/write mode. When all members of a group have been upgraded to the same release, they all change back to read/write mode automatically. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mathematical-functions.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mathematical-functions"> </a> 14.6.2 Mathematical Functions </h3> </div> </div> </div> <div class="table"> <a name="idm46045206298160"> </a> <p class="title"> <b> Table 14.10 Mathematical Functions </b> </p> <div class="table-contents"> <table frame="box" rules="all" summary="A reference that lists mathematical functions."> <colgroup> <col style="width: 28%"/> <col style="width: 71%"/> </colgroup> <thead> <tr> <th> Name </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="mathematical-functions.html#function_abs"> <code class="literal"> ABS() </code> </a> </td> <td> Return the absolute value </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_acos"> <code class="literal"> ACOS() </code> </a> </td> <td> Return the arc cosine </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_asin"> <code class="literal"> ASIN() </code> </a> </td> <td> Return the arc sine </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_atan"> <code class="literal"> ATAN() </code> </a> </td> <td> Return the arc tangent </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_atan2"> <code class="literal"> ATAN2() </code> , <code class="literal"> ATAN() </code> </a> </td> <td> Return the arc tangent of the two arguments </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_ceil"> <code class="literal"> CEIL() </code> </a> </td> <td> Return the smallest integer value not less than the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_ceiling"> <code class="literal"> CEILING() </code> </a> </td> <td> Return the smallest integer value not less than the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_conv"> <code class="literal"> CONV() </code> </a> </td> <td> Convert numbers between different number bases </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_cos"> <code class="literal"> COS() </code> </a> </td> <td> Return the cosine </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_cot"> <code class="literal"> COT() </code> </a> </td> <td> Return the cotangent </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_crc32"> <code class="literal"> CRC32() </code> </a> </td> <td> Compute a cyclic redundancy check value </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_degrees"> <code class="literal"> DEGREES() </code> </a> </td> <td> Convert radians to degrees </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_exp"> <code class="literal"> EXP() </code> </a> </td> <td> Raise to the power of </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_floor"> <code class="literal"> FLOOR() </code> </a> </td> <td> Return the largest integer value not greater than the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_ln"> <code class="literal"> LN() </code> </a> </td> <td> Return the natural logarithm of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG() </code> </a> </td> <td> Return the natural logarithm of the first argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_log10"> <code class="literal"> LOG10() </code> </a> </td> <td> Return the base-10 logarithm of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_log2"> <code class="literal"> LOG2() </code> </a> </td> <td> Return the base-2 logarithm of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_mod"> <code class="literal"> MOD() </code> </a> </td> <td> Return the remainder </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_pi"> <code class="literal"> PI() </code> </a> </td> <td> Return the value of pi </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_pow"> <code class="literal"> POW() </code> </a> </td> <td> Return the argument raised to the specified power </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_power"> <code class="literal"> POWER() </code> </a> </td> <td> Return the argument raised to the specified power </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_radians"> <code class="literal"> RADIANS() </code> </a> </td> <td> Return argument converted to radians </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> </td> <td> Return a random floating-point value </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND() </code> </a> </td> <td> Round the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_sign"> <code class="literal"> SIGN() </code> </a> </td> <td> Return the sign of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_sin"> <code class="literal"> SIN() </code> </a> </td> <td> Return the sine of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_sqrt"> <code class="literal"> SQRT() </code> </a> </td> <td> Return the square root of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_tan"> <code class="literal"> TAN() </code> </a> </td> <td> Return the tangent of the argument </td> </tr> <tr> <td> <a class="link" href="mathematical-functions.html#function_truncate"> <code class="literal"> TRUNCATE() </code> </a> </td> <td> Truncate to specified number of decimal places </td> </tr> </tbody> </table> </div> <div class="table-contents"> <table cellpadding="0" cellspacing="0" style="position: fixed; top: 0px; display: none; left: 401px; width: 567px;"> <thead> <tr> <th style="width: 159.984px;"> Name </th> <th style="width: 405.75px;"> Description </th> </tr> </thead> </table> </div> </div> <br class="table-break"/> <p> All mathematical functions return <code class="literal"> NULL </code> in the event of an error. </p> <a class="indexterm" name="idm46045206199728"> </a> <a class="indexterm" name="idm46045206198656"> </a> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <a name="function_abs"> </a> <p> <a class="link" href="mathematical-functions.html#function_abs"> <code class="literal"> ABS( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206192256"> </a> <p> Returns the absolute value of <em class="replaceable"> <code> X </code> </em> , or <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <p> The result type is derived from the argument type. An implication of this is that <a class="link" href="mathematical-functions.html#function_abs"> <code class="literal"> ABS(-9223372036854775808) </code> </a> produces an error because the result cannot be stored in a signed <code class="literal"> BIGINT </code> value. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa89416677"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ABS</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ABS</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">32</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">32</span></code></pre> </div> <p> This function is safe to use with <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> values. </p> </li> <li class="listitem"> <a name="function_acos"> </a> <p> <a class="link" href="mathematical-functions.html#function_acos"> <code class="literal"> ACOS( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206174912"> </a> <p> Returns the arc cosine of <em class="replaceable"> <code> X </code> </em> , that is, the value whose cosine is <em class="replaceable"> <code> X </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is not in the range <code class="literal"> -1 </code> to <code class="literal"> 1 </code> , or if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa12041012"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ACOS</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ACOS</span><span class="token punctuation">(</span><span class="token number">1.0001</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ACOS</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.5707963267949</span></code></pre> </div> </li> <li class="listitem"> <a name="function_asin"> </a> <p> <a class="link" href="mathematical-functions.html#function_asin"> <code class="literal"> ASIN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206158832"> </a> <p> Returns the arc sine of <em class="replaceable"> <code> X </code> </em> , that is, the value whose sine is <em class="replaceable"> <code> X </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is not in the range <code class="literal"> -1 </code> to <code class="literal"> 1 </code> , or if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa91024531"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ASIN</span><span class="token punctuation">(</span><span class="token number">0.2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.20135792079033</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ASIN</span><span class="token punctuation">(</span><span class="token string">'foo'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ASIN('foo') <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Level <span class="token punctuation">|</span> Code <span class="token punctuation">|</span> Message <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Warning <span class="token punctuation">|</span> 1292 <span class="token punctuation">|</span> Truncated incorrect DOUBLE value: 'foo' <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> <li class="listitem"> <a name="function_atan"> </a> <p> <a class="link" href="mathematical-functions.html#function_atan"> <code class="literal"> ATAN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206142176"> </a> <p> Returns the arc tangent of <em class="replaceable"> <code> X </code> </em> , that is, the value whose tangent is <em class="replaceable"> <code> X </code> </em> . Returns <em class="replaceable"> <code> NULL </code> </em> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa19697008"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ATAN</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.1071487177941</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ATAN</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1.1071487177941</span></code></pre> </div> </li> <li class="listitem"> <a name="function_atan2"> </a> <p> <a class="link" href="mathematical-functions.html#function_atan2"> <code class="literal"> ATAN( <em class="replaceable"> <code> Y </code> </em> , <em class="replaceable"> <code> X </code> </em> ) </code> </a> , <a class="link" href="mathematical-functions.html#function_atan2"> <code class="literal"> ATAN2( <em class="replaceable"> <code> Y </code> </em> , <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206126400"> </a> <p> Returns the arc tangent of the two variables <em class="replaceable"> <code> X </code> </em> and <em class="replaceable"> <code> Y </code> </em> . It is similar to calculating the arc tangent of <code class="literal"> <em class="replaceable"> <code> Y </code> </em> / <em class="replaceable"> <code> X </code> </em> </code> , except that the signs of both arguments are used to determine the quadrant of the result. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> or <em class="replaceable"> <code> Y </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa70785433"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ATAN</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">0.78539816339745</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ATAN2</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.5707963267949</span></code></pre> </div> </li> <li class="listitem"> <a name="function_ceil"> </a> <p> <a class="link" href="mathematical-functions.html#function_ceil"> <code class="literal"> CEIL( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206110928"> </a> <p> <a class="link" href="mathematical-functions.html#function_ceil"> <code class="literal"> CEIL() </code> </a> is a synonym for <a class="link" href="mathematical-functions.html#function_ceiling"> <code class="literal"> CEILING() </code> </a> . </p> </li> <li class="listitem"> <a name="function_ceiling"> </a> <p> <a class="link" href="mathematical-functions.html#function_ceiling"> <code class="literal"> CEILING( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206100592"> </a> <p> Returns the smallest integer value not less than <em class="replaceable"> <code> X </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa30094610"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CEILING</span><span class="token punctuation">(</span><span class="token number">1.23</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CEILING</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">1.23</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1</span></code></pre> </div> <p> For exact-value numeric arguments, the return value has an exact-value numeric type. For string or floating-point arguments, the return value has a floating-point type. </p> </li> <li class="listitem"> <a name="function_conv"> </a> <p> <a class="link" href="mathematical-functions.html#function_conv"> <code class="literal"> CONV( <em class="replaceable"> <code> N </code> </em> , <em class="replaceable"> <code> from_base </code> </em> , <em class="replaceable"> <code> to_base </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206086016"> </a> <p> Converts numbers between different number bases. Returns a string representation of the number <em class="replaceable"> <code> N </code> </em> , converted from base <em class="replaceable"> <code> from_base </code> </em> to base <em class="replaceable"> <code> to_base </code> </em> . Returns <code class="literal"> NULL </code> if any argument is <code class="literal"> NULL </code> . The argument <em class="replaceable"> <code> N </code> </em> is interpreted as an integer, but may be specified as an integer or a string. The minimum base is <code class="literal"> 2 </code> and the maximum base is <code class="literal"> 36 </code> . If <em class="replaceable"> <code> from_base </code> </em> is a negative number, <em class="replaceable"> <code> N </code> </em> is regarded as a signed number. Otherwise, <em class="replaceable"> <code> N </code> </em> is treated as unsigned. <a class="link" href="mathematical-functions.html#function_conv"> <code class="literal"> CONV() </code> </a> works with 64-bit precision. </p> <p> <code class="literal"> CONV() </code> returns <code class="literal"> NULL </code> if any of its arguments are <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa84765985"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONV</span><span class="token punctuation">(</span><span class="token string">'a'</span><span class="token punctuation">,</span><span class="token number">16</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'1010'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONV</span><span class="token punctuation">(</span><span class="token string">'6E'</span><span class="token punctuation">,</span><span class="token number">18</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'172'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONV</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">17</span><span class="token punctuation">,</span><span class="token number">10</span><span class="token punctuation">,</span><span class="token operator">-</span><span class="token number">18</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'-H'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONV</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token operator">+</span><span class="token string">'10'</span><span class="token operator">+</span><span class="token string">'10'</span><span class="token operator">+</span>X<span class="token string">'0a'</span><span class="token punctuation">,</span><span class="token number">10</span><span class="token punctuation">,</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'40'</span></code></pre> </div> </li> <li class="listitem"> <a name="function_cos"> </a> <p> <a class="link" href="mathematical-functions.html#function_cos"> <code class="literal"> COS( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206063536"> </a> <p> Returns the cosine of <em class="replaceable"> <code> X </code> </em> , where <em class="replaceable"> <code> X </code> </em> is given in radians. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa21994635"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COS</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1</span></code></pre> </div> </li> <li class="listitem"> <a name="function_cot"> </a> <p> <a class="link" href="mathematical-functions.html#function_cot"> <code class="literal"> COT( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206050720"> </a> <p> Returns the cotangent of <em class="replaceable"> <code> X </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa93349708"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COT</span><span class="token punctuation">(</span><span class="token number">12</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1.5726734063977</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COT</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">out</span><span class="token operator">-</span><span class="token keyword">of</span><span class="token operator">-</span><span class="token keyword">range</span> <span class="token keyword">error</span></code></pre> </div> </li> <li class="listitem"> <a name="function_crc32"> </a> <p> <a class="link" href="mathematical-functions.html#function_crc32"> <code class="literal"> CRC32( <em class="replaceable"> <code> expr </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206037472"> </a> <p> Computes a cyclic redundancy check value and returns a 32-bit unsigned value. The result is <code class="literal"> NULL </code> if the argument is <code class="literal"> NULL </code> . The argument is expected to be a string and (if possible) is treated as one if it is not. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa11360596"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CRC32</span><span class="token punctuation">(</span><span class="token string">'MySQL'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">3259397556</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CRC32</span><span class="token punctuation">(</span><span class="token string">'mysql'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2501908538</span></code></pre> </div> </li> <li class="listitem"> <a name="function_degrees"> </a> <p> <a class="link" href="mathematical-functions.html#function_degrees"> <code class="literal"> DEGREES( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206024960"> </a> <p> Returns the argument <em class="replaceable"> <code> X </code> </em> , converted from radians to degrees. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa61168688"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DEGREES</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">180</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DEGREES</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">/</span> <span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">90</span></code></pre> </div> </li> <li class="listitem"> <a name="function_exp"> </a> <p> <a class="link" href="mathematical-functions.html#function_exp"> <code class="literal"> EXP( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045206011808"> </a> <p> Returns the value of <span class="emphasis"> <em> e </em> </span> (the base of natural logarithms) raised to the power of <em class="replaceable"> <code> X </code> </em> . The inverse of this function is <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG() </code> </a> (using a single argument only) or <a class="link" href="mathematical-functions.html#function_ln"> <code class="literal"> LN() </code> </a> . </p> <p> If <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> , this function returns <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa4129655"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">EXP</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">7.3890560989307</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">EXP</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.13533528323661</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">EXP</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span></code></pre> </div> </li> <li class="listitem"> <a name="function_floor"> </a> <p> <a class="link" href="mathematical-functions.html#function_floor"> <code class="literal"> FLOOR( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205994416"> </a> <p> Returns the largest integer value not greater than <em class="replaceable"> <code> X </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa46978986"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">FLOOR</span><span class="token punctuation">(</span><span class="token number">1.23</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token function">FLOOR</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">1.23</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">2</span></code></pre> </div> <p> For exact-value numeric arguments, the return value has an exact-value numeric type. For string or floating-point arguments, the return value has a floating-point type. </p> </li> <li class="listitem"> <p> <a class="link" href="string-functions.html#function_format"> <code class="literal"> FORMAT( <em class="replaceable"> <code> X </code> </em> , <em class="replaceable"> <code> D </code> </em> ) </code> </a> </p> <p> Formats the number <em class="replaceable"> <code> X </code> </em> to a format like <code class="literal"> '#,###,###.##' </code> , rounded to <em class="replaceable"> <code> D </code> </em> decimal places, and returns the result as a string. For details, see <a class="xref" href="string-functions.html" title="14.8 String Functions and Operators"> Section 14.8, “String Functions and Operators” </a> . </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045205978320"> </a> <a class="link" href="string-functions.html#function_hex"> <code class="literal"> HEX(N_or_S) </code> </a> </p> <p> This function can be used to obtain a hexadecimal representation of a decimal number or a string; the manner in which it does so varies according to the argument's type. See this function's description in <a class="xref" href="string-functions.html" title="14.8 String Functions and Operators"> Section 14.8, “String Functions and Operators” </a> , for details. </p> </li> <li class="listitem"> <a name="function_ln"> </a> <p> <a class="link" href="mathematical-functions.html#function_ln"> <code class="literal"> LN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205969712"> </a> <p> Returns the natural logarithm of <em class="replaceable"> <code> X </code> </em> ; that is, the base- <span class="emphasis"> <em> e </em> </span> logarithm of <em class="replaceable"> <code> X </code> </em> . If <em class="replaceable"> <code> X </code> </em> is less than or equal to 0.0E0, the function returns <code class="literal"> NULL </code> and a warning <span class="quote"> “ <span class="quote"> Invalid argument for logarithm </span> ” </span> is reported. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa84010264"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LN</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.69314718055995</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LN</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> <p> This function is synonymous with <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> X </code> </em> ) </code> </a> . The inverse of this function is the <a class="link" href="mathematical-functions.html#function_exp"> <code class="literal"> EXP() </code> </a> function. </p> </li> <li class="listitem"> <a name="function_log"> </a> <p> <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> X </code> </em> ) </code> </a> , <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> B </code> </em> , <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205948656"> </a> <p> If called with one parameter, this function returns the natural logarithm of <em class="replaceable"> <code> X </code> </em> . If <em class="replaceable"> <code> X </code> </em> is less than or equal to 0.0E0, the function returns <code class="literal"> NULL </code> and a warning <span class="quote"> “ <span class="quote"> Invalid argument for logarithm </span> ” </span> is reported. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> or <em class="replaceable"> <code> B </code> </em> is <code class="literal"> NULL </code> . </p> <p> The inverse of this function (when called with a single argument) is the <a class="link" href="mathematical-functions.html#function_exp"> <code class="literal"> EXP() </code> </a> function. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa74482526"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.69314718055995</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> <p> If called with two parameters, this function returns the logarithm of <em class="replaceable"> <code> X </code> </em> to the base <em class="replaceable"> <code> B </code> </em> . If <em class="replaceable"> <code> X </code> </em> is less than or equal to 0, or if <em class="replaceable"> <code> B </code> </em> is less than or equal to 1, then <code class="literal"> NULL </code> is returned. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57751811"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token number">65536</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">16</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">,</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> B </code> </em> , <em class="replaceable"> <code> X </code> </em> ) </code> </a> is equivalent to <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> X </code> </em> ) / LOG( <em class="replaceable"> <code> B </code> </em> ) </code> </a> . </p> </li> <li class="listitem"> <a name="function_log2"> </a> <p> <a class="link" href="mathematical-functions.html#function_log2"> <code class="literal"> LOG2( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205921088"> </a> <p> Returns the base-2 logarithm of <code class="literal"> <em class="replaceable"> <code> X </code> </em> </code> . If <em class="replaceable"> <code> X </code> </em> is less than or equal to 0.0E0, the function returns <code class="literal"> NULL </code> and a warning <span class="quote"> “ <span class="quote"> Invalid argument for logarithm </span> ” </span> is reported. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51217433"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG2</span><span class="token punctuation">(</span><span class="token number">65536</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">16</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG2</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_log2"> <code class="literal"> LOG2() </code> </a> is useful for finding out how many bits a number requires for storage. This function is equivalent to the expression <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG( <em class="replaceable"> <code> X </code> </em> ) / LOG(2) </code> </a> . </p> </li> <li class="listitem"> <a name="function_log10"> </a> <p> <a class="link" href="mathematical-functions.html#function_log10"> <code class="literal"> LOG10( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205902496"> </a> <p> Returns the base-10 logarithm of <em class="replaceable"> <code> X </code> </em> . If <em class="replaceable"> <code> X </code> </em> is less than or equal to 0.0E0, the function returns <code class="literal"> NULL </code> and a warning <span class="quote"> “ <span class="quote"> Invalid argument for logarithm </span> ” </span> is reported. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa66072306"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG10</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.30102999566398</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG10</span><span class="token punctuation">(</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LOG10</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_log10"> <code class="literal"> LOG10( <em class="replaceable"> <code> X </code> </em> ) </code> </a> is equivalent to <a class="link" href="mathematical-functions.html#function_log"> <code class="literal"> LOG(10, <em class="replaceable"> <code> X </code> </em> ) </code> </a> . </p> </li> <li class="listitem"> <a name="function_mod"> </a> <p> <a class="link" href="mathematical-functions.html#function_mod"> <code class="literal"> MOD( <em class="replaceable"> <code> N </code> </em> , <em class="replaceable"> <code> M </code> </em> ) </code> </a> , <a class="link" href="arithmetic-functions.html#operator_mod"> <code class="literal"> <em class="replaceable"> <code> N </code> </em> % <em class="replaceable"> <code> M </code> </em> </code> </a> , <a class="link" href="arithmetic-functions.html#operator_mod"> <code class="literal"> <em class="replaceable"> <code> N </code> </em> MOD <em class="replaceable"> <code> M </code> </em> </code> </a> </p> <a class="indexterm" name="idm46045205879424"> </a> <a class="indexterm" name="idm46045205878352"> </a> <a class="indexterm" name="idm46045205877280"> </a> <a class="indexterm" name="idm46045205876208"> </a> <a class="indexterm" name="idm46045205875136"> </a> <p> Modulo operation. Returns the remainder of <em class="replaceable"> <code> N </code> </em> divided by <em class="replaceable"> <code> M </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> M </code> </em> or <em class="replaceable"> <code> N </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa7111243"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">MOD</span><span class="token punctuation">(</span><span class="token number">234</span><span class="token punctuation">,</span> <span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">4</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">253</span> <span class="token operator">%</span> <span class="token number">7</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">MOD</span><span class="token punctuation">(</span><span class="token number">29</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">29</span> <span class="token operator">MOD</span> <span class="token number">9</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span></code></pre> </div> <p> This function is safe to use with <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> values. </p> <p> <a class="link" href="mathematical-functions.html#function_mod"> <code class="literal"> MOD() </code> </a> also works on values that have a fractional part and returns the exact remainder after division: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa72035516"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">MOD</span><span class="token punctuation">(</span><span class="token number">34.5</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.5</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_mod"> <code class="literal"> MOD( <em class="replaceable"> <code> N </code> </em> ,0) </code> </a> returns <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <a name="function_pi"> </a> <p> <a class="link" href="mathematical-functions.html#function_pi"> <code class="literal"> PI() </code> </a> </p> <a class="indexterm" name="idm46045205852368"> </a> <p> Returns the value of π (pi). The default number of decimal places displayed is seven, but MySQL uses the full double-precision value internally. </p> <p> Because the return value of this function is a double-precision value, its exact representation may vary between platforms or implementations. This also applies to any expressions making use of <code class="literal"> PI() </code> . See <a class="xref" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> Section 13.1.4, “Floating-Point Types (Approximate Value) - FLOAT, DOUBLE” </a> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa6181439"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">3.141593</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">+</span><span class="token number">0.000000000000000000</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">3.141592653589793000</span></code></pre> </div> </li> <li class="listitem"> <a name="function_pow"> </a> <p> <a class="link" href="mathematical-functions.html#function_pow"> <code class="literal"> POW( <em class="replaceable"> <code> X </code> </em> , <em class="replaceable"> <code> Y </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205838624"> </a> <p> Returns the value of <em class="replaceable"> <code> X </code> </em> raised to the power of <em class="replaceable"> <code> Y </code> </em> . Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> or <em class="replaceable"> <code> Y </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa39957762"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">POW</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">4</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">POW</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.25</span></code></pre> </div> </li> <li class="listitem"> <a name="function_power"> </a> <p> <a class="link" href="mathematical-functions.html#function_power"> <code class="literal"> POWER( <em class="replaceable"> <code> X </code> </em> , <em class="replaceable"> <code> Y </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205824320"> </a> <p> This is a synonym for <a class="link" href="mathematical-functions.html#function_pow"> <code class="literal"> POW() </code> </a> . </p> </li> <li class="listitem"> <a name="function_radians"> </a> <p> <a class="link" href="mathematical-functions.html#function_radians"> <code class="literal"> RADIANS( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205815184"> </a> <p> Returns the argument <em class="replaceable"> <code> X </code> </em> , converted from degrees to radians. (Note that π radians equals 180 degrees.) Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa10199580"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">RADIANS</span><span class="token punctuation">(</span><span class="token number">90</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.5707963267949</span></code></pre> </div> </li> <li class="listitem"> <a name="function_rand"> </a> <p> <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND([ <em class="replaceable"> <code> N </code> </em> ]) </code> </a> </p> <a class="indexterm" name="idm46045205802560"> </a> <p> Returns a random floating-point value <em class="replaceable"> <code> v </code> </em> in the range <code class="literal"> 0 </code> &lt;= <em class="replaceable"> <code> v </code> </em> &lt; <code class="literal"> 1.0 </code> . To obtain a random integer <em class="replaceable"> <code> R </code> </em> in the range <em class="replaceable"> <code> i </code> </em> &lt;= <em class="replaceable"> <code> R </code> </em> &lt; <em class="replaceable"> <code> j </code> </em> , use the expression <a class="link" href="mathematical-functions.html#function_floor"> <code class="literal"> FLOOR( <em class="replaceable"> <code> i </code> </em> + RAND() * ( <em class="replaceable"> <code> j </code> </em> </code> </a> − <code class="literal"> <em class="replaceable"> <code> i </code> </em> )) </code> . For example, to obtain a random integer in the range the range <code class="literal"> 7 </code> &lt;= <em class="replaceable"> <code> R </code> </em> &lt; <code class="literal"> 12 </code> , use the following statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa86321183"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token function">FLOOR</span><span class="token punctuation">(</span><span class="token number">7</span> <span class="token operator">+</span> <span class="token punctuation">(</span><span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token operator">*</span> <span class="token number">5</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> If an integer argument <em class="replaceable"> <code> N </code> </em> is specified, it is used as the seed value: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> With a constant initializer argument, the seed is initialized once when the statement is prepared, prior to execution. </p> </li> <li class="listitem"> <p> With a nonconstant initializer argument (such as a column name), the seed is initialized with the value for each invocation of <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> . </p> </li> </ul> </div> <p> One implication of this behavior is that for equal argument values, <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND( <em class="replaceable"> <code> N </code> </em> ) </code> </a> returns the same value each time, and thus produces a repeatable sequence of column values. In the following example, the sequence of values produced by <code class="literal"> RAND(3) </code> is the same both places it occurs. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa31818123"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span>i <span class="token datatype">INT</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.42 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token keyword">VALUES</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 3 rows affected (0.00 sec)</span> <span class="token output">Records: 3 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> RAND() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 0.61914388706828 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 0.93845168309142 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 0.83482678498591 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> RAND(3) <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 0.90576975597606 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 0.37307905813035 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 0.14808605345719 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> RAND() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 0.35877890638893 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 0.28941420772058 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 0.37073435016976 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> i<span class="token punctuation">,</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> i <span class="token punctuation">|</span> RAND(3) <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 0.90576975597606 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 0.37307905813035 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 0.14808605345719 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.01 sec)</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> in a <code class="literal"> WHERE </code> clause is evaluated for every row (when selecting from one table) or combination of rows (when selecting from a multiple-table join). Thus, for optimizer purposes, <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> is not a constant value and cannot be used for index optimizations. For more information, see <a class="xref" href="function-optimization.html" title="10.2.1.20 Function Call Optimization"> Section 10.2.1.20, “Function Call Optimization” </a> . </p> <p> Use of a column with <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> values in an <code class="literal"> ORDER BY </code> or <code class="literal"> GROUP BY </code> clause may yield unexpected results because for either clause a <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> expression can be evaluated multiple times for the same row, each time returning a different result. If the goal is to retrieve rows in random order, you can use a statement like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa45106447"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> To select a random sample from a set of rows, combine <code class="literal"> ORDER BY RAND() </code> with <code class="literal"> LIMIT </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa38489810"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> table1<span class="token punctuation">,</span> table2 <span class="token keyword">WHERE</span> a<span class="token operator">=</span>b <span class="token operator">AND</span> c<span class="token operator">&lt;</span>d <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">LIMIT</span> <span class="token number">1000</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_rand"> <code class="literal"> RAND() </code> </a> is not meant to be a perfect random generator. It is a fast way to generate random numbers on demand that is portable between platforms for the same MySQL version. </p> <p> This function is unsafe for statement-based replication. A warning is logged if you use this function when <a class="link" href="replication-options-binary-log.html#sysvar_binlog_format"> <code class="literal"> binlog_format </code> </a> is set to <code class="literal"> STATEMENT </code> . </p> </li> <li class="listitem"> <a name="function_round"> </a> <p> <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND( <em class="replaceable"> <code> X </code> </em> ) </code> </a> , <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND( <em class="replaceable"> <code> X </code> </em> , <em class="replaceable"> <code> D </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205749680"> </a> <p> Rounds the argument <em class="replaceable"> <code> X </code> </em> to <em class="replaceable"> <code> D </code> </em> decimal places. The rounding algorithm depends on the data type of <em class="replaceable"> <code> X </code> </em> . <em class="replaceable"> <code> D </code> </em> defaults to 0 if not specified. <em class="replaceable"> <code> D </code> </em> can be negative to cause <em class="replaceable"> <code> D </code> </em> digits left of the decimal point of the value <em class="replaceable"> <code> X </code> </em> to become zero. The maximum absolute value for <em class="replaceable"> <code> D </code> </em> is 30; any digits in excess of 30 (or -30) are truncated. If <em class="replaceable"> <code> X </code> </em> or <em class="replaceable"> <code> D </code> </em> is <code class="literal"> NULL </code> , the function returns <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa74543640"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">1.23</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">1.58</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">1.58</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">1.298</span><span class="token punctuation">,</span> <span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.3</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">1.298</span><span class="token punctuation">,</span> <span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">23.298</span><span class="token punctuation">,</span> <span class="token operator">-</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">20</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token punctuation">.</span><span class="token number">12345678901234567890123456789012345</span><span class="token punctuation">,</span> <span class="token number">35</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0.123456789012345678901234567890</span></code></pre> </div> <p> The return value has the same type as the first argument (assuming that it is integer, double, or decimal). This means that for an integer argument, the result is an integer (no decimal places): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa62222484"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">150.000</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">150</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ROUND(150.000,2) <span class="token punctuation">|</span> ROUND(150,2) <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 150.00 <span class="token punctuation">|</span> 150 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND() </code> </a> uses the following rules depending on the type of the first argument: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> For exact-value numbers, <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND() </code> </a> uses the <span class="quote"> “ <span class="quote"> round half away from zero </span> ” </span> or <span class="quote"> “ <span class="quote"> round toward nearest </span> ” </span> rule: A value with a fractional part of .5 or greater is rounded up to the next integer if positive or down to the next integer if negative. (In other words, it is rounded away from zero.) A value with a fractional part less than .5 is rounded down to the next integer if positive or up to the next integer if negative. </p> </li> <li class="listitem"> <p> For approximate-value numbers, the result depends on the C library. On many systems, this means that <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND() </code> </a> uses the <span class="quote"> “ <span class="quote"> round to nearest even </span> ” </span> rule: A value with a fractional part exactly halfway between two integers is rounded to the nearest even integer. </p> </li> </ul> </div> <p> The following example shows how rounding differs for exact and approximate values: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa40496639"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">2.5</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token number">25E</span><span class="token operator">-</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ROUND(2.5) <span class="token punctuation">|</span> ROUND(25E<span class="token punctuation">-</span>1) <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For more information, see <a class="xref" href="precision-math.html" title="14.24 Precision Math"> Section 14.24, “Precision Math” </a> . </p> <p> The data type returned by <code class="literal"> ROUND() </code> (and <a class="link" href="mathematical-functions.html#function_truncate"> <code class="literal"> TRUNCATE() </code> </a> ) is determined according to the rules listed here: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> When the first argument is of any integer type, the return type is always <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> . </p> </li> <li class="listitem"> <p> When the first argument is of any floating-point type or of any non-numeric type, the return type is always <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> . </p> </li> <li class="listitem"> <p> When the first argument is a <a class="link" href="fixed-point-types.html" title="13.1.3 Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC"> <code class="literal"> DECIMAL </code> </a> value, the return type is also <code class="literal"> DECIMAL </code> . </p> </li> <li class="listitem"> <p> The type attributes for the return value are also copied from the first argument, except in the case of <code class="literal"> DECIMAL </code> , when the second argument is a constant value. </p> <p> When the desired number of decimal places is less than the scale of the argument, the scale and the precision of the result are adjusted accordingly. </p> <p> In addition, for <code class="literal"> ROUND() </code> (but not for the <a class="link" href="mathematical-functions.html#function_truncate"> <code class="literal"> TRUNCATE() </code> </a> function), the precision is extended by one place to accommodate rounding that increases the number of significant digits. If the second argument is negative, the return type is adjusted such that its scale is 0, with a corresponding precision. For example, <code class="literal"> ROUND(99.999, 2) </code> returns <code class="literal"> 100.00 </code> —the first argument is <code class="literal"> DECIMAL(5, 3) </code> , and the return type is <code class="literal"> DECIMAL(5, 2) </code> . </p> <p> If the second argument is negative, the return type has scale 0 and a corresponding precision; <code class="literal"> ROUND(99.999, -1) </code> returns <code class="literal"> 100 </code> , which is <code class="literal"> DECIMAL(3, 0) </code> . </p> </li> </ul> </div> </li> <li class="listitem"> <a name="function_sign"> </a> <p> <a class="link" href="mathematical-functions.html#function_sign"> <code class="literal"> SIGN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205694016"> </a> <p> Returns the sign of the argument as <code class="literal"> -1 </code> , <code class="literal"> 0 </code> , or <code class="literal"> 1 </code> , depending on whether <em class="replaceable"> <code> X </code> </em> is negative, zero, or positive. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa86702969"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SIGN</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">32</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SIGN</span><span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SIGN</span><span class="token punctuation">(</span><span class="token number">234</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span></code></pre> </div> </li> <li class="listitem"> <a name="function_sin"> </a> <p> <a class="link" href="mathematical-functions.html#function_sin"> <code class="literal"> SIN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205678080"> </a> <p> Returns the sine of <em class="replaceable"> <code> X </code> </em> , where <em class="replaceable"> <code> X </code> </em> is given in radians. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa86585193"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SIN</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.2246063538224e</span><span class="token operator">-</span><span class="token number">16</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROUND</span><span class="token punctuation">(</span><span class="token function">SIN</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span></code></pre> </div> </li> <li class="listitem"> <a name="function_sqrt"> </a> <p> <a class="link" href="mathematical-functions.html#function_sqrt"> <code class="literal"> SQRT( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205664464"> </a> <p> Returns the square root of a nonnegative number <em class="replaceable"> <code> X </code> </em> . If <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> , the function returns <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa83626948"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SQRT</span><span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SQRT</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">4.4721359549996</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">SQRT</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">16</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token boolean">NULL</span></code></pre> </div> </li> <li class="listitem"> <a name="function_tan"> </a> <p> <a class="link" href="mathematical-functions.html#function_tan"> <code class="literal"> TAN( <em class="replaceable"> <code> X </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205650512"> </a> <p> Returns the tangent of <em class="replaceable"> <code> X </code> </em> , where <em class="replaceable"> <code> X </code> </em> is given in radians. Returns <code class="literal"> NULL </code> if <em class="replaceable"> <code> X </code> </em> is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25428931"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TAN</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1.2246063538224e</span><span class="token operator">-</span><span class="token number">16</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TAN</span><span class="token punctuation">(</span><span class="token function">PI</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token operator">+</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.5574077246549</span></code></pre> </div> </li> <li class="listitem"> <a name="function_truncate"> </a> <p> <a class="link" href="mathematical-functions.html#function_truncate"> <code class="literal"> TRUNCATE( <em class="replaceable"> <code> X </code> </em> , <em class="replaceable"> <code> D </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045205636528"> </a> <p> Returns the number <em class="replaceable"> <code> X </code> </em> , truncated to <em class="replaceable"> <code> D </code> </em> decimal places. If <em class="replaceable"> <code> D </code> </em> is <code class="literal"> 0 </code> , the result has no decimal point or fractional part. <em class="replaceable"> <code> D </code> </em> can be negative to cause <em class="replaceable"> <code> D </code> </em> digits left of the decimal point of the value <em class="replaceable"> <code> X </code> </em> to become zero. If <em class="replaceable"> <code> X </code> </em> or <em class="replaceable"> <code> D </code> </em> is <code class="literal"> NULL </code> , the function returns <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa2149100"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token number">1.223</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token number">1.999</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1.9</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token number">1.999</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token operator">-</span><span class="token number">1.999</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token operator">-</span><span class="token number">1.9</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token number">122</span><span class="token punctuation">,</span><span class="token operator">-</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">100</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">TRUNCATE</span><span class="token punctuation">(</span><span class="token number">10.28</span><span class="token operator">*</span><span class="token number">100</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1028</span></code></pre> </div> <p> All numbers are rounded toward zero. </p> <p> The data type returned by <code class="literal"> TRUNCATE() </code> follows the same rules that determine the return type of the <code class="literal"> ROUND() </code> function; for details, see the description for <a class="link" href="mathematical-functions.html#function_round"> <code class="literal"> ROUND() </code> </a> . </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysqldump-copying-database.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysqldump-copying-database"> </a> 9.4.5.1 Making a Copy of a Database </h4> </div> </div> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa18284688"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql">$<span class="token operator">&gt;</span> mysqldump db1 <span class="token operator">&gt;</span> dump<span class="token punctuation">.</span><span class="token keyword">sql</span> $<span class="token operator">&gt;</span> mysqladmin <span class="token keyword">create</span> db2 $<span class="token operator">&gt;</span> mysql db2 <span class="token operator">&lt;</span> dump<span class="token punctuation">.</span><span class="token keyword">sql</span></code></pre> </div> <p> Do not use <a class="link" href="mysqldump.html#option_mysqldump_databases"> <code class="option"> --databases </code> </a> on the <a class="link" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> <span class="command"> <strong> mysqldump </strong> </span> </a> command line because that causes <code class="literal"> USE db1 </code> to be included in the dump file, which overrides the effect of naming <code class="literal"> db2 </code> on the <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> command line. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/charset-collate.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="charset-collate"> </a> 12.8.1 Using COLLATE in SQL Statements </h3> </div> </div> </div> <p> With the <code class="literal"> COLLATE </code> clause, you can override whatever the default collation is for a comparison. <code class="literal"> COLLATE </code> may be used in various parts of SQL statements. Here are some examples: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> With <code class="literal"> ORDER BY </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa56920788"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> k <span class="token keyword">FROM</span> t1 <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> k <span class="token keyword">COLLATE</span> latin1_german2_ci<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With <code class="literal"> AS </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa81176091"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> k <span class="token keyword">COLLATE</span> latin1_german2_ci <span class="token keyword">AS</span> k1 <span class="token keyword">FROM</span> t1 <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> k1<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With <code class="literal"> GROUP BY </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa43293884"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> k <span class="token keyword">FROM</span> t1 <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> k <span class="token keyword">COLLATE</span> latin1_german2_ci<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With aggregate functions: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa22135611"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token function">MAX</span><span class="token punctuation">(</span>k <span class="token keyword">COLLATE</span> latin1_german2_ci<span class="token punctuation">)</span> <span class="token keyword">FROM</span> t1<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With <code class="literal"> DISTINCT </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa31236424"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token keyword">DISTINCT</span> k <span class="token keyword">COLLATE</span> latin1_german2_ci <span class="token keyword">FROM</span> t1<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With <code class="literal"> WHERE </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa90915056"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> _latin1 <span class="token string">'Müller'</span> <span class="token keyword">COLLATE</span> latin1_german2_ci <span class="token operator">=</span> k<span class="token punctuation">;</span></code></pre> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa24368163"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> k <span class="token operator">LIKE</span> _latin1 <span class="token string">'Müller'</span> <span class="token keyword">COLLATE</span> latin1_german2_ci<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> With <code class="literal"> HAVING </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa48021277"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> k <span class="token keyword">FROM</span> t1 <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> k <span class="token keyword">HAVING</span> k <span class="token operator">=</span> _latin1 <span class="token string">'Müller'</span> <span class="token keyword">COLLATE</span> latin1_german2_ci<span class="token punctuation">;</span></code></pre> </div> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/session-state-tracking.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="session-state-tracking"> </a> 7.1.18 Server Tracking of Client Session State </h3> </div> </div> </div> <a class="indexterm" name="idm46045260091472"> </a> <a class="indexterm" name="idm46045260090016"> </a> <p> The MySQL server implements several session state trackers. A client can enable these trackers to receive notification of changes to its session state. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="session-state-tracking.html#session-state-tracking-uses" title="Uses for Session State Trackers"> Uses for Session State Trackers </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="session-state-tracking.html#session-state-tracking-notifications" title="Available Session State Trackers"> Available Session State Trackers </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="session-state-tracking.html#session-state-tracking-capi-support" title="C API Session State Tracker Support"> C API Session State Tracker Support </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="session-state-tracking.html#session-state-tracking-test-suite-support" title="Test Suite Session State Tracker Support"> Test Suite Session State Tracker Support </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="session-state-tracking-uses"> </a> Uses for Session State Trackers </h4> </div> </div> </div> <p> Session state trackers have uses such as these: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> To facilitate session migration. </p> </li> <li class="listitem"> <p> To facilitate transaction switching. </p> </li> </ul> </div> <p> The tracker mechanism provides a means for MySQL connectors and client applications to determine whether any session context is available to permit session migration from one server to another. (To change sessions in a load-balanced environment, it is necessary to detect whether there is session state to take into consideration when deciding whether a switch can be made.) </p> <p> The tracker mechanism permits applications to know when transactions can be moved from one session to another. Transaction state tracking enables this, which is useful for applications that may wish to move transactions from a busy server to one that is less loaded. For example, a load-balancing connector managing a client connection pool could move transactions between available sessions in the pool. </p> <p> However, session switching cannot be done at arbitrary times. If a session is in the middle of a transaction for which reads or writes have been done, switching to a different session implies a transaction rollback on the original session. A session switch must be done only when a transaction does not yet have any reads or writes performed within it. </p> <p> Examples of when transactions might reasonably be switched: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Immediately after <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> START TRANSACTION </code> </a> </p> </li> <li class="listitem"> <p> After <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> COMMIT AND CHAIN </code> </a> </p> </li> </ul> </div> <p> In addition to knowing transaction state, it is useful to know transaction characteristics, so as to use the same characteristics if the transaction is moved to a different session. The following characteristics are relevant for this purpose: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-simple"><div class="docs-select-all right" id="sa12650051"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">READ ONLY READ WRITE ISOLATION LEVEL WITH CONSISTENT SNAPSHOT</code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="session-state-tracking-notifications"> </a> Available Session State Trackers </h4> </div> </div> </div> <p> To support the session-tracking activities, notification is available for these types of client session state information: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Changes to these attributes of client session state: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The default schema (database). </p> </li> <li class="listitem"> <p> Session-specific values for system variables. </p> </li> <li class="listitem"> <p> User-defined variables. </p> </li> <li class="listitem"> <p> Temporary tables. </p> </li> <li class="listitem"> <p> Prepared statements. </p> </li> </ul> </div> <p> The <a class="link" href="server-system-variables.html#sysvar_session_track_state_change"> <code class="literal"> session_track_state_change </code> </a> system variable controls this tracker. </p> <a class="indexterm" name="idm46045260061072"> </a> <a class="indexterm" name="idm46045260059968"> </a> </li> <li class="listitem"> <p> Changes to the default schema name. The <a class="link" href="server-system-variables.html#sysvar_session_track_schema"> <code class="literal"> session_track_schema </code> </a> system variable controls this tracker. </p> <a class="indexterm" name="idm46045260056256"> </a> <a class="indexterm" name="idm46045260055216"> </a> </li> <li class="listitem"> <p> Changes to the session values of system variables. The <a class="link" href="server-system-variables.html#sysvar_session_track_system_variables"> <code class="literal"> session_track_system_variables </code> </a> system variable controls this tracker. The <a class="link" href="privileges-provided.html#priv_sensitive-variables-observer"> <code class="literal"> SENSITIVE_VARIABLES_OBSERVER </code> </a> privilege is required to track changes to the values of sensitive system variables. </p> <a class="indexterm" name="idm46045260050160"> </a> <a class="indexterm" name="idm46045260049056"> </a> </li> <li class="listitem"> <p> Available GTIDs. The <a class="link" href="server-system-variables.html#sysvar_session_track_gtids"> <code class="literal"> session_track_gtids </code> </a> system variable controls this tracker. </p> <a class="indexterm" name="idm46045260045360"> </a> <a class="indexterm" name="idm46045260044320"> </a> </li> <li class="listitem"> <p> Information about transaction state and characteristics. The <a class="link" href="server-system-variables.html#sysvar_session_track_transaction_info"> <code class="literal"> session_track_transaction_info </code> </a> system variable controls this tracker. </p> </li> </ul> </div> <p> For descriptions of the tracker-related system variables, see <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> . Those system variables permit control over which change notifications occur, but do not provide a way to access notification information. Notification occurs in the MySQL client/server protocol, which includes tracker information in OK packets so that session state changes can be detected. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="session-state-tracking-capi-support"> </a> C API Session State Tracker Support </h4> </div> </div> </div> <p> To enable client applications to extract state-change information from OK packets returned by the server, the MySQL C API provides a pair of functions: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-first.html" target="_top"> <code class="literal"> mysql_session_track_get_first() </code> </a> fetches the first part of the state-change information received from the server. See <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-first.html" target="_top"> mysql_session_track_get_first() </a> . </p> <a class="indexterm" name="idm46045260034112"> </a> </li> <li class="listitem"> <p> <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-next.html" target="_top"> <code class="literal"> mysql_session_track_get_next() </code> </a> fetches any remaining state-change information received from the server. Following a successful call to <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-first.html" target="_top"> <code class="literal"> mysql_session_track_get_first() </code> </a> , call this function repeatedly as long as it returns success. See <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-next.html" target="_top"> mysql_session_track_get_next() </a> . </p> <a class="indexterm" name="idm46045260028832"> </a> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="session-state-tracking-test-suite-support"> </a> Test Suite Session State Tracker Support </h4> </div> </div> </div> <a class="indexterm" name="idm46045260026144"> </a> <a class="indexterm" name="idm46045260025040"> </a> <a class="indexterm" name="idm46045260023536"> </a> <a class="indexterm" name="idm46045260022448"> </a> <a class="indexterm" name="idm46045260020960"> </a> <a class="indexterm" name="idm46045260019856"> </a> <a class="indexterm" name="idm46045260018352"> </a> <a class="indexterm" name="idm46045260017264"> </a> <a class="indexterm" name="idm46045260015776"> </a> <a class="indexterm" name="idm46045260014656"> </a> <a class="indexterm" name="idm46045260013136"> </a> <a class="indexterm" name="idm46045260012032"> </a> <p> The <span class="command"> <strong> mysqltest </strong> </span> program has <code class="literal"> disable_session_track_info </code> and <code class="literal"> enable_session_track_info </code> commands that control whether session tracker notifications occur. You can use these commands to see from the command line what notifications SQL statements produce. Suppose that a file <code class="filename"> testscript </code> contains the following <span class="command"> <strong> mysqltest </strong> </span> script: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa34325262"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DROP</span> <span class="token keyword">TABLE</span> <span class="token keyword">IF</span> <span class="token keyword">EXISTS</span> test<span class="token punctuation">.</span>t1<span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span>i <span class="token datatype">INT</span><span class="token punctuation">,</span> f <span class="token datatype">FLOAT</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment" spellcheck="true">--enable_session_track_info</span> <span class="token keyword">SET</span> <span class="token variable">@@SESSION.session_track_schema</span><span class="token operator">=</span><span class="token keyword">ON</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token variable">@@SESSION.session_track_system_variables</span><span class="token operator">=</span><span class="token string">'*'</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token variable">@@SESSION.session_track_state_change</span><span class="token operator">=</span><span class="token keyword">ON</span><span class="token punctuation">;</span> <span class="token keyword">USE</span> information_schema<span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token keyword">NAMES</span> <span class="token string">'utf8mb4'</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token variable">@@SESSION.session_track_transaction_info</span><span class="token operator">=</span><span class="token string">'CHARACTERISTICS'</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token keyword">TRANSACTION</span> <span class="token keyword">ISOLATION</span> <span class="token keyword">LEVEL</span> <span class="token keyword">SERIALIZABLE</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token keyword">TRANSACTION</span> <span class="token keyword">READ</span> <span class="token keyword">WRITE</span><span class="token punctuation">;</span> <span class="token keyword">START</span> <span class="token keyword">TRANSACTION</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token number">1</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">VALUES</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">VALUES</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span> <span class="token function">RAND</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">COMMIT</span><span class="token punctuation">;</span></code></pre> </div> <p> Run the script as follows to see the information provided by the enabled trackers. For a description of the <code class="literal"> Tracker: </code> information displayed by <span class="command"> <strong> mysqltest </strong> </span> for the various trackers, see <a class="ulink" href="/doc/c-api/8.4/en/mysql-session-track-get-first.html" target="_top"> mysql_session_track_get_first() </a> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa45506681"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">mysqltest</span> &lt; testscript DROP TABLE IF EXISTS test<span class="token punctuation">.</span>t1<span class="token punctuation">;</span> CREATE TABLE test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span>i INT<span class="token punctuation">,</span> f FLOAT<span class="token punctuation">)</span><span class="token punctuation">;</span> SET @@SESSION<span class="token punctuation">.</span>session_track_schema<span class="token attr-value"><span class="token punctuation">=</span>ON;</span> SET @@SESSION<span class="token punctuation">.</span>session_track_system_variables=<span class="token atrule">'*'</span><span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_SYSTEM_VARIABLES <span class="token property">--</span> session_track_system_variables <span class="token property">--</span> * SET @@SESSION<span class="token punctuation">.</span>session_track_state_change<span class="token attr-value"><span class="token punctuation">=</span>ON;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_SYSTEM_VARIABLES <span class="token property">--</span> session_track_state_change <span class="token property">--</span> ON USE information_schema<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_SCHEMA <span class="token property">--</span> information_schema <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_STATE_CHANGE <span class="token property">--</span> 1 SET NAMES <span class="token atrule">'utf8mb4'</span><span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_SYSTEM_VARIABLES <span class="token property">--</span> character_set_client <span class="token property">--</span> utf8mb4 <span class="token property">--</span> character_set_connection <span class="token property">--</span> utf8mb4 <span class="token property">--</span> character_set_results <span class="token property">--</span> utf8mb4 <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_STATE_CHANGE <span class="token property">--</span> 1 SET @@SESSION<span class="token punctuation">.</span>session_track_transaction_info=<span class="token atrule">'CHARACTERISTICS'</span><span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_SYSTEM_VARIABLES <span class="token property">--</span> session_track_transaction_info <span class="token property">--</span> CHARACTERISTICS <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_STATE_CHANGE <span class="token property">--</span> 1 <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_CHARACTERISTICS <span class="token property">--</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> ________ SET TRANSACTION ISOLATION LEVEL SERIALIZABLE<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_CHARACTERISTICS <span class="token property">--</span> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE<span class="token punctuation">;</span> SET TRANSACTION READ WRITE<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_CHARACTERISTICS <span class="token property">--</span> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE<span class="token punctuation">;</span> SET TRANSACTION READ WRITE<span class="token punctuation">;</span> START TRANSACTION<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_CHARACTERISTICS <span class="token property">--</span> SET TRANSACTION ISOLATION LEVEL SERIALIZABLE<span class="token punctuation">;</span> START TRANSACTION READ WRITE<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> T_______ SELECT 1<span class="token punctuation">;</span> 1 1 <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> T_____S_ INSERT INTO test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span><span class="token punctuation">)</span> VALUES<span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> T___W_S_ INSERT INTO test<span class="token punctuation">.</span>t1 <span class="token punctuation">(</span><span class="token punctuation">)</span> VALUES<span class="token punctuation">(</span>1<span class="token punctuation">,</span> RAND<span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> T___WsS_ COMMIT<span class="token punctuation">;</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_CHARACTERISTICS <span class="token property">--</span> <span class="token property">--</span> Tracker <span class="token punctuation">:</span> SESSION_TRACK_TRANSACTION_STATE <span class="token property">--</span> ________ ok</code></pre> </div> <p> Preceding the <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> START TRANSACTION </code> </a> statement, two <a class="link" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> <code class="literal"> SET TRANSACTION </code> </a> statements execute that set the isolation level and access mode characteristics for the next transaction. The <code class="literal"> SESSION_TRACK_TRANSACTION_CHARACTERISTICS </code> value indicates those next-transaction values that have been set. </p> <p> Following the <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> COMMIT </code> </a> statement that ends the transaction, the <code class="literal"> SESSION_TRACK_TRANSACTION_CHARACTERISTICS </code> value is reported as empty. This indicates that the next-transaction characteristics that were set preceding the start of the transaction have been reset, and that the session defaults apply. To track changes to those session defaults, track the session values of the <a class="link" href="server-system-variables.html#sysvar_transaction_isolation"> <code class="literal"> transaction_isolation </code> </a> and <a class="link" href="server-system-variables.html#sysvar_transaction_read_only"> <code class="literal"> transaction_read_only </code> </a> system variables. </p> <p> To see information about GTIDs, enable the <code class="literal"> SESSION_TRACK_GTIDS </code> tracker using the <a class="link" href="server-system-variables.html#sysvar_session_track_gtids"> <code class="literal"> session_track_gtids </code> </a> system system variable. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/sys-ps-setup-save.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="sys-ps-setup-save"> </a> 30.4.4.14 The ps_setup_save() Procedure </h4> </div> </div> </div> <a class="indexterm" name="idm46045061405472"> </a> <a class="indexterm" name="idm46045061404000"> </a> <p> Saves the current Performance Schema configuration. This enables you to alter the configuration temporarily for debugging or other purposes, then restore it to the previous state by invoking the <a class="link" href="sys-ps-setup-reload-saved.html" title="30.4.4.12 The ps_setup_reload_saved() Procedure"> <code class="literal"> ps_setup_reload_saved() </code> </a> procedure. </p> <p> To prevent other simultaneous calls to save the configuration, <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> acquires an advisory lock named <code class="literal"> sys.ps_setup_save </code> by calling the <a class="link" href="locking-functions.html#function_get-lock"> <code class="literal"> GET_LOCK() </code> </a> function. <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> takes a timeout parameter to indicate how many seconds to wait if the lock already exists (which indicates that some other session has a saved configuration outstanding). If the timeout expires without obtaining the lock, <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> fails. </p> <p> It is intended you call <a class="link" href="sys-ps-setup-reload-saved.html" title="30.4.4.12 The ps_setup_reload_saved() Procedure"> <code class="literal"> ps_setup_reload_saved() </code> </a> later within the <span class="emphasis"> <em> same </em> </span> session as <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> because the configuration is saved in <code class="literal"> TEMPORARY </code> tables. <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> drops the temporary tables and releases the lock. If you end your session without invoking <a class="link" href="sys-ps-setup-save.html" title="30.4.4.14 The ps_setup_save() Procedure"> <code class="literal"> ps_setup_save() </code> </a> , the tables and lock disappear automatically. </p> <p> This procedure disables binary logging during its execution by manipulating the session value of the <a class="link" href="replication-options-binary-log.html#sysvar_sql_log_bin"> <code class="literal"> sql_log_bin </code> </a> system variable. That is a restricted operation, so the procedure requires privileges sufficient to set restricted session variables. See <a class="xref" href="system-variable-privileges.html" title="7.1.9.1 System Variable Privileges"> Section 7.1.9.1, “System Variable Privileges” </a> . </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="sys-ps-setup-save-parameters"> </a> Parameters </h5> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> in_timeout INT </code> : How many seconds to wait to obtain the <code class="literal"> sys.ps_setup_save </code> lock. A negative timeout value means infinite timeout. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="sys-ps-setup-save-example"> </a> Example </h5> </div> </div> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57261237"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CALL</span> sys<span class="token punctuation">.</span>ps_setup_save<span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <em class="replaceable">make Performance <span class="token keyword">Schema</span> configuration changes</em> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CALL</span> sys<span class="token punctuation">.</span>ps_setup_reload_saved<span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-install-linux-source.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysql-cluster-install-linux-source"> </a> 25.3.1.4 Building NDB Cluster from Source on Linux </h4> </div> </div> </div> <a class="indexterm" name="idm46045122645584"> </a> <a class="indexterm" name="idm46045122644096"> </a> <p> This section provides information about compiling NDB Cluster on Linux and other Unix-like platforms. Building NDB Cluster from source is similar to building the standard MySQL Server, although it differs in a few key respects discussed here. For general information about building MySQL from source, see <a class="xref" href="source-installation.html" title="2.8 Installing MySQL from Source"> Section 2.8, “Installing MySQL from Source” </a> . For information about compiling NDB Cluster on Windows platforms, see <a class="xref" href="mysql-cluster-install-windows-source.html" title="25.3.2.2 Compiling and Installing NDB Cluster from Source on Windows"> Section 25.3.2.2, “Compiling and Installing NDB Cluster from Source on Windows” </a> . </p> <p> MySQL NDB Cluster 8.4 is built from the MySQL Server 8.4 sources, available from the MySQL downloads page at <a class="ulink" href="https://dev.mysql.com/downloads/" target="_top"> https://dev.mysql.com/downloads/ </a> . The archived source file should have a name similar to <code class="filename"> mysql-8.4.0.tar.gz </code> . You can also obtain the sources from GitHub at <a class="ulink" href="https://github.com/mysql/mysql-server" target="_blank"> https://github.com/mysql/mysql-server </a> . </p> <p> The <a class="link" href="source-configuration-options.html#option_cmake_with_ndb"> <code class="option"> WITH_NDB </code> </a> option for <span class="command"> <strong> CMake </strong> </span> causes the binaries for the management nodes, data nodes, and other NDB Cluster programs to be built; it also causes <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> to be compiled with <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> storage engine support. This option is required when building NDB Cluster. </p> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> The <a class="link" href="source-configuration-options.html#option_cmake_with_ndb_java"> <code class="option"> WITH_NDB_JAVA </code> </a> option is enabled by default. This means that, by default, if <span class="command"> <strong> CMake </strong> </span> cannot find the location of Java on your system, the configuration process fails; if you do not wish to enable Java and ClusterJ support, you must indicate this explicitly by configuring the build using <code class="option"> -DWITH_NDB_JAVA=OFF </code> . Use <a class="link" href="source-configuration-options.html#option_cmake_with_classpath"> <code class="option"> WITH_CLASSPATH </code> </a> to provide the Java classpath if needed. </p> </div> <p> For more information about <span class="command"> <strong> CMake </strong> </span> options specific to building NDB Cluster, see <a class="xref" href="source-configuration-options.html#cmake-mysql-cluster-options" title="CMake Options for Compiling NDB Cluster"> CMake Options for Compiling NDB Cluster </a> . </p> <p> After you have run <span class="command"> <strong> make &amp;&amp; make install </strong> </span> (or your system's equivalent), the result is similar to what is obtained by unpacking a precompiled binary to the same location. </p> <p> <b> Management nodes. </b> When building from source and running the default <span class="command"> <strong> make install </strong> </span> , the management server and management client binaries ( <a class="link" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> <span class="command"> <strong> ndb_mgmd </strong> </span> </a> and <a class="link" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> <span class="command"> <strong> ndb_mgm </strong> </span> </a> ) can be found in <code class="filename"> /usr/local/mysql/bin </code> . Only <a class="link" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> <span class="command"> <strong> ndb_mgmd </strong> </span> </a> is required to be present on a management node host; however, it is also a good idea to have <a class="link" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> <span class="command"> <strong> ndb_mgm </strong> </span> </a> present on the same host machine. Neither of these executables requires a specific location on the host machine's file system. </p> <p> <b> Data nodes. </b> The only executable required on a data node host is the data node binary <a class="link" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> <span class="command"> <strong> ndbd </strong> </span> </a> or <a class="link" href="mysql-cluster-programs-ndbmtd.html" title="25.5.3 ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)"> <span class="command"> <strong> ndbmtd </strong> </span> </a> . ( <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> , for example, does not have to be present on the host machine.) By default, when building from source, this file is placed in the directory <code class="filename"> /usr/local/mysql/bin </code> . For installing on multiple data node hosts, only <a class="link" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> <span class="command"> <strong> ndbd </strong> </span> </a> or <a class="link" href="mysql-cluster-programs-ndbmtd.html" title="25.5.3 ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)"> <span class="command"> <strong> ndbmtd </strong> </span> </a> need be copied to the other host machine or machines. (This assumes that all data node hosts use the same architecture and operating system; otherwise you may need to compile separately for each different platform.) The data node binary need not be in any particular location on the host's file system, as long as the location is known. </p> <p> When compiling NDB Cluster from source, no special options are required for building multithreaded data node binaries. Configuring the build with <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> storage engine support causes <a class="link" href="mysql-cluster-programs-ndbmtd.html" title="25.5.3 ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)"> <span class="command"> <strong> ndbmtd </strong> </span> </a> to be built automatically; <span class="command"> <strong> make install </strong> </span> places the <a class="link" href="mysql-cluster-programs-ndbmtd.html" title="25.5.3 ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded)"> <span class="command"> <strong> ndbmtd </strong> </span> </a> binary in the installation <code class="filename"> bin </code> directory along with <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> , <a class="link" href="mysql-cluster-programs-ndbd.html" title="25.5.1 ndbd — The NDB Cluster Data Node Daemon"> <span class="command"> <strong> ndbd </strong> </span> </a> , and <a class="link" href="mysql-cluster-programs-ndb-mgm.html" title="25.5.5 ndb_mgm — The NDB Cluster Management Client"> <span class="command"> <strong> ndb_mgm </strong> </span> </a> . </p> <p> <b> SQL nodes. </b> If you compile MySQL with clustering support, and perform the default installation (using <span class="command"> <strong> make install </strong> </span> as the system <code class="literal"> root </code> user), <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> is placed in <code class="filename"> /usr/local/mysql/bin </code> . Follow the steps given in <a class="xref" href="source-installation.html" title="2.8 Installing MySQL from Source"> Section 2.8, “Installing MySQL from Source” </a> to make <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> ready for use. If you want to run multiple SQL nodes, you can use a copy of the same <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> executable and its associated support files on several machines. The easiest way to do this is to copy the entire <code class="filename"> /usr/local/mysql </code> directory and all directories and files contained within it to the other SQL node host or hosts, then repeat the steps from <a class="xref" href="source-installation.html" title="2.8 Installing MySQL from Source"> Section 2.8, “Installing MySQL from Source” </a> on each machine. If you configure the build with a nondefault <code class="option"> PREFIX </code> option, you must adjust the directory accordingly. </p> <p> In <a class="xref" href="mysql-cluster-install-configuration.html" title="25.3.3 Initial Configuration of NDB Cluster"> Section 25.3.3, “Initial Configuration of NDB Cluster” </a> , we create configuration files for all of the nodes in our example NDB Cluster. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/ix01.html
<div id="docs-body"> <div class="index"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="ix01"> </a> General Index </h2> </div> </div> </div> <div class="index" xmlns:xlink="http://www.w3.org/1999/xlink"> <p> <a href="ix01.html#manual_index0_Symbols"> Symbols </a> | <a href="ix01.html#manual_index0_A"> A </a> | <a href="ix01.html#manual_index0_B"> B </a> | <a href="ix01.html#manual_index0_C"> C </a> | <a href="ix01.html#manual_index0_D"> D </a> | <a href="ix01.html#manual_index0_E"> E </a> | <a href="ix01.html#manual_index0_F"> F </a> | <a href="ix01.html#manual_index0_G"> G </a> | <a href="ix01.html#manual_index0_H"> H </a> | <a href="ix01.html#manual_index0_I"> I </a> | <a href="ix01.html#manual_index0_J"> J </a> | <a href="ix01.html#manual_index0_K"> K </a> | <a href="ix01.html#manual_index0_L"> L </a> | <a href="ix01.html#manual_index0_M"> M </a> | <a href="ix01.html#manual_index0_N"> N </a> | <a href="ix01.html#manual_index0_O"> O </a> | <a href="ix01.html#manual_index0_P"> P </a> | <a href="ix01.html#manual_index0_Q"> Q </a> | <a href="ix01.html#manual_index0_R"> R </a> | <a href="ix01.html#manual_index0_S"> S </a> | <a href="ix01.html#manual_index0_T"> T </a> | <a href="ix01.html#manual_index0_U"> U </a> | <a href="ix01.html#manual_index0_V"> V </a> | <a href="ix01.html#manual_index0_W"> W </a> | <a href="ix01.html#manual_index0_X"> X </a> | <a href="ix01.html#manual_index0_Y"> Y </a> | <a href="ix01.html#manual_index0_Z"> Z </a> </p> <div class="indexdiv"> <h3> <a name="manual_index0_Symbols"> </a> Symbols </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045206965008"> ! (logical NOT), <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> <dt id="ientry-idm46045207372272"> != (not equal), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045220061808"> ", <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt id="ientry-idm46045206305728"> %, <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045205878352"> % (modulo), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045220534112"> % (wildcard character), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045199932080"> &amp; (bitwise AND), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045206941328"> &amp;&amp; (logical AND), <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> <dt id="ientry-idm46045207539168"> () (parentheses), <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> <dt id="ientry-idm46045220542752"> (Control+Z) \Z, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045206353072"> * (multiplication), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045206391392"> + (addition), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045206380656"> - (subtraction), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045206369920"> - (unary minus), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045252892048"> --password option, <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> </dt> <dt id="ientry-idm46045195533904"> -&gt;, <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045195483232"> -&gt;&gt;, <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045107084800"> -c option (ndb_mgmd) (OBSOLETE), <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt id="ientry-idm46045106963248"> -d option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045106240752"> -e option </dt> <dd> <dl> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045107087776"> -f option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045107456416"> -l option </dt> <dd> <dl> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045107858528"> -n option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045252890976"> -p option, <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> </dt> <dt id="ientry-idm46045106561472"> -P option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045106483024"> -v option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045185418400"> .ibd file, <a class="indexterm" href="create-table-files.html"> Files Created by CREATE TABLE </a> </dt> <dt id="ientry-idm46045324166432"> .my.cnf option file, <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="option-files.html#option-file-order"> Option File Processing Order </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> , <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dt id="ientry-idm46045185419472"> .MYD file, <a class="indexterm" href="create-table-files.html"> Files Created by CREATE TABLE </a> </dt> <dt id="ientry-idm46045185420544"> .MYI file, <a class="indexterm" href="create-table-files.html"> Files Created by CREATE TABLE </a> </dt> <dt id="ientry-idm46045324163872"> .mylogin.cnf option file, <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt id="ientry-idm46045317475088"> .mysql_history file, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> </dt> <dt id="ientry-idm46045230443088"> .pid (process ID) file, <a class="indexterm" href="myisam-maintenance-schedule.html"> Setting Up a MyISAM Table Maintenance Schedule </a> </dt> <dt id="ientry-idm46045182662464"> .sdi file, <a class="indexterm" href="import-table.html"> IMPORT TABLE Statement </a> </dt> <dt id="ientry-idm46045206338144"> / (division), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045252756304"> /etc/passwd, <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> , <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt id="ientry-idm46045248032816"> 1FA (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045248026736"> 2FA (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045327925600"> 3306 port, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> , <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt id="ientry-idm46045327951104"> 33060 port, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt id="ientry-idm46045248023696"> 3FA (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045206853888"> := (assignment operator), <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt id="ientry-idm46045218687536"> := (assignment), <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> </dt> <dt id="ientry-idm46045207344016"> &lt; (less than), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045324602352"> &lt;&lt; (left shift), <a class="indexterm" href="calculating-days.html"> Calculating Visits Per Day </a> , <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045207356992"> &lt;= (less than or equal), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207398240"> &lt;=&gt; (equal to), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207374448"> &lt;&gt; (not equal), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045206819472"> = (assignment operator), <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt id="ientry-idm46045218688608"> = (assignment), <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> </dt> <dt id="ientry-idm46045207414432"> = (equal), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207317984"> &gt; (greater than), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207330944"> &gt;= (greater than or equal), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045199868528"> &gt;&gt; (right shift), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045121453232"> [api] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-api.html"> NDB Cluster SQL Node and API Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121391392"> [computer] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-other.html"> Other NDB Cluster Configuration Parameters </a> </dt> <dt id="ientry-idm46045121504784"> [mgm] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-mgmd.html"> NDB Cluster Management Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121454304"> [mysqld] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-api.html"> NDB Cluster SQL Node and API Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121910736"> [ndbd default] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-ndbd.html"> NDB Cluster Data Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121911808"> [ndbd] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-ndbd.html"> NDB Cluster Data Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121505872"> [ndb_mgmd] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-mgmd.html"> NDB Cluster Management Node Configuration Parameters </a> </dt> <dt id="ientry-idm46045121389232"> [shm] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-other.html"> Other NDB Cluster Configuration Parameters </a> </dt> <dt id="ientry-idm46045121390304"> [tcp] (NDB Cluster), <a class="indexterm" href="mysql-cluster-params-other.html"> Other NDB Cluster Configuration Parameters </a> </dt> <dt id="ientry-idm46045220569408"> \" (double quote), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045220574528"> \' (single quote), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045324750896"> \. (mysql client command), <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> , <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> </dt> <dt id="ientry-idm46045220579648"> \0 (ASCII NUL), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045220564288"> \b (backspace), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045194844736"> \f (formfeed), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045220557968"> \n (linefeed), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045220559856"> \n (newline), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045181686416"> \N (NULL), <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045220553520"> \r (carriage return), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045220548128"> \t (tab), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045194818736"> \u (Unicode character), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045220543696"> \Z (Control+Z) ASCII 26, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045220539232"> \\ (escape), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045199911168"> ^ (bitwise XOR), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045220528944"> _ (wildcard character), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045217935344"> _ai collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt id="ientry-idm46045217932784"> _as collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt id="ientry-idm46045217922544"> _bin collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> , <a class="indexterm" href="charset-binary-collations.html"> The binary Collation Compared to _bin Collations </a> </dt> <dt id="ientry-idm46045217930224"> _ci collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt id="ientry-idm46045217927664"> _cs collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt id="ientry-idm46045217925104"> _ks collation sufffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt id="ientry-idm46045187870480"> _rowid </dt> <dd> <dl> <dt> SELECT statements, <a class="indexterm" href="create-index.html#create-index-unique"> Unique Indexes </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045220062848"> `, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt id="ientry-idm46045199952992"> | (bitwise OR), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045206919424"> || (logical OR), <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> <dt id="ientry-idm46045199848368"> ~ (invert bits), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_A"> </a> A </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045102998880"> abort-on-error option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045054303776"> aborted clients, <a class="indexterm" href="communication-errors.html"> Communication Errors and Aborted Connections </a> </dt> <dt id="ientry-idm46045054302736"> aborted connection, <a class="indexterm" href="communication-errors.html"> Communication Errors and Aborted Connections </a> </dt> <dt id="ientry-idm46045263593936"> Aborted_clients status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263587520"> Aborted_connects status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045206192256"> ABS(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045303129248"> abstract-numbers option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045252340944"> access control, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> , <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> </dt> <dt id="ientry-idm46045054586752"> access denied errors, <a class="indexterm" href="error-access-denied.html"> Access denied </a> </dt> <dt id="ientry-idm46045252337760"> access privileges, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045326687376"> account </dt> <dd> <dl> <dt> default, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt> root, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> </dl> </dd> <dt id="ientry-idm46045174670080"> account attributes </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-comments-attributes"> ALTER USER Comment and Attribute Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-comments-attributes"> CREATE USER Comment and Attribute Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045249167648"> account categories, <a class="indexterm" href="account-categories.html"> Account Categories </a> </dt> <dt id="ientry-idm46045174671568"> account comments </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-comments-attributes"> ALTER USER Comment and Attribute Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-comments-attributes"> CREATE USER Comment and Attribute Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045262440752"> account locking, <a class="indexterm" href="grant-tables.html#grant-tables-user-db"> The user and db Grant Tables </a> , <a class="indexterm" href="account-locking.html"> Account Locking </a> </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-account-locking"> ALTER USER Account-Locking Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-account-locking"> CREATE USER Account-Locking Options </a> </dt> <dt> Locked_connects status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045252339904"> account management, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045250009920"> account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt id="ientry-idm46045249582160"> accounts </dt> <dd> <dl> <dt> adding privileges, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> creating, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> deleting, <a class="indexterm" href="creating-accounts.html#dropping-accounts"> Dropping Accounts </a> </dt> <dt> reserved, <a class="indexterm" href="reserved-accounts.html"> Reserved Accounts </a> </dt> </dl> </dd> <dt id="ientry-idm46045072096704"> accounts table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-accounts-table.html"> The accounts Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045250324496"> account_locked column </dt> <dd> <dl> <dt> user table, <a class="indexterm" href="grant-tables.html#grant-tables-user-db"> The user and db Grant Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045167484048"> ACID, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> , <a class="indexterm" href="mysql-acid.html"> InnoDB and the ACID Model </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045252336688"> ACLs, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045263560464"> Acl_cache_items_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045206174912"> ACOS(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045278669888"> activate_all_roles_on_login system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045257096192"> activating plugins, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> </dt> <dt id="ientry-idm46045326479232"> ActiveState Perl, <a class="indexterm" href="activestate-perl.html"> Installing ActiveState Perl on Windows </a> </dt> <dt id="ientry-idm46045033995584"> adaptive flushing, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045166903936"> adaptive hash index, <a class="indexterm" href="innodb-adaptive-hash.html"> Adaptive Hash Index </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045313712560"> add-drop-database option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313686048"> add-drop-table option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313672448"> add-drop-trigger option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312205616"> add-locks option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045105946224"> add-missing option </dt> <dd> <dl> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045205367136"> ADDDATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045249577696"> adding </dt> <dd> <dl> <dt> character sets, <a class="indexterm" href="adding-character-set.html"> Adding a Character Set </a> </dt> <dt> new account privileges, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> new user privileges, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> </dl> </dd> <dt id="ientry-idm46045206390320"> addition (+), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045205342208"> ADDTIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045328307760"> ADD_GDB_INDEX option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045080389968"> ADMINISTRABLE_ROLE_AUTHORIZATIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-administrable-role-authorizations-table.html"> The INFORMATION_SCHEMA ADMINISTRABLE_ROLE_AUTHORIZATIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045317095104"> administration </dt> <dd> <dl> <dt> server, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045106425856"> administration of NDB Cluster, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045261017584"> administrative connection interface, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> , <a class="indexterm" href="administrative-connection-interface.html"> Administrative Connection Management </a> </dt> <dt id="ientry-idm46045324399312"> administrative programs, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt id="ientry-idm46045278630368"> admin_address system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278567664"> admin_port system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278533424"> admin_ssl_ca system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278504304"> admin_ssl_capath system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278475312"> admin_ssl_cert system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278446384"> admin_ssl_cipher system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278395760"> admin_ssl_crl system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278366720"> admin_ssl_crlpath system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278337776"> admin_ssl_key system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278308736"> admin_tls_ciphersuites system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278271088"> admin_tls_version system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033971440"> ADO.NET, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045199517136"> AES_DECRYPT(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045199504032"> AES_ENCRYPT(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045221800128"> After create </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045325186096"> age </dt> <dd> <dl> <dt> calculating, <a class="indexterm" href="date-calculations.html"> Date Calculations </a> </dt> </dl> </dd> <dt id="ientry-idm46045193394656"> aggregate functions, <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045102987280"> ai-increment option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102964848"> ai-offset option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102942512"> ai-prefetch-sz option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045033964384"> AIO, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045219889968"> alias names </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> </dl> </dd> <dt id="ientry-idm46045220070800"> aliases </dt> <dd> <dl> <dt> for expressions, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> <dt> for tables, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> in GROUP BY clauses, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt> on expressions, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045180760944"> ALL, <a class="indexterm" href="all-subqueries.html"> Subqueries with ALL </a> </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045225075504"> ALL join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045251877136"> ALL privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045251874576"> ALL PRIVILEGES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045315660384"> all-databases option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045315645152"> all-in-1 option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313658432"> all-tablespaces option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045240483024"> Alliance Key Manager </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-alliance"> Configuring keyring_okv for Townsend Alliance Key Manager </a> </dt> </dl> </dd> <dt id="ientry-idm46045313582336"> allow-keywords option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045308037840"> allow-mismatches option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045099793968"> allow-pk-changes option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045280393072"> allow-suspicious-udfs option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045116323840"> AllowSpinOverhead, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045109570832"> AllowUnresolvedHostNames, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045261591648"> ALLOW_INVALID_DATES SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045251405040"> ALLOW_NONEXISTENT_DEFINER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dd> <dl> <dt> orphan stored objects, <a class="indexterm" href="stored-objects-security.html#stored-objects-security-orphan-objects"> Orphan Stored Objects </a> </dt> </dl> </dd> <dt id="ientry-idm46045189035088"> ALTER COLUMN, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt id="ientry-idm46045190070192"> ALTER DATABASE, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> <dt id="ientry-idm46045189827120"> ALTER EVENT, <a class="indexterm" href="alter-event.html"> ALTER EVENT Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> </dl> </dd> <dt id="ientry-idm46045189755776"> ALTER FUNCTION, <a class="indexterm" href="alter-function.html"> ALTER FUNCTION Statement </a> </dt> <dt id="ientry-idm46045189736672"> ALTER INSTANCE, <a class="indexterm" href="alter-instance.html"> ALTER INSTANCE Statement </a> </dt> <dt id="ientry-idm46045189664368"> ALTER LOGFILE GROUP, <a class="indexterm" href="alter-logfile-group.html"> ALTER LOGFILE GROUP Statement </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045091734176"> NDB Cluster Disk Data </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045251866064"> ALTER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045189615696"> ALTER PROCEDURE, <a class="indexterm" href="alter-procedure.html"> ALTER PROCEDURE Statement </a> </dt> <dt id="ientry-idm46045172845712"> ALTER RESOURCE GROUP statement, <a class="indexterm" href="alter-resource-group.html"> ALTER RESOURCE GROUP Statement </a> </dt> <dt id="ientry-idm46045251850688"> ALTER ROUTINE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045190069152"> ALTER SCHEMA, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> <dt id="ientry-idm46045189598528"> ALTER SERVER, <a class="indexterm" href="alter-server.html"> ALTER SERVER Statement </a> </dt> <dt id="ientry-idm46045189579920"> ALTER TABLE, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="alter-table-problems.html"> Problems with ALTER TABLE </a> </dt> <dd> <dl> <dt> and replication metadata repositories, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt> monitoring, <a class="indexterm" href="monitor-alter-table-performance-schema.html"> Monitoring ALTER TABLE Progress for InnoDB Tables Using Performance Schema </a> </dt> <dt> ROW_FORMAT, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-defining"> Defining the Row Format of a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045188454400"> ALTER TABLESPACE </dt> <dd> <dl> <dt> general tablespace, <a class="indexterm" href="alter-tablespace.html"> ALTER TABLESPACE Statement </a> </dt> <dt> NDB Cluster Disk Data, <a class="indexterm" href="alter-tablespace.html"> ALTER TABLESPACE Statement </a> </dt> <dt> undo tablespace, <a class="indexterm" href="alter-tablespace.html"> ALTER TABLESPACE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045248742176"> ALTER USER statement, <a class="indexterm" href="assigning-passwords.html"> Assigning Account Passwords </a> , <a class="indexterm" href="alter-user.html"> ALTER USER Statement </a> </dt> <dt id="ientry-idm46045188357360"> ALTER VIEW, <a class="indexterm" href="alter-view.html"> ALTER VIEW Statement </a> </dt> <dt id="ientry-idm46045190068080"> altering </dt> <dd> <dl> <dt> database, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> <dt> schema, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045221795024"> altering table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045175179424"> altering user accounts, <a class="indexterm" href="alter-user.html"> ALTER USER Statement </a> </dt> <dt id="ientry-idm46045033960352"> MySQL Enterprise Backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045315633520"> analyze option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045083482816"> ANALYZE TABLE </dt> <dd> <dl> <dt> and partitioning, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045172710672"> ANALYZE TABLE statement, <a class="indexterm" href="analyze-table.html"> ANALYZE TABLE Statement </a> </dt> <dt id="ientry-idm46045221788880"> Analyzing </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045206942784"> AND </dt> <dd> <dl> <dt> bitwise, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> logical, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045249844528"> anonymous user, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> , <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt id="ientry-idm46045033953712"> ANSI, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333548640"> ANSI mode </dt> <dd> <dl> <dt> running, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045280375632"> ansi option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045261625408"> ANSI SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-combo"> Combination SQL Modes </a> </dt> <dt id="ientry-idm46045261577376"> ANSI_QUOTES SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045228377088"> antijoins, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> <dt id="ientry-idm46045180021488"> ANY, <a class="indexterm" href="any-in-some-subqueries.html"> Subqueries with ANY, IN, or SOME </a> </dt> <dt id="ientry-idm46045191150304"> ANY_VALUE(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045324499680"> Apache, <a class="indexterm" href="apache.html"> Using MySQL with Apache </a> </dt> <dt id="ientry-idm46045033947248"> API, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045124334608"> API node (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> </dl> </dd> <dt id="ientry-idm46045091806736"> API nodes (see SQL nodes) </dt> <dt id="ientry-idm46045060609824"> APIs, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> <dd> <dl> <dt> Perl, <a class="indexterm" href="apis-perl.html"> MySQL Perl API </a> </dt> </dl> </dd> <dt id="ientry-idm46045099733328"> append option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045080361792"> APPLICABLE_ROLES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-applicable-roles-table.html"> The INFORMATION_SCHEMA APPLICABLE_ROLES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045252352080"> application error handling, <a class="indexterm" href="secure-client-programming.html#client-mysql-error-handling"> Handle MySQL Error Messages Properly </a> </dt> <dt id="ientry-idm46045033938400"> application programming interface (API), <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045251389040"> APPLICATION_PASSWORD_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045033936192"> apply, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045313316560"> apply-replica-statements option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313295264"> apply-slave-statements option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045086497936"> apply_status table (OBSOLETE), <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-apply-status"> ndb_apply_status Table </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045190520896"> approximate-value literals, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045220469104"> approximate-value numeric literals, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="precision-math-numbers.html"> Types of Numeric Values </a> </dt> <dt id="ientry-idm46045117258368"> Arbitration, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045120214000"> ArbitrationDelay, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045120247232"> ArbitrationRank, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045117279472"> ArbitrationTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045090564112"> arbitrator_validity_detail </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-arbitrator-validity-detail.html"> The ndbinfo arbitrator_validity_detail Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090531568"> arbitrator_validity_summary </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-arbitrator-validity-summary.html"> The ndbinfo arbitrator_validity_summary Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045148710448"> ARCHIVE storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="archive-storage-engine.html"> The ARCHIVE Storage Engine </a> </dt> <dt id="ientry-idm46045206396896"> arithmetic expressions, <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045199992624"> arithmetic functions, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045199991552"> arithmetic operators, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045033925152"> .ARM file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045211401216"> array </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045033917984"> .ARZ file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180937424"> AS, <a class="indexterm" href="select.html"> SELECT Statement </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045203663648"> ASCII(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045206158832"> ASIN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045033908976"> ASP.net, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033900896"> assembly, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045172891696"> assigning roles, <a class="indexterm" href="set-role.html"> SET ROLE Statement </a> </dt> <dt id="ientry-idm46045206852800"> assignment operator </dt> <dd> <dl> <dt> :=, <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt> =, <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045206875952"> assignment operators, <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt id="ientry-idm46045231840608"> asymmetric_decrypt(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045231811952"> asymmetric_encrypt(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045231788960"> asymmetric_sign(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045231762848"> asymmetric_verify(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045162702752"> asynchronous I/O, <a class="indexterm" href="innodb-linux-native-aio.html"> Using Asynchronous I/O on Linux </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045086854800"> asynchronous replication (see <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> <dt id="ientry-idm46045193565584"> asynchronous_connection_failover_add_managed() function, <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt id="ientry-idm46045193535456"> asynchronous_connection_failover_add_source() function, <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt id="ientry-idm46045193514240"> asynchronous_connection_failover_delete_managed() function, <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt id="ientry-idm46045193495952"> asynchronous_connection_failover_delete_source() function, <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt id="ientry-idm46045193476384"> asynchronous_connection_failover_reset() function, <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt id="ientry-idm46045206142176"> ATAN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045206126400"> ATAN2(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045033884848"> atomic, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045190235568"> atomic DDL, <a class="indexterm" href="atomic-ddl.html"> Atomic Data Definition Statement Support </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033870384"> atomic instruction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045252803024"> attackers </dt> <dd> <dl> <dt> security against, <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> </dt> </dl> </dd> <dt id="ientry-idm46045135785760"> attribute demotion </dt> <dd> <dl> <dt> replication, <a class="indexterm" href="replication-features-differing-tables.html#replication-features-different-data-types"> Replication of Columns Having Different Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045135788736"> attribute promotion </dt> <dd> <dl> <dt> replication, <a class="indexterm" href="replication-features-differing-tables.html#replication-features-different-data-types"> Replication of Columns Having Different Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045260255744"> attributes </dt> <dd> <dl> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-attributes"> Resource Group Attributes </a> </dt> </dl> </dd> <dt id="ientry-idm46045234677344"> audit API functions </dt> <dd> <dl> <dt> audit_api_message_emit_udf(), <a class="indexterm" href="audit-api-message-emit.html#audit-api-message-emit-functions"> Audit Message Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045237716848"> audit log encryption functions </dt> <dd> <dl> <dt> audit_log_encryption_password_get(), <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_encryption_password_set(), <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045237322224"> audit log filtering </dt> <dd> <dl> <dt> event field replacement, <a class="indexterm" href="audit-log-filter-definitions.html#audit-log-filtering-field-replacement"> Replacement of Event Field Values </a> </dt> <dt> legacy mode, <a class="indexterm" href="audit-log-filtering.html#audit-log-filtering-function-constraints"> Constraints on Audit Log Filtering Functions </a> , <a class="indexterm" href="audit-log-filter-definitions.html#audit-log-filtering-predefined-variables"> Referencing Predefined Variables </a> , <a class="indexterm" href="audit-log-legacy-filtering.html"> Legacy Mode Audit Log Filtering </a> </dt> <dt> rule based, <a class="indexterm" href="audit-log-filtering.html"> Audit Log Filtering </a> </dt> </dl> </dd> <dt id="ientry-idm46045236176272"> audit log filtering functions </dt> <dd> <dl> <dt> audit_log_filter_flush(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_filter_remove_filter(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_filter_remove_user(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_filter_set_filter(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_filter_set_user(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045237471808"> audit log reading functions </dt> <dd> <dl> <dt> audit_log_read(), <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt> audit_log_read_bookmark(), <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045236002880"> audit log rotate functions </dt> <dd> <dl> <dt> audit_log_rotate(), <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045246133952"> audit plugin </dt> <dd> <dl> <dt> sha2_cache_cleaner, <a class="indexterm" href="caching-sha2-pluggable-authentication.html#caching-sha2-pluggable-authentication-cache-operation"> Cache Operation for SHA-2 Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045235749680"> audit-log option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045251375216"> AUDIT_ABORT_EXEMPT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045251360912"> AUDIT_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045234678448"> audit_api_message_emit_udf() audit API function, <a class="indexterm" href="audit-api-message-emit.html#audit-api-message-emit-functions"> Audit Message Function </a> </dt> <dt id="ientry-idm46045238633344"> audit_log plugin, <a class="indexterm" href="audit-log.html"> MySQL Enterprise Audit </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="audit-log-installation.html"> Installing or Uninstalling MySQL Enterprise Audit </a> </dt> </dl> </dd> <dt id="ientry-idm46045235717792"> audit_log_buffer_size system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235679216"> audit_log_compression system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235647488"> audit_log_connection_policy system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235596176"> audit_log_current_session system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045234801392"> Audit_log_current_size status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045235569872"> audit_log_database system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045234795760"> Audit_log_direct_writes status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045235542704"> audit_log_disable variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235513600"> audit_log_encryption system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045237709488"> audit_log_encryption_password_get() audit log encryption function, <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045237717968"> audit_log_encryption_password_set() audit log encryption function, <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045234764848"> Audit_log_events status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045234758608"> Audit_log_events_filtered status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045234752256"> Audit_log_events_lost status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045234744592"> Audit_log_events_written status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045234771216"> Audit_log_event_max_drop_size status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045235481920"> audit_log_exclude_accounts system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045237488976"> audit_log_file system variable, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045259493504"> audit_log_filter table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045236177376"> audit_log_filter_flush() audit log filtering function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045235413632"> audit_log_filter_id system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045236151024"> audit_log_filter_remove_filter() audit log filtering function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045236136384"> audit_log_filter_remove_user() audit log filtering function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045236119200"> audit_log_filter_set_filter() audit log filtering function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045236102096"> audit_log_filter_set_user() audit log filtering function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045235384784"> audit_log_flush system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235353712"> audit_log_flush_interval_seconds system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235308176"> audit_log_format system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235275040"> audit_log_format_unix_timestamp system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235241264"> audit_log_include_accounts system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235208448"> audit_log_max_size system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235151680"> audit_log_password_history_keep_days system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235082784"> audit_log_policy system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045235025680"> audit_log_prune_seconds system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045237472912"> audit_log_read() audit log reading function, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045237470304"> audit_log_read_bookmark() audit log reading function, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045237334768"> audit_log_read_buffer_size system variable, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045236003984"> audit_log_rotate() audit log rotate function, <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> </dt> <dt id="ientry-idm46045234942432"> audit_log_rotate_on_size system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045234893872"> audit_log_statement_policy system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045234842528"> audit_log_strategy system variable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt id="ientry-idm46045234738992"> Audit_log_total_size status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045259490528"> audit_log_user table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045234730896"> Audit_log_write_waits status variable, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt id="ientry-idm46045248036864"> authentication </dt> <dd> <dl> <dt> Kerberos, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> <dt> LDAP, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> multifactor, <a class="indexterm" href="multifactor-authentication.html"> Multifactor Authentication </a> </dt> <dt> SASL, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> WebAuthn, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045246351728"> authentication plugin </dt> <dd> <dl> <dt> authentication_kerberos, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> <dt> authentication_kerberos_client, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> <dt> authentication_ldap_sasl, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> authentication_ldap_sasl_client, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> authentication_ldap_simple, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> authentication_pam, <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> </dt> <dt> authentication_webauthn, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> <dt> authentication_webauthn_client, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> <dt> authentication_windows, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> <dt> authentication_windows_client, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> <dt> auth_socket, <a class="indexterm" href="socket-pluggable-authentication.html"> Socket Peer-Credential Pluggable Authentication </a> </dt> <dt> auth_test_plugin, <a class="indexterm" href="test-pluggable-authentication.html"> Test Pluggable Authentication </a> </dt> <dt> caching_sha2_password, <a class="indexterm" href="caching-sha2-pluggable-authentication.html"> Caching SHA-2 Pluggable Authentication </a> </dt> <dt> mysql_clear_password, <a class="indexterm" href="cleartext-pluggable-authentication.html"> Client-Side Cleartext Pluggable Authentication </a> </dt> <dt> mysql_clear_plugin, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> <dt> mysql_native_password, <a class="indexterm" href="native-pluggable-authentication.html"> Native Pluggable Authentication </a> </dt> <dt> mysql_no_login, <a class="indexterm" href="no-login-pluggable-authentication.html"> No-Login Pluggable Authentication </a> </dt> <dt> sha256_password, <a class="indexterm" href="sha256-pluggable-authentication.html"> SHA-256 Pluggable Authentication </a> </dt> <dt> test_plugin_server, <a class="indexterm" href="test-pluggable-authentication.html"> Test Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045248174672"> authentication plugins </dt> <dd> <dl> <dt> client/server compatibility, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-compatibility"> Authentication Plugin Client/Server Compatibility </a> </dt> <dt> client/server protocol, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-connector-writing"> Authentication Plugin Connector-Writing Considerations </a> </dt> <dt> default plugin, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045033868112"> authentication server, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045244659952"> authentication_kerberos authentication plugin, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> <dt id="ientry-idm46045244657360"> authentication_kerberos_client authentication plugin, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> <dt id="ientry-idm46045302813264"> AUTHENTICATION_KERBEROS_CLIENT_LOG environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-debugging"> Kerberos Authentication Debugging </a> </dt> <dt id="ientry-idm46045243463296"> authentication_kerberos_service_key_tab system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243430672"> authentication_kerberos_service_principal system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045302810656"> AUTHENTICATION_LDAP_CLIENT_LOG environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243396768"> authentication_ldap_sasl_auth_method_name system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243353344"> authentication_ldap_sasl_bind_base_dn system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243316768"> authentication_ldap_sasl_bind_root_dn system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243281664"> authentication_ldap_sasl_bind_root_pwd system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243254464"> authentication_ldap_sasl_ca_path system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243224048"> authentication_ldap_sasl_connect_timeout system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243188528"> authentication_ldap_sasl_group_search_attr system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243149536"> authentication_ldap_sasl_group_search_filter system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243114240"> authentication_ldap_sasl_init_pool_size system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243067040"> authentication_ldap_sasl_log_status system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045243004784"> authentication_ldap_sasl_max_pool_size system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242970048"> authentication_ldap_sasl_referral system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242942272"> authentication_ldap_sasl_response_timeout system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242907760"> authentication_ldap_sasl_server_host system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242879488"> authentication_ldap_sasl_server_port system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045263577808"> Authentication_ldap_sasl_supported_methods status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045242847552"> authentication_ldap_sasl_tls system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242817040"> authentication_ldap_sasl_user_search_attr system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242786736"> authentication_ldap_simple_auth_method_name system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242749360"> authentication_ldap_simple_bind_base_dn system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242712768"> authentication_ldap_simple_bind_root_dn system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242677616"> authentication_ldap_simple_bind_root_pwd system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242650160"> authentication_ldap_simple_ca_path system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242619744"> authentication_ldap_simple_connect_timeout system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242584208"> authentication_ldap_simple_group_search_attr system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242545728"> authentication_ldap_simple_group_search_filter system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242510480"> authentication_ldap_simple_init_pool_size system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242463088"> authentication_ldap_simple_log_status system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242409728"> authentication_ldap_simple_max_pool_size system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242374864"> authentication_ldap_simple_referral system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242348352"> authentication_ldap_simple_response_timeout system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242313904"> authentication_ldap_simple_server_host system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242261904"> authentication_ldap_simple_server_port system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242230080"> authentication_ldap_simple_tls system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045242199536"> authentication_ldap_simple_user_search_attr system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045245922480"> authentication_pam authentication plugin, <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> </dt> <dt id="ientry-idm46045302808048"> AUTHENTICATION_PAM_LOG environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="pam-pluggable-authentication.html#pam-pluggable-authentication-debugging"> PAM Authentication Debugging </a> </dt> <dt id="ientry-idm46045278237664"> authentication_policy system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> <dt id="ientry-idm46045251338224"> AUTHENTICATION_POLICY_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045244070640"> authentication_webauthn authentication plugin, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> <dt id="ientry-idm46045244068048"> authentication_webauthn_client authentication plugin, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> <dt id="ientry-idm46045242169248"> authentication_webauthn_rp_id system variable, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045245574624"> authentication_windows authentication plugin, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> <dt id="ientry-idm46045245572032"> authentication_windows_client authentication plugin, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> <dt id="ientry-idm46045278128128"> authentication_windows_log_level system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045278079248"> authentication_windows_use_principal_name system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045244161280"> auth_socket authentication plugin, <a class="indexterm" href="socket-pluggable-authentication.html"> Socket Peer-Credential Pluggable Authentication </a> </dt> <dt id="ientry-idm46045243846896"> auth_test_plugin authentication plugin, <a class="indexterm" href="test-pluggable-authentication.html"> Test Pluggable Authentication </a> </dt> <dt id="ientry-idm46045309675568"> auto-generate-sql option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309659696"> auto-generate-sql-add-autoincrement option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309645360"> auto-generate-sql-execute-number option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309629552"> auto-generate-sql-guid-primary option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309606784"> auto-generate-sql-load-type option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309586336"> auto-generate-sql-secondary-indexes option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309570128"> auto-generate-sql-unique-query-number option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309553104"> auto-generate-sql-unique-write-number option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309535952"> auto-generate-sql-write-number option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045164579264"> auto-inc lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt id="ientry-idm46045104262256"> auto-inc option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045166142864"> auto-increment, <a class="indexterm" href="innodb-auto-increment-handling.html"> AUTO_INCREMENT Handling in InnoDB </a> , <a class="indexterm" href="innodb-auto-increment-handling.html#innodb-auto-increment-lock-modes"> InnoDB AUTO_INCREMENT Lock Modes </a> , <a class="indexterm" href="innodb-auto-increment-handling.html#innodb-auto-increment-initialization"> InnoDB AUTO_INCREMENT Counter Initialization </a> , <a class="indexterm" href="innodb-auto-increment-handling.html#innodb-auto-increment-notes"> Notes </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033848176"> auto-increment locking, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045319647344"> auto-rehash option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045315622432"> auto-repair option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045319627952"> auto-vertical-output option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045169340224"> auto.cnf file, <a class="indexterm" href="replication-options.html"> Replication and Binary Logging Options and Variables </a> </dt> <dd> <dl> <dt> and SHOW REPLICAS statement, <a class="indexterm" href="show-replicas.html"> SHOW REPLICAS Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045033840640"> autocommit, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045164265360"> autocommit mode, <a class="indexterm" href="innodb-autocommit-commit-rollback.html"> autocommit, Commit, and Rollback </a> </dt> <dt id="ientry-idm46045278046176"> autocommit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045116229328"> AutomaticThreadConfig, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045278007152"> automatic_sp_privileges system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045114246224"> AutoReconnect </dt> <dd> <dl> <dt> API and SQL nodes, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045211254736"> autowrapped JSON values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt id="ientry-idm46045277967920"> auto_generate_certs system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045324592208"> AUTO_INCREMENT, <a class="indexterm" href="example-auto-increment.html"> Using AUTO_INCREMENT </a> , <a class="indexterm" href="numeric-type-attributes.html"> Numeric Type Attributes </a> </dt> <dd> <dl> <dt> and NULL values, <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> </dl> </dd> <dt id="ientry-idm46045144528208"> auto_increment_increment system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045144425840"> auto_increment_offset system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045033827872"> availability, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045193279872"> AVG(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045193278800"> AVG(DISTINCT), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_B"> </a> B </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045033823568"> B-tree, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045227233648"> B-tree indexes, <a class="indexterm" href="index-btree-hash.html"> Comparison of B-Tree and Hash Indexes </a> , <a class="indexterm" href="innodb-physical-structure.html"> The Physical Structure of an InnoDB Index </a> </dt> <dt id="ientry-idm46045162732512"> background threads, <a class="indexterm" href="innodb-configuring-io-capacity.html"> Configuring InnoDB I/O Capacity </a> </dt> <dd> <dl> <dt> read, <a class="indexterm" href="innodb-performance-multiple_io_threads.html"> Configuring the Number of Background InnoDB I/O Threads </a> </dt> <dt> write, <a class="indexterm" href="innodb-performance-multiple_io_threads.html"> Configuring the Number of Background InnoDB I/O Threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045220630784"> backslash </dt> <dd> <dl> <dt> escape character, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045220563344"> backspace (\b), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045033809952"> backticks, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033801296"> backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045092833008"> BACKUP Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045092008512"> backup identifiers </dt> <dd> <dl> <dt> native backup and restore, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045307097680"> backup option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045100524464"> backup-key option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045100513168"> backup-key-from-stdin option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045100499600"> backup-password option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045106404144"> backup-password-from-stdin option </dt> <dd> <dl> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045099719392"> backup-path option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045116761616"> BackupDataBufferSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt id="ientry-idm46045119711920"> BackupDataDir, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116736736"> BackupDiskWriteSpeedPct, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045099636640"> backupid option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045116708912"> BackupLogBufferSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt id="ientry-idm46045116615952"> BackupMaxWriteSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt id="ientry-idm46045116685328"> BackupMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt id="ientry-idm46045116662640"> BackupReportFrequency, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045314763712"> backups, <a class="indexterm" href="backup-and-recovery.html"> Backup and Recovery </a> , <a class="indexterm" href="mysql-enterprise-backup.html"> MySQL Enterprise Backup Overview </a> </dt> <dd> <dl> <dt> databases and tables, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> , <a class="indexterm" href="mysql-cluster-backup.html"> Online Backup of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-backup-concepts.html"> NDB Cluster Backup Concepts </a> , <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt> in NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-backups.html"> NDB Cluster Backups With NDB Cluster Replication </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-backup.html"> InnoDB Backup </a> </dt> <dt> with mysqldump, <a class="indexterm" href="using-mysqldump.html"> Using mysqldump for Backups </a> </dt> </dl> </dd> <dt id="ientry-idm46045091917184"> backups, troubleshooting </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-backup-troubleshooting.html"> NDB Cluster Backup Troubleshooting </a> </dt> </dl> </dd> <dt id="ientry-idm46045116639136"> BackupWriteSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt id="ientry-idm46045251354112"> BACKUP_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045277934944"> back_log system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033788256"> base column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045304930592"> base64-output option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045321867088"> basedir option </dt> <dd> <dl> <dt> mysql.server, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045277898032"> basedir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045324798656"> batch mode, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> </dt> <dt id="ientry-idm46045319614960"> batch option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045320183936"> batch SQL files, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> </dt> <dt id="ientry-idm46045114381472"> BatchByteSize, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045229276432"> Batched Key Access </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="bnl-bka-optimization.html"> Block Nested-Loop and Batched Key Access Joins </a> , <a class="indexterm" href="bnl-bka-optimization.html#bka-optimization"> Batched Key Access Joins </a> </dt> </dl> </dd> <dt id="ientry-idm46045086065488"> batched updates (NDB Cluster Replication), <a class="indexterm" href="mysql-cluster-replication-starting.html"> Starting NDB Cluster Replication (Single Replication Channel) </a> </dt> <dt id="ientry-idm46045114357888"> BatchSize, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045119090416"> BatchSizePerLocalScan, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045178889600"> BEGIN, <a class="indexterm" href="commit.html"> START TRANSACTION, COMMIT, and ROLLBACK Statements </a> , <a class="indexterm" href="begin-end.html"> BEGIN ... END Compound Statement </a> </dt> <dd> <dl> <dt> labels, <a class="indexterm" href="statement-labels.html"> Statement Labels </a> </dt> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045198966272"> BENCHMARK(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045222073792"> benchmarks, <a class="indexterm" href="custom-benchmarks.html"> Using Your Own Benchmarks </a> </dt> <dt id="ientry-idm46045033784288"> beta, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045207303968"> BETWEEN ... AND, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045085748928"> bidirectional replication </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-replication-multi-source.html"> NDB Cluster Replication: Bidirectional and Circular Replication </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html"> NDB Cluster Replication Conflict Resolution </a> </dt> </dl> </dd> <dt id="ientry-idm46045055640640"> big5, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045214304272"> BIGINT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045277872480"> big_tables system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045203645744"> BIN(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045200999280"> BINARY, <a class="indexterm" href="cast-functions.html#cast-function-descriptions"> Cast Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045217020496"> binary collation, <a class="indexterm" href="charset-binary-collations.html"> The binary Collation Compared to _bin Collations </a> </dt> <dt id="ientry-idm46045212910752"> BINARY data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="binary-varbinary.html"> The BINARY and VARBINARY Types </a> </dt> <dt id="ientry-idm46045332648304"> binary distributions </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="binary-installation.html"> Installing MySQL on Unix/Linux Using Generic Binaries </a> </dt> </dl> </dd> <dt id="ientry-idm46045258354432"> binary log, <a class="indexterm" href="binary-log.html"> The Binary Log </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> event groups, <a class="indexterm" href="replication-administration-skip.html#set-global-replica-sql-skip-counter"> Skipping Transactions With SET GLOBAL sql_replica_skip_counter </a> </dt> <dt> invisible columns, <a class="indexterm" href="invisible-columns.html#invisible-column-binary-logging"> The Binary Log and Invisible Columns </a> </dt> </dl> </dd> <dt id="ientry-idm46045137141760"> binary log encryption, <a class="indexterm" href="replication-binlog-encryption.html"> Encrypting Binary Log Files and Relay Log Files </a> </dt> <dt id="ientry-idm46045174624352"> binary logging </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-binary-logging"> ALTER USER Binary Logging </a> </dt> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-exclusive-to-cluster.html"> Issues Exclusive to NDB Cluster </a> </dt> <dt> CREATE USER, <a class="indexterm" href="create-user.html#create-user-binary-logging"> CREATE USER Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045319596400"> binary-as-hex option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045319553760"> binary-mode option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045071629424"> binary_log_transaction_compression_stats </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-binary-log-transaction-compression-stats-table.html"> The binary_log_transaction_compression_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045319530672"> bind-address option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045096719008"> bind-host option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045277837440"> bind_address system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033767600"> binlog, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221951680"> Binlog Dump </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045303509664"> BINLOG statement, <a class="indexterm" href="binlog.html"> BINLOG Statement </a> </dt> <dd> <dl> <dt> mysqlbinlog output, <a class="indexterm" href="mysqlbinlog-row-events.html"> mysqlbinlog Row Event Display </a> </dt> </dl> </dd> <dt id="ientry-idm46045140743616"> binlog-checksum option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045140858368"> binlog-do-db option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045140785824"> binlog-ignore-db option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045304871008"> binlog-row-event-max-size option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045251325728"> BINLOG_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045263569168"> Binlog_cache_disk_use status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045140685056"> binlog_cache_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045263552368"> Binlog_cache_use status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045140637648"> binlog_checksum system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140595200"> binlog_direct_non_transactional_updates system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140551520"> binlog_encryption system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045251317728"> BINLOG_ENCRYPTION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045140514608"> binlog_error_action system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140439696"> binlog_expire_logs_auto_purge system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140479408"> binlog_expire_logs_seconds, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045135960496"> binlog_format </dt> <dd> <dl> <dt> BLACKHOLE, <a class="indexterm" href="replication-features-blackhole.html"> Replication and BLACKHOLE Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045140405824"> binlog_format system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140331024"> binlog_group_commit_sync_delay, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140278208"> binlog_group_commit_sync_no_delay_count, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139222720"> binlog_gtid_simple_recovery, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045086471760"> binlog_index table (OBSOLETE) (see <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> <dt id="ientry-idm46045140244960"> binlog_max_flush_queue_time system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140209296"> binlog_order_commits system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140177856"> binlog_rotate_encryption_master_key_at_startup system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139954656"> binlog_rows_query_log_events system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140145120"> binlog_row_event_max_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140106528"> binlog_row_image system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140044288"> binlog_row_metadata system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045140006704"> binlog_row_value_options system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045263546880"> Binlog_stmt_cache_disk_use status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045139924608"> binlog_stmt_cache_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045263539952"> Binlog_stmt_cache_use status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045139877504"> binlog_transaction_compression system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139831872"> binlog_transaction_compression_level_zstd system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139791152"> binlog_transaction_dependency_history_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045191087872"> BIN_TO_UUID(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045214392256"> BIT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045324601264"> bit functions, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dd> <dl> <dt> example, <a class="indexterm" href="calculating-days.html"> Calculating Visits Per Day </a> </dt> </dl> </dd> <dt id="ientry-idm46045220180432"> bit operations </dt> <dd> <dl> <dt> bit-value literals, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> <dt> hexadecimal literals, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045199986448"> bit operators, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045220151920"> bit-value literal introducer, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> <dt id="ientry-idm46045220167152"> bit-value literals, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> <dd> <dl> <dt> bit operations, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045193256128"> BIT_AND(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045324603424"> BIT_COUNT, <a class="indexterm" href="calculating-days.html"> Calculating Visits Per Day </a> </dt> <dt id="ientry-idm46045199829824"> BIT_COUNT(), <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt id="ientry-idm46045203630000"> BIT_LENGTH(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045324604464"> BIT_OR, <a class="indexterm" href="calculating-days.html"> Calculating Visits Per Day </a> </dt> <dt id="ientry-idm46045193228320"> BIT_OR(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045193200512"> BIT_XOR(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045135963472"> BLACKHOLE </dt> <dd> <dl> <dt> binlog_format, <a class="indexterm" href="replication-features-blackhole.html"> Replication and BLACKHOLE Tables </a> </dt> <dt> replication, <a class="indexterm" href="replication-features-blackhole.html"> Replication and BLACKHOLE Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045148709376"> BLACKHOLE storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="blackhole-storage-engine.html"> The BLACKHOLE Storage Engine </a> </dt> <dt id="ientry-idm46045201619136"> blind query expansion, <a class="indexterm" href="fulltext-query-expansion.html"> Full-Text Searches with Query Expansion </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033759504"> BLOB, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045227451920"> BLOB columns </dt> <dd> <dl> <dt> default values, <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> indexing, <a class="indexterm" href="column-indexes.html#column-indexes-prefix"> Index Prefixes </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> inserting binary data, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt> size, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045212868992"> BLOB data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt id="ientry-idm46045104255424"> blob-info option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045090491408"> blobs </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-blobs.html"> The ndbinfo blobs Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045184359360"> BLOB_INLINE_SIZE, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045229279376"> Block Nested-Loop </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="bnl-bka-optimization.html"> Block Nested-Loop and Batched Key Access Joins </a> , <a class="indexterm" href="bnl-bka-optimization.html#bnl-optimization"> Block Nested-Loop Algorithm for Outer Joins and Semijoins </a> </dt> </dl> </dd> <dt id="ientry-idm46045229580944"> Block Nested-Loop join algorithm, <a class="indexterm" href="nested-loop-joins.html"> Nested-Loop Join Algorithms </a> </dt> <dt id="ientry-idm46045306854272"> block-search option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045260790352"> blocked hosts </dt> <dd> <dl> <dt> unblocking, <a class="indexterm" href="host-cache.html#blocked-host"> Dealing with Blocked Hosts </a> </dt> </dl> </dd> <dt id="ientry-idm46045090455968"> blocks </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-blocks.html"> The ndbinfo blocks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045277747264"> block_encryption_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045214371536"> BOOL data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045214372608"> BOOLEAN data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045220110048"> boolean literals, <a class="indexterm" href="boolean-literals.html"> Boolean Literals </a> </dt> <dt id="ientry-idm46045323702912"> boolean options, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045201825488"> Boolean search, <a class="indexterm" href="fulltext-boolean.html"> Boolean Full-Text Searches </a> </dt> <dt id="ientry-idm46045033744752"> bottleneck, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033738944"> bounce, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045096702496"> bound-hostname option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045214464992"> brackets </dt> <dd> <dl> <dt> square, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045151385120"> buddy allocator, <a class="indexterm" href="innodb-information-schema-innodb_cmpmem.html"> INNODB_CMPMEM and INNODB_CMPMEM_RESET </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033729728"> buffer, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045223114224"> buffer pool, <a class="indexterm" href="innodb-buffer-pool-optimization.html"> InnoDB Buffer Pool Optimization </a> , <a class="indexterm" href="innodb-buffer-pool-resize.html"> Configuring InnoDB Buffer Pool Size </a> , <a class="indexterm" href="innodb-multiple-buffer-pools.html"> Configuring Multiple Buffer Pool Instances </a> , <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> , <a class="indexterm" href="innodb-performance-read_ahead.html"> Configuring InnoDB Buffer Pool Prefetching (Read-Ahead) </a> , <a class="indexterm" href="innodb-buffer-pool-flushing.html"> Configuring Buffer Pool Flushing </a> , <a class="indexterm" href="innodb-preload-buffer-pool.html"> Saving and Restoring the Buffer Pool State </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> and compressed tables, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> monitoring, <a class="indexterm" href="innodb-buffer-pool.html#innodb-buffer-pool-monitoring"> Monitoring the Buffer Pool Using the InnoDB Standard Monitor </a> , <a class="indexterm" href="innodb-buffer-pool-resize.html#innodb-buffer-pool-online-resize-monitoring"> Monitoring Online Buffer Pool Resizing Progress </a> , <a class="indexterm" href="innodb-preload-buffer-pool.html#monitor-buffer-pool-load-performance-schema"> Monitoring Buffer Pool Load Progress Using Performance Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045033711008"> buffer pool instance, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045223113152"> buffer sizes, <a class="indexterm" href="innodb-buffer-pool-optimization.html"> InnoDB Buffer Pool Optimization </a> , <a class="indexterm" href="innodb-buffer-pool-resize.html"> Configuring InnoDB Buffer Pool Size </a> </dt> <dd> <dl> <dt> client, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> </dl> </dd> <dt id="ientry-idm46045335350160"> bugs </dt> <dd> <dl> <dt> known, <a class="indexterm" href="known-issues.html"> Known Issues in MySQL </a> </dt> <dt> NDB Cluster </dt> <dd> <dl> <dt> reporting, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt> reporting, <a class="indexterm" href="introduction.html"> General Information </a> , <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> </dl> </dd> <dt id="ientry-idm46045333710480"> bugs database, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt id="ientry-idm46045333711552"> bugs.mysql.com, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt id="ientry-idm46045116532576"> BuildIndexThreads, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045328640336"> BUILD_CONFIG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045277706112"> build_id system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033703856"> built-in, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045210262640"> built-in functions </dt> <dd> <dl> <dt> reference, <a class="indexterm" href="built-in-function-reference.html"> Built-In Function and Operator Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045210261152"> built-in operators </dt> <dd> <dl> <dt> reference, <a class="indexterm" href="built-in-function-reference.html"> Built-In Function and Operator Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045226128160"> bulk loading </dt> <dd> <dl> <dt> for InnoDB tables, <a class="indexterm" href="optimizing-innodb-bulk-data-loading.html"> Bulk Data Loading for InnoDB Tables </a> </dt> <dt> for MyISAM tables, <a class="indexterm" href="optimizing-myisam-bulk-data-loading.html"> Bulk Data Loading for MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045277682304"> bulk_insert_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt id="ientry-idm46045328625712"> BUNDLE_RUNTIME_LIBRARIES option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045033697600"> business rules, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045263534512"> Bytes_received status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263529136"> Bytes_sent status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_C"> </a> C </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045033692368"> C, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060608752"> C API, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="c-api-info.html"> MySQL C API </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> FAQ, <a class="indexterm" href="faqs-c-api.html"> MySQL 8.4 FAQ: C API, libmysql </a> </dt> </dl> </dd> <dt id="ientry-idm46045033679504"> C#, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060391504"> C++, <a class="indexterm" href="connector-cpp-info.html"> MySQL Connector/C++ </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045253878016"> C:\my.cnf option file, <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt id="ientry-idm46045096686688"> CA-cert option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096670912"> CA-days option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096646928"> CA-key option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096631152"> CA-ordinal option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096606416"> CA-search-path option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096583552"> CA-tool option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045033664480"> cache, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045168851088"> CACHE INDEX statement, <a class="indexterm" href="cache-index.html"> CACHE INDEX Statement </a> </dt> <dt id="ientry-idm46045168791136"> caches </dt> <dd> <dl> <dt> clearing, <a class="indexterm" href="flush.html"> FLUSH Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045246295760"> caching_sha2_password authentication plugin, <a class="indexterm" href="caching-sha2-pluggable-authentication.html"> Caching SHA-2 Pluggable Authentication </a> </dt> <dt id="ientry-idm46045277606400"> caching_sha2_password_auto_generate_rsa_keys system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277641728"> caching_sha2_password_digest_rounds system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277570864"> caching_sha2_password_private_key_path system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277541248"> caching_sha2_password_public_key_path system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045263523552"> Caching_sha2_password_rsa_public_key status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045325189072"> calculating </dt> <dd> <dl> <dt> aggregate value for a set of rows, <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> cardinality, <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> </dt> <dt> dates, <a class="indexterm" href="date-calculations.html"> Date Calculations </a> </dt> </dl> </dd> <dt id="ientry-idm46045213253312"> calendar, <a class="indexterm" href="mysql-calendar.html"> What Calendar Is Used By MySQL? </a> </dt> <dt id="ientry-idm46045183065056"> CALL, <a class="indexterm" href="call.html"> CALL Statement </a> </dt> <dt id="ientry-idm46045054253104"> can't create/write to file, <a class="indexterm" href="cannot-create.html"> Can't create/write to file </a> </dt> <dt id="ientry-idm46045053339376"> Can't reopen table </dt> <dd> <dl> <dt> error message, <a class="indexterm" href="temporary-table-problems.html"> TEMPORARY Table Problems </a> </dt> </dl> </dd> <dt id="ientry-idm46045191389968"> CAN_ACCESS_COLUMN(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191383456"> CAN_ACCESS_DATABASE(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191377008"> CAN_ACCESS_TABLE(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191370496"> CAN_ACCESS_USER(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191363984"> CAN_ACCESS_VIEW(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045228440768"> cardinality, <a class="indexterm" href="table-scan-avoidance.html"> Avoiding Full Table Scans </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045220551632"> carriage return (\r), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045206755040"> CASE, <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> , <a class="indexterm" href="case.html"> CASE Statement </a> </dt> <dt id="ientry-idm46045333518080"> case sensitivity </dt> <dd> <dl> <dt> access checking, <a class="indexterm" href="grant-tables.html#grant-tables-scope-column-properties"> Grant Table Scope Column Properties </a> </dt> <dt> account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> in identifiers, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> <dt> in names, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> <dt> in searches, <a class="indexterm" href="case-sensitivity.html"> Case Sensitivity in String Searches </a> </dt> <dt> in string comparisons, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dt> of database names, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> <dt> of replication filtering options, <a class="indexterm" href="replication-rules.html"> How Servers Evaluate Replication Filtering Rules </a> </dt> <dt> of table names, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045200944144"> CAST, <a class="indexterm" href="cast-functions.html#cast-function-descriptions"> Cast Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045201034560"> cast functions, <a class="indexterm" href="cast-functions.html"> Cast Functions and Operators </a> </dt> <dt id="ientry-idm46045201037120"> cast operators, <a class="indexterm" href="cast-functions.html"> Cast Functions and Operators </a> </dt> <dt id="ientry-idm46045207933328"> casts, <a class="indexterm" href="type-conversion.html"> Type Conversion in Expression Evaluation </a> , <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> , <a class="indexterm" href="cast-functions.html"> Cast Functions and Operators </a> </dt> <dt id="ientry-idm46045259885920"> catalogs table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045327205024"> CC environment variable, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045206110928"> CEIL(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045206100592"> CEILING(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045090442528"> certificates </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-certificates.html"> The ndbinfo certificates Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045033643792"> .cfg file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045303051408"> cflags option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045167011776"> change buffer, <a class="indexterm" href="innodb-change-buffer.html"> Change Buffer </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> monitoring, <a class="indexterm" href="innodb-change-buffer.html#innodb-change-buffer-monitoring"> Monitoring the Change Buffer </a> </dt> </dl> </dd> <dt id="ientry-idm46045166985568"> change buffering, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> disabling, <a class="indexterm" href="innodb-change-buffer.html#innodb-change-buffer-configuration"> Configuring Change Buffering </a> </dt> </dl> </dd> <dt id="ientry-idm46045177761360"> CHANGE REPLICATION FILTER, <a class="indexterm" href="change-replication-filter.html"> CHANGE REPLICATION FILTER Statement </a> </dt> <dt id="ientry-idm46045177656384"> CHANGE REPLICATION SOURCE TO, <a class="indexterm" href="change-replication-source-to.html"> CHANGE REPLICATION SOURCE TO Statement </a> </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-replication-preparation.html"> Preparing the NDB Cluster for Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045221946720"> Change user </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045334995968"> changed system variable default values </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="mysql-nutshell.html#mysql-nutshell-additions"> Features Added or Changed in MySQL 8.4 </a> </dt> </dl> </dd> <dt id="ientry-idm46045248774976"> changes to privileges, <a class="indexterm" href="privilege-changes.html"> When Privilege Changes Take Effect </a> </dt> <dt id="ientry-idm46045321316912"> changing </dt> <dd> <dl> <dt> column, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt> field, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt> socket location, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> , <a class="indexterm" href="problems-with-mysql-sock.html"> How to Protect or Change the MySQL Unix Socket File </a> </dt> <dt> table, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="alter-table-problems.html"> Problems with ALTER TABLE </a> </dt> </dl> </dd> <dt id="ientry-idm46045221043136"> Changing master </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221039088"> Changing replication source </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045138187168"> channel, <a class="indexterm" href="replication-channels.html"> Replication Channels </a> </dt> <dd> <dl> <dt> commands, <a class="indexterm" href="channels-commands-single-channel.html"> Commands for Operations on a Single Channel </a> </dt> </dl> </dd> <dt id="ientry-idm46045213096720"> CHAR data type, <a class="indexterm" href="string-types.html"> String Data Types </a> , <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045212951584"> CHAR VARYING data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045203617216"> CHAR(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045212991008"> CHARACTER data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045217605200"> character set introducer, <a class="indexterm" href="charset-introducer.html"> Character Set Introducers </a> </dt> <dt id="ientry-idm46045216653344"> character set repertoire, <a class="indexterm" href="charset-unicode-utf8mb3.html"> The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding) </a> </dt> <dt id="ientry-idm46045218193024"> character sets, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> </dt> <dd> <dl> <dt> adding, <a class="indexterm" href="adding-character-set.html"> Adding a Character Set </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-charset.html"> Replication and Character Sets </a> </dt> <dt> Asian, <a class="indexterm" href="charset-asian-sets.html"> Asian Character Sets </a> </dt> <dt> Baltic, <a class="indexterm" href="charset-baltic-sets.html"> Baltic Character Sets </a> </dt> <dt> binary, <a class="indexterm" href="charset-binary-set.html"> The Binary Character Set </a> </dt> <dt> Central European, <a class="indexterm" href="charset-ce-sets.html"> Central European Character Sets </a> </dt> <dt> Cyrillic, <a class="indexterm" href="charset-cyrillic-sets.html"> Cyrillic Character Sets </a> </dt> <dt> Middle East, <a class="indexterm" href="charset-se-me-sets.html"> South European and Middle East Character Sets </a> </dt> <dt> repertoire, <a class="indexterm" href="charset-repertoire.html"> Character Set Repertoire </a> </dt> <dt> restrictions, <a class="indexterm" href="charset-restrictions.html"> Restrictions on Character Sets </a> </dt> <dt> South European, <a class="indexterm" href="charset-se-me-sets.html"> South European and Middle East Character Sets </a> </dt> <dt> Unicode, <a class="indexterm" href="charset-unicode-sets.html"> Unicode Character Sets </a> </dt> <dt> West European, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045212952672"> CHARACTER VARYING data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045319517040"> character-sets-dir option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045215297712"> characters </dt> <dd> <dl> <dt> multibyte, <a class="indexterm" href="multibyte-characters.html"> Multi-Byte Character Support for Complex Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045203559472"> CHARACTER_LENGTH(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045080333712"> CHARACTER_SETS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-character-sets-table.html"> The INFORMATION_SCHEMA CHARACTER_SETS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259881408"> character_sets table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045277313552"> character_sets_dir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277512656"> character_set_client system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277483712"> character_set_connection system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277459536"> character_set_database system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277425136"> character_set_filesystem system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277388496"> character_set_results system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277365136"> character_set_server system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277337456"> character_set_system system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045317879808"> charset command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045320812784"> charset option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045198935440"> CHARSET(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045203577584"> CHAR_LENGTH(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045194400752"> CHECK constraints </dt> <dd> <dl> <dt> ALTER TABLE, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt> CREATE TABLE, <a class="indexterm" href="create-table-check-constraints.html"> CHECK Constraints </a> </dt> <dt> RENAME TABLE, <a class="indexterm" href="rename-table.html"> RENAME TABLE Statement </a> </dt> <dt> SHOW CREATE TABLE, <a class="indexterm" href="show-create-table.html"> SHOW CREATE TABLE Statement </a> </dt> <dt> with JSON_SCHEMA_VALID(), <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045315585040"> check option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045307240496"> check options </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045083481328"> CHECK TABLE </dt> <dd> <dl> <dt> and partitioning, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045172472432"> CHECK TABLE statement, <a class="indexterm" href="check-table.html"> CHECK TABLE Statement </a> </dt> <dt id="ientry-idm46045105923584"> check-missing option </dt> <dd> <dl> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045315573440"> check-only-changed option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045105912432"> check-orphans option </dt> <dd> <dl> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045315561792"> check-upgrade option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045230608608"> checking </dt> <dd> <dl> <dt> tables for errors, <a class="indexterm" href="myisam-check.html"> How to Check MyISAM Tables for Errors </a> </dt> </dl> </dd> <dt id="ientry-idm46045221251376"> Checking master version </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221782000"> checking permissions </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221247328"> Checking source version </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221777040"> Checking table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045033594464"> checkpoint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045093311920"> CHECKPOINT Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045109546400"> Checksum, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045033586752"> checksum, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045109044320"> Checksum (NDB Cluster), <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045329784960"> checksum errors, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt id="ientry-idm46045135937776"> CHECKSUM TABLE </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-checksum-table.html"> Replication and CHECKSUM TABLE </a> </dt> </dl> </dd> <dt id="ientry-idm46045172248144"> CHECKSUM TABLE statement, <a class="indexterm" href="checksum-table.html"> CHECKSUM TABLE Statement </a> </dt> <dt id="ientry-idm46045080314496"> CHECK_CONSTRAINTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-check-constraints-table.html"> The INFORMATION_SCHEMA CHECK_CONSTRAINTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259875312"> check_constraints table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045277289696"> check_proxy_users system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt id="ientry-idm46045033567312"> child table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045055653904"> Chinese, Japanese, Korean character sets </dt> <dd> <dl> <dt> frequently asked questions, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045332991504"> choosing </dt> <dd> <dl> <dt> a MySQL version, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt> data types, <a class="indexterm" href="choosing-types.html"> Choosing the Right Type for a Column </a> </dt> </dl> </dd> <dt id="ientry-idm46045280328912"> chroot option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045249907456"> CIDR notation </dt> <dd> <dl> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045086710848"> circular replication </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> , <a class="indexterm" href="mysql-cluster-replication-multi-source.html"> NDB Cluster Replication: Bidirectional and Circular Replication </a> , <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html"> NDB Cluster Replication Conflict Resolution </a> </dt> </dl> </dd> <dt id="ientry-idm46045055655296"> CJK (Chinese, Japanese, Korean) </dt> <dd> <dl> <dt> Access, PHP, etc., <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> availability of specific characters, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> big5, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> character sets available, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> characters displayed as question marks, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> CJKV, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> collations, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> conversion problems with Japanese character sets, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> data truncation, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Database and table names, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> documentation in Chinese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> documentation in Japanese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> documentation in Korean, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> FAQ, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> gb2312, gbk, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Japanese character sets, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Korean character set, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> LIKE and FULLTEXT, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> MySQL 4.0 behavior, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> ORDER BY treatment, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with Access, PHP, etc., <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with Big5 character sets (Chinese), <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with data truncation, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with euckr character set (Korean), <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with GB character sets (Chinese), <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with LIKE and FULLTEXT, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> problems with Yen sign (Japanese), <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> rejected characters, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> sort order problems, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> sorting problems, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> testing availability of characters, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Unicode collations, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Vietnamese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> Yen sign, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045116200064"> ClassicFragmentation </dt> <dd> <dl> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045033559408"> clean page, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045259981904"> clean shutdown, <a class="indexterm" href="server-shutdown.html"> The Server Shutdown Process </a> , <a class="indexterm" href="multiple-data-directories.html"> Setting Up Multiple Data Directories </a> , <a class="indexterm" href="replication-features-shutdowns.html"> Replication and Source or Replica Shutdowns </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221772128"> cleaning up </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045317870800"> clear command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045220937184"> Clearing </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045168792624"> clearing </dt> <dd> <dl> <dt> caches, <a class="indexterm" href="flush.html"> FLUSH Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045302519376"> client, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> signal handling, <a class="indexterm" href="unix-signal-response.html#client-signal-response"> Client Response to Signals </a> </dt> </dl> </dd> <dt id="ientry-idm46045261016496"> client connections, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> </dt> <dt id="ientry-idm46045033533712"> client libraries, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324441984"> client programs, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt id="ientry-idm46045060610896"> client tools, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> <dt id="ientry-idm46045033528592"> client-side prepared statement, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045253579984"> clients </dt> <dd> <dl> <dt> debugging, <a class="indexterm" href="debugging-client.html"> Debugging a MySQL Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045033520208"> CLOB, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045171624560"> CLONE, <a class="indexterm" href="clone.html"> CLONE Statement </a> </dt> <dt id="ientry-idm46045255743680"> clone plugin, <a class="indexterm" href="clone-plugin.html"> The Clone Plugin </a> </dt> <dd> <dl> <dt> clone_progress table, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-monitoring-performance-schema-clone-tables"> Monitoring Cloning Operations using Performance Schema Clone Tables </a> </dt> <dt> clone_status table, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-monitoring-performance-schema-clone-tables"> Monitoring Cloning Operations using Performance Schema Clone Tables </a> </dt> <dt> cloning compressed data, <a class="indexterm" href="clone-plugin-compressed-data.html"> Cloning Compressed Data </a> </dt> <dt> cloning data locally, <a class="indexterm" href="clone-plugin-local.html"> Cloning Data Locally </a> </dt> <dt> cloning encrypted data, <a class="indexterm" href="clone-plugin-encrypted-data.html"> Cloning Encrypted Data </a> </dt> <dt> cloning for replication, <a class="indexterm" href="clone-plugin-replication.html"> Cloning for Replication </a> </dt> <dt> cloning remote data, <a class="indexterm" href="clone-plugin-remote.html"> Cloning Remote Data </a> , <a class="indexterm" href="clone-plugin-remote.html#clone-plugin-remote-example"> Cloning Remote Data </a> </dt> <dt> cloning to a named directory, <a class="indexterm" href="clone-plugin-remote.html#clone-plugin-remote-named-directory"> Cloning to a Named Directory </a> </dt> <dt> Com_clone status variable, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-com-clone"> The Com_clone Status Variable </a> </dt> <dt> configuring an encrypted connection, <a class="indexterm" href="clone-plugin-remote.html#clone-plugin-remote-ssl"> Configuring an Encrypted Connection for Cloning </a> </dt> <dt> directories and files, <a class="indexterm" href="clone-plugin-directories.html"> Directories and Files Created During a Cloning Operation </a> </dt> <dt> failure handling, <a class="indexterm" href="clone-plugin-failure-handling.html"> Remote Cloning Operation Failure Handling </a> </dt> <dt> installing, <a class="indexterm" href="clone-plugin-installation.html"> Installing the Clone Plugin </a> </dt> <dt> limitations, <a class="indexterm" href="clone-plugin-limitations.html"> Clone Plugin Limitations </a> </dt> <dt> monitoring, <a class="indexterm" href="clone-plugin-monitoring.html"> Monitoring Cloning Operations </a> </dt> <dt> monitoring stage events, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-monitoring-stage-events"> Monitoring Cloning Operations Using Performance Schema Stage Events </a> </dt> <dt> performance schema instruments, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-performance-schema-instruments"> Monitoring Cloning Operations Using Performance Schema Clone Instrumentation </a> </dt> <dt> remote cloning prerequisites, <a class="indexterm" href="clone-plugin-remote.html#clone-remote-prerequisites"> Remote Cloning Prerequisites </a> </dt> <dt> stopping a cloning operation, <a class="indexterm" href="clone-plugin-stop.html"> Stopping a Cloning Operation </a> </dt> <dt> system variables, <a class="indexterm" href="clone-plugin-option-variable-reference.html"> Clone System Variable Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045251305712"> CLONE_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045255000784"> clone_autotune_concurrency system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254930432"> clone_block_ddl system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254963200"> clone_buffer_size system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254870944"> clone_ddl_timeout system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254904032"> clone_delay_after_data_drop system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254834240"> clone_donor_timeout_after_network_failure variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254800032"> clone_enable_compression system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254774016"> clone_max_concurrency system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254733472"> clone_max_data_bandwidth system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254694352"> clone_max_network_bandwidth system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045255300656"> clone_progress table, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-monitoring-performance-schema-clone-tables"> Monitoring Cloning Operations using Performance Schema Clone Tables </a> </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-clone-progress-table.html"> The clone_progress Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045254660752"> clone_ssl_ca system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254634960"> clone_ssl_cert system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045254609184"> clone_ssl_key system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045255299584"> clone_status table, <a class="indexterm" href="clone-plugin-monitoring.html#clone-plugin-monitoring-performance-schema-clone-tables"> Monitoring Cloning Operations using Performance Schema Clone Tables </a> </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-clone-status-table.html"> The clone_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045254583360"> clone_valid_donor_list system variable, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt id="ientry-idm46045255742608"> cloning data, <a class="indexterm" href="clone-plugin.html"> The Clone Plugin </a> </dt> <dt id="ientry-idm46045185348800"> cloning tables, <a class="indexterm" href="create-table-like.html"> CREATE TABLE ... LIKE Statement </a> </dt> <dt id="ientry-idm46045176160800"> CLOSE, <a class="indexterm" href="close.html"> Cursor CLOSE Statement </a> </dt> <dt id="ientry-idm46045221941808"> Close stmt </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045226720512"> closing </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045221767152"> closing tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045086533728"> cluster database (OBSOLETE) (see <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> <dt id="ientry-idm46045093552400"> cluster logs, <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt id="ientry-idm46045107157680"> cluster-config-suffix option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045165869152"> clustered index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-index-types.html"> Clustered and Secondary Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045124457584"> Clustering (see <a href="#ientry-idm46045221007520"> NDB Cluster </a> ) </dt> <dt id="ientry-idm46045093471440"> CLUSTERLOG commands (NDB Cluster), <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt id="ientry-idm46045092764336"> CLUSTERLOG STATISTICS command (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045090427296"> cluster_locks </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cluster-locks.html"> The ndbinfo cluster_locks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090365744"> cluster_operations </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cluster-operations.html"> The ndbinfo cluster_operations Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045086532272"> cluster_replication database (OBSOLETE) (see <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> <dt id="ientry-idm46045090279856"> cluster_transactions </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cluster-transactions.html"> The ndbinfo cluster_transactions Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045329511920"> CMake </dt> <dd> <dl> <dt> ADD_GDB_INDEX option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> BUILD_CONFIG option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> BUNDLE_RUNTIME_LIBRARIES option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> CMAKE_BUILD_TYPE option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> CMAKE_CXX_FLAGS option, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> <dt> CMAKE_C_FLAGS option, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> <dt> CMAKE_INSTALL_PREFIX option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> COMPILATION_COMMENT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> COMPILATION_COMMENT_SERVER option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> COMPRESS_DEBUG_SECTIONS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> CPACK_MONOLITHIC_INSTALL option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> DEFAULT_CHARSET option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DEFAULT_COLLATION option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_COND option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_DATA_LOCK option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_ERROR option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_FILE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_IDLE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_MEMORY option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_METADATA option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_MUTEX option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_PS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_RWLOCK option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_SOCKET option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_SP option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_STAGE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_STATEMENT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_STATEMENT_DIGEST option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_TABLE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_THREAD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> DISABLE_PSI_TRANSACTION option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> ENABLED_LOCAL_INFILE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> <dt> ENABLED_PROFILING option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> ENABLE_EXPERIMENTAL_SYSVARS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> ENABLE_GCOV option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> ENABLE_GPROF option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> FORCE_COLORED_OUTPUT option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> FORCE_INSOURCE_BUILD option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> FORCE_UNSUPPORTED_COMPILER option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> FPROFILE_GENERATE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> FPROFILE_USE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> HAVE_PSI_MEMORY_INTERFACE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> IGNORE_AIO_CHECK option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> INSTALL_BINDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_DOCDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_DOCREADMEDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_INCLUDEDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_INFODIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_LAYOUT option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_LIBDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_MANDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_MYSQLSHAREDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_MYSQLTESTDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_PKGCONFIGDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_PLUGINDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_PRIV_LIBDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_SBINDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_SECURE_FILE_PRIVDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_SHAREDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_STATIC_LIBRARIES option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> INSTALL_SUPPORTFILESDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> LINK_RANDOMIZE option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> LINK_RANDOMIZE_SEED option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> MAX_INDEXES option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MSVC_CPPCHECK option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MUTEX_TYPE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQLX_TCP_PORT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQLX_UNIX_ADDR option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQL_DATADIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> MYSQL_MAINTAINER_MODE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQL_PROJECT_NAME option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQL_TCP_PORT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQL_UNIX_ADDR option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> MYSQL_VERSION file, <a class="indexterm" href="source-configuration-third-party.html"> MySQL Configuration and Third-Party Tools </a> </dt> <dt> NDB_UTILS_LINK_DYNAMIC, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> ODBC_INCLUDES option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> ODBC_LIB_DIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> OPTIMIZER_TRACE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> OPTIMIZE_SANITIZER_BUILDS option, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> <dt> options, <a class="indexterm" href="source-configuration-options.html"> MySQL Source-Configuration Options </a> </dt> <dt> REPRODUCIBLE_BUILD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> running after prior invocation, <a class="indexterm" href="installing-source-distribution.html#installing-source-distribution-configure-distribution"> Configure the Distribution </a> , <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt> SHOW_SUPPRESSED_COMPILER_WARNINGS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> SYSCONFDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> SYSTEMD_PID_DIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> SYSTEMD_SERVICE_NAME option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> TMPDIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> WIN_DEBUG_NO_INLINE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITHOUT_SERVER option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ANT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ASAN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ASAN_SCOPE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_AUTHENTICATION_CLIENT_PLUGINS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_AUTHENTICATION_LDAP option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_AUTHENTICATION_PAM option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_AWS_SDK option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_BUILD_ID option, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> <dt> WITH_CLASSPATH option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_CLIENT_PROTOCOL_TRACING option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_CURL option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_DEBUG option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_DEFAULT_COMPILER_OPTIONS option, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> <dt> WITH_DEVELOPER_ENTITLEMENTS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_EDITLINE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ERROR_INSERT option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_ICU option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_INNODB_EXTRA_DEBUG option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_JEMALLOC option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LIBEVENT option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LIBWRAP option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LOCK_ORDER option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LSAN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LTO option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_LZ4 option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_MECAB option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_MSAN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_MSCRT_DEBUG option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_MYSQLX option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_NDB option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDBAPI_EXAMPLES option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDBCLUSTER option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDBCLUSTER_STORAGE_ENGINE option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDBMTD option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDB_DEBUG option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDB_JAVA option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDB_PORT option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDB_TEST option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NDB_TLS_SEARCH_PATH option, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> <dt> WITH_NUMA option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_PACKAGE_FLAGS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_PROTOBUF option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_RAPID option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_RAPIDJSON option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ROUTER option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SASL option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SHOW_PARSE_TREE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SSL option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SYSTEMD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SYSTEMD_DEBUG option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_SYSTEM_LIBS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_TCMALLOC option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_TEST_TRACE_PLUGIN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_TSAN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_UBSAN option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_UNIT_TESTS option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_UNIXODBC option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_VALGRIND option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_WIN_JEMALLOC option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ZLIB option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> WITH_ZSTD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327227152"> CMakeCache.txt file, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt id="ientry-idm46045328619744"> CMAKE_BUILD_TYPE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327376528"> CMAKE_CXX_FLAGS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> </dl> </dd> <dt id="ientry-idm46045327382464"> CMAKE_C_FLAGS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> </dl> </dd> <dt id="ientry-idm46045328576336"> CMAKE_INSTALL_PREFIX option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045207261456"> COALESCE(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045200040512"> code injection </dt> <dd> <dl> <dt> XPath, <a class="indexterm" href="xml-functions.html"> XML Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045217091104"> coercibility </dt> <dd> <dl> <dt> collation, <a class="indexterm" href="charset-collation-coercibility.html"> Collation Coercibility in Expressions </a> </dt> </dl> </dd> <dt id="ientry-idm46045198922256"> COERCIBILITY(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045033499904"> cold backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045215314784"> collating </dt> <dd> <dl> <dt> strings, <a class="indexterm" href="string-collating.html"> String Collating Support for Complex Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045217092592"> collation </dt> <dd> <dl> <dt> adding, <a class="indexterm" href="adding-collation.html"> Adding a Collation to a Character Set </a> </dt> <dt> coercibility, <a class="indexterm" href="charset-collation-coercibility.html"> Collation Coercibility in Expressions </a> </dt> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="charset-collation-information-schema.html"> Using Collation in INFORMATION_SCHEMA Searches </a> </dt> <dt> modifying, <a class="indexterm" href="adding-collation.html"> Adding a Collation to a Character Set </a> </dt> </dl> </dd> <dt id="ientry-idm46045198871792"> COLLATION(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045218191952"> collations, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> </dt> <dd> <dl> <dt> Asian, <a class="indexterm" href="charset-asian-sets.html"> Asian Character Sets </a> </dt> <dt> Baltic, <a class="indexterm" href="charset-baltic-sets.html"> Baltic Character Sets </a> </dt> <dt> binary, <a class="indexterm" href="charset-binary-collations.html"> The binary Collation Compared to _bin Collations </a> , <a class="indexterm" href="charset-binary-set.html"> The Binary Character Set </a> </dt> <dt> Central European, <a class="indexterm" href="charset-ce-sets.html"> Central European Character Sets </a> </dt> <dt> Cyrillic, <a class="indexterm" href="charset-cyrillic-sets.html"> Cyrillic Character Sets </a> </dt> <dt> Middle East, <a class="indexterm" href="charset-se-me-sets.html"> South European and Middle East Character Sets </a> </dt> <dt> naming conventions, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt> NO PAD, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> , <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-pad-attributes"> Collation Pad Attributes </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt> PAD SPACE, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> , <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-pad-attributes"> Collation Pad Attributes </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt> South European, <a class="indexterm" href="charset-se-me-sets.html"> South European and Middle East Character Sets </a> </dt> <dt> Unicode, <a class="indexterm" href="charset-unicode-sets.html"> Unicode Character Sets </a> </dt> <dt> West European, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> <dt> _ai suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt> _as suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt> _bin suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> , <a class="indexterm" href="charset-binary-collations.html"> The binary Collation Compared to _bin Collations </a> </dt> <dt> _ci suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt> _ks suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> <dt> _ss suffix, <a class="indexterm" href="charset-collation-names.html"> Collation Naming Conventions </a> </dt> </dl> </dd> <dt id="ientry-idm46045080297392"> COLLATIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-collations-table.html"> The INFORMATION_SCHEMA COLLATIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259870784"> collations table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045080270048"> COLLATION_CHARACTER_SET_APPLICABILITY </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-collation-character-set-applicability-table.html"> The INFORMATION_SCHEMA COLLATION_CHARACTER_SET_APPLICABILITY Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045277253104"> collation_connection system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277228368"> collation_database system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045277193648"> collation_server system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045095855200"> color option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045214496064"> column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> changing, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt> types, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045220032272"> column alias </dt> <dd> <dl> <dt> problems, <a class="indexterm" href="problems-with-alias.html"> Problems with Column Aliases </a> </dt> <dt> quoting, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> , <a class="indexterm" href="problems-with-alias.html"> Problems with Column Aliases </a> </dt> </dl> </dd> <dt id="ientry-idm46045184380464"> column comment options (NDB), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045186382384"> column comments, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045186374064"> column format, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045033479664"> column index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045219891456"> column names </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> </dl> </dd> <dt id="ientry-idm46045033475888"> column prefix, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045186346864"> column storage, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045319505056"> column-names option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045312410768"> column-statistics option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045319493920"> column-type-info option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045325234704"> columns </dt> <dd> <dl> <dt> displaying, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> indexes, <a class="indexterm" href="column-indexes.html"> Column Indexes </a> </dt> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt> other types, <a class="indexterm" href="other-vendor-data-types.html"> Using Data Types from Other Database Engines </a> </dt> <dt> selecting, <a class="indexterm" href="selecting-columns.html"> Selecting Particular Columns </a> </dt> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html"> Data Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045080255664"> COLUMNS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-columns-table.html"> The INFORMATION_SCHEMA COLUMNS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045311696192"> columns option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045084597792"> columns partitioning, <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt id="ientry-idm46045226391216"> columns per table </dt> <dd> <dl> <dt> maximum, <a class="indexterm" href="column-count-limit.html#column-count-limits"> Column Count Limits </a> </dt> </dl> </dd> <dt id="ientry-idm46045259856592"> columns table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045080126528"> COLUMNS_EXTENSIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-columns-extensions-table.html"> The INFORMATION_SCHEMA COLUMNS_EXTENSIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259685600"> columns_priv table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045080105888"> COLUMN_PRIVILEGES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-column-privileges-table.html"> The INFORMATION_SCHEMA COLUMN_PRIVILEGES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045080067712"> COLUMN_STATISTICS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-column-statistics-table.html"> The INFORMATION_SCHEMA COLUMN_STATISTICS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259867168"> column_statistics table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> , <a class="indexterm" href="optimizer-statistics.html"> Optimizer Statistics </a> </dt> </dl> </dd> <dt id="ientry-idm46045259861136"> column_type_elements table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045181769808"> comma-separated values data, reading, <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> , <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt id="ientry-idm46045033470640"> command interceptor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324239440"> command option precedence, <a class="indexterm" href="program-options.html"> Specifying Program Options </a> </dt> <dt id="ientry-idm46045320150960"> command options </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045113937168"> command options (NDB Cluster) </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045335253696"> command syntax, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt id="ientry-idm46045317476576"> command-line history </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045320188512"> command-line tool, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> </dt> <dt id="ientry-idm46045332577344"> commands </dt> <dd> <dl> <dt> for binary distribution, <a class="indexterm" href="binary-installation.html"> Installing MySQL on Unix/Linux Using Generic Binaries </a> </dt> </dl> </dd> <dt id="ientry-idm46045054234720"> commands out of sync, <a class="indexterm" href="commands-out-of-sync.html"> Commands out of sync </a> </dt> <dt id="ientry-idm46045218248560"> comment syntax, <a class="indexterm" href="comments.html"> Comments </a> </dt> <dt id="ientry-idm46045333175952"> comments </dt> <dd> <dl> <dt> adding, <a class="indexterm" href="comments.html"> Comments </a> </dt> <dt> starting, <a class="indexterm" href="ansi-diff-comments.html"> '--' as the Start of a Comment </a> </dt> </dl> </dd> <dt id="ientry-idm46045319476368"> comments option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045178888528"> COMMIT, <a class="indexterm" href="commit.html"> START TRANSACTION, COMMIT, and ROLLBACK Statements </a> </dt> <dd> <dl> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045033461776"> commit, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045309520128"> commit option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045221762048"> committing alter table to storage engine </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221004464"> Committing events to binlog </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045324692848"> common table expressions, <a class="indexterm" href="example-maximum-column-group-row.html"> The Rows Holding the Group-wise Maximum of a Certain Column </a> , <a class="indexterm" href="with.html"> WITH (Common Table Expressions) </a> </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> , <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> </dl> </dd> <dt id="ientry-idm46045312970448"> compact option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045160935152"> compact row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compact"> COMPACT Row Format </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045207529744"> comparison operators, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045250080320"> comparisons </dt> <dd> <dl> <dt> access checking, <a class="indexterm" href="grant-tables.html#grant-tables-scope-column-properties"> Grant Table Scope Column Properties </a> </dt> <dt> account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> trailing spaces, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> </dt> </dl> </dd> <dt id="ientry-idm46045333578368"> compatibility </dt> <dd> <dl> <dt> with ODBC, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="type-conversion.html"> Type Conversion in Expression Evaluation </a> , <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt> with Oracle, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> , <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> , <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="explain.html#explain-table-structure"> Obtaining Table Structure Information </a> </dt> <dt> with PostgreSQL, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> <dt> with standard SQL, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045312937104"> compatible option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045328298784"> COMPILATION_COMMENT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328281392"> COMPILATION_COMMENT_SERVER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327231168"> compiling MySQL server </dt> <dd> <dl> <dt> problems, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045312923936"> complete-insert option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045277166912"> completion_type system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045257265904"> component </dt> <dd> <dl> <dt> log_filter_dragnet, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt> log_filter_internal, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt> log_sink_internal, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_json, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_syseventlog, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_test, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> query_attributes, <a class="indexterm" href="query-attribute-components.html"> Query Attribute Components </a> </dt> <dt> scheduler, <a class="indexterm" href="scheduler-component.html"> Scheduler Component </a> </dt> </dl> </dd> <dt id="ientry-idm46045241754496"> component installing </dt> <dd> <dl> <dt> component_keyring_encrypted_file, <a class="indexterm" href="keyring-component-installation.html"> Keyring Component Installation </a> </dt> <dt> component_keyring_file, <a class="indexterm" href="keyring-component-installation.html"> Keyring Component Installation </a> </dt> <dt> component_masking, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> <dt> component_masking_functions, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> <dt> validate_password, <a class="indexterm" href="validate-password-installation.html"> Password Validation Component Installation and Uninstallation </a> </dt> </dl> </dd> <dt id="ientry-idm46045259641664"> component table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045241753008"> component uninstalling </dt> <dd> <dl> <dt> Data Masking, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> <dt> validate_password, <a class="indexterm" href="validate-password-installation.html"> Password Validation Component Installation and Uninstallation </a> </dt> </dl> </dd> <dt id="ientry-idm46045305736400"> component-dir option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045257357408"> components, <a class="indexterm" href="components.html"> MySQL Components </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="component-loading.html"> Installing and Uninstalling Components </a> , <a class="indexterm" href="install-component.html"> INSTALL COMPONENT Statement </a> </dt> <dt> security, <a class="indexterm" href="security-plugins.html"> Security Components and Plugins </a> </dt> <dt> uninstalling, <a class="indexterm" href="component-loading.html"> Installing and Uninstalling Components </a> , <a class="indexterm" href="uninstall-component.html"> UNINSTALL COMPONENT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045240981888"> component_keyring_encrypted_file component, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-component-installation.html"> Keyring Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045240751328"> component_keyring_encrypted_file keyring component, <a class="indexterm" href="keyring-encrypted-file-component.html"> Using the component_keyring_encrypted_file Encrypted File-Based Keyring Component </a> </dt> <dt id="ientry-idm46045240984880"> component_keyring_file component, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-component-installation.html"> Keyring Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045240814768"> component_keyring_file keyring component, <a class="indexterm" href="keyring-file-component.html"> Using the component_keyring_file File-Based Keyring Component </a> </dt> <dt id="ientry-idm46045240117632"> component_keyring_oci keyring component, <a class="indexterm" href="keyring-oci-component.html"> Using the Oracle Cloud Infrastructure Vault Keyring Component </a> </dt> <dt id="ientry-idm46045233425952"> component_masking component </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045232570656"> component_masking.dictionaries_flush_interval_seconds system variable, <a class="indexterm" href="data-masking-component-variables.html"> MySQL Enterprise Data Masking and De-Identification Component Variables </a> </dt> <dt id="ientry-idm46045232532032"> component_masking.masking_database system variable, <a class="indexterm" href="data-masking-component-variables.html"> MySQL Enterprise Data Masking and De-Identification Component Variables </a> </dt> <dt id="ientry-idm46045233423008"> component_masking_functions component </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045277098752"> component_scheduler.enabled system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045067778496"> component_scheduler_tasks table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-component-scheduler-tasks-table.html"> The component_scheduler_tasks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045033440208"> composite index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045084154160"> composite partitioning, <a class="indexterm" href="partitioning-subpartitions.html"> Subpartitioning </a> </dt> <dt id="ientry-idm46045176518384"> compound statements, <a class="indexterm" href="sql-compound-statements.html"> Compound Statement Syntax </a> </dt> <dt id="ientry-idm46045322844224"> compress option, <a class="indexterm" href="connection-options.html#connection-compression-options"> Command Options for Connection Compression </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045199375152"> COMPRESS(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045033436928"> compressed backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045160836880"> compressed row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compressed"> COMPRESSED Row Format </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033413392"> compressed table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045306495680"> compressed tables, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> , <a class="indexterm" href="compressed-format.html"> Compressed Table Characteristics </a> </dt> <dt id="ientry-idm46045116592864"> CompressedBackup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118252000"> CompressedLCP, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045322303200"> compression, <a class="indexterm" href="innodb-compression.html"> InnoDB Table and Page Compression </a> , <a class="indexterm" href="innodb-page-compression.html"> InnoDB Page Compression </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> algorithms, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> application and schema design, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> BLOBs, VARCHAR and TEXT, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> buffer pool considerations, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> compressed page size, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> configuration characteristics, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> connection, <a class="indexterm" href="connection-compression-control.html"> Connection Compression Control </a> , <a class="indexterm" href="x-plugin-connection-compression.html"> Connection Compression with X Plugin </a> </dt> <dt> data and indexes, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> data characteristics, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> enabling for a table, <a class="indexterm" href="innodb-compression-usage.html"> Creating Compressed Tables </a> </dt> <dt> implementation, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> information schema, <a class="indexterm" href="innodb-information-schema-compression-tables.html"> InnoDB INFORMATION_SCHEMA Tables about Compression </a> </dt> <dt> KEY_BLOCK_SIZE, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> log file format, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> modification log, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> monitoring, <a class="indexterm" href="innodb-compression-tuning-monitoring.html"> Monitoring InnoDB Table Compression at Runtime </a> </dt> <dt> overflow pages, <a class="indexterm" href="innodb-compression-internals.html"> How Compression Works for InnoDB Tables </a> </dt> <dt> overview, <a class="indexterm" href="innodb-compression-background.html"> Overview of Table Compression </a> </dt> <dt> tuning, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> workload characteristics, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045033397200"> compression failure, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045263457376"> Compression status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045322823888"> compression-algorithms option, <a class="indexterm" href="connection-options.html#connection-compression-options"> Command Options for Connection Compression </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045263450576"> Compression_algorithm status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263440240"> Compression_level status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045328289520"> COMPRESS_DEBUG_SECTIONS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324456672"> comp_err, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dd> <dl> <dt> charset option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> debug option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> debug-info option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> errmsg-file option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> header-file option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> help option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> in-file-errlog option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> in-file-toclient option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> name-file option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> out-dir option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> out-file option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> version option, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045203548672"> CONCAT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045220625376"> concatenation </dt> <dd> <dl> <dt> string, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045203523264"> CONCAT_WS(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045167481904"> concurrency, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> of commits, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> of threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> tickets, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045309461856"> concurrency option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045222860224"> concurrent inserts, <a class="indexterm" href="internal-locking.html#internal-table-level-locking"> Table-Level Locking </a> , <a class="indexterm" href="concurrent-inserts.html"> Concurrent Inserts </a> </dt> <dt id="ientry-idm46045277066656"> concurrent_insert system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045175226224"> condition handling </dt> <dd> <dl> <dt> INOUT parameters, <a class="indexterm" href="conditions-and-parameters.html"> Condition Handling and OUT or INOUT Parameters </a> </dt> <dt> OUT parameters, <a class="indexterm" href="conditions-and-parameters.html"> Condition Handling and OUT or INOUT Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045176070592"> Conditions, <a class="indexterm" href="declare-condition.html"> DECLARE ... CONDITION Statement </a> </dt> <dt id="ientry-idm46045170470352"> conditions, <a class="indexterm" href="show-errors.html"> SHOW ERRORS Statement </a> , <a class="indexterm" href="show-warnings.html"> SHOW WARNINGS Statement </a> </dt> <dt id="ientry-idm46045073597824"> cond_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-cond-instances-table.html"> The cond_instances Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045105444224"> config-binary-file option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045107141264"> config-cache option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045302956704"> config-file option </dt> <dd> <dl> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045122263808"> config.ini (NDB Cluster), <a class="indexterm" href="mysql-cluster-install-configuration.html"> Initial Configuration of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-config-file.html"> NDB Cluster Configuration Files </a> , <a class="indexterm" href="mysql-cluster-config-example.html"> NDB Cluster Configuration: Basic Example </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt id="ientry-idm46045107052800"> configdir option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045114034336"> ConfigGenerationNumber, <a class="indexterm" href="mysql-cluster-system-definition.html"> Defining the System </a> </dt> <dt id="ientry-idm46045105463600"> configinfo option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045302465968"> configuration </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-configuration-overview.html"> Overview of NDB Cluster Configuration Parameters, Options, and Variables </a> </dt> <dt> server, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045033377472"> configuration file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045247440624"> configuration files, <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dt id="ientry-idm46045091953168"> configuring backups </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> </dl> </dd> <dt id="ientry-idm46045123106304"> configuring NDB Cluster, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> , <a class="indexterm" href="mysql-cluster-configuration.html"> Configuration of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> , <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt id="ientry-idm46045124319520"> Configuring NDB Cluster (concepts), <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dt id="ientry-idm46045105397920"> config_from_node option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045090224400"> config_nodes </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-config-nodes.html"> The ndbinfo config_nodes Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090192976"> config_params </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-config-params.html"> The ndbinfo config_params Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090166992"> config_values </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-config-values.html"> The ndbinfo config_values Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045085231136"> conflict detection status variables </dt> <dd> <dl> <dt> NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-detection-statvars"> Conflict Detection Status Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045086419536"> conflict resolution </dt> <dd> <dl> <dt> enabling, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-control"> Conflict Resolution Control </a> </dt> <dt> NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html"> NDB Cluster Replication Conflict Resolution </a> </dt> <dt> ndb_replication table, <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-replication"> ndb_replication Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045221936912"> Connect </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045317865168"> connect command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045094602336"> CONNECT command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045099605952"> connect option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045221931952"> Connect Out </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045108380464"> connect-delay option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045319416704"> connect-expired-password option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045108351696"> connect-retries option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045108326288"> connect-retry-delay option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045108298896"> connect-string option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045319398400"> connect-timeout option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045114133056"> ConnectBackoffMaxTime, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045117657792"> ConnectCheckIntervalDelay, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045325684192"> connecting </dt> <dd> <dl> <dt> parameters, <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html#connection-parameters-base"> Base Connection Parameters </a> </dt> <dt> remotely with SSH, <a class="indexterm" href="windows-and-ssh.html"> Connecting to MySQL Remotely from Windows with SSH </a> </dt> <dt> to the server, <a class="indexterm" href="connecting-disconnecting.html"> Connecting to and Disconnecting from the Server </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> <dt> using a DNS SRV record, <a class="indexterm" href="connecting-using-dns-srv.html"> Connecting to the Server Using DNS SRV Records </a> </dt> <dt> using a URI-like connection string, <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html"> Connecting to the Server Using URI-Like Strings or Key-Value Pairs </a> , <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html#connecting-using-uri"> Connecting Using URI-Like Connection Strings </a> </dt> <dt> using key-value pairs, <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html"> Connecting to the Server Using URI-Like Strings or Key-Value Pairs </a> , <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html#connecting-using-key-value-pairs"> Connecting Using Key-Value Pairs </a> </dt> <dt> verification, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> </dt> </dl> </dd> <dt id="ientry-idm46045221242368"> Connecting to master </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221238320"> Connecting to source </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045054301664"> connection, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> aborted, <a class="indexterm" href="communication-errors.html"> Communication Errors and Aborted Connections </a> </dt> </dl> </dd> <dt id="ientry-idm46045322304688"> connection compression </dt> <dd> <dl> <dt> classic MySQL protocol, <a class="indexterm" href="connection-compression-control.html"> Connection Compression Control </a> </dt> <dt> X Protocol, <a class="indexterm" href="x-plugin-connection-compression.html"> Connection Compression with X Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045093350912"> CONNECTION Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045261021648"> connection interface </dt> <dd> <dl> <dt> administrative, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> </dt> <dt> main, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> </dt> </dl> </dd> <dt id="ientry-idm46045261024528"> connection management, <a class="indexterm" href="connection-management.html"> Connection Management </a> </dt> <dt id="ientry-idm46045033353568"> connection pool, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045120583248"> connection string, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> (see <a href="#ientry-idm46045221007520"> NDB Cluster </a> ) </dt> <dt id="ientry-idm46045076015808"> connection-control table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-connection-control-table-reference.html"> INFORMATION_SCHEMA Connection-Control Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045304792112"> connection-server-id option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045103131184"> connection-timeout option </dt> <dd> <dl> <dt> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045114556688"> ConnectionMap, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045105317744"> connections option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045263388288"> Connections status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045251297104"> CONNECTION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045242132656"> CONNECTION_CONTROL plugin </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="connection-control-installation.html"> Connection-Control Plugin Installation </a> </dt> <dt> status variables, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-status-variables"> Connection-Control Status Variables </a> </dt> <dt> system variables, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045241845664"> Connection_control_delay_generated status variable, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-status-variables"> Connection-Control Status Variables </a> </dt> <dt id="ientry-idm46045241960464"> connection_control_failed_connections_threshold system variable, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt id="ientry-idm46045076002624"> CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-connection-control-failed-login-attempts-table.html"> The INFORMATION_SCHEMA CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045242129664"> CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS plugin </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="connection-control-installation.html"> Connection-Control Plugin Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045241923600"> connection_control_max_connection_delay system variable, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt id="ientry-idm46045241886800"> connection_control_min_connection_delay system variable, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt id="ientry-idm46045263426128"> Connection_errors_accept status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263419888"> Connection_errors_internal status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263414144"> Connection_errors_max_connections status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263407376"> Connection_errors_peer_address status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263401824"> Connection_errors_select status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263394736"> Connection_errors_tcpwrap status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045198860336"> CONNECTION_ID(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045276968992"> connection_memory_chunk_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276929360"> connection_memory_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033336832"> connector, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060618400"> Connector/C++, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-cpp-info.html"> MySQL Connector/C++ </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060617328"> Connector/J, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-j-info.html"> MySQL Connector/J </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060615184"> Connector/NET, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-net-info.html"> MySQL Connector/NET </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060611968"> Connector/Node.js, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-nodejs-info.html"> MySQL Connector/Node.js </a> </dt> <dt id="ientry-idm46045060614112"> Connector/ODBC, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-odbc-info.html"> MySQL Connector/ODBC </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033300880"> Connector/PHP, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060613040"> Connector/Python, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="connector-python-info.html"> MySQL Connector/Python </a> </dt> <dt id="ientry-idm46045060619472"> Connectors, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> <dt id="ientry-idm46045277006816"> connect_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045033294448"> consistent read, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045164205168"> consistent reads, <a class="indexterm" href="innodb-consistent-read.html"> Consistent Nonlocking Reads </a> </dt> <dt id="ientry-idm46045280311312"> console option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045225231200"> const table </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045230281456"> constant table, <a class="indexterm" href="where-optimization.html"> WHERE Clause Optimization </a> </dt> <dt id="ientry-idm46045033277328"> constraint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333156480"> constraints, <a class="indexterm" href="constraints.html"> How MySQL Deals with Constraints </a> </dt> <dd> <dl> <dt> foreign keys, <a class="indexterm" href="create-table-foreign-keys.html"> FOREIGN KEY Constraints </a> </dt> </dl> </dd> <dt id="ientry-idm46045104175584"> context option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045102830304"> continue option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045320161488"> Control+C </dt> <dd> <dl> <dt> statement termination, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="with.html#common-table-expressions-recursion-limits"> Limiting Common Table Expression Recursion </a> </dt> </dl> </dd> <dt id="ientry-idm46045100470128"> control-directory-number option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045206086016"> CONV(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045335324816"> conventions </dt> <dd> <dl> <dt> syntax, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt> typographical, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> </dl> </dd> <dt id="ientry-idm46045200754928"> CONVERT, <a class="indexterm" href="cast-functions.html#cast-function-descriptions"> Cast Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045188867552"> CONVERT TO, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt id="ientry-idm46045221755792"> converting HEAP to ondisk </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045205320208"> CONVERT_TZ(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045221750096"> copy to tmp table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045325792736"> copying databases, <a class="indexterm" href="copying-databases.html"> Copying MySQL Databases to Another Machine </a> </dt> <dt id="ientry-idm46045185318000"> copying tables, <a class="indexterm" href="create-table-select.html"> CREATE TABLE ... SELECT Statement </a> </dt> <dt id="ientry-idm46045221742528"> Copying to group table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221736128"> Copying to tmp table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221731216"> Copying to tmp table on disk </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045280293776"> core-file option, <a class="indexterm" href="innodb-buffer-pool-in-core-file.html"> Excluding or Including Buffer Pool Pages from Core Files </a> </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045321854528"> core-file-size option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045276890672"> core_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="innodb-buffer-pool-in-core-file.html"> Excluding or Including Buffer Pool Pages from Core Files </a> </dt> <dt id="ientry-idm46045307067840"> correct-checksum option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045179843952"> correlated subqueries, <a class="indexterm" href="correlated-subqueries.html"> Correlated Subqueries </a> </dt> <dt id="ientry-idm46045149193872"> corruption, <a class="indexterm" href="forcing-innodb-recovery.html"> Forcing InnoDB Recovery </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-recovery.html#innodb-corruption-disk-failure-recovery"> Recovery from Data Corruption or Disk Failure </a> </dt> </dl> </dd> <dt id="ientry-idm46045206063536"> COS(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045223350784"> cost model </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="cost-model.html"> The Optimizer Cost Model </a> </dt> </dl> </dd> <dt id="ientry-idm46045206050720"> COT(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045316655088"> count option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045193172192"> COUNT(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045193121376"> COUNT(DISTINCT), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045033271248"> counter, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045090132512"> counters </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-counters.html"> The ndbinfo counters Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045324987264"> counting </dt> <dd> <dl> <dt> table rows, <a class="indexterm" href="counting-rows.html"> Counting Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045033264224"> covering index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045328603760"> CPACK_MONOLITHIC_INSTALL option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045033252704"> CPU-bound, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045090059856"> cpudata </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpudata.html"> The ndbinfo cpudata Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090037136"> cpudata_1sec </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpudata-1sec.html"> The ndbinfo cpudata_1sec Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045090010608"> cpudata_20sec </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpudata-20sec.html"> The ndbinfo cpudata_20sec Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089984016"> cpudata_50ms </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpudata-50ms.html"> The ndbinfo cpudata_50ms Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089957488"> cpuinfo </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpuinfo.html"> The ndbinfo cpuinfo Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089939872"> cpustat </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpustat.html"> The ndbinfo cpustat Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089881600"> cpustat_1sec </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpustat-1sec.html"> The ndbinfo cpustat_1sec Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089850640"> cpustat_20sec </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpustat-20sec.html"> The ndbinfo cpustat_20sec Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089912736"> cpustat_50ms </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-cpustat-50ms.html"> The ndbinfo cpustat_50ms Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045253855088"> crash, <a class="indexterm" href="debugging-server.html"> Debugging a MySQL Server </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> recovery, <a class="indexterm" href="myisam-crash-recovery.html"> Using myisamchk for Crash Recovery </a> </dt> <dt> repeated, <a class="indexterm" href="crashing.html"> What to Do If MySQL Keeps Crashing </a> </dt> <dt> replication, <a class="indexterm" href="replication-features-shutdowns.html"> Replication and Source or Replica Shutdowns </a> </dt> </dl> </dd> <dt id="ientry-idm46045149181168"> crash recovery, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-recovery.html#innodb-crash-recovery"> InnoDB Crash Recovery </a> , <a class="indexterm" href="innodb-recovery.html#innodb-recovery-tablespace-discovery"> Tablespace Discovery During Crash Recovery </a> </dt> </dl> </dd> <dt id="ientry-idm46045142972848"> crash-safe replication, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> , <a class="indexterm" href="replication-solutions-unexpected-replica-halt.html"> Handling an Unexpected Halt of a Replica </a> </dt> <dt id="ientry-idm46045118226336"> CrashOnCorruptedTuple, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045206037472"> CRC32(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045135926016"> CREATE ... IF NOT EXISTS </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-create-if-not-exists.html"> Replication of CREATE ... IF NOT EXISTS Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045188337680"> CREATE DATABASE, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt id="ientry-idm46045221927056"> Create DB </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045188276832"> CREATE EVENT, <a class="indexterm" href="create-event.html"> CREATE EVENT Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> </dl> </dd> <dt id="ientry-idm46045187286208"> CREATE FUNCTION, <a class="indexterm" href="create-procedure.html"> CREATE PROCEDURE and CREATE FUNCTION Statements </a> </dt> <dt id="ientry-idm46045171897968"> CREATE FUNCTION statement, <a class="indexterm" href="create-function-loadable.html"> CREATE FUNCTION Statement for Loadable Functions </a> </dt> <dt id="ientry-idm46045188100000"> CREATE INDEX, <a class="indexterm" href="create-index.html"> CREATE INDEX Statement </a> </dt> <dt id="ientry-idm46045187348880"> CREATE LOGFILE GROUP, <a class="indexterm" href="create-logfile-group.html"> CREATE LOGFILE GROUP Statement </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045091734176"> NDB Cluster Disk Data </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045094595680"> CREATE NODEGROUP command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045309448448"> create option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045251844304"> CREATE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045187287248"> CREATE PROCEDURE, <a class="indexterm" href="create-procedure.html"> CREATE PROCEDURE and CREATE FUNCTION Statements </a> </dt> <dt id="ientry-idm46045172810080"> CREATE RESOURCE GROUP statement, <a class="indexterm" href="create-resource-group.html"> CREATE RESOURCE GROUP Statement </a> </dt> <dt id="ientry-idm46045251838848"> CREATE ROLE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045174601760"> CREATE ROLE statement, <a class="indexterm" href="create-role.html"> CREATE ROLE Statement </a> </dt> <dt id="ientry-idm46045251822496"> CREATE ROUTINE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045188336608"> CREATE SCHEMA, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt id="ientry-idm46045187044400"> CREATE SERVER, <a class="indexterm" href="create-server.html"> CREATE SERVER Statement </a> </dt> <dt id="ientry-idm46045187001552"> CREATE SPATIAL REFERENCE SYSTEM, <a class="indexterm" href="create-spatial-reference-system.html"> CREATE SPATIAL REFERENCE SYSTEM Statement </a> </dt> <dt id="ientry-idm46045186637392"> CREATE TABLE, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dd> <dl> <dt> DIRECTORY options </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-directory.html"> Replication and DIRECTORY Table Options </a> </dt> </dl> </dd> <dt> KEY_BLOCK_SIZE, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> <dt> NDB_COLUMN options, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> NDB_TABLE options, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> options for table compression, <a class="indexterm" href="innodb-compression-usage.html"> Creating Compressed Tables </a> </dt> <dt> ROW_FORMAT, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-defining"> Defining the Row Format of a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045135899632"> CREATE TABLE ... SELECT </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-create-select.html"> Replication of CREATE TABLE ... SELECT Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045184130736"> CREATE TABLESPACE, <a class="indexterm" href="create-tablespace.html"> CREATE TABLESPACE Statement </a> </dt> <dd> <dl> <dt> general tablespace, <a class="indexterm" href="create-tablespace.html"> CREATE TABLESPACE Statement </a> </dt> <dt> undo tablespace, <a class="indexterm" href="create-tablespace.html"> CREATE TABLESPACE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045251816096"> CREATE TABLESPACE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045251810480"> CREATE TEMPORARY TABLES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045183824512"> CREATE TRIGGER, <a class="indexterm" href="create-trigger.html"> CREATE TRIGGER Statement </a> </dt> <dt id="ientry-idm46045251794928"> CREATE USER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045249592368"> CREATE USER statement, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> , <a class="indexterm" href="assigning-passwords.html"> Assigning Account Passwords </a> , <a class="indexterm" href="create-user.html"> CREATE USER Statement </a> </dt> <dt id="ientry-idm46045183703264"> CREATE VIEW, <a class="indexterm" href="create-view.html"> CREATE VIEW Statement </a> </dt> <dt id="ientry-idm46045251780992"> CREATE VIEW privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045096492128"> create-CA option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096480976"> create-key option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045312911536"> create-options option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045309434912"> create-schema option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045263382688"> Created_tmp_disk_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263369312"> Created_tmp_files status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263362592"> Created_tmp_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045276866480"> create_admin_listener_thread system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045231728320"> create_asymmetric_priv_key(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045231707616"> create_asymmetric_pub_key(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045231692720"> create_digest(), <a class="indexterm" href="enterprise-encryption-functions.html"> MySQL Enterprise Encryption Component Function Descriptions </a> </dt> <dt id="ientry-idm46045061673424"> create_synonym_db() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-create-synonym-db.html"> The create_synonym_db() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045333713040"> creating </dt> <dd> <dl> <dt> bug reports, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> database, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> databases, <a class="indexterm" href="database-use.html"> Creating and Using a Database </a> </dt> <dt> default startup options, <a class="indexterm" href="option-files.html"> Using Option Files </a> </dt> <dt> loadable function, <a class="indexterm" href="create-function-loadable.html"> CREATE FUNCTION Statement for Loadable Functions </a> </dt> <dt> schema, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> tables, <a class="indexterm" href="creating-tables.html"> Creating a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045221725360"> Creating index </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045174599200"> creating roles, <a class="indexterm" href="create-role.html"> CREATE ROLE Statement </a> </dt> <dt id="ientry-idm46045221719088"> Creating sort index </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221712912"> creating table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221707968"> Creating tmp table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045174568640"> creating user accounts, <a class="indexterm" href="create-user.html"> CREATE USER Statement </a> </dt> <dt id="ientry-idm46045180538160"> CROSS JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045033225856"> CRUD, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045054420608"> CR_SERVER_GONE_ERROR, <a class="indexterm" href="gone-away.html"> MySQL server has gone away </a> </dt> <dt id="ientry-idm46045054419568"> CR_SERVER_LOST_ERROR, <a class="indexterm" href="gone-away.html"> MySQL server has gone away </a> </dt> <dt id="ientry-idm46045181770880"> CSV data, reading, <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> , <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt id="ientry-idm46045309417216"> csv option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045148711520"> CSV storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="csv-storage-engine.html"> The CSV Storage Engine </a> </dt> <dt id="ientry-idm46045102807440"> csvopt option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045276835440"> cte_max_recursion_depth system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045192296928"> CUME_DIST(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045205297360"> CURDATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045192021408"> current row </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045205283984"> CURRENT_DATE, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045198839424"> CURRENT_ROLE(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045205271184"> CURRENT_TIME, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045205258304"> CURRENT_TIMESTAMP, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045263349920"> Current_tls_ca status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263335584"> Current_tls_capath status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263327504"> Current_tls_cert status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263319360"> Current_tls_cipher status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263311248"> Current_tls_ciphersuites status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263303200"> Current_tls_crl status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263292896"> Current_tls_crlpath status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263284928"> Current_tls_key status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263276736"> Current_tls_version status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045198820000"> CURRENT_USER(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045033218176"> cursor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045176169264"> Cursors, <a class="indexterm" href="cursors.html"> Cursors </a> </dt> <dt id="ientry-idm46045205246720"> CURTIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045096469664"> curve option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327202496"> CXX environment variable, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045303043536"> cxxflags option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_D"> </a> D </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045221922144"> Daemon </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045106966224"> daemon option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045280267712"> daemonize option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045254529664"> daemon_keyring_proxy_plugin plugin, <a class="indexterm" href="daemon-keyring-proxy-plugin.html"> The Keyring Proxy Bridge Plugin </a> </dt> <dt id="ientry-idm46045325405248"> data </dt> <dd> <dl> <dt> importing, <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> loading into tables, <a class="indexterm" href="loading-tables.html"> Loading Data into a Table </a> </dt> <dt> retrieving, <a class="indexterm" href="retrieving-data.html"> Retrieving Information from a Table </a> </dt> <dt> size, <a class="indexterm" href="data-size.html"> Optimizing Data Size </a> </dt> </dl> </dd> <dt id="ientry-idm46045167824528"> data dictionary, <a class="indexterm" href="data-dictionary.html"> MySQL Data Dictionary </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> benefits, <a class="indexterm" href="data-dictionary.html"> MySQL Data Dictionary </a> </dt> <dt> dictionary object cache, <a class="indexterm" href="data-dictionary-object-cache.html"> Dictionary Object Cache </a> </dt> <dt> INFORMATION_SCHEMA integration, <a class="indexterm" href="data-dictionary-information-schema.html"> INFORMATION_SCHEMA and Data Dictionary Integration </a> </dt> <dt> limitations, <a class="indexterm" href="data-dictionary-limitations.html"> Data Dictionary Limitations </a> </dt> <dt> metadata file removal, <a class="indexterm" href="data-dictionary-file-removal.html"> Removal of File-based Metadata Storage </a> </dt> <dt> operational implications, <a class="indexterm" href="data-dictionary-usage-differences.html"> Data Dictionary Usage Differences </a> </dt> <dt> schema, <a class="indexterm" href="data-dictionary-schema.html"> Data Dictionary Schema </a> </dt> <dt> transactional storage, <a class="indexterm" href="data-dictionary-transactional-storage.html"> Transactional Storage of Dictionary Data </a> </dt> </dl> </dd> <dt id="ientry-idm46045259884432"> data dictionary tables </dt> <dd> <dl> <dt> catalogs table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> character_sets table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> check_constraints table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> collations table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> columns table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> column_type_elements table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> dd_properties table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> events table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> foreign_keys table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> foreign_key_column_usage table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> indexes table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> index_column_usage table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> index_partitions table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> index_stats table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> innodb_ddl_log table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> parameters table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> parameter_type_elements table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> resource_groups table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> routines table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> schemata table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> st_spatial_reference_systems table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> tables table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> tablespaces table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> tablespace_files table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> table_partitions table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> table_partition_values table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> table_stats table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> triggers table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> view_routine_usage table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> <dt> view_table_usage table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045135656080"> DATA DIRECTORY </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-directory.html"> Replication and DIRECTORY Table Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045033194992"> data directory, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045159418992"> data encryption, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dt id="ientry-idm46045033188368"> data files, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045233427440"> data masking components </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045233420000"> Data Masking components </dt> <dd> <dl> <dt> uninstalling, <a class="indexterm" href="data-masking-components-installation.html"> MySQL Enterprise Data Masking and De-Identification Component Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045232497664"> Data Masking plugin </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="data-masking-plugin-installation.html"> MySQL Enterprise Data Masking and De-Identification Plugin Installation </a> </dt> <dt> uninstalling, <a class="indexterm" href="data-masking-plugin-installation.html"> MySQL Enterprise Data Masking and De-Identification Plugin Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045124339088"> data node (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> </dl> </dd> <dt id="ientry-idm46045116448400"> data nodes </dt> <dd> <dl> <dt> memory allocation, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045108432912"> data nodes (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dt id="ientry-idm46045079849200"> Data on disk (NDB Cluster) </dt> <dd> <dl> <dt> and INFORMATION_SCHEMA.FILES table, <a class="indexterm" href="information-schema-files-table.html"> The INFORMATION_SCHEMA FILES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045055623808"> Data truncation with CJK characters, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045214391184"> data type </dt> <dd> <dl> <dt> BIGINT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> BINARY, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="binary-varbinary.html"> The BINARY and VARBINARY Types </a> </dt> <dt> BIT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> BLOB, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> BOOL, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="other-vendor-data-types.html"> Using Data Types from Other Database Engines </a> </dt> <dt> BOOLEAN, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="other-vendor-data-types.html"> Using Data Types from Other Database Engines </a> </dt> <dt> CHAR, <a class="indexterm" href="string-types.html"> String Data Types </a> , <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> CHAR VARYING, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> CHARACTER, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> CHARACTER VARYING, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> DATE, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt> DATETIME, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt> DEC, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> DECIMAL, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt> DOUBLE, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> DOUBLE PRECISION, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> ENUM, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="enum.html"> The ENUM Type </a> </dt> <dt> FIXED, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> FLOAT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> GEOMETRY, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> GEOMETRYCOLLECTION, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> INT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> INTEGER, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> LINESTRING, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> LONG, <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> LONGBLOB, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> LONGTEXT, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> MEDIUMBLOB, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> MEDIUMINT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> MEDIUMTEXT, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> MULTILINESTRING, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> MULTIPOINT, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> MULTIPOLYGON, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> NATIONAL CHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> NATIONAL VARCHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> NCHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> NUMERIC, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> NVARCHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> POINT, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> POLYGON, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt> REAL, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> SET, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="set.html"> The SET Type </a> </dt> <dt> SMALLINT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> TEXT, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> TIME, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="time.html"> The TIME Type </a> </dt> <dt> TIMESTAMP, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt> TINYBLOB, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> TINYINT, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt> TINYTEXT, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> VARBINARY, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="binary-varbinary.html"> The BINARY and VARBINARY Types </a> </dt> <dt> VARCHAR, <a class="indexterm" href="string-types.html"> String Data Types </a> , <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> VARCHARACTER, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt> YEAR, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="year.html"> The YEAR Type </a> </dt> </dl> </dd> <dt id="ientry-idm46045214498624"> data types, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dd> <dl> <dt> date and time, <a class="indexterm" href="date-and-time-types.html"> Date and Time Data Types </a> </dt> <dt> numeric, <a class="indexterm" href="numeric-types.html"> Numeric Data Types </a> </dt> <dt> string, <a class="indexterm" href="string-types.html"> String Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045033170144"> data warehouse, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045159421152"> data-at-rest encryption, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dt id="ientry-idm46045307053728"> data-file-length option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045190066592"> database, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> altering, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> <dt> creating, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> deleting, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> <dt> renaming, <a class="indexterm" href="rename-table.html"> RENAME TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045171311456"> Database information </dt> <dd> <dl> <dt> obtaining, <a class="indexterm" href="show.html"> SHOW Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045081056880"> database metadata, <a class="indexterm" href="information-schema.html"> INFORMATION_SCHEMA Tables </a> </dt> <dt id="ientry-idm46045333519568"> database names </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> , <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> </dl> </dd> <dt id="ientry-idm46045218012320"> database objects </dt> <dd> <dl> <dt> metadata, <a class="indexterm" href="charset-metadata.html"> UTF-8 for Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045319383568"> database option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045198755616"> DATABASE(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045335233152"> databases </dt> <dd> <dl> <dt> backups, <a class="indexterm" href="backup-and-recovery.html"> Backup and Recovery </a> </dt> <dt> copying, <a class="indexterm" href="copying-databases.html"> Copying MySQL Databases to Another Machine </a> </dt> <dt> creating, <a class="indexterm" href="database-use.html"> Creating and Using a Database </a> , <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> defined, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> <dt> displaying, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> dumping, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> information about, <a class="indexterm" href="getting-information.html"> Getting Information About Databases and Tables </a> </dt> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt> replicating, <a class="indexterm" href="replication.html"> Replication </a> </dt> <dt> selecting, <a class="indexterm" href="creating-database.html"> Creating and Selecting a Database </a> , <a class="indexterm" href="use.html"> USE Statement </a> </dt> <dt> symbolic links, <a class="indexterm" href="symbolic-links-to-databases.html"> Using Symbolic Links for Databases on Unix </a> </dt> <dt> using, <a class="indexterm" href="database-use.html"> Creating and Using a Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045315504496"> databases option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045120193984"> DataDir, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045321837904"> datadir option </dt> <dd> <dl> <dt> mysql.server, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045276803968"> datadir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045119675104"> DataMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045070547248"> data_locks table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-data-locks-table.html"> The data_locks Table </a> , <a class="indexterm" href="performance-schema-obtaining-parent-events.html"> Obtaining Parent Event Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045070430352"> data_lock_waits table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-data-lock-waits-table.html"> The data_lock_waits Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045053677248"> DATE, <a class="indexterm" href="using-date.html"> Problems Using DATE Columns </a> </dt> <dt id="ientry-idm46045213878592"> date and time data types, <a class="indexterm" href="date-and-time-types.html"> Date and Time Data Types </a> </dt> <dt id="ientry-idm46045205615744"> date and time functions, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045325190144"> date calculations, <a class="indexterm" href="date-calculations.html"> Date Calculations </a> </dt> <dt id="ientry-idm46045053676208"> DATE columns </dt> <dd> <dl> <dt> problems, <a class="indexterm" href="using-date.html"> Problems Using DATE Columns </a> </dt> </dl> </dd> <dt id="ientry-idm46045213758688"> DATE data type, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt id="ientry-idm46045210633312"> date data types </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-date-time"> Date and Time Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045220417248"> date literals, <a class="indexterm" href="date-and-time-literals.html"> Date and Time Literals </a> </dt> <dt id="ientry-idm46045213580272"> date values </dt> <dd> <dl> <dt> problems, <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045205232720"> DATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045205219728"> DATEDIFF(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045084847264"> dates </dt> <dd> <dl> <dt> used with partitioning, <a class="indexterm" href="partitioning-types.html"> Partitioning Types </a> </dt> <dt> used with partitioning (examples), <a class="indexterm" href="partitioning-range.html"> RANGE Partitioning </a> , <a class="indexterm" href="partitioning-hash.html"> HASH Partitioning </a> , <a class="indexterm" href="partitioning-subpartitions.html"> Subpartitioning </a> , <a class="indexterm" href="partitioning-pruning.html"> Partition Pruning </a> </dt> </dl> </dd> <dt id="ientry-idm46045213746720"> DATETIME data type, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt id="ientry-idm46045205199376"> DATE_ADD(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045205127808"> DATE_FORMAT(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045205198304"> DATE_SUB(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204944736"> DAY(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045260317488"> Daylight Saving Time, <a class="indexterm" href="time-zone-support.html#time-zone-upgrades"> Staying Current with Time Zone Changes </a> , <a class="indexterm" href="timestamp-lookups.html"> Indexed Lookups from TIMESTAMP Columns </a> , <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204934368"> DAYNAME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204919888"> DAYOFMONTH(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204903840"> DAYOFWEEK(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204889184"> DAYOFYEAR(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045326672912"> db table </dt> <dd> <dl> <dt> sorting, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> system table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045102780016"> db-workers option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045060339680"> DBI interface, <a class="indexterm" href="apis-perl.html"> MySQL Perl API </a> </dt> <dt id="ientry-idm46045220480864"> DBI-&gt;quote, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045253692976"> DBI-&gt;trace, <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> <dt id="ientry-idm46045060338608"> DBI/DBD interface, <a class="indexterm" href="apis-perl.html"> MySQL Perl API </a> </dt> <dt id="ientry-idm46045302797808"> DBI_TRACE environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> <dt id="ientry-idm46045302800384"> DBI_USER environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045253107568"> DBUG package, <a class="indexterm" href="dbug-package.html"> The DBUG Package </a> </dt> <dt id="ientry-idm46045173991280"> DCL, <a class="indexterm" href="grant.html"> GRANT Statement </a> , <a class="indexterm" href="revoke.html"> REVOKE Statement </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033139328"> DDEX provider, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045190238832"> DDL, <a class="indexterm" href="sql-data-definition-statements.html"> Data Definition Statements </a> , <a class="indexterm" href="atomic-ddl.html"> Atomic Data Definition Statement Support </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045256157296"> ddl-rewriter option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="ddl-rewriter-options.html"> ddl_rewriter Plugin Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045256232016"> ddl_rewriter plugin, <a class="indexterm" href="ddl-rewriter.html"> The ddl_rewriter Plugin </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="ddl-rewriter-installation.html"> Installing or Uninstalling ddl_rewriter </a> </dt> </dl> </dd> <dt id="ientry-idm46045259851920"> dd_properties table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045222910208"> deadlock, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> , <a class="indexterm" href="lock-tables.html#lock-tables-and-transactions"> Interaction of Table Locking and Transactions </a> , <a class="indexterm" href="innodb-locks-set.html"> Locks Set by Different SQL Statements in InnoDB </a> , <a class="indexterm" href="innodb-deadlocks.html"> Deadlocks in InnoDB </a> , <a class="indexterm" href="innodb-deadlock-example.html"> An InnoDB Deadlock Example </a> , <a class="indexterm" href="innodb-deadlock-detection.html"> Deadlock Detection </a> , <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> , <a class="indexterm" href="performance-schema-examples.html"> Using the Performance Schema to Diagnose Problems </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033099632"> deadlock detection, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045176782512"> DEALLOCATE PREPARE, <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> , <a class="indexterm" href="deallocate-prepare.html"> DEALLOCATE PREPARE Statement </a> </dt> <dt id="ientry-idm46045331262624"> deb file </dt> <dd> <dl> <dt> MySQL APT Repository, <a class="indexterm" href="linux-installation-apt-repo.html"> Installing MySQL on Linux Using the MySQL APT Repository </a> </dt> </dl> </dd> <dt id="ientry-idm46045221917184"> Debug </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045320795376"> debug option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config_editor, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045276779408"> debug system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045319346912"> debug-check option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045320776880"> debug-info option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045280173920"> debug-sync-timeout option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045253861168"> debugging </dt> <dd> <dl> <dt> client, <a class="indexterm" href="debugging-client.html"> Debugging a MySQL Client </a> </dt> <dt> MySQL, <a class="indexterm" href="debugging-mysql.html"> Debugging MySQL </a> </dt> <dt> server, <a class="indexterm" href="debugging-server.html"> Debugging a MySQL Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045329374416"> debugging support, <a class="indexterm" href="source-configuration-options.html"> MySQL Source-Configuration Options </a> </dt> <dt id="ientry-idm46045276740400"> debug_sync system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045214233680"> DEC data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045190527088"> decimal arithmetic, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045214256768"> DECIMAL data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045214477840"> decimal point, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045176441760"> DECLARE, <a class="indexterm" href="declare.html"> DECLARE Statement </a> </dt> <dt id="ientry-idm46045307345120"> decode_bits myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045099520016"> decrypt option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045095042288"> decrypt-key option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045095028384"> decrypt-key-from-stdin option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045095015504"> decrypt-password option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094997056"> decrypt-password-from-stdin option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045120362720"> Dedicated </dt> <dd> <dl> <dt> API node, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt> data node, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> management server, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045326691008"> default </dt> <dd> <dl> <dt> privileges, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> </dl> </dd> <dt id="ientry-idm46045326685888"> default account, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt id="ientry-idm46045248173184"> default authentication plugin, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> <dt id="ientry-idm46045322802768"> default host name, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> <dt id="ientry-idm46045332668224"> default installation location, <a class="indexterm" href="installation-layouts.html"> Installation Layouts </a> </dt> <dt id="ientry-idm46045324171552"> default options, <a class="indexterm" href="option-files.html"> Using Option Files </a> </dt> <dt id="ientry-idm46045247741616"> default proxy user, <a class="indexterm" href="proxy-users.html#default-proxy-users"> Default Proxy Users </a> </dt> <dt id="ientry-idm46045174873184"> default role </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-role"> ALTER USER Role Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-role"> CREATE USER Role Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045173038384"> default roles, <a class="indexterm" href="set-default-role.html"> SET DEFAULT ROLE Statement </a> </dt> <dt id="ientry-idm46045210872528"> DEFAULT value clause, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045212546448"> default values, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> , <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dd> <dl> <dt> BLOB and TEXT columns, <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> explicit, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> </dt> <dt> implicit, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045191065328"> DEFAULT(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045323506704"> default-auth option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045319299200"> default-character-set option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045280156272"> default-time-zone option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045118831776"> DefaultHashMapSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045114221648"> DefaultOperationRedoProblemAction </dt> <dd> <dl> <dt> API and SQL nodes, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045323850704"> defaults-extra-file option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045323834576"> defaults-file option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045323815216"> defaults-group-suffix option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045248169520"> default_authentication_plugin system variable, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> <dt id="ientry-idm46045328271728"> DEFAULT_CHARSET option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328234432"> DEFAULT_COLLATION option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045276707248"> default_collation_for_utf8mb4 system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276656640"> default_password_lifetime system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259666304"> default_roles table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045276616688"> default_storage_engine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045159355680"> default_table_encryption, <a class="indexterm" href="innodb-data-encryption.html#innodb-schema-tablespace-encryption-default"> Defining an Encryption Default for Schemas and General Tablespaces </a> </dt> <dt id="ientry-idm46045276582944"> default_table_encryption variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276542016"> default_tmp_storage_engine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276511488"> default_week_format system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045170288624"> DEFINER privileges, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> , <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt id="ientry-idm46045206024960"> DEGREES(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045107520512"> delay option </dt> <dd> <dl> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045182262720"> DELAYED, <a class="indexterm" href="insert-delayed.html"> INSERT DELAYED Statement </a> </dt> <dd> <dl> <dt> INSERT modifier, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045221912288"> Delayed insert </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045136114512"> delayed replication, <a class="indexterm" href="replication-delayed.html"> Delayed Replication </a> </dt> <dt id="ientry-idm46045263268704"> Delayed_errors status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045276412336"> delayed_insert_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045263262432"> Delayed_insert_threads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045276376512"> delayed_insert_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276341072"> delayed_queue_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045263256240"> Delayed_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045276479104"> delay_key_write system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt id="ientry-idm46045182995744"> DELETE, <a class="indexterm" href="delete.html"> DELETE Statement </a> </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> </dl> </dd> <dt id="ientry-idm46045033091136"> delete, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033083536"> delete buffering, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045311500528"> delete option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045251774368"> DELETE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045313266112"> delete-master-logs option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045105768160"> delete-orphans option </dt> <dd> <dl> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045313283040"> delete-source-logs option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045249456176"> deleting </dt> <dd> <dl> <dt> accounts, <a class="indexterm" href="creating-accounts.html#dropping-accounts"> Dropping Accounts </a> </dt> <dt> database, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> <dt> foreign key, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="create-table-foreign-keys.html#foreign-key-dropping"> Dropping Foreign Key Constraints </a> </dt> <dt> function, <a class="indexterm" href="drop-function-loadable.html"> DROP FUNCTION Statement for Loadable Functions </a> </dt> <dt> index, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="drop-index.html"> DROP INDEX Statement </a> </dt> <dt> primary key, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt> rows, <a class="indexterm" href="deleting-from-related-tables.html"> Deleting Rows from Related Tables </a> </dt> <dt> schema, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> <dt> table, <a class="indexterm" href="drop-table.html"> DROP TABLE Statement </a> </dt> <dt> user, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt> users, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045221702160"> deleting from main table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221697024"> deleting from reference tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045053779728"> deletion </dt> <dd> <dl> <dt> mysql.sock, <a class="indexterm" href="problems-with-mysql-sock.html"> How to Protect or Change the MySQL Unix Socket File </a> </dt> </dl> </dd> <dt id="ientry-idm46045317854080"> delimiter command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045319224528"> delimiter option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045033074944"> denormalized, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045192273952"> DENSE_RANK(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045334554448"> deprecated features, <a class="indexterm" href="mysql-nutshell.html#mysql-nutshell-deprecations"> Features Deprecated in MySQL 8.4 </a> </dt> <dd> <dl> <dt> wildcards in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045263249792"> Deprecated_use_i_s_processlist_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263242976"> Deprecated_use_i_s_processlist_last_timestamp status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045227846928"> derived condition pushdown, <a class="indexterm" href="derived-condition-pushdown-optimization.html"> Derived Condition Pushdown Optimization </a> </dt> <dt id="ientry-idm46045228410736"> derived tables, <a class="indexterm" href="derived-tables.html"> Derived Tables </a> </dt> <dd> <dl> <dt> lateral, <a class="indexterm" href="explain-output.html#explain-extra-information"> EXPLAIN Extra Information </a> , <a class="indexterm" href="lateral-derived-tables.html"> Lateral Derived Tables </a> </dt> <dt> materialization prevention, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> optimization, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> , <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> updatable views, <a class="indexterm" href="view-updatability.html"> Updatable and Insertable Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045168208224"> DESC, <a class="indexterm" href="describe.html"> DESCRIBE Statement </a> </dt> <dt id="ientry-idm46045033067376"> descending index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045226971456"> descending indexes, <a class="indexterm" href="descending-indexes.html"> Descending Indexes </a> </dt> <dt id="ientry-idm46045097827152"> descending option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045324834272"> DESCRIBE, <a class="indexterm" href="getting-information.html"> Getting Information About Databases and Tables </a> , <a class="indexterm" href="describe.html"> DESCRIBE Statement </a> </dt> <dt id="ientry-idm46045306842752"> description option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045053317024"> design </dt> <dd> <dl> <dt> issues, <a class="indexterm" href="known-issues.html"> Known Issues in MySQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045305661664"> destination-keyring option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045305640160"> destination-keyring-configuration-dir option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045244294336"> destroy_tickets parameter </dt> <dd> <dl> <dt> Kerberos authentication, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045309261680"> detach option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045094935360"> detailed-info option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045124079792"> development of NDB Cluster, <a class="indexterm" href="mysql-cluster-what-is-new.html"> What is New in MySQL NDB Cluster 8.4 </a> </dt> <dt id="ientry-idm46045329455920"> development source tree, <a class="indexterm" href="installing-development-tree.html"> Installing MySQL Using a Development Source Tree </a> </dt> <dt id="ientry-idm46045061655312"> diagnostics() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-diagnostics.html"> The diagnostics() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045215954480"> dictionary collation, German, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> <dt id="ientry-idm46045167734048"> dictionary object cache, <a class="indexterm" href="data-dictionary-object-cache.html"> Dictionary Object Cache </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045089819600"> dictionary_columns </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-dictionary-columns.html"> The ndbinfo dictionary_columns Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089773792"> dictionary_tables </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-dictionary-tables.html"> The ndbinfo dictionary_tables Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045116809392"> DictTrace, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045089672720"> dict_obj_info </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-dict-obj-info.html"> The ndbinfo dict_obj_info Table </a> , <a class="indexterm" href="mysql-cluster-ndbinfo-dict-obj-tree.html"> The ndbinfo dict_obj_tree Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089536560"> dict_obj_types </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-dict-obj-types.html"> The ndbinfo dict_obj_types Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045105238912"> diff-default option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045214478912"> digits, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045332669712"> directory structure </dt> <dd> <dl> <dt> default, <a class="indexterm" href="installation-layouts.html"> Installation Layouts </a> </dt> </dl> </dd> <dt id="ientry-idm46045157330800"> dirty page, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033047776"> dirty read, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045319217984"> disable named command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045323717072"> --disable option prefix, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045099460592"> disable-indexes option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045312397696"> disable-keys option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045304576208"> disable-log-bin option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045276305328"> disabled_storage_engines system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045328224720"> DISABLE_PSI_COND option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328117520"> DISABLE_PSI_DATA_LOCK option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328110848"> DISABLE_PSI_ERROR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328218048"> DISABLE_PSI_FILE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328211376"> DISABLE_PSI_IDLE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328204800"> DISABLE_PSI_MEMORY option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328198160"> DISABLE_PSI_METADATA option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328191456"> DISABLE_PSI_MUTEX option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328138048"> DISABLE_PSI_PS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328184816"> DISABLE_PSI_RWLOCK option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328178176"> DISABLE_PSI_SOCKET option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328171440"> DISABLE_PSI_SP option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328164864"> DISABLE_PSI_STAGE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328158208"> DISABLE_PSI_STATEMENT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328151360"> DISABLE_PSI_STATEMENT_DIGEST option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328144720"> DISABLE_PSI_TABLE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328131408"> DISABLE_PSI_THREAD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328124208"> DISABLE_PSI_TRANSACTION option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045188809568"> DISCARD TABLESPACE, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="innodb-migration.html"> Moving or Copying InnoDB Tables </a> </dt> <dt id="ientry-idm46045221691984"> discard_or_import_tablespace </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045325682704"> disconnecting </dt> <dd> <dl> <dt> from the server, <a class="indexterm" href="connecting-disconnecting.html"> Connecting to and Disconnecting from the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045276250976"> disconnect_on_expired_password system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045091731232"> Disk Data tables (NDB Cluster) (see <a href="#ientry-idm46045091734176"> NDB Cluster Disk Data </a> ) </dt> <dt id="ientry-idm46045149195360"> disk failure </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-recovery.html#innodb-corruption-disk-failure-recovery"> Recovery from Data Corruption or Disk Failure </a> </dt> </dl> </dd> <dt id="ientry-idm46045053850240"> disk full, <a class="indexterm" href="full-disk.html"> How MySQL Handles a Full Disk </a> </dt> <dt id="ientry-idm46045226024224"> disk I/O, <a class="indexterm" href="optimizing-innodb-diskio.html"> Optimizing InnoDB Disk I/O </a> </dt> <dt id="ientry-idm46045097764672"> disk option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045222526400"> disk performance, <a class="indexterm" href="disk-issues.html"> Optimizing Disk I/O </a> </dt> <dt id="ientry-idm46045033036000"> disk-based, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045033029008"> disk-bound, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045114961648"> DiskDataUsingSameDisk, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115230016"> DiskIOThreadPool, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118205888"> Diskless, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045089450048"> diskpagebuffer </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-diskpagebuffer.html"> The ndbinfo diskpagebuffer Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045115314800"> DiskPageBufferEntries, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115292736"> DiskPageBufferMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045222398656"> disks </dt> <dd> <dl> <dt> splitting data across, <a class="indexterm" href="windows-symbolic-links.html"> Using Symbolic Links for Databases on Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045104582976"> diskscan option </dt> <dd> <dl> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089402848"> diskstat </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-diskstat.html"> The ndbinfo diskstat Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089368336"> diskstats_1sec </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-diskstats-1sec.html"> The ndbinfo diskstats_1sec Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045117403376"> DiskSyncSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045089506800"> disk_write_speed_aggregate </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-disk-write-speed-aggregate.html"> The ndbinfo disk_write_speed_aggregate Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089469440"> disk_write_speed_aggregate_node </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-disk-write-speed-aggregate-node.html"> The ndbinfo disk_write_speed_aggregate_node Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045089525856"> disk_write_speed_base </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-disk-write-speed-base.html"> The ndbinfo disk_write_speed_base Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045214484672"> display size, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045169090528"> display triggers, <a class="indexterm" href="show-triggers.html"> SHOW TRIGGERS Statement </a> </dt> <dt id="ientry-idm46045214487232"> display width, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045310849872"> displaying </dt> <dd> <dl> <dt> database information, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> information </dt> <dd> <dl> <dt> Cardinality, <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> </dt> <dt> Collation, <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> </dt> <dt> SHOW, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-columns.html"> SHOW COLUMNS Statement </a> , <a class="indexterm" href="show-tables.html"> SHOW TABLES Statement </a> </dt> <dt> SHOW statement, <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> , <a class="indexterm" href="show-open-tables.html"> SHOW OPEN TABLES Statement </a> </dt> </dl> </dd> <dt> table status, <a class="indexterm" href="show-table-status.html"> SHOW TABLE STATUS Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045325225456"> DISTINCT, <a class="indexterm" href="selecting-columns.html"> Selecting Particular Columns </a> , <a class="indexterm" href="distinct-optimization.html"> DISTINCT Optimization </a> </dt> <dd> <dl> <dt> AVG(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> COUNT(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> MAX(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> MIN(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> SUM(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> </dl> </dd> <dt id="ientry-idm46045180758000"> DISTINCTROW </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045245290928"> distinguished name </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-process"> How LDAP Authentication of MySQL Users Works </a> </dt> </dl> </dd> <dt id="ientry-idm46045206322832"> DIV, <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045206337072"> division (/), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045276214192"> div_precision_increment system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045183067248"> DML, <a class="indexterm" href="sql-data-manipulation-statements.html"> Data Manipulation Statements </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> DELETE statement, <a class="indexterm" href="delete.html"> DELETE Statement </a> </dt> <dt> INSERT statement, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt> TABLE statement, <a class="indexterm" href="table.html"> TABLE Statement </a> </dt> <dt> UPDATE statement, <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> <dt> VALUES statement, <a class="indexterm" href="values.html"> VALUES Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045245289440"> DN (see <a href="#ientry-idm46045245290928"> distinguished name </a> ) </dt> <dt id="ientry-idm46045260889136"> DNS, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> </dt> <dt id="ientry-idm46045322411936"> DNS SRV records, <a class="indexterm" href="connecting-using-dns-srv.html"> Connecting to the Server Using DNS SRV Records </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt id="ientry-idm46045319200512"> dns-srv-name option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045182811488"> DO, <a class="indexterm" href="do.html"> DO Statement </a> </dt> <dt id="ientry-idm46045335247936"> DocBook XML </dt> <dd> <dl> <dt> documentation source format, <a class="indexterm" href="manual-info.html#manual-authorship"> Manual Authorship </a> </dt> </dl> </dd> <dt id="ientry-idm46045325890464"> Docker, <a class="indexterm" href="upgrade-docker-mysql.html"> Upgrading a Docker Installation of MySQL </a> </dt> <dt id="ientry-idm46045330078304"> Docker images </dt> <dd> <dl> <dt> on Windows, <a class="indexterm" href="deploy-mysql-nonlinux-docker.html"> Deploying MySQL on Windows and Other Non-Linux Platforms with Docker </a> </dt> </dl> </dd> <dt id="ientry-idm46045033000608"> document id, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045128173776"> document store, <a class="indexterm" href="document-store.html"> Using MySQL as a Document Store </a> </dt> <dd> <dl> <dt> MySQL as a, <a class="indexterm" href="document-store.html"> Using MySQL as a Document Store </a> </dt> </dl> </dd> <dt id="ientry-idm46045055586944"> Documentation </dt> <dd> <dl> <dt> in Chinese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> in Japanese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt> in Korean, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045099438544"> dont-ignore-systab-0 option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045214164512"> DOUBLE data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045214142016"> DOUBLE PRECISION data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045220568464"> double quote (\"), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045262806832"> doublewrite buffer, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> , <a class="indexterm" href="innodb-disk-io.html#innodb-disk-io-doublewrite"> Doublewrite Buffer </a> , <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045122048896"> downgrades </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-upgrade-downgrade.html"> Upgrading and Downgrading NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045325743728"> downgrading, <a class="indexterm" href="downgrading.html"> Downgrading MySQL </a> </dt> <dt id="ientry-idm46045332951456"> downloading, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> <dt id="ientry-idm46045276178784"> dragnet.log_error_filter_rules system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045263236096"> dragnet.Status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045032977936"> drop, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045135637456"> DROP ... IF EXISTS </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-drop-if-exists.html"> Replication of DROP ... IF EXISTS Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045183526912"> DROP DATABASE, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> <dt id="ientry-idm46045221907392"> Drop DB </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045183471424"> DROP EVENT, <a class="indexterm" href="drop-event.html"> DROP EVENT Statement </a> </dt> <dt id="ientry-idm46045188945520"> DROP FOREIGN KEY, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="create-table-foreign-keys.html#foreign-key-dropping"> Dropping Foreign Key Constraints </a> </dt> <dt id="ientry-idm46045183403184"> DROP FUNCTION, <a class="indexterm" href="drop-procedure.html"> DROP PROCEDURE and DROP FUNCTION Statements </a> </dt> <dt id="ientry-idm46045171838928"> DROP FUNCTION statement, <a class="indexterm" href="drop-function-loadable.html"> DROP FUNCTION Statement for Loadable Functions </a> </dt> <dt id="ientry-idm46045189011856"> DROP INDEX, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="drop-index.html"> DROP INDEX Statement </a> </dt> <dt id="ientry-idm46045183421792"> DROP LOGFILE GROUP, <a class="indexterm" href="drop-logfile-group.html"> DROP LOGFILE GROUP Statement </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045091734176"> NDB Cluster Disk Data </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045094586352"> DROP NODEGROUP command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045176535504"> DROP PREPARE, <a class="indexterm" href="deallocate-prepare.html"> DEALLOCATE PREPARE Statement </a> </dt> <dt id="ientry-idm46045189025408"> DROP PRIMARY KEY, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt id="ientry-idm46045251768992"> DROP privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045183404224"> DROP PROCEDURE, <a class="indexterm" href="drop-procedure.html"> DROP PROCEDURE and DROP FUNCTION Statements </a> </dt> <dt id="ientry-idm46045172765920"> DROP RESOURCE GROUP statement, <a class="indexterm" href="drop-resource-group.html"> DROP RESOURCE GROUP Statement </a> </dt> <dt id="ientry-idm46045251758960"> DROP ROLE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045174078112"> DROP ROLE statement, <a class="indexterm" href="drop-role.html"> DROP ROLE Statement </a> </dt> <dt id="ientry-idm46045183525840"> DROP SCHEMA, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> <dt id="ientry-idm46045183381904"> DROP SERVER, <a class="indexterm" href="drop-server.html"> DROP SERVER Statement </a> </dt> <dt id="ientry-idm46045183366176"> DROP SPATIAL REFERENCE SYSTEM, <a class="indexterm" href="drop-spatial-reference-system.html"> DROP SPATIAL REFERENCE SYSTEM Statement </a> </dt> <dt id="ientry-idm46045183342992"> DROP TABLE, <a class="indexterm" href="drop-table.html"> DROP TABLE Statement </a> </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> </dl> </dd> <dt id="ientry-idm46045183298432"> DROP TABLESPACE </dt> <dd> <dl> <dt> general tablespace, <a class="indexterm" href="drop-tablespace.html"> DROP TABLESPACE Statement </a> </dt> <dt> NDB Cluster Disk Data, <a class="indexterm" href="drop-tablespace.html"> DROP TABLESPACE Statement </a> </dt> <dt> undo tablespace, <a class="indexterm" href="drop-tablespace.html"> DROP TABLESPACE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045183240496"> DROP TRIGGER, <a class="indexterm" href="drop-trigger.html"> DROP TRIGGER Statement </a> </dt> <dt id="ientry-idm46045249589840"> DROP USER statement, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> , <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt id="ientry-idm46045183225296"> DROP VIEW, <a class="indexterm" href="drop-view.html"> DROP VIEW Statement </a> </dt> <dt id="ientry-idm46045101022656"> drop-source option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045249457664"> dropping </dt> <dd> <dl> <dt> accounts, <a class="indexterm" href="creating-accounts.html#dropping-accounts"> Dropping Accounts </a> </dt> <dt> user, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045174075552"> dropping roles, <a class="indexterm" href="drop-role.html"> DROP ROLE Statement </a> </dt> <dt id="ientry-idm46045103115456"> dry-scp option </dt> <dd> <dl> <dt> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045032963696"> DSN, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180989136"> DUAL, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045248443856"> dual passwords, <a class="indexterm" href="password-management.html#dual-passwords"> Dual Password Support </a> </dt> <dt id="ientry-idm46045307789824"> dump option </dt> <dd> <dl> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045313497632"> dump-date option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045308450768"> dump-file option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045313245328"> dump-replica option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313196352"> dump-slave option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045180568080"> DUMPFILE, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt id="ientry-idm46045314765072"> dumping </dt> <dd> <dl> <dt> databases and tables, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045228289968"> Duplicate Weedout </dt> <dd> <dl> <dt> semijoin strategy, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> </dl> </dd> <dt id="ientry-idm46045165876016"> duplicate-key error, <a class="indexterm" href="innodb-auto-increment-handling.html#innodb-auto-increment-notes"> Notes </a> </dt> <dt id="ientry-idm46045096406032"> duration option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045032955344"> dynamic cursor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045250807360"> dynamic privileges, <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> </dt> <dt id="ientry-idm46045160876944"> dynamic row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-dynamic"> DYNAMIC Row Format </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032939984"> dynamic SQL, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032936448"> dynamic statement, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045148084848"> dynamic table characteristics, <a class="indexterm" href="dynamic-format.html"> Dynamic Table Characteristics </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_E"> </a> E </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045032931312"> early adopter, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045280099120"> early-plugin-load option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045317830176"> edit command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045317820016"> ego command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045032927792"> Eiffel, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060278464"> Eiffel Wrapper, <a class="indexterm" href="apis-eiffel.html"> MySQL Eiffel Wrapper </a> </dt> <dt id="ientry-idm46045203504304"> ELT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045032921264"> embedded, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045323711408"> --enable option prefix, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045319164128"> enable-cleartext-plugin option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045116324912"> EnableAdaptiveSpinning, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045328075056"> ENABLED_LOCAL_INFILE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> </dl> </dd> <dt id="ientry-idm46045328052944"> ENABLED_PROFILING option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045080049760"> ENABLED_ROLES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-enabled-roles-table.html"> The INFORMATION_SCHEMA ENABLED_ROLES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045116169920"> EnableMultithreadedBackup </dt> <dd> <dl> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045118734224"> EnablePartialLcp, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118519056"> EnableRedoControl, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045328104032"> ENABLE_EXPERIMENTAL_SYSVARS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328088176"> ENABLE_GCOV option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328081600"> ENABLE_GPROF option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045106259040"> encrypt-backup option </dt> <dd> <dl> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045094913104"> encrypt-block-size option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094891440"> encrypt-cipher option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094868544"> encrypt-kdf-iter-count option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094846432"> encrypt-key option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094833344"> encrypt-key-from-stdin option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094821168"> encrypt-password option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045094795104"> encrypt-password-from-stdin option </dt> <dd> <dl> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045323282144"> encrypted connections, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> <dd> <dl> <dt> as mandatory, <a class="indexterm" href="using-encrypted-connections.html#mandatory-encrypted-connections"> Configuring Encrypted Connections as Mandatory </a> </dt> <dt> command options, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt> with certificate validation enforced, <a class="indexterm" href="using-encrypted-connections.html#enforce-certificate-validation"> Configuring Certificate Validation Enforcement </a> </dt> </dl> </dd> <dt id="ientry-idm46045252797968"> encryption, <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> , <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> , <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> binary log files, <a class="indexterm" href="replication-binlog-encryption.html"> Encrypting Binary Log Files and Relay Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045199614576"> encryption functions, <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045251254480"> ENCRYPTION_KEY_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045221685552"> end </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045176509504"> END, <a class="indexterm" href="begin-end.html"> BEGIN ... END Compound Statement </a> </dt> <dt id="ientry-idm46045308142416"> end-page option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045276076000"> end_markers_in_json system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045139156944"> enforce_gtid_consistency system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045229708800"> engine condition pushdown, <a class="indexterm" href="engine-condition-pushdown-optimization.html"> Engine Condition Pushdown Optimization </a> </dt> <dt id="ientry-idm46045309229856"> engine option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045080032864"> ENGINES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-engines-table.html"> The INFORMATION_SCHEMA ENGINES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045223322016"> engine_cost </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045259503424"> engine_cost table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045094550752"> ENTER SINGLE USER MODE command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045325642016"> entering </dt> <dd> <dl> <dt> queries, <a class="indexterm" href="entering-queries.html"> Entering Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045060252944"> enterprise components </dt> <dd> <dl> <dt> MySQL Enterprise Audit, <a class="indexterm" href="mysql-enterprise-audit.html"> MySQL Enterprise Audit Overview </a> </dt> <dt> MySQL Enterprise Backup, <a class="indexterm" href="mysql-enterprise-backup.html"> MySQL Enterprise Backup Overview </a> </dt> <dt> MySQL Enterprise Data Masking and De-Identification, <a class="indexterm" href="mysql-enterprise-data-masking.html"> MySQL Enterprise Data Masking and De-Identification Overview </a> </dt> <dt> MySQL Enterprise Encryption, <a class="indexterm" href="mysql-enterprise-encryption.html"> MySQL Enterprise Encryption Overview </a> </dt> <dt> MySQL Enterprise Firewall, <a class="indexterm" href="mysql-enterprise-firewall.html"> MySQL Enterprise Firewall Overview </a> </dt> <dt> MySQL Enterprise Monitor, <a class="indexterm" href="mysql-enterprise-monitor.html"> MySQL Enterprise Monitor Overview </a> </dt> <dt> MySQL Enterprise Security, <a class="indexterm" href="mysql-enterprise-security.html"> MySQL Enterprise Security Overview </a> </dt> <dt> MySQL Enterprise Thread Pool, <a class="indexterm" href="mysql-enterprise-thread-pool.html"> MySQL Enterprise Thread Pool Overview </a> </dt> <dt> telemetry, <a class="indexterm" href="mysql-enterprise-telemetry.html"> MySQL Telemetry </a> </dt> </dl> </dd> <dt id="ientry-idm46045256869760"> enterprise extensions </dt> <dd> <dl> <dt> MySQL Enterprise Audit, <a class="indexterm" href="audit-log.html"> MySQL Enterprise Audit </a> </dt> <dt> MySQL Enterprise Data Masking and De-Identification, <a class="indexterm" href="data-masking.html"> MySQL Enterprise Data Masking and De-Identification </a> </dt> <dt> MySQL Enterprise Encryption, <a class="indexterm" href="enterprise-encryption.html"> MySQL Enterprise Encryption </a> </dt> <dt> MySQL Enterprise Firewall, <a class="indexterm" href="firewall.html"> MySQL Enterprise Firewall </a> </dt> <dt> MySQL Enterprise Security, <a class="indexterm" href="multifactor-authentication.html"> Multifactor Authentication </a> , <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> , <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> , <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> , <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> <dt> MySQL Enterprise Thread Pool, <a class="indexterm" href="thread-pool.html"> MySQL Enterprise Thread Pool </a> </dt> </dl> </dd> <dt id="ientry-idm46045276142416"> enterprise_encryption.maximum_rsa_key_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045276108880"> enterprise_encryption.rsa_support_legacy_padding system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045240476640"> Entrust KeyControl </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-entrust-keycontrol"> Configuring keyring_okv for Entrust KeyControl </a> </dt> </dl> </dd> <dt id="ientry-idm46045210419472"> ENUM </dt> <dd> <dl> <dt> size, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045212796640"> ENUM data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="enum.html"> The ENUM Type </a> </dt> <dt id="ientry-idm46045332031424"> environment variable </dt> <dd> <dl> <dt> AUTHENTICATION_KERBEROS_CLIENT_LOG, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-debugging"> Kerberos Authentication Debugging </a> </dt> <dt> AUTHENTICATION_LDAP_CLIENT_LOG, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> AUTHENTICATION_PAM_LOG, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="pam-pluggable-authentication.html#pam-pluggable-authentication-debugging"> PAM Authentication Debugging </a> </dt> <dt> CC, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> CXX, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> DBI_TRACE, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> <dt> DBI_USER, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> HOME, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> LDAPNOINIT, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-ldap-conf"> LDAP Pluggable Authentication and ldap.conf </a> </dt> <dt> LD_LIBRARY_PATH, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> </dt> <dt> LD_PRELOAD, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> </dt> <dt> LD_RUN_PATH, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> LIBMYSQL_PLUGINS, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> LIBMYSQL_PLUGIN_DIR, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQLD_OPTS, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> </dt> <dt> MYSQLX_TCP_PORT, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQLX_UNIX_PORT, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_DEBUG, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="debugging-client.html"> Debugging a MySQL Client </a> </dt> <dt> MYSQL_GROUP_SUFFIX, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_HISTFILE, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_HISTIGNORE, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_HOME, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_HOST, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_PS1, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_PWD, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_TCP_PORT, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="multiple-unix-servers.html"> Running Multiple MySQL Instances on Unix </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt> MYSQL_TEST_LOGIN_FILE, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> , <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_TEST_TRACE_CRASH, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_TEST_TRACE_DEBUG, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> MYSQL_UNIX_PORT, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="multiple-unix-servers.html"> Running Multiple MySQL Instances on Unix </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt> NOTIFY_SOCKET, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> PATH, <a class="indexterm" href="mysql-installation-windows-path.html"> Customizing the PATH for MySQL Tools </a> , <a class="indexterm" href="windows-postinstallation.html"> Windows Postinstallation Procedures </a> , <a class="indexterm" href="testing-server.html"> Testing the Server </a> , <a class="indexterm" href="invoking-programs.html"> Invoking MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> PKG_CONFIG_PATH, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt> SUDO_USER, <a class="indexterm" href="performance-schema-connection-attribute-tables.html"> Performance Schema Connection Attribute Tables </a> </dt> <dt> TMPDIR, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="temporary-files.html"> Where MySQL Stores Temporary Files </a> </dt> <dt> TZ, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> , <a class="indexterm" href="timezone-problems.html"> Time Zone Problems </a> </dt> <dt> UMASK, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt> UMASK_DIR, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt> USER, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045324332640"> environment variables, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="setting-environment-variables.html"> Setting Environment Variables </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dd> <dl> <dt> list of, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045258468832"> epoch, <a class="indexterm" href="error-log-format.html#error-log-format-output-format-for-log-sink-json"> log_sink_json Output Format </a> , <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> </dt> <dt id="ientry-idm46045207413360"> equal (=), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045225214416"> eq_ref join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045302869776"> Errcode, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt id="ientry-idm46045102687840"> errins-delay option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102711856"> errins-type option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045320760000"> errmsg-file option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045302870720"> errno, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt id="ientry-idm46045221902480"> Error </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045092936896"> ERROR Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045252350992"> error handling </dt> <dd> <dl> <dt> application, <a class="indexterm" href="secure-client-programming.html#client-mysql-error-handling"> Handle MySQL Error Messages Properly </a> </dt> </dl> </dd> <dt id="ientry-idm46045032916464"> error log, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045107731200"> error logs (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt id="ientry-idm46045302872080"> error messages </dt> <dd> <dl> <dt> can't find file, <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt> Can't reopen table, <a class="indexterm" href="temporary-table-problems.html"> TEMPORARY Table Problems </a> </dt> <dt> displaying, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt> languages, <a class="indexterm" href="error-message-language.html"> Setting the Error Message Language </a> </dt> <dt> Loading local data is disabled; this must be enabled on both the client and server side, <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> </dl> </dd> <dt id="ientry-idm46045101011376"> error-insert option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045333721968"> errors </dt> <dd> <dl> <dt> access denied, <a class="indexterm" href="error-access-denied.html"> Access denied </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-errors.html"> Replica Errors During Replication </a> </dt> <dt> checking tables for, <a class="indexterm" href="myisam-check.html"> How to Check MyISAM Tables for Errors </a> </dt> <dt> common, <a class="indexterm" href="problems.html"> Problems and Common Errors </a> </dt> <dt> directory checksum, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt> in subqueries, <a class="indexterm" href="subquery-errors.html"> Subquery Errors </a> </dt> <dt> known, <a class="indexterm" href="known-issues.html"> Known Issues in MySQL </a> </dt> <dt> list of, <a class="indexterm" href="common-errors.html"> Common Errors When Using MySQL Programs </a> </dt> <dt> lost connection, <a class="indexterm" href="error-lost-connection.html"> Lost connection to MySQL server </a> </dt> <dt> reporting, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> sources of information, <a class="indexterm" href="error-interfaces.html"> Error Information Interfaces </a> </dt> </dl> </dd> <dt id="ientry-idm46045276006368"> error_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261568368"> ERROR_FOR_DIVISION_BY_ZERO SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045067748784"> error_log table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-log-table.html"> The error_log Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045263229232"> Error_log_buffered_bytes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263222096"> Error_log_buffered_events status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263213920"> Error_log_expired_events status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263207088"> Error_log_latest_write status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045089331632"> error_messages </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-error-messages.html"> The ndbinfo error_messages Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045220538288"> escape (\\), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045323986688"> escape sequences </dt> <dd> <dl> <dt> option files, <a class="indexterm" href="option-files.html#option-file-syntax"> Option File Syntax </a> </dt> <dt> strings, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045247175632"> establishing encrypted connections, <a class="indexterm" href="using-encrypted-connections.html"> Configuring MySQL to Use Encrypted Connections </a> </dt> <dt id="ientry-idm46045224564912"> estimating </dt> <dd> <dl> <dt> query performance, <a class="indexterm" href="estimating-performance.html"> Estimating Query Performance </a> </dt> </dl> </dd> <dt id="ientry-idm46045236522560"> event field replacement </dt> <dd> <dl> <dt> audit log filtering, <a class="indexterm" href="audit-log-filter-definitions.html#audit-log-filtering-field-replacement"> Replacement of Event Field Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045138607344"> event groups, <a class="indexterm" href="replication-administration-skip.html#set-global-replica-sql-skip-counter"> Skipping Transactions With SET GLOBAL sql_replica_skip_counter </a> </dt> <dt id="ientry-idm46045093363264"> event log format (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045093553488"> event logs (NDB Cluster), <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt id="ientry-idm46045251742912"> EVENT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045220940016"> event scheduler, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> </dt> <dd> <dl> <dt> thread states, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045189830096"> Event Scheduler, <a class="indexterm" href="event-scheduler.html"> Using the Event Scheduler </a> </dt> <dd> <dl> <dt> altering events, <a class="indexterm" href="alter-event.html"> ALTER EVENT Statement </a> </dt> <dt> and MySQL privileges, <a class="indexterm" href="events-privileges.html"> The Event Scheduler and MySQL Privileges </a> </dt> <dt> and mysqladmin debug, <a class="indexterm" href="events-status-info.html"> Event Scheduler Status </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> <dt> and SHOW PROCESSLIST, <a class="indexterm" href="events-configuration.html"> Event Scheduler Configuration </a> </dt> <dt> concepts, <a class="indexterm" href="events-overview.html"> Event Scheduler Overview </a> </dt> <dt> creating events, <a class="indexterm" href="create-event.html"> CREATE EVENT Statement </a> </dt> <dt> dropping events, <a class="indexterm" href="drop-event.html"> DROP EVENT Statement </a> </dt> <dt> enabling and disabling, <a class="indexterm" href="events-configuration.html"> Event Scheduler Configuration </a> </dt> <dt> event metadata, <a class="indexterm" href="events-metadata.html"> Event Metadata </a> </dt> <dt> obtaining status information, <a class="indexterm" href="events-status-info.html"> Event Scheduler Status </a> </dt> <dt> SQL statements, <a class="indexterm" href="events-syntax.html"> Event Syntax </a> </dt> <dt> starting and stopping, <a class="indexterm" href="events-configuration.html"> Event Scheduler Configuration </a> </dt> <dt> time representation, <a class="indexterm" href="events-metadata.html"> Event Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045093407824"> event severity levels (NDB Cluster), <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt id="ientry-idm46045093527968"> event types (NDB Cluster), <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045117087440"> EventLogBufferSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045189828608"> events, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> , <a class="indexterm" href="event-scheduler.html"> Using the Event Scheduler </a> </dt> <dd> <dl> <dt> altering, <a class="indexterm" href="alter-event.html"> ALTER EVENT Statement </a> </dt> <dt> creating, <a class="indexterm" href="create-event.html"> CREATE EVENT Statement </a> </dt> <dt> dropping, <a class="indexterm" href="drop-event.html"> DROP EVENT Statement </a> </dt> <dt> metadata, <a class="indexterm" href="events-metadata.html"> Event Metadata </a> </dt> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-events.html"> The ndbinfo events Table </a> </dt> <dt> restrictions, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> <dt> status variables, <a class="indexterm" href="events-privileges.html"> The Event Scheduler and MySQL Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045081987888"> EVENTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="events-privileges.html"> The Event Scheduler and MySQL Privileges </a> , <a class="indexterm" href="information-schema-events-table.html"> The INFORMATION_SCHEMA EVENTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045312609056"> events option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045259844736"> events table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045067996896"> events_errors_summary_by_account_by_error table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045067993856"> events_errors_summary_by_host_by_error table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045067990816"> events_errors_summary_by_thread_by_error table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045067987776"> events_errors_summary_by_user_by_error table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045067984736"> events_errors_summary_global_by_error table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045073054176"> events_stages_current table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-stages-current-table.html"> The events_stages_current Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045072990416"> events_stages_history table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-stages-history-table.html"> The events_stages_history Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045072972112"> events_stages_history_long table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-stages-history-long-table.html"> The events_stages_history_long Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045069045888"> events_stages_summary_by_account_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069042848"> events_stages_summary_by_host_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069039808"> events_stages_summary_by_thread_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069036768"> events_stages_summary_by_user_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069033728"> events_stages_summary_global_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045072836176"> events_statements_current table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-statements-current-table.html"> The events_statements_current Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068733200"> events_statements_histogram_by_digest table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-histogram-summary-tables.html"> Statement Histogram Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068730160"> events_statements_histogram_global table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-histogram-summary-tables.html"> Statement Histogram Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045072668192"> events_statements_history table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-statements-history-table.html"> The events_statements_history Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045072648848"> events_statements_history_long table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-statements-history-long-table.html"> The events_statements_history_long Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068965552"> events_statements_summary_by_account_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068962560"> events_statements_summary_by_digest table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068959520"> events_statements_summary_by_host_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068956480"> events_statements_summary_by_program table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068953440"> events_statements_summary_by_thread_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068950400"> events_statements_summary_by_user_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068947360"> events_statements_summary_global_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045072362272"> events_transactions_current table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-transactions-current-table.html"> The events_transactions_current Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045072232240"> events_transactions_history table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-transactions-history-table.html"> The events_transactions_history Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045072213776"> events_transactions_history_long table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-transactions-history-long-table.html"> The events_transactions_history_long Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068652704"> events_transactions_summary_by_account_by_event table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068649664"> events_transactions_summary_by_host_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068646608"> events_transactions_summary_by_thread_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068643552"> events_transactions_summary_by_user_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068640512"> events_transactions_summary_global_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045073320048"> events_waits_current table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-waits-current-table.html"> The events_waits_current Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073188176"> events_waits_history table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-waits-history-table.html"> The events_waits_history Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073169872"> events_waits_history_long table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-events-waits-history-long-table.html"> The events_waits_history_long Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045069144960"> events_waits_summary_by_account_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069141920"> events_waits_summary_by_host_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069138896"> events_waits_summary_by_instance table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069135872"> events_waits_summary_by_thread_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069132832"> events_waits_summary_by_user_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045069129792"> events_waits_summary_global_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045276000064"> event_scheduler system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032911072"> eviction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045190521968"> exact-value literals, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045220470192"> exact-value numeric literals, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="precision-math-numbers.html"> Types of Numeric Values </a> </dt> <dt id="ientry-idm46045321101968"> example option </dt> <dd> <dl> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045148712592"> EXAMPLE storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="example-storage-engine.html"> The EXAMPLE Storage Engine </a> </dt> <dt id="ientry-idm46045324737376"> examples </dt> <dd> <dl> <dt> compressed tables, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> myisamchk output, <a class="indexterm" href="myisamchk-table-info.html"> Obtaining Table Information with myisamchk </a> </dt> <dt> queries, <a class="indexterm" href="examples.html"> Examples of Common Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045182787168"> EXCEPT, <a class="indexterm" href="except.html"> EXCEPT Clause </a> </dt> <dd> <dl> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt> set operations, <a class="indexterm" href="set-operations.html"> Set Operations with UNION, INTERSECT, and EXCEPT </a> </dt> </dl> </dd> <dt id="ientry-idm46045032901936"> exception interceptor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045085296096"> exceptions table </dt> <dd> <dl> <dt> NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-exceptions-table"> Conflict Resolution Exceptions Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045099423296"> exclude-databases option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045304553472"> exclude-gtids option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045099405312"> exclude-intermediate-sql-tables option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045101000048"> exclude-missing-columns option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045099368784"> exclude-missing-tables option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045099355792"> exclude-tables option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045164584304"> exclusive lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221898048"> Execute </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045176783584"> EXECUTE, <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> , <a class="indexterm" href="execute.html"> EXECUTE Statement </a> </dt> <dt id="ientry-idm46045319148496"> execute option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045251737424"> EXECUTE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045120406240"> ExecuteOnComputer, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045061568256"> execute_prepared_stmt() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-execute-prepared-stmt.html"> The execute_prepared_stmt() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045221670080"> executing </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045324793536"> executing SQL statements from text files, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> , <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> </dt> <dt id="ientry-idm46045221665184"> Execution of init_command </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045116142000"> execution threads (NDB Cluster), <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045179883472"> EXISTS </dt> <dd> <dl> <dt> with subqueries, <a class="indexterm" href="exists-and-not-exists-subqueries.html"> Subqueries with EXISTS or NOT EXISTS </a> </dt> </dl> </dd> <dt id="ientry-idm46045207245200"> EXISTS() operator, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045317814368"> exit command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045094496048"> EXIT command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045094537728"> EXIT SINGLE USER MODE command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045280051248"> exit-info option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045206011808"> EXP(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045328102528"> experimental system variables, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt id="ientry-idm46045248614208"> expired password </dt> <dd> <dl> <dt> resetting, <a class="indexterm" href="password-management.html#password-expiration-policy"> Password Expiration Policy </a> </dt> </dl> </dd> <dt id="ientry-idm46045248285520"> expired passwords, <a class="indexterm" href="expired-password-handling.html"> Server Handling of Expired Passwords </a> </dt> <dt id="ientry-idm46045228476176"> EXPLAIN, <a class="indexterm" href="using-explain.html"> Optimizing Queries with EXPLAIN </a> , <a class="indexterm" href="explain.html"> EXPLAIN Statement </a> , <a class="indexterm" href="partitioning-info.html"> Obtaining Information About Partitions </a> </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-function-optimization.html"> Window Function Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045168008576"> EXPLAIN FORMAT=JSON output format </dt> <dd> <dl> <dt> versions, <a class="indexterm" href="explain.html#explain-execution-plan"> Obtaining Execution Plan Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045083420352"> EXPLAIN used with partitioned tables, <a class="indexterm" href="partitioning-info.html"> Obtaining Information About Partitions </a> </dt> <dt id="ientry-idm46045275965328"> explain_format system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275902576"> explain_json_format_version system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dd> <dl> <dt> example, <a class="indexterm" href="explain.html#explain-execution-plan"> Obtaining Execution Plan Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045210873600"> explicit default values, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> </dt> <dt id="ientry-idm46045275867680"> explicit_defaults_for_timestamp system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045203482096"> EXPORT_SET(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045192477568"> expression aliases, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045218613088"> expression syntax, <a class="indexterm" href="expressions.html"> Expressions </a> </dt> <dt id="ientry-idm46045325067424"> expressions </dt> <dd> <dl> <dt> extended, <a class="indexterm" href="pattern-matching.html"> Pattern Matching </a> </dt> </dl> </dd> <dt id="ientry-idm46045307203008"> extend-check option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> , <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045315366064"> extended option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312379136"> extended-insert option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045333575840"> extensions </dt> <dd> <dl> <dt> to standard SQL, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045032877504"> extent, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045280037712"> external locking, <a class="indexterm" href="server-options.html"> Server Command Options </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-crash-recovery.html"> Using myisamchk for Crash Recovery </a> , <a class="indexterm" href="external-locking.html"> External Locking </a> , <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt id="ientry-idm46045280033664"> external-locking option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045275762800"> external_user system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045302933504"> extra-file option </dt> <dd> <dl> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045104104688"> extra-node-info option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045104096576"> extra-partition-info option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045204874864"> EXTRACT(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045325187584"> extracting </dt> <dd> <dl> <dt> dates, <a class="indexterm" href="date-calculations.html"> Date Calculations </a> </dt> </dl> </dd> <dt id="ientry-idm46045200282576"> ExtractValue(), <a class="indexterm" href="xml-functions.html"> XML Functions </a> </dt> <dt id="ientry-idm46045061051392"> extract_schema_from_file_name() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-extract-schema-from-file-name.html"> The extract_schema_from_file_name() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045061035888"> extract_table_from_file_name() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-extract-table-from-file-name.html"> The extract_table_from_file_name() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045120105072"> ExtraSendBufferMemory </dt> <dd> <dl> <dt> API nodes, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> management nodes, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_F"> </a> F </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045124278320"> failover, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> in NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-failover.html"> Implementing Failover with NDB Cluster Replication </a> </dt> <dt> Java clients, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> </dl> </dd> <dt id="ientry-idm46045134374832"> failure detection </dt> <dd> <dl> <dt> Group Replication, <a class="indexterm" href="group-replication-failure-detection.html"> Failure Detection </a> </dt> </dl> </dd> <dt id="ientry-idm46045220456704"> FALSE, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="boolean-literals.html"> Boolean Literals </a> </dt> <dd> <dl> <dt> testing for, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045211389312"> false literal </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045056061024"> FAQs </dt> <dd> <dl> <dt> C API, <a class="indexterm" href="faqs-c-api.html"> MySQL 8.4 FAQ: C API, libmysql </a> </dt> <dt> Connectors and APIs, <a class="indexterm" href="faqs-connectors-apis.html"> MySQL 8.4 FAQ: Connectors &amp; APIs </a> </dt> <dt> InnoDB Data-at-Rest Encryption, <a class="indexterm" href="faqs-tablespace-encryption.html"> MySQL 8.4 FAQ: InnoDB Data-at-Rest Encryption </a> </dt> <dt> libmysql, <a class="indexterm" href="faqs-c-api.html"> MySQL 8.4 FAQ: C API, libmysql </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="faqs-mysql-cluster.html"> MySQL 8.4 FAQ: NDB Cluster </a> </dt> <dt> replication, <a class="indexterm" href="faqs-replication.html"> MySQL 8.4 FAQ: Replication </a> </dt> <dt> Virtualization Support, <a class="indexterm" href="faqs-virtualization.html"> MySQL 8.4 FAQ: Virtualization Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045032858544"> Fast Index Creation, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045315322496"> fast option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045032846160"> fast shutdown, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045335203120"> features of MySQL, <a class="indexterm" href="features.html"> The Main Features of MySQL </a> </dt> <dt id="ientry-idm46045334553440"> features, deprecated (see <a href="#ientry-idm46045334554448"> deprecated features </a> ) </dt> <dt id="ientry-idm46045335006944"> features, new (see <a href="#ientry-idm46045335007952"> new features </a> ) </dt> <dt id="ientry-idm46045334493792"> features, removed (see <a href="#ientry-idm46045334494800"> removed features </a> ) </dt> <dt id="ientry-idm46045148708288"> FEDERATED storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="federated-storage-engine.html"> The FEDERATED Storage Engine </a> </dt> <dt id="ientry-idm46045221893152"> Fetch </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045176132288"> FETCH, <a class="indexterm" href="fetch.html"> Cursor FETCH Statement </a> </dt> <dt id="ientry-idm46045189124304"> field </dt> <dd> <dl> <dt> changing, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045221888208"> Field List </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045203465360"> FIELD(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045105226560"> fields option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045312883600"> fields-enclosed-by option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045312862416"> fields-escaped-by option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045312872992"> fields-optionally-enclosed-by option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045312894192"> fields-terminated-by option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045203276064"> FILE, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045304323408"> file descriptors </dt> <dd> <dl> <dt> innodb_open_files, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> log tables, <a class="indexterm" href="log-destinations.html#log-destinations-tables"> Log Table Benefits and Characteristics </a> </dt> <dt> MERGE, <a class="indexterm" href="merge-table-advantages.html"> MERGE Table Advantages and Disadvantages </a> </dt> <dt> open_files_limit, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt> sockets, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_definition_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_open_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt> too many open files, <a class="indexterm" href="not-enough-file-handles.html"> File Not Found and Similar Errors </a> </dt> </dl> </dd> <dt id="ientry-idm46045032835600"> file format, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045251730976"> FILE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045100160448"> file-key option </dt> <dd> <dl> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045100147072"> file-key-from-stdin option </dt> <dd> <dl> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045166726816"> file-per-table, <a class="indexterm" href="innodb-table-import.html"> Importing InnoDB Tables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324795024"> files </dt> <dd> <dl> <dt> binary log, <a class="indexterm" href="binary-log.html"> The Binary Log </a> </dt> <dt> created by CREATE TABLE, <a class="indexterm" href="create-table-files.html"> Files Created by CREATE TABLE </a> </dt> <dt> error messages, <a class="indexterm" href="error-message-language.html"> Setting the Error Message Language </a> </dt> <dt> general query log, <a class="indexterm" href="query-log.html"> The General Query Log </a> </dt> <dt> log, <a class="indexterm" href="log-file-maintenance.html"> Server Log Maintenance </a> </dt> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-files.html"> The ndbinfo files Table </a> </dt> <dt> not found message, <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt> permissions, <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt> repairing, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> script, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> </dt> <dt> size limits, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> <dt> slow query log, <a class="indexterm" href="slow-query-log.html"> The Slow Query Log </a> </dt> <dt> text, <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045079850704"> FILES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-files-table.html"> The INFORMATION_SCHEMA FILES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045228862528"> filesort optimization, <a class="indexterm" href="order-by-optimization.html#order-by-filesort"> Use of filesort to Satisfy ORDER BY </a> , <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> <dt id="ientry-idm46045108208112"> filesystem-password option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> </dl> </dd> <dt id="ientry-idm46045108191824"> filesystem-password-from-stdin option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> </dl> </dd> <dt id="ientry-idm46045119738464"> FileSystemPath, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115152032"> FileSystemPathDataFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115189408"> FileSystemPathDD, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115116720"> FileSystemPathUndoFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045073576960"> file_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-file-instances-table.html"> The file_instances Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068529392"> file_summary_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-file-summary-tables.html"> File I/O Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068526384"> file_summary_by_instance table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-file-summary-tables.html"> File I/O Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045165834640"> fill factor, <a class="indexterm" href="innodb-physical-structure.html"> The Physical Structure of an InnoDB Index </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045260107456"> fill_help_tables.sql, <a class="indexterm" href="server-side-help-support.html"> Server-Side Help Support </a> </dt> <dt id="ientry-idm46045203443168"> FIND_IN_SET(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045221294192"> Finished reading one binlog; switching to next binlog </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045231474144"> FIPS mode, <a class="indexterm" href="fips-mode.html"> FIPS Support </a> </dt> <dt id="ientry-idm46045075974592"> firewall table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-firewall-table-reference.html"> INFORMATION_SCHEMA Firewall Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045087058896"> firewalls (software) </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt id="ientry-idm46045233557136"> Firewall_access_denied status variable, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt id="ientry-idm46045233551600"> Firewall_access_granted status variable, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt id="ientry-idm46045233546160"> Firewall_access_suspicious status variable, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt id="ientry-idm46045251248400"> FIREWALL_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045233539792"> Firewall_cached_entries status variable, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt id="ientry-idm46045251241488"> FIREWALL_EXEMPT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045234075856"> firewall_groups MySQL Enterprise Firewall table, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt id="ientry-idm46045259481392"> firewall_groups table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-firewall-groups-table.html"> The firewall_groups Table </a> </dt> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045234051568"> firewall_group_allowlist MySQL Enterprise Firewall table, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt id="ientry-idm46045259484400"> firewall_group_allowlist table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-firewall-group-allowlist-table.html"> The firewall_group_allowlist Table </a> </dt> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045233820368"> firewall_group_delist() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233811168"> firewall_group_enlist() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045234039536"> firewall_membership MySQL Enterprise Firewall table, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt id="ientry-idm46045259478416"> firewall_membership table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-firewall-membership-table.html"> The firewall_membership Table </a> </dt> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045251234640"> FIREWALL_USER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045234022080"> firewall_users MySQL Enterprise Firewall table, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt id="ientry-idm46045259475408"> firewall_users table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045234006544"> firewall_whitelist MySQL Enterprise Firewall table, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt id="ientry-idm46045259472432"> firewall_whitelist table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045228286992"> FirstMatch </dt> <dd> <dl> <dt> semijoin strategy, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> </dl> </dd> <dt id="ientry-idm46045192261104"> FIRST_VALUE(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045214231536"> FIXED data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045032804720"> fixed row format, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045190528160"> fixed-point arithmetic, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045214213584"> FLOAT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045214192400"> floating-point number, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045135627552"> floating-point values </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-floatvalues.html"> Replication and Floating-Point Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045220459920"> floats, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> <dt id="ientry-idm46045205994416"> FLOOR(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045206787360"> flow control functions, <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> <dt id="ientry-idm46045135620896"> FLUSH </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-flush.html"> Replication and FLUSH </a> </dt> </dl> </dd> <dt id="ientry-idm46045032794288"> flush, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032782336"> flush list, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045280012448"> flush option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045168794768"> FLUSH statement, <a class="indexterm" href="flush.html"> FLUSH Statement </a> </dt> <dt id="ientry-idm46045275740544"> flush system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045316956672"> flush tables, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045312189936"> flush-logs option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312167792"> flush-privileges option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045163056512"> flushing, <a class="indexterm" href="innodb-buffer-pool-flushing.html"> Configuring Buffer Pool Flushing </a> </dt> <dt id="ientry-idm46045263200480"> Flush_commands status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045251227696"> FLUSH_OPTIMIZER_COSTS privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045251220976"> FLUSH_PRIVILEGES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045256368400"> flush_rewrite_rules() Rewriter function, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-routines"> Rewriter Query Rewrite Plugin Procedures and Functions </a> </dt> <dt id="ientry-idm46045251214320"> FLUSH_STATUS privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045251207680"> FLUSH_TABLES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045275706016"> flush_time system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045251200928"> FLUSH_USER_RESOURCES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045180815360"> FOR SHARE, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045180816432"> FOR UPDATE, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045256953568"> FORCE </dt> <dd> <dl> <dt> plugin activation option, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> </dl> </dd> <dt id="ientry-idm46045223451360"> FORCE INDEX, <a class="indexterm" href="index-hints.html"> Index Hints </a> , <a class="indexterm" href="optimizer-issues.html"> Optimizer-Related Issues </a> </dt> <dt id="ientry-idm46045223450288"> FORCE KEY, <a class="indexterm" href="index-hints.html"> Index Hints </a> </dt> <dt id="ientry-idm46045319134000"> force option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> , <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045304541504"> force-if-open option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045304526368"> force-read option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045328588880"> FORCE_COLORED_OUTPUT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328596736"> FORCE_INSOURCE_BUILD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045256948304"> FORCE_PLUS_PERMANENT </dt> <dd> <dl> <dt> plugin activation option, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> </dl> </dd> <dt id="ientry-idm46045328044176"> FORCE_UNSUPPORTED_COMPILER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045333146496"> foreign key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> constraint, <a class="indexterm" href="constraint-primary-key.html"> PRIMARY KEY and UNIQUE Index Constraints </a> , <a class="indexterm" href="constraint-foreign-key.html"> FOREIGN KEY Constraints </a> </dt> <dt> deleting, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="create-table-foreign-keys.html#foreign-key-dropping"> Dropping Foreign Key Constraints </a> </dt> </dl> </dd> <dt id="ientry-idm46045032757184"> FOREIGN KEY constraint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045185188544"> foreign key constraints, <a class="indexterm" href="create-table-foreign-keys.html"> FOREIGN KEY Constraints </a> </dt> <dt id="ientry-idm46045159462704"> FOREIGN KEY constraints </dt> <dd> <dl> <dt> and online DDL, <a class="indexterm" href="innodb-online-ddl-limitations.html"> Online DDL Limitations </a> </dt> </dl> </dd> <dt id="ientry-idm46045333254784"> foreign keys, <a class="indexterm" href="ansi-diff-foreign-keys.html"> FOREIGN KEY Constraint Differences </a> , <a class="indexterm" href="example-foreign-keys.html"> Using Foreign Keys </a> , <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dd> <dl> <dt> metadata locking, <a class="indexterm" href="metadata-locking.html#metadata-lock-acquisition"> Metadata Lock Acquisition </a> </dt> </dl> </dd> <dt id="ientry-idm46045089201216"> foreign_keys </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-foreign-keys.html"> The ndbinfo foreign_keys Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259839488"> foreign_keys table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045275667520"> foreign_key_checks system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259836512"> foreign_key_column_usage table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045203422912"> FORMAT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045191671424"> FORMAT_BYTES() function, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt id="ientry-idm46045061019936"> format_bytes() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-format-bytes.html"> The format_bytes() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060998032"> format_path() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-format-path.html"> The format_path() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045191617248"> FORMAT_PICO_TIME() function, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt id="ientry-idm46045060981456"> format_statement() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-format-statement.html"> The format_statement() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060951616"> format_time() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-format-time.html"> The format_time() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045194843792"> formfeed (\f), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045198740528"> FOUND_ROWS(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045328028112"> FPROFILE_GENERATE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328019200"> FPROFILE_USE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045135507136"> fractional seconds </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-fractional-seconds.html"> Replication and Fractional Seconds Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045214469808"> fractional seconds precision, <a class="indexterm" href="data-types.html"> Data Types </a> , <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> </dt> <dt id="ientry-idm46045124212032"> fragment replicas (NDB Cluster), <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt id="ientry-idm46045100405632"> fragment-id option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045118807312"> FragmentLogFileSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045184197344"> FRAGMENT_COUNT_TYPE (NDB_TABLE) (OBSOLETE) </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045191915728"> frame </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> , <a class="indexterm" href="window-functions-frames.html"> Window Function Frame Specification </a> </dt> </dl> </dd> <dt id="ientry-idm46045327174368"> FreeBSD troubleshooting, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt id="ientry-idm46045221659488"> freeing items </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045032747136"> .frm file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180938496"> FROM, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045203401024"> FROM_BASE64(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045204854320"> FROM_DAYS(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204837600"> FROM_UNIXTIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045103091664"> fs option </dt> <dd> <dl> <dt> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045032740816"> FTS, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045275628272"> ft_boolean_syntax system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045307344032"> ft_max_word_len myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045275591984"> ft_max_word_len system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045307342944"> ft_min_word_len myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045275556752"> ft_min_word_len system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275521440"> ft_query_expansion_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045307341856"> ft_stopword_file myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045275490192"> ft_stopword_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032736256"> full backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045053851280"> full disk, <a class="indexterm" href="full-disk.html"> How MySQL Handles a Full Disk </a> </dt> <dt id="ientry-idm46045032727840"> full table scan, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045228443712"> full table scans </dt> <dd> <dl> <dt> avoiding, <a class="indexterm" href="table-scan-avoidance.html"> Avoiding Full Table Scans </a> </dt> </dl> </dd> <dt id="ientry-idm46045165777968"> full-text index </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-fulltext-index.html"> InnoDB Full-Text Indexes </a> </dt> <dt> monitoring, <a class="indexterm" href="innodb-fulltext-index.html#innodb-fulltext-index-monitoring"> Monitoring InnoDB Full-Text Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045227415232"> full-text queries </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="column-indexes.html#column-indexes-fulltext"> FULLTEXT Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045202029168"> full-text search, <a class="indexterm" href="fulltext-search.html"> Full-Text Search Functions </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045202028096"> FULLTEXT, <a class="indexterm" href="fulltext-search.html"> Full-Text Search Functions </a> </dt> <dt id="ientry-idm46045201547536"> fulltext </dt> <dd> <dl> <dt> stopword list, <a class="indexterm" href="fulltext-stopwords.html#fulltext-stopwords-stopwords-for-myisam-search-indexes"> Stopwords for MyISAM Search Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045032716800"> FULLTEXT index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221653840"> FULLTEXT initialization </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045225170352"> fulltext join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045184176560"> FULLY_REPLICATED (NDB_TABLE) </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045259633776"> func table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> , <a class="indexterm" href="obtaining-loadable-function-information.html"> Obtaining Information About Loadable Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045171895440"> function </dt> <dd> <dl> <dt> creating, <a class="indexterm" href="create-function-loadable.html"> CREATE FUNCTION Statement for Loadable Functions </a> </dt> <dt> deleting, <a class="indexterm" href="drop-function-loadable.html"> DROP FUNCTION Statement for Loadable Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045239661680"> function installation </dt> <dd> <dl> <dt> keyring, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045219705072"> function names </dt> <dd> <dl> <dt> parsing, <a class="indexterm" href="function-resolution.html"> Function Name Parsing and Resolution </a> </dt> <dt> resolving ambiguity, <a class="indexterm" href="function-resolution.html"> Function Name Parsing and Resolution </a> </dt> </dl> </dd> <dt id="ientry-idm46045261374816"> functional dependence, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> , <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> , <a class="indexterm" href="group-by-functional-dependence.html"> Detection of Functional Dependence </a> </dt> <dt id="ientry-idm46045210294496"> functions, <a class="indexterm" href="functions.html"> Functions and Operators </a> </dt> <dd> <dl> <dt> aggregate, <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-functions.html"> Replication and System Functions </a> </dt> <dt> arithmetic, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> bit, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> cast, <a class="indexterm" href="cast-functions.html"> Cast Functions and Operators </a> </dt> <dt> date and time, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt> encryption, <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt> flow control, <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> <dt> for SELECT and WHERE clauses, <a class="indexterm" href="functions.html"> Functions and Operators </a> </dt> <dt> GROUP BY, <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt> group replication, <a class="indexterm" href="group-replication-functions.html"> Group Replication Functions </a> </dt> <dt> grouping, <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> <dt> GTIDs, <a class="indexterm" href="gtid-functions.html"> Functions Used with Global Transaction Identifiers (GTIDs) </a> </dt> <dt> information, <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt> internal, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt> loadable, <a class="indexterm" href="create-function-loadable.html"> CREATE FUNCTION Statement for Loadable Functions </a> , <a class="indexterm" href="drop-function-loadable.html"> DROP FUNCTION Statement for Loadable Functions </a> </dt> <dt> locking, <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt> mathematical, <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt> miscellaneous, <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt> Performance Schema, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt> replication, <a class="indexterm" href="replication-functions.html"> Replication Functions </a> </dt> <dt> stored, <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> <dt> string, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt> string comparison, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045032707600"> fuzzy checkpointing, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_G"> </a> G </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045332982560"> GA, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> MySQL releases, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> <dt id="ientry-idm46045032697472"> GAC, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032691552"> gap, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045086721776"> gap event, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt id="ientry-idm46045164582288"> gap lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045055646272"> gb2312, gbk, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045097758768"> gci option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045097750752"> gci64 option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045114936560"> GCP Stop errors (NDB Cluster), <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045253751296"> gdb </dt> <dd> <dl> <dt> using, <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> </dl> </dd> <dt id="ientry-idm46045279981392"> gdb option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045240542256"> Gemalto SafeNet KeySecure Applicance </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-keysecure"> Configuring keyring_okv for Gemalto SafeNet KeySecure Appliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045340958160"> general information, <a class="indexterm" href="introduction.html"> General Information </a> </dt> <dt id="ientry-idm46045335221104"> General Public License, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> <dt id="ientry-idm46045258419968"> general query log, <a class="indexterm" href="query-log.html"> The General Query Log </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045080545696"> general table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-general-table-reference.html"> INFORMATION_SCHEMA General Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045032656992"> general tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045275459792"> general_log system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259610928"> general_log table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-log-tables"> Log System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045275430688"> general_log_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032641952"> generated column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045188596736"> generated columns </dt> <dd> <dl> <dt> ALTER TABLE, <a class="indexterm" href="alter-table-generated-columns.html"> ALTER TABLE and Generated Columns </a> </dt> <dt> CREATE TABLE, <a class="indexterm" href="create-table-generated-columns.html"> CREATE TABLE and Generated Columns </a> </dt> <dt> CREATE TRIGGER, <a class="indexterm" href="create-trigger.html"> CREATE TRIGGER Statement </a> </dt> <dt> CREATE VIEW, <a class="indexterm" href="create-view.html"> CREATE VIEW Statement </a> </dt> <dt> INFORMATION_SCHEMA.COLUMNS table, <a class="indexterm" href="information-schema-columns-table.html"> The INFORMATION_SCHEMA COLUMNS Table </a> </dt> <dt> INSERT, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt> REPLACE, <a class="indexterm" href="replace.html"> REPLACE Statement </a> </dt> <dt> secondary indexes, <a class="indexterm" href="create-table-secondary-indexes.html"> Secondary Indexes and Generated Columns </a> </dt> <dt> SHOW COLUMNS statement, <a class="indexterm" href="show-columns.html"> SHOW COLUMNS Statement </a> , <a class="indexterm" href="information-schema-columns-table.html"> The INFORMATION_SCHEMA COLUMNS Table </a> </dt> <dt> UPDATE, <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> <dt> views, <a class="indexterm" href="view-updatability.html"> Updatable and Insertable Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045275403056"> generated_random_password_length system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045232069296"> gen_blacklist() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt id="ientry-idm46045232608448"> gen_blocklist() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-generating-component-functions"> Dictionary Generating Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt id="ientry-idm46045232588416"> gen_dictionary() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-generating-component-functions"> Dictionary Generating Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt id="ientry-idm46045232028768"> gen_dictionary_drop() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt id="ientry-idm46045232012608"> gen_dictionary_load() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt id="ientry-idm46045232838368"> gen_range() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt id="ientry-idm46045232819472"> gen_rnd_canada_sin() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt id="ientry-idm46045232801200"> gen_rnd_email() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt id="ientry-idm46045232781168"> gen_rnd_iban() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt id="ientry-idm46045232759520"> gen_rnd_pan() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt id="ientry-idm46045232736688"> gen_rnd_ssn() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt id="ientry-idm46045232724256"> gen_rnd_uk_nin() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt id="ientry-idm46045232708720"> gen_rnd_us_phone() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt id="ientry-idm46045232697088"> gen_rnd_uuid() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt id="ientry-idm46045212210464"> geographic feature, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197753232"> GeomCollection(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045211676288"> geometrically valid </dt> <dd> <dl> <dt> GIS values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> <dt> spatial values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045212202944"> geometry, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045212175648"> GEOMETRY data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045211801744"> geometry values </dt> <dd> <dl> <dt> internal storage format, <a class="indexterm" href="gis-data-formats.html#gis-internal-format"> Internal Geometry Storage Format </a> </dt> <dt> WKB format, <a class="indexterm" href="gis-data-formats.html#gis-wkb-format"> Well-Known Binary (WKB) Format </a> </dt> <dt> WKT format, <a class="indexterm" href="gis-data-formats.html#gis-wkt-format"> Well-Known Text (WKT) Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045212168128"> GEOMETRYCOLLECTION data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197734608"> GeometryCollection(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045212205200"> geospatial feature, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045215955568"> German dictionary collation, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> <dt id="ientry-idm46045215953392"> German phone book collation, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> <dt id="ientry-idm46045175928240"> GET DIAGNOSTICS, <a class="indexterm" href="get-diagnostics.html"> GET DIAGNOSTICS Statement </a> </dt> <dt id="ientry-idm46045323213904"> get-server-public-key option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045332947824"> getting MySQL, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> <dt id="ientry-idm46045191357472"> GET_DD_COLUMN_PRIVILEGES(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191350880"> GET_DD_CREATE_OPTIONS(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191344368"> GET_DD_INDEX_SUB_PART_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045204800704"> GET_FORMAT(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045199141472"> GET_LOCK(), <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045212234080"> GIS, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045210406096"> GIS data types </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-gis"> Spatial Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045211668832"> GIS values </dt> <dd> <dl> <dt> geometrically valid, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045329454848"> Git tree, <a class="indexterm" href="installing-development-tree.html"> Installing MySQL Using a Development Source Tree </a> </dt> <dt id="ientry-idm46045032633696"> Glassfish, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045171560128"> GLOBAL </dt> <dd> <dl> <dt> SET statement, <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> </dt> </dl> </dd> <dt id="ientry-idm46045173988704"> global privileges, <a class="indexterm" href="grant.html"> GRANT Statement </a> , <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> <dt id="ientry-idm46045032631248"> global temporary tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032627712"> global transaction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045263188464"> Global_connection_memory status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045275367744"> global_connection_memory_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275326976"> global_connection_memory_tracking system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259703472"> global_grants table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045317807632"> go command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045251711424"> GRANT OPTION privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045249587280"> GRANT statement, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> , <a class="indexterm" href="grant.html"> GRANT Statement </a> </dt> <dd> <dl> <dt> privilege restrictions, <a class="indexterm" href="grant.html#grant-as"> The AS Clause and Privilege Restrictions </a> </dt> </dl> </dd> <dt id="ientry-idm46045326674400"> grant tables </dt> <dd> <dl> <dt> columns_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> db table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> default_roles table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> global_grants table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> password_history table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> procs_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> proxies_priv, <a class="indexterm" href="proxy-users.html#proxy-users-granting-proxy-privilege"> Granting and Revoking the PROXY Privilege </a> </dt> <dt> proxies_priv table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> role_edges table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> sorting, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> , <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> structure, <a class="indexterm" href="grant-tables.html"> Grant Tables </a> </dt> <dt> tables_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> user table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045173987632"> granting </dt> <dd> <dl> <dt> privileges, <a class="indexterm" href="grant.html"> GRANT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045173984656"> granting roles, <a class="indexterm" href="grant.html"> GRANT Statement </a> </dt> <dt id="ientry-idm46045170318384"> grants </dt> <dd> <dl> <dt> display, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045095796032"> graph option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045207316896"> greater than (&gt;), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207329840"> greater than or equal (&gt;=), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045085467776"> greatest timestamp wins (conflict resolution), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085453424"> greatest timestamp, delete wins (conflict resolution), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045207225264"> GREATEST(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045303171376"> grep option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045109022480"> Group (NDB Cluster), <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045228869344"> GROUP BY </dt> <dd> <dl> <dt> aliases in, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> <dt> extensions to standard SQL, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> <dt> implicit sorting, <a class="indexterm" href="order-by-optimization.html#order-by-index-use"> Use of Indexes to Satisfy ORDER BY </a> </dt> <dt> maximum sort length, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> WITH ROLLUP, <a class="indexterm" href="group-by-modifiers.html"> GROUP BY Modifiers </a> </dt> </dl> </dd> <dt id="ientry-idm46045193392128"> GROUP BY functions, <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045228793344"> GROUP BY optimizing, <a class="indexterm" href="group-by-optimization.html"> GROUP BY Optimization </a> </dt> <dt id="ientry-idm46045032621216"> group commit, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045244967200"> group preferences </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-usage-group-mapping"> LDAP Authentication Group Preference and Mapping Specification </a> </dt> </dl> </dd> <dt id="ientry-idm46045134619568"> Group Replication, <a class="indexterm" href="group-replication.html"> Group Replication </a> </dt> <dd> <dl> <dt> adding a second instance, <a class="indexterm" href="group-replication-adding-instances.html#group-replication-adding-a-second-instance"> Adding a Second Instance </a> </dt> <dt> adding additional instances, <a class="indexterm" href="group-replication-adding-instances.html#group-replication-adding-additional-instances"> Adding Additional Instances </a> </dt> <dt> adding instances, <a class="indexterm" href="group-replication-adding-instances.html"> Adding Instances to the Group </a> </dt> <dt> allowlist, <a class="indexterm" href="group-replication-ip-address-permissions.html"> Group Replication IP Address Permissions </a> </dt> <dt> asynchronous replication, <a class="indexterm" href="group-replication-primary-secondary-replication.html"> Source to Replica Replication </a> </dt> <dt> background, <a class="indexterm" href="group-replication-background.html"> Group Replication Background </a> </dt> <dt> change to multi-primary mode, <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-multi"> Changing to Multi-Primary Mode </a> </dt> <dt> change to single-primary mode, <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-single"> Changing to Single-Primary Mode </a> </dt> <dt> changing group mode, <a class="indexterm" href="group-replication-changing-group-mode.html"> Changing the Group Mode </a> </dt> <dt> changing primary, <a class="indexterm" href="group-replication-change-primary.html"> Changing the Primary </a> </dt> <dt> choosing mode, <a class="indexterm" href="group-replication-deploying-in-multi-primary-or-single-primary-mode.html"> Multi-Primary and Single-Primary Modes </a> </dt> <dt> combining versions, <a class="indexterm" href="group-replication-online-upgrade-combining-versions.html"> Combining Different Member Versions in a Group </a> </dt> <dt> communication protocol, <a class="indexterm" href="group-replication-communication-protocol.html"> Setting a Group's Communication Protocol Version </a> </dt> <dt> configuring a group's write concurrency, <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-configure-write-concurrency"> Configuring a Group's Write Concurrency </a> </dt> <dt> configuring consistency guarantees, <a class="indexterm" href="group-replication-configuring-consistency-guarantees.html"> Configuring Transaction Consistency Guarantees </a> </dt> <dt> configuring distributed recovery, <a class="indexterm" href="group-replication-tuning-recovery.html"> Configuring Distributed Recovery </a> </dt> <dt> configuring instances, <a class="indexterm" href="group-replication-configuring-instances.html"> Configuring an Instance for Group Replication </a> </dt> <dt> configuring online group, <a class="indexterm" href="group-replication-configuring-online-group.html"> Configuring an Online Group </a> </dt> <dt> consistency guarantees, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html#group-replication-control-operation-failover"> Consistency Guarantees and Primary Failover </a> </dt> <dt> consistency guarantees and data flow, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html#group-replication-data-flow-operations"> Data Flow Operations </a> </dt> <dt> consistency guarantees choose a level, <a class="indexterm" href="group-replication-configuring-consistency-guarantees.html#group-replication-choose-consistency-level"> How to Choose a Consistency Level </a> </dt> <dt> consistency guarantees impact on primary election, <a class="indexterm" href="group-replication-configuring-consistency-guarantees.html#group-replication-consistency-level-impact-election"> Impact of Consistency on Primary Election </a> </dt> <dt> consistency guarantees impacts, <a class="indexterm" href="group-replication-configuring-consistency-guarantees.html#group-replication-consistency-level-impacts"> Impacts of Consistency Levels </a> </dt> <dt> consistency guarantees synchronization points, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html#group-replication-synchronization-points"> Transaction Synchronization Points </a> </dt> <dt> data definition language statements, <a class="indexterm" href="group-replication-multi-primary-mode.html#group-replication-data-definition-statements"> Data Definition Statements </a> </dt> <dt> deploying in single primary mode, <a class="indexterm" href="group-replication-deploying-in-single-primary-mode.html"> Deploying Group Replication in Single-Primary Mode </a> </dt> <dt> deploying instances, <a class="indexterm" href="group-replication-deploying-instances.html"> Deploying Instances for Group Replication </a> </dt> <dt> details, <a class="indexterm" href="group-replication-details.html"> Group Replication Services </a> </dt> <dt> distributed recovery, <a class="indexterm" href="group-replication-distributed-recovery.html"> Distributed Recovery </a> </dt> <dt> election process, <a class="indexterm" href="group-replication-single-primary-mode.html"> Single-Primary Mode </a> </dt> <dt> examples use case scenarios, <a class="indexterm" href="group-replication-use-cases.html#group-replication-examples-of-use-case-scenarios"> Example Use Cases </a> </dt> <dt> failure detection, <a class="indexterm" href="group-replication-failure-detection.html"> Failure Detection </a> , <a class="indexterm" href="group-replication-responses-failure.html"> Responses to Failure Detection and Network Partitioning </a> </dt> <dt> find primary, <a class="indexterm" href="group-replication-single-primary-mode.html#group-replication-find-primary"> Finding the Primary </a> </dt> <dt> fine tuning the group communication thread, <a class="indexterm" href="group-replication-fine-tuning-the-group-communication-thread.html"> Fine Tuning the Group Communication Thread </a> </dt> <dt> flow control, <a class="indexterm" href="group-replication-flow-control.html"> Flow Control </a> </dt> <dt> frequently asked questions, <a class="indexterm" href="group-replication-frequently-asked-questions.html"> Frequently Asked Questions </a> </dt> <dt> functions, <a class="indexterm" href="group-replication-configuring-online-group.html"> Configuring an Online Group </a> , <a class="indexterm" href="group-replication-change-primary.html"> Changing the Primary </a> , <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-single"> Changing to Single-Primary Mode </a> , <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-multi"> Changing to Multi-Primary Mode </a> , <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-inspect-write-concurrency"> Inspecting a Group's Write Concurrency </a> , <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-configure-write-concurrency"> Configuring a Group's Write Concurrency </a> </dt> <dt> getting started, <a class="indexterm" href="group-replication-getting-started.html"> Getting Started </a> </dt> <dt> Group Communication System, <a class="indexterm" href="group-replication-plugin-architecture.html"> Group Replication Plugin Architecture </a> </dt> <dt> group communication thread (GCT), <a class="indexterm" href="group-replication-fine-tuning-the-group-communication-thread.html"> Fine Tuning the Group Communication Thread </a> </dt> <dt> group membership, <a class="indexterm" href="group-replication-group-membership.html"> Group Membership </a> </dt> <dt> group write consensus, <a class="indexterm" href="group-replication-group-write-consensus.html"> Using Group Replication Group Write Consensus </a> </dt> <dt> group_replication_get_write_concurrency() function, <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-inspect-write-concurrency"> Inspecting a Group's Write Concurrency </a> </dt> <dt> group_replication_ip_allowlist, <a class="indexterm" href="group-replication-ip-address-permissions.html"> Group Replication IP Address Permissions </a> </dt> <dt> group_replication_set_as_primary() function, <a class="indexterm" href="group-replication-change-primary.html"> Changing the Primary </a> </dt> <dt> group_replication_set_write_concurrency() function, <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-configure-write-concurrency"> Configuring a Group's Write Concurrency </a> </dt> <dt> group_replication_switch_to_multi_primary_mode() function, <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-multi"> Changing to Multi-Primary Mode </a> </dt> <dt> group_replication_switch_to_single_primary_mode() function, <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-single"> Changing to Single-Primary Mode </a> </dt> <dt> GTIDs, <a class="indexterm" href="group-replication-gtids.html"> GTIDs and Group Replication </a> </dt> <dt> inspecting a group's write concurrency, <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-inspect-write-concurrency"> Inspecting a Group's Write Concurrency </a> </dt> <dt> ip address permissions, <a class="indexterm" href="group-replication-ip-address-permissions.html"> Group Replication IP Address Permissions </a> </dt> <dt> ipv6, <a class="indexterm" href="group-replication-ipv6.html"> Support For IPv6 And For Mixed IPv6 And IPv4 Groups </a> </dt> <dt> launching, <a class="indexterm" href="group-replication-launching.html"> Launching Group Replication </a> </dt> <dt> limitations, <a class="indexterm" href="group-replication-limitations.html"> Group Replication Limitations </a> </dt> <dt> member actions configuration, <a class="indexterm" href="group-replication-member-actions.html"> Configuring Member Actions </a> </dt> <dt> message compression, <a class="indexterm" href="group-replication-message-compression.html"> Message Compression </a> </dt> <dt> mixed ipv4 and ipv6, <a class="indexterm" href="group-replication-ipv6.html"> Support For IPv6 And For Mixed IPv6 And IPv4 Groups </a> </dt> <dt> modes, <a class="indexterm" href="group-replication-deploying-in-multi-primary-or-single-primary-mode.html"> Multi-Primary and Single-Primary Modes </a> </dt> <dt> monitoring, <a class="indexterm" href="group-replication-monitoring.html"> Monitoring Group Replication </a> </dt> <dt> multi-primary and single-primary modes, <a class="indexterm" href="group-replication-deploying-in-multi-primary-or-single-primary-mode.html"> Multi-Primary and Single-Primary Modes </a> </dt> <dt> multi-primary mode, <a class="indexterm" href="group-replication-multi-primary-mode.html"> Multi-Primary Mode </a> </dt> <dt> MySQL Enterprise Backup, <a class="indexterm" href="group-replication-enterprise-backup.html"> Using MySQL Enterprise Backup with Group Replication </a> </dt> <dt> network partition, <a class="indexterm" href="group-replication-responses-failure.html"> Responses to Failure Detection and Network Partitioning </a> </dt> <dt> network partitioning, <a class="indexterm" href="group-replication-network-partitioning.html"> Handling a Network Partition and Loss of Quorum </a> </dt> <dt> observability, <a class="indexterm" href="group-replication-observability.html"> Observability </a> </dt> <dt> offline upgrade, <a class="indexterm" href="group-replication-offline-upgrade.html"> Group Replication Offline Upgrade </a> </dt> <dt> online upgrade, <a class="indexterm" href="group-replication-online-upgrade.html"> Group Replication Online Upgrade </a> </dt> <dt> online upgrade considerations, <a class="indexterm" href="group-replication-online-upgrade-considerations.html"> Online Upgrade Considerations </a> </dt> <dt> online upgrade methods, <a class="indexterm" href="group-replication-online-upgrade-methods.html"> Group Replication Online Upgrade Methods </a> </dt> <dt> operations, <a class="indexterm" href="group-replication-operations.html"> Group Replication Operations </a> </dt> <dt> Paxos, <a class="indexterm" href="group-replication-plugin-architecture.html"> Group Replication Plugin Architecture </a> </dt> <dt> performance, <a class="indexterm" href="group-replication-performance.html"> Group Replication Performance and Troubleshooting </a> </dt> <dt> performance message fragmentation, <a class="indexterm" href="group-replication-performance-message-fragmentation.html"> Message Fragmentation </a> </dt> <dt> performance xcom cache, <a class="indexterm" href="group-replication-performance-xcom-cache.html"> XCom Cache Management </a> </dt> <dt> plugin architecture, <a class="indexterm" href="group-replication-plugin-architecture.html"> Group Replication Plugin Architecture </a> </dt> <dt> primary failover, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html#group-replication-control-operation-failover"> Consistency Guarantees and Primary Failover </a> </dt> <dt> primary secondary replication, <a class="indexterm" href="group-replication-primary-secondary-replication.html"> Source to Replica Replication </a> </dt> <dt> probes and statistics, <a class="indexterm" href="group-replication-probes-and-statistics.html"> Probes and Statistics </a> </dt> <dt> recovering from a point in time, <a class="indexterm" href="group-replication-view-changes.html"> How Distributed Recovery Works </a> </dt> <dt> replication group member stats, <a class="indexterm" href="group-replication-replication-group-member-stats.html"> The replication_group_member_stats Table </a> </dt> <dt> replication technologies, <a class="indexterm" href="group-replication-replication-technologies.html"> Replication Technologies </a> </dt> <dt> replication_group_members table, <a class="indexterm" href="group-replication-replication-group-members.html"> The replication_group_members Table </a> </dt> <dt> requirements, <a class="indexterm" href="group-replication-requirements.html"> Group Replication Requirements </a> </dt> <dt> requirements and limitations, <a class="indexterm" href="group-replication-requirements-and-limitations.html"> Requirements and Limitations </a> </dt> <dt> responses to failure detection, <a class="indexterm" href="group-replication-responses-failure.html"> Responses to Failure Detection and Network Partitioning </a> </dt> <dt> restarting, <a class="indexterm" href="group-replication-restarting-group.html"> Restarting a Group </a> </dt> <dt> secure socket layer support, <a class="indexterm" href="group-replication-secure-socket-layer-support-ssl.html"> Securing Group Communication Connections with Secure Socket Layer (SSL) </a> </dt> <dt> security, <a class="indexterm" href="group-replication-security.html"> Group Replication Security </a> </dt> <dt> server states, <a class="indexterm" href="group-replication-server-states.html"> Group Replication Server States </a> </dt> <dt> server variables, <a class="indexterm" href="group-replication-options.html"> Group Replication Variables </a> </dt> <dt> single-primary mode, <a class="indexterm" href="group-replication-single-primary-mode.html"> Single-Primary Mode </a> </dt> <dt> ssl support, <a class="indexterm" href="group-replication-secure-socket-layer-support-ssl.html"> Securing Group Communication Connections with Secure Socket Layer (SSL) </a> </dt> <dt> status variables, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> summary, <a class="indexterm" href="group-replication-summary.html"> Group Replication </a> </dt> <dt> system variables, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> the group, <a class="indexterm" href="group-replication-group-membership.html"> Group Membership </a> </dt> <dt> throttling, <a class="indexterm" href="group-replication-throttling.html"> Group Replication Throttling </a> </dt> <dt> transaction consistency guarantees, <a class="indexterm" href="group-replication-consistency-guarantees.html"> Transaction Consistency Guarantees </a> </dt> <dt> troubleshooting, <a class="indexterm" href="group-replication-performance.html"> Group Replication Performance and Troubleshooting </a> </dt> <dt> understanding transaction consistency guarantees, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html"> Understanding Transaction Consistency Guarantees </a> </dt> <dt> upgrading, <a class="indexterm" href="group-replication-upgrade.html"> Upgrading Group Replication </a> </dt> <dt> upgrading member, <a class="indexterm" href="group-replication-upgrading-member.html"> Upgrading a Group Replication Member </a> </dt> <dt> use cases, <a class="indexterm" href="group-replication-use-cases.html"> Group Replication Use Cases </a> </dt> <dt> user credentials, <a class="indexterm" href="group-replication-user-credentials.html"> User Credentials For Distributed Recovery </a> </dt> <dt> view, <a class="indexterm" href="group-replication-group-membership.html"> Group Membership </a> </dt> <dt> view changes, <a class="indexterm" href="group-replication-view-changes.html"> How Distributed Recovery Works </a> </dt> </dl> </dd> <dt id="ientry-idm46045131808416"> group replication </dt> <dd> <dl> <dt> performance schema instruments, <a class="indexterm" href="mysql-gr-memory-monitoring-ps-instruments.html"> Monitoring Group Replication Memory Usage with Performance Schema Memory Instrumentation </a> </dt> </dl> </dd> <dt id="ientry-idm46045194031216"> group replication functions, <a class="indexterm" href="group-replication-functions.html"> Group Replication Functions </a> </dt> <dd> <dl> <dt> asynchronous_connection_failover_reset(), <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt> group_replication_disable_member_action(), <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt> group_replication_enable_member_action(), <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt> group_replication_get_communication_protocol(), <a class="indexterm" href="group-replication-functions-for-communication-protocol.html"> Functions to Inspect and Set the Group Replication Communication Protocol Version </a> </dt> <dt> group_replication_get_write_concurrency(), <a class="indexterm" href="group-replication-functions-for-maximum-consensus.html"> Functions to Inspect and Configure the Maximum Consensus Instances of a Group </a> </dt> <dt> group_replication_reset_member_actions(), <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt> group_replication_set_as_primary(), <a class="indexterm" href="group-replication-functions-for-new-primary.html"> Function which Configures Group Replication Primary </a> </dt> <dt> group_replication_set_communication_protocol(), <a class="indexterm" href="group-replication-functions-for-communication-protocol.html"> Functions to Inspect and Set the Group Replication Communication Protocol Version </a> </dt> <dt> group_replication_set_write_concurrency(), <a class="indexterm" href="group-replication-functions-for-maximum-consensus.html"> Functions to Inspect and Configure the Maximum Consensus Instances of a Group </a> </dt> <dt> group_replication_switch_to_multi_primary_mode(), <a class="indexterm" href="group-replication-functions-for-mode.html"> Functions which Configure the Group Replication Mode </a> </dt> <dt> group_replication_switch_to_single_primary_mode(), <a class="indexterm" href="group-replication-functions-for-mode.html"> Functions which Configure the Group Replication Mode </a> </dt> </dl> </dd> <dt id="ientry-idm46045133537040"> group write consensus, <a class="indexterm" href="group-replication-group-write-consensus.html"> Using Group Replication Group Write Consensus </a> </dt> <dt id="ientry-idm46045207535536"> grouping </dt> <dd> <dl> <dt> expressions, <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> </dl> </dd> <dt id="ientry-idm46045192772112"> GROUPING(), <a class="indexterm" href="group-by-modifiers.html"> GROUP BY Modifiers </a> , <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045193103552"> GROUP_CONCAT(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045275296176"> group_concat_max_len system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045223818832"> GROUP_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045251194080"> GROUP_REPLICATION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045130802992"> group_replication_advertise_recovery_endpoints, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130749344"> group_replication_allow_local_lower_version_join system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130664080"> group_replication_autorejoin_tries system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130708016"> group_replication_auto_increment_increment system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130625072"> group_replication_bootstrap_group system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130593120"> group_replication_clone_threshold system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130550896"> group_replication_communication_debug_options system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130502336"> group_replication_communication_max_message_size system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130455152"> group_replication_communication_stack system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130413200"> group_replication_components_stop_timeout system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130375072"> group_replication_compression_threshold system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130336160"> group_replication_consistency system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045193733984"> group_replication_disable_member_action() function, <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt id="ientry-idm46045193718016"> group_replication_enable_member_action() function, <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt id="ientry-idm46045130279168"> group_replication_enforce_update_everywhere_checks system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130239760"> group_replication_exit_state_action system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130174080"> group_replication_flow_control_applier_threshold system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130139296"> group_replication_flow_control_certifier_threshold system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130104448"> group_replication_flow_control_hold_percent system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130069728"> group_replication_flow_control_max_quota system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045130034704"> group_replication_flow_control_member_quota_percent system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129999824"> group_replication_flow_control_min_quota system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129965616"> group_replication_flow_control_min_recovery_quota system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129931888"> group_replication_flow_control_mode system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129900448"> group_replication_flow_control_period system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129865872"> group_replication_flow_control_release_percent system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129830768"> group_replication_force_members system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045193806336"> group_replication_get_communication_protocol() function, <a class="indexterm" href="group-replication-functions-for-communication-protocol.html"> Functions to Inspect and Set the Group Replication Communication Protocol Version </a> </dt> <dt id="ientry-idm46045193840688"> group_replication_get_write_concurrency() function, <a class="indexterm" href="group-replication-functions-for-maximum-consensus.html"> Functions to Inspect and Configure the Maximum Consensus Instances of a Group </a> , <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-inspect-write-concurrency"> Inspecting a Group's Write Concurrency </a> </dt> <dt id="ientry-idm46045129794128"> group_replication_group_name system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129767904"> group_replication_group_seeds system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129725056"> group_replication_gtid_assignment_block_size system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129685792"> group_replication_ip_allowlist, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129625792"> group_replication_local_address system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129576688"> group_replication_member_expel_timeout system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129524960"> group_replication_member_weight system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129477936"> group_replication_message_cache_size system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129432832"> group_replication_paxos_single_leader system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129386816"> group_replication_poll_spin_loops system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129351696"> group_replication_preemptive_garbage_collection system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129313936"> group_replication_preemptive_garbage_collection_rows_threshold system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129280240"> group_replication_recovery_compression_algorithms system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129243424"> group_replication_recovery_get_public_key system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129209104"> group_replication_recovery_public_key_path system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129171664"> group_replication_recovery_reconnect_interval system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129136752"> group_replication_recovery_retry_count system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129104080"> group_replication_recovery_ssl_ca system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129070080"> group_replication_recovery_ssl_capath system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129041872"> group_replication_recovery_ssl_cert system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045129007888"> group_replication_recovery_ssl_cipher system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128979824"> group_replication_recovery_ssl_crl system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128951728"> group_replication_recovery_ssl_crlpath system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128923632"> group_replication_recovery_ssl_key system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128889600"> group_replication_recovery_ssl_verify_server_cert system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128858800"> group_replication_recovery_tls_ciphersuites system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128826208"> group_replication_recovery_tls_version system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128787376"> group_replication_recovery_use_ssl system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128755904"> group_replication_recovery_zstd_compression_level system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045193702128"> group_replication_reset_member_actions() function, <a class="indexterm" href="group-replication-functions-for-member-actions.html"> Functions to Set and Reset Group Replication Member Actions </a> </dt> <dt id="ientry-idm46045193977344"> group_replication_set_as_primary() function, <a class="indexterm" href="group-replication-functions-for-new-primary.html"> Function which Configures Group Replication Primary </a> , <a class="indexterm" href="group-replication-change-primary.html"> Changing the Primary </a> </dt> <dt id="ientry-idm46045193790576"> group_replication_set_communication_protocol() function, <a class="indexterm" href="group-replication-functions-for-communication-protocol.html"> Functions to Inspect and Set the Group Replication Communication Protocol Version </a> </dt> <dt id="ientry-idm46045193829392"> group_replication_set_write_concurrency() function, <a class="indexterm" href="group-replication-functions-for-maximum-consensus.html"> Functions to Inspect and Configure the Maximum Consensus Instances of a Group </a> , <a class="indexterm" href="group-replication-group-write-consensus.html#group-replication-configure-write-concurrency"> Configuring a Group's Write Concurrency </a> </dt> <dt id="ientry-idm46045128719520"> group_replication_single_primary_mode system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128681232"> group_replication_ssl_mode system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128637760"> group_replication_start_on_boot system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045251181456"> GROUP_REPLICATION_STREAM privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045193870864"> group_replication_switch_to_multi_primary_mode() function, <a class="indexterm" href="group-replication-functions-for-mode.html"> Functions which Configure the Group Replication Mode </a> , <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-multi"> Changing to Multi-Primary Mode </a> </dt> <dt id="ientry-idm46045193858880"> group_replication_switch_to_single_primary_mode() function, <a class="indexterm" href="group-replication-functions-for-mode.html"> Functions which Configure the Group Replication Mode </a> , <a class="indexterm" href="group-replication-changing-group-mode.html#group-replication-switch-to-single"> Changing to Single-Primary Mode </a> </dt> <dt id="ientry-idm46045128602768"> group_replication_tls_source system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128571296"> group_replication_transaction_size_limit system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128532784"> group_replication_unreachable_majority_timeout, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128487664"> group_replication_view_change_uuid system variable, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt id="ientry-idm46045128440048"> Gr_all_consensus_proposals_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128434592"> Gr_all_consensus_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128427520"> Gr_certification_garbage_collector_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128421888"> Gr_certification_garbage_collector_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128416256"> Gr_consensus_bytes_received_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128410704"> Gr_consensus_bytes_sent_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128398688"> Gr_control_messages_sent_bytes_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128404368"> Gr_control_messages_sent_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128393120"> Gr_control_messages_sent_roundtrip_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128387200"> Gr_data_messages_sent_bytes_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128381600"> Gr_data_messages_sent_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128376000"> Gr_data_messages_sent_roundtrip_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128369968"> Gr_empty_consensus_proposals_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128364496"> Gr_extended_consensus_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128356496"> Gr_last_consensus_end_timestamp status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128350864"> Gr_total_messages_sent_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128344976"> Gr_transactions_consistency_after_sync_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128336576"> Gr_transactions_consistency_after_sync_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128328000"> Gr_transactions_consistency_after_termination_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128319616"> Gr_transactions_consistency_after_termination_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128310704"> Gr_transactions_consistency_before_begin_count status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045128302240"> Gr_transactions_consistency_before_begin_time_sum status variable, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt id="ientry-idm46045244876576"> GSSAPI authentication method </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> </dl> </dd> <dt id="ientry-idm46045244339984"> GSSAPI mode on Windows clients </dt> <dd> <dl> <dt> Kerberos authentication, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045193686672"> GTID functions, <a class="indexterm" href="gtid-functions.html"> Functions Used with Global Transaction Identifiers (GTIDs) </a> </dt> <dt id="ientry-idm46045146385536"> GTID sets </dt> <dd> <dl> <dt> representation, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-concepts-gtid-sets"> GTID Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045146443104"> GTIDs, <a class="indexterm" href="replication-gtids.html"> Replication with Global Transaction Identifiers </a> </dt> <dd> <dl> <dt> and failover, <a class="indexterm" href="replication-gtids-failover.html"> Using GTIDs for Failover and Scaleout </a> </dt> <dt> and scaleout, <a class="indexterm" href="replication-gtids-failover.html"> Using GTIDs for Failover and Scaleout </a> </dt> <dt> assigning to transactions, <a class="indexterm" href="replication-gtids-assign-anon.html"> Replication From a Source Without GTIDs to a Replica With GTIDs </a> </dt> <dt> auto-positioning, <a class="indexterm" href="replication-gtids-auto-positioning.html"> GTID Auto-Positioning </a> </dt> <dt> concepts, <a class="indexterm" href="replication-gtids-concepts.html"> GTID Format and Storage </a> </dt> <dt> gtid_purged, <a class="indexterm" href="replication-gtids-lifecycle.html#replication-gtids-gtid-purged"> The gtid_purged System Variable </a> </dt> <dt> life cycle, <a class="indexterm" href="replication-gtids-lifecycle.html"> GTID Life Cycle </a> </dt> <dt> logging, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table"> mysql.gtid_executed Table </a> </dt> <dt> replication with, <a class="indexterm" href="replication-gtids-howto.html"> Setting Up Replication Using GTIDs </a> </dt> <dt> restrictions, <a class="indexterm" href="replication-gtids-restrictions.html"> Restrictions on Replication with GTIDs </a> </dt> </dl> </dd> <dt id="ientry-idm46045139094400"> gtid_executed system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045259545376"> gtid_executed table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> , <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table"> mysql.gtid_executed Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045139054352"> gtid_executed_compression_period, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045146305296"> gtid_executed_compression_period system variable </dt> <dd> <dl> <dt> mysql.gtid_executed table, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table-compression"> mysql.gtid_executed Table Compression </a> </dt> </dl> </dd> <dt id="ientry-idm46045139011728"> gtid_mode system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045138958240"> gtid_next system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045138879504"> gtid_owned system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045146161456"> gtid_purged, <a class="indexterm" href="replication-gtids-lifecycle.html#replication-gtids-gtid-purged"> The gtid_purged System Variable </a> </dt> <dt id="ientry-idm46045138843408"> gtid_purged system variable, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt id="ientry-idm46045193664448"> GTID_SUBSET(), <a class="indexterm" href="gtid-functions.html"> Functions Used with Global Transaction Identifiers (GTIDs) </a> </dt> <dt id="ientry-idm46045193644336"> GTID_SUBTRACT(), <a class="indexterm" href="gtid-functions.html"> Functions Used with Global Transaction Identifiers (GTIDs) </a> </dt> <dt id="ientry-idm46045032616448"> GUID, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_H"> </a> H </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045182744768"> HANDLER, <a class="indexterm" href="handler.html"> HANDLER Statement </a> </dt> <dt id="ientry-idm46045176040896"> Handlers, <a class="indexterm" href="declare-handler.html"> DECLARE ... HANDLER Statement </a> </dt> <dt id="ientry-idm46045263179520"> Handler_commit status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263172864"> Handler_delete status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045110735232"> Handler_discover status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045263167360"> Handler_external_lock status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263159520"> Handler_mrr_init status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263154048"> Handler_prepare status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263147456"> Handler_read_first status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263140416"> Handler_read_key status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263134848"> Handler_read_last status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263127776"> Handler_read_next status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263122112"> Handler_read_prev status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263115808"> Handler_read_rnd status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263110032"> Handler_read_rnd_next status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263104272"> Handler_rollback status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263098720"> Handler_savepoint status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263093280"> Handler_savepoint_rollback status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263087776"> Handler_update status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263082400"> Handler_write status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045032609792"> hash index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045227232608"> hash indexes, <a class="indexterm" href="index-btree-hash.html"> Comparison of B-Tree and Hash Indexes </a> </dt> <dt id="ientry-idm46045084335856"> hash partitioning, <a class="indexterm" href="partitioning-hash.html"> HASH Partitioning </a> </dt> <dt id="ientry-idm46045083734704"> hash partitions </dt> <dd> <dl> <dt> managing, <a class="indexterm" href="partitioning-management-hash-key.html"> Management of HASH and KEY Partitions </a> </dt> <dt> splitting and merging, <a class="indexterm" href="partitioning-management-hash-key.html"> Management of HASH and KEY Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045240268064"> HashiCorp Vault </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="keyring-hashicorp-plugin.html#keyring-hashicorp-vault-configuration"> HashiCorp Vault Setup </a> </dt> </dl> </dd> <dt id="ientry-idm46045240313408"> HashiCorp Vault certificate and key files </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="keyring-hashicorp-plugin.html#keyring-hashicorp-certificate-configuration"> Certificate and Key Preparation </a> </dt> </dl> </dd> <dt id="ientry-idm46045089168528"> hash_maps </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-hash-maps.html"> The ndbinfo hash_maps Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045275261984"> have_compress system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275251872"> have_dynamic_loading system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275240880"> have_geometry system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275234112"> have_profiling system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045328008032"> HAVE_PSI_MEMORY_INTERFACE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045275225312"> have_query_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275217936"> have_rtree_keys system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275209648"> have_statement_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045275187360"> have_symlink system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045180883152"> HAVING clause, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045032598272"> HDD, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045079519056"> header file </dt> <dd> <dl> <dt> keyword_list.h, <a class="indexterm" href="information-schema-keywords-table.html"> The INFORMATION_SCHEMA KEYWORDS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045097693424"> header option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045320742560"> header-file option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045148717952"> HEAP storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="memory-storage-engine.html"> The MEMORY Storage Engine </a> </dt> <dt id="ientry-idm46045032593104"> heartbeat, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045117753680"> HeartbeatIntervalDbApi, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117778448"> HeartbeatIntervalDbDb, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045120039280"> HeartbeatIntervalMgmdMgmd </dt> <dd> <dl> <dt> management nodes, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045117729248"> HeartbeatOrder, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045120129728"> HeartbeatThreadPriority, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045317892992"> help command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045094529216"> HELP command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045321879648"> help option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config_editor, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> perror, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045307508640"> HELP option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045167898720"> HELP statement, <a class="indexterm" href="help.html"> HELP Statement </a> </dt> <dt id="ientry-idm46045259598944"> help tables </dt> <dd> <dl> <dt> system tables, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259594720"> help_category table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259590208"> help_keyword table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259585696"> help_relation table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259581184"> help_topic table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045099214784"> hex option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045205978320"> HEX(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> , <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045312847568"> hex-blob option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045220206816"> hexadecimal literal introducer, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> <dt id="ientry-idm46045220231696"> hexadecimal literals, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> <dd> <dl> <dt> bit operations, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045304492912"> hexdump option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045032587440"> high-water mark, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045261539536"> HIGH_NOT_PRECEDENCE SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045182307440"> HIGH_PRIORITY </dt> <dd> <dl> <dt> INSERT modifier, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045223566496"> hintable </dt> <dd> <dl> <dt> system variable, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-set-var"> Variable-Setting Hint Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045333529744"> hints, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> <dd> <dl> <dt> index, <a class="indexterm" href="index-hints.html"> Index Hints </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> optimizer, <a class="indexterm" href="optimizer-hints.html"> Optimizer Hints </a> </dt> </dl> </dd> <dt id="ientry-idm46045319101680"> histignore option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045275173328"> histogram_generation_max_mem_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032583888"> history list, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045335067536"> history of MySQL, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> <dt id="ientry-idm46045032570384"> hole punching, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045317480224"> HOME environment variable, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045032564880"> host, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045260885936"> host cache, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> </dt> <dt id="ientry-idm46045322801696"> host name </dt> <dd> <dl> <dt> default, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045260887008"> host name caching, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> </dt> <dt id="ientry-idm46045260888080"> host name resolution, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> </dt> <dt id="ientry-idm46045326678864"> host names, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> <dd> <dl> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> in default account, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt> in role names, <a class="indexterm" href="role-names.html"> Specifying Role Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045323491136"> host option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045120356496"> HostName, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045087094720"> HostName (NDB Cluster), <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt id="ientry-idm46045275095696"> hostname system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045109520624"> HostName1, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045109498688"> HostName2, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045072067280"> hosts table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-hosts-table.html"> The hosts Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045260883376"> host_cache table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> , <a class="indexterm" href="performance-schema-host-cache-table.html"> The host_cache Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045063366704"> host_summary view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary.html"> The host_summary and x$host_summary Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063330144"> host_summary_by_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-file-io.html"> The host_summary_by_file_io and x$host_summary_by_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063310800"> host_summary_by_file_io_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-file-io-type.html"> The host_summary_by_file_io_type and x$host_summary_by_file_io_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063287408"> host_summary_by_stages view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-stages.html"> The host_summary_by_stages and x$host_summary_by_stages Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063264112"> host_summary_by_statement_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-statement-latency.html"> The host_summary_by_statement_latency and x$host_summary_by_statement_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063230960"> host_summary_by_statement_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-statement-type.html"> The host_summary_by_statement_type and x$host_summary_by_statement_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045032558096"> hot, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032553712"> hot backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045204720416"> HOUR(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045319061184"> html option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045089150512"> hwinfo </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-hwinfo.html"> The ndbinfo hwinfo Table </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_I"> </a> I </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045318384160"> i-am-a-dummy option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045032541552"> ib-file set, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032519696"> ibbackup_logfile, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032509552"> .ibd file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045308545520"> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dd> <dl> <dt> debug option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> dump-file option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> help option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> id option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> no-check option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> pretty option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> skip-data option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> strict-check option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> type option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> version option, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045185417328"> ibdata file, <a class="indexterm" href="create-table-files.html"> Files Created by CREATE TABLE </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032479504"> ibtmp file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032467952"> .ibz file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032528416"> ib_logfile, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045332657184"> icc </dt> <dd> <dl> <dt> MySQL builds, <a class="indexterm" href="compiler-characteristics.html"> Compiler-Specific Build Characteristics </a> </dt> </dl> </dd> <dt id="ientry-idm46045198649760"> ICU_VERSION(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045120454816"> Id, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045308413552"> id option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045304459872"> idempotent option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045220079968"> identifiers, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> <dt> quoting, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045275075040"> identity system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045102578512"> idlesleep option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102555488"> idlespin option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045176311136"> IF, <a class="indexterm" href="if.html"> IF Statement </a> </dt> <dt id="ientry-idm46045206655344"> IF(), <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> <dt id="ientry-idm46045206618816"> IFNULL(), <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> <dt id="ientry-idm46045261117168"> IGNORE </dt> <dd> <dl> <dt> DELETE modifier, <a class="indexterm" href="delete.html"> DELETE Statement </a> </dt> <dt> INSERT modifier, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt> LOAD DATA modifier, <a class="indexterm" href="load-data.html#load-data-error-handling"> Duplicate-Key and Error Handling </a> </dt> <dt> UPDATE modifier, <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> <dt> with partitioned tables, <a class="indexterm" href="sql-mode.html#ignore-strict-comparison"> Comparison of the IGNORE Keyword and Strict SQL Mode </a> , <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045223453504"> IGNORE INDEX, <a class="indexterm" href="index-hints.html"> Index Hints </a> </dt> <dt id="ientry-idm46045223452432"> IGNORE KEY, <a class="indexterm" href="index-hints.html"> Index Hints </a> </dt> <dt id="ientry-idm46045311371200"> ignore option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312591872"> ignore-error option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045099203440"> ignore-extended-pk-updates option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045311356816"> ignore-lines option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045319049584"> ignore-spaces option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045312575040"> ignore-table option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312558912"> ignore-views option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045327999808"> IGNORE_AIO_CHECK option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045261525296"> IGNORE_SPACE SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045032456656"> ilist, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045136111952"> immediate_commit_timestamp, <a class="indexterm" href="replication-delayed.html"> Delayed Replication </a> </dt> <dt id="ientry-idm46045144391200"> immediate_server_version system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045210876160"> implicit default values, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> </dt> <dt id="ientry-idm46045228867856"> implicit GROUP BY sorting, <a class="indexterm" href="order-by-optimization.html#order-by-index-use"> Use of Indexes to Satisfy ORDER BY </a> </dt> <dt id="ientry-idm46045032452544"> implicit row lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045182664576"> IMPORT TABLE, <a class="indexterm" href="import-table.html"> IMPORT TABLE Statement </a> </dt> <dt id="ientry-idm46045188808496"> IMPORT TABLESPACE, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="innodb-migration.html"> Moving or Copying InnoDB Tables </a> </dt> <dt id="ientry-idm46045317348640"> importing </dt> <dd> <dl> <dt> data, <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045091861552"> importing data </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-importing-data.html"> Importing Data Into MySQL Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045180020448"> IN, <a class="indexterm" href="any-in-some-subqueries.html"> Subqueries with ANY, IN, or SOME </a> </dt> <dt id="ientry-idm46045207208912"> IN(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045320724992"> in-file-errlog option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045320707408"> in-file-toclient option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045032449152"> in-memory database, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045303036992"> include option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045099174816"> include-databases option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045304441904"> include-gtids option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045313157936"> include-master-host-port option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313179536"> include-source-host-port option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045099157776"> include-stored-grants option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045099143536"> include-tables option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045146899232"> increasing with replication </dt> <dd> <dl> <dt> speed, <a class="indexterm" href="replication.html"> Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045032437424"> incremental backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045230820256"> incremental recovery, <a class="indexterm" href="point-in-time-recovery.html"> Point-in-Time (Incremental) Recovery </a> </dt> <dd> <dl> <dt> using NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-pitr.html"> Point-In-Time Recovery Using NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045325859328"> index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> deleting, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="drop-index.html"> DROP INDEX Statement </a> </dt> <dt> rebuilding, <a class="indexterm" href="rebuilding-tables.html"> Rebuilding or Repairing Tables or Indexes </a> </dt> <dt> sorted index builds, <a class="indexterm" href="sorted-index-builds.html"> Sorted Index Builds </a> </dt> </dl> </dd> <dt id="ientry-idm46045223811040"> INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045032402400"> index cache, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032394080"> index condition pushdown, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045135653104"> INDEX DIRECTORY </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-directory.html"> Replication and DIRECTORY Table Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045230043600"> index dives </dt> <dd> <dl> <dt> range optimization, <a class="indexterm" href="range-optimization.html#equality-range-optimization"> Equality Range Optimization of Many-Valued Comparisons </a> </dt> </dl> </dd> <dt id="ientry-idm46045162084896"> index dives (for statistics estimation), <a class="indexterm" href="innodb-statistics-estimation.html"> Configuring Non-Persistent Optimizer Statistics Parameters </a> </dt> <dt id="ientry-idm46045227152256"> index extensions, <a class="indexterm" href="index-extensions.html"> Use of Index Extensions </a> </dt> <dt id="ientry-idm46045032387792"> index hint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045223458208"> index hints, <a class="indexterm" href="index-hints.html"> Index Hints </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045225090464"> index join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045032380944"> index prefix, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045082926400"> index prefixes </dt> <dd> <dl> <dt> partitioning, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> </dl> </dd> <dt id="ientry-idm46045251705936"> INDEX privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045114789648"> index statistics </dt> <dd> <dl> <dt> NDB, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045163882848"> index-record lock </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045228280528"> indexed temporary table </dt> <dd> <dl> <dt> semijoin strategy, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> </dl> </dd> <dt id="ientry-idm46045274725856"> indexes, <a class="indexterm" href="create-index.html"> CREATE INDEX Statement </a> </dt> <dd> <dl> <dt> and BLOB columns, <a class="indexterm" href="column-indexes.html#column-indexes-prefix"> Index Prefixes </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> and IS NULL, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> <dt> and LIKE, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> <dt> and ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> and NULL values, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> and TEXT columns, <a class="indexterm" href="column-indexes.html#column-indexes-prefix"> Index Prefixes </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> assigning to key cache, <a class="indexterm" href="cache-index.html"> CACHE INDEX Statement </a> </dt> <dt> BLOB columns, <a class="indexterm" href="create-index.html#create-index-column-prefixes"> Column Prefix Key Parts </a> </dt> <dt> block size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> column prefixes, <a class="indexterm" href="column-indexes.html#column-indexes-prefix"> Index Prefixes </a> </dt> <dt> columns, <a class="indexterm" href="column-indexes.html"> Column Indexes </a> </dt> <dt> descending, <a class="indexterm" href="descending-indexes.html"> Descending Indexes </a> </dt> <dt> leftmost prefix of, <a class="indexterm" href="mysql-indexes.html"> How MySQL Uses Indexes </a> , <a class="indexterm" href="multiple-column-indexes.html"> Multiple-Column Indexes </a> </dt> <dt> multi-column, <a class="indexterm" href="multiple-column-indexes.html"> Multiple-Column Indexes </a> </dt> <dt> multiple-part, <a class="indexterm" href="create-index.html"> CREATE INDEX Statement </a> </dt> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt> TEXT columns, <a class="indexterm" href="create-index.html#create-index-column-prefixes"> Column Prefix Key Parts </a> </dt> <dt> TIMESTAMP lookups, <a class="indexterm" href="timestamp-lookups.html"> Indexed Lookups from TIMESTAMP Columns </a> </dt> <dt> use of, <a class="indexterm" href="mysql-indexes.html"> How MySQL Uses Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045259817152"> indexes table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045119629008"> IndexMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045114785232"> IndexStatAutoCreate </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114764256"> IndexStatAutoUpdate </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114711088"> IndexStatSaveScale </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114740544"> IndexStatSaveSize </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114686352"> IndexStatTriggerPct </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114662352"> IndexStatTriggerScale </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114639136"> IndexStatUpdateDelay </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045089129056"> index_columns </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-index-columns.html"> The ndbinfo index_columns Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259831968"> index_column_usage table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045223796224"> INDEX_MERGE, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045225150272"> index_merge join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045259827424"> index_partitions table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045089102352"> index_stats </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-index-stats.html"> The ndbinfo index_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259821648"> index_stats table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045225130000"> index_subquery join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045184639456"> indirect indexes </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-secondary-indexes.html#json-column-indirect-index"> Indexing a Generated Column to Provide a JSON Column Index </a> </dt> </dl> </dd> <dt id="ientry-idm46045190895840"> INET6_ATON(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190851648"> INET6_NTOA(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190933104"> INET_ATON(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190908144"> INET_NTOA(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045032374800"> infimum record, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045092892000"> INFO Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045308245632"> info option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045199035648"> information functions, <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045307158944"> information option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045151425536"> INFORMATION SCHEMA </dt> <dd> <dl> <dt> InnoDB tables, <a class="indexterm" href="innodb-information-schema.html"> InnoDB INFORMATION_SCHEMA Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045216846736"> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema.html"> INFORMATION_SCHEMA Tables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> and security issues, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> <dt> collation and searching, <a class="indexterm" href="charset-collation-information-schema.html"> Using Collation in INFORMATION_SCHEMA Searches </a> </dt> <dt> connection-control table reference, <a class="indexterm" href="information-schema-connection-control-table-reference.html"> INFORMATION_SCHEMA Connection-Control Table Reference </a> </dt> <dt> connection-control tables, <a class="indexterm" href="connection-control-information-schema-tables.html"> INFORMATION_SCHEMA Connection-Control Tables </a> </dt> <dt> firewall table reference, <a class="indexterm" href="information-schema-firewall-table-reference.html"> INFORMATION_SCHEMA Firewall Table Reference </a> </dt> <dt> general table reference, <a class="indexterm" href="information-schema-general-table-reference.html"> INFORMATION_SCHEMA General Table Reference </a> </dt> <dt> general tables, <a class="indexterm" href="general-information-schema-tables.html"> INFORMATION_SCHEMA General Tables </a> </dt> <dt> InnoDB table reference, <a class="indexterm" href="information-schema-innodb-table-reference.html"> INFORMATION_SCHEMA InnoDB Table Reference </a> </dt> <dt> InnoDB tables, <a class="indexterm" href="innodb-information-schema-tables.html"> INFORMATION_SCHEMA InnoDB Tables </a> </dt> <dt> INNODB_CMP table, <a class="indexterm" href="innodb-information-schema-innodb_cmp.html"> INNODB_CMP and INNODB_CMP_RESET </a> </dt> <dt> INNODB_CMPMEM table, <a class="indexterm" href="innodb-information-schema-innodb_cmpmem.html"> INNODB_CMPMEM and INNODB_CMPMEM_RESET </a> </dt> <dt> INNODB_CMPMEM_RESET table, <a class="indexterm" href="innodb-information-schema-innodb_cmpmem.html"> INNODB_CMPMEM and INNODB_CMPMEM_RESET </a> </dt> <dt> INNODB_CMP_RESET table, <a class="indexterm" href="innodb-information-schema-innodb_cmp.html"> INNODB_CMP and INNODB_CMP_RESET </a> </dt> <dt> INNODB_TRX table, <a class="indexterm" href="innodb-information-schema-transactions.html"> InnoDB INFORMATION_SCHEMA Transaction and Locking Information </a> </dt> <dt> MySQL Enterprise Firewall tables, <a class="indexterm" href="firewall-information-schema-tables.html"> INFORMATION_SCHEMA MySQL Enterprise Firewall Tables </a> </dt> <dt> table reference, <a class="indexterm" href="information-schema-table-reference.html"> INFORMATION_SCHEMA Table Reference </a> </dt> <dt> thread pool table reference, <a class="indexterm" href="information-schema-thread-pool-table-reference.html"> INFORMATION_SCHEMA Thread Pool Table Reference </a> </dt> <dt> Thread pool tables, <a class="indexterm" href="thread-pool-information-schema-tables.html"> INFORMATION_SCHEMA Thread Pool Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045227780544"> INFORMATION_SCHEMA queries </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="information-schema-optimization.html"> Optimizing INFORMATION_SCHEMA Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045087233840"> INFORMATION_SCHEMA.ENGINES table </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045087136176"> INFORMATION_SCHEMA.PLUGINS table </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045275026736"> information_schema_stats_expiry system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045333669424"> INFO_BIN file </dt> <dd> <dl> <dt> binary distribution configuration options, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> , <a class="indexterm" href="source-installation.html"> Installing MySQL from Source </a> </dt> </dl> </dd> <dt id="ientry-idm46045221648896"> init </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221883296"> Init DB </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045319036320"> init-command option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045319023968"> init-command-add option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045118762592"> InitFragmentLogFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045108151168"> initial option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045108111280"> initial-start option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045279956176"> initialize option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279919744"> initialize-insecure option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045220932224"> Initialized </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045115077360"> InitialLogFileGroup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118783536"> InitialNoOfOpenFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115032576"> InitialTablespace, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045275066880"> init_connect system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274961120"> init_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045143286544"> init_replica system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045143252976"> init_slave system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045252396832"> injection </dt> <dd> <dl> <dt> SQL, <a class="indexterm" href="secure-client-programming.html#client-external-data-handling"> Handle External Data Properly </a> , <a class="indexterm" href="firewall.html"> MySQL Enterprise Firewall </a> , <a class="indexterm" href="xml-functions.html"> XML Functions </a> , <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> </dt> <dt> XPath code, <a class="indexterm" href="xml-functions.html"> XML Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045180539232"> INNER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045324393424"> innochecksum, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dd> <dl> <dt> allow-mismatches option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> count option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> end-page option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> help option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> info option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> log option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> no-check option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> page option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> page-type-dump option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> page-type-summary option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> read from standard in option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> start-page option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> strict-check option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> verbose option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> version option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> write option, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045334994576"> InnoDB, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> adaptive hash index, <a class="indexterm" href="innodb-adaptive-hash.html"> Adaptive Hash Index </a> </dt> <dt> and application feature requirements, <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> application performance, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-application-performance"> Application Performance Considerations </a> </dt> <dt> applications supported, <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> </dt> <dt> architecture, <a class="indexterm" href="innodb-architecture.html"> InnoDB Architecture </a> </dt> <dt> asynchronous I/O, <a class="indexterm" href="innodb-linux-native-aio.html"> Using Asynchronous I/O on Linux </a> </dt> <dt> auto-inc lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> auto-increment columns, <a class="indexterm" href="innodb-auto-increment-handling.html"> AUTO_INCREMENT Handling in InnoDB </a> </dt> <dt> autocommit mode, <a class="indexterm" href="innodb-autocommit-commit-rollback.html"> autocommit, Commit, and Rollback </a> , <a class="indexterm" href="innodb-autocommit-commit-rollback.html#innodb-transactions-with-different-apis"> Grouping DML Operations with Transactions </a> </dt> <dt> availability, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> </dt> <dt> backups, <a class="indexterm" href="innodb-backup.html"> InnoDB Backup </a> </dt> <dt> buffer pool, <a class="indexterm" href="innodb-buffer-pool-in-core-file.html"> Excluding or Including Buffer Pool Pages from Core Files </a> </dt> <dt> change buffer, <a class="indexterm" href="innodb-change-buffer.html"> Change Buffer </a> </dt> <dt> changed system variable default values, <a class="indexterm" href="mysql-nutshell.html#mysql-nutshell-additions"> Features Added or Changed in MySQL 8.4 </a> </dt> <dt> checkpoints, <a class="indexterm" href="innodb-checkpoints.html"> InnoDB Checkpoints </a> </dt> <dt> clustered index, <a class="indexterm" href="innodb-index-types.html"> Clustered and Secondary Indexes </a> </dt> <dt> COMPACT row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compact"> COMPACT Row Format </a> </dt> <dt> compared to NDB Cluster, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-engines.html"> Differences Between the NDB and InnoDB Storage Engines </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> configuration parameters, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> consistent reads, <a class="indexterm" href="innodb-consistent-read.html"> Consistent Nonlocking Reads </a> </dt> <dt> corruption, <a class="indexterm" href="innodb-recovery.html#innodb-corruption-disk-failure-recovery"> Recovery from Data Corruption or Disk Failure </a> </dt> <dt> crash recovery, <a class="indexterm" href="innodb-recovery.html#innodb-crash-recovery"> InnoDB Crash Recovery </a> , <a class="indexterm" href="innodb-recovery.html#innodb-recovery-tablespace-discovery"> Tablespace Discovery During Crash Recovery </a> </dt> <dt> creating tables, <a class="indexterm" href="using-innodb-tables.html"> Creating InnoDB Tables </a> </dt> <dt> data files, <a class="indexterm" href="innodb-system-tablespace.html#innodb-resize-system-tablespace"> Resizing the System Tablespace </a> </dt> <dt> deadlock detection, <a class="indexterm" href="innodb-deadlock-detection.html"> Deadlock Detection </a> </dt> <dt> deadlock example, <a class="indexterm" href="innodb-deadlock-example.html"> An InnoDB Deadlock Example </a> </dt> <dt> deadlocks, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-deadlock"> Handling Deadlocks </a> , <a class="indexterm" href="innodb-deadlocks.html"> Deadlocks in InnoDB </a> , <a class="indexterm" href="innodb-deadlock-detection.html"> Deadlock Detection </a> </dt> <dt> disk failure, <a class="indexterm" href="innodb-recovery.html#innodb-corruption-disk-failure-recovery"> Recovery from Data Corruption or Disk Failure </a> </dt> <dt> disk I/O, <a class="indexterm" href="innodb-disk-io.html"> InnoDB Disk I/O </a> </dt> <dt> disk I/O optimization, <a class="indexterm" href="optimizing-innodb-diskio.html"> Optimizing InnoDB Disk I/O </a> </dt> <dt> DYNAMIC row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-dynamic"> DYNAMIC Row Format </a> , <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compressed"> COMPRESSED Row Format </a> </dt> <dt> exclusive lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> file space management, <a class="indexterm" href="innodb-file-space.html"> File Space Management </a> </dt> <dt> file-per-table tablespace, <a class="indexterm" href="innodb-file-per-table-tablespaces.html"> File-Per-Table Tablespaces </a> </dt> <dt> files, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-understand-files"> Understanding Files Associated with InnoDB Tables </a> </dt> <dt> full-text indexes, <a class="indexterm" href="innodb-fulltext-index.html"> InnoDB Full-Text Indexes </a> </dt> <dt> gap lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> <dt> in-memory structures, <a class="indexterm" href="innodb-in-memory-structures.html"> InnoDB In-Memory Structures </a> </dt> <dt> index-record lock, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> <dt> insert-intention lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> intention lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> limitations, <a class="indexterm" href="innodb-restrictions-limitations.html"> InnoDB Restrictions and Limitations </a> </dt> <dt> limits, <a class="indexterm" href="innodb-limits.html"> InnoDB Limits </a> </dt> <dt> Linux, <a class="indexterm" href="innodb-linux-native-aio.html"> Using Asynchronous I/O on Linux </a> </dt> <dt> lock modes, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> locking, <a class="indexterm" href="innodb-locking-transaction-model.html"> InnoDB Locking and Transaction Model </a> , <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="innodb-locks-set.html"> Locks Set by Different SQL Statements in InnoDB </a> </dt> <dt> locking reads, <a class="indexterm" href="innodb-locking-reads.html"> Locking Reads </a> </dt> <dt> memory usage, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-memory-usage"> Adjusting Memory Usage for MyISAM and InnoDB </a> </dt> <dt> migrating tables, <a class="indexterm" href="innodb-migration.html"> Moving or Copying InnoDB Tables </a> </dt> <dt> Monitors, <a class="indexterm" href="innodb-troubleshooting.html"> InnoDB Troubleshooting </a> </dt> <dt> multi-versioning, <a class="indexterm" href="innodb-multi-versioning.html"> InnoDB Multi-Versioning </a> </dt> <dt> next-key lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> <dt> NFS, <a class="indexterm" href="innodb-init-startup-configuration.html#innodb-startup-storage-considerations"> Important Storage Considerations </a> </dt> <dt> on-disk structures, <a class="indexterm" href="innodb-on-disk-structures.html"> InnoDB On-Disk Structures </a> </dt> <dt> online DDL, <a class="indexterm" href="innodb-online-ddl.html"> InnoDB and Online DDL </a> </dt> <dt> page size, <a class="indexterm" href="innodb-physical-structure.html"> The Physical Structure of an InnoDB Index </a> </dt> <dt> physical index structure, <a class="indexterm" href="innodb-physical-structure.html"> The Physical Structure of an InnoDB Index </a> </dt> <dt> point-in-time recovery, <a class="indexterm" href="innodb-recovery.html#innodb-recovery-point-in-time"> Point-in-Time Recovery </a> </dt> <dt> primary keys, <a class="indexterm" href="using-innodb-tables.html#innodb-tables-primary-key"> Primary Keys </a> , <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-primary-key"> Defining Primary Keys </a> </dt> <dt> raw partitions, <a class="indexterm" href="innodb-system-tablespace.html#innodb-raw-devices"> Using Raw Disk Partitions for the System Tablespace </a> </dt> <dt> record-level locks, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> <dt> recovery, <a class="indexterm" href="innodb-recovery.html"> InnoDB Recovery </a> </dt> <dt> redo log, <a class="indexterm" href="innodb-redo-log.html"> Redo Log </a> , <a class="indexterm" href="innodb-redo-log.html#innodb-modifying-redo-log-capacity"> Configuring Redo Log Capacity </a> </dt> <dt> REDUNDANT row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-redundant"> REDUNDANT Row Format </a> </dt> <dt> replication, <a class="indexterm" href="innodb-and-mysql-replication.html"> InnoDB and MySQL Replication </a> </dt> <dt> restrictions, <a class="indexterm" href="innodb-restrictions-limitations.html"> InnoDB Restrictions and Limitations </a> </dt> <dt> row format, <a class="indexterm" href="using-innodb-tables.html#innodb-tables-row-format"> Row Formats </a> , <a class="indexterm" href="innodb-row-format.html#innodb-row-format-detrmining"> Determining the Row Format of a Table </a> </dt> <dt> secondary index, <a class="indexterm" href="innodb-index-types.html"> Clustered and Secondary Indexes </a> </dt> <dt> shared lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> Solaris issues, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt> sorted index builds, <a class="indexterm" href="sorted-index-builds.html"> Sorted Index Builds </a> </dt> <dt> storage, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-storage-requirements"> Storage Requirements </a> </dt> <dt> storage layout, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-plan-storage"> Storage Layout </a> </dt> <dt> system variables, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> table properties, <a class="indexterm" href="using-innodb-tables.html#innodb-viewing-table-properties"> Viewing InnoDB Table Properties </a> </dt> <dt> tables, <a class="indexterm" href="innodb-tables.html"> Tables </a> </dt> <dd> <dl> <dt> converting from other storage engines, <a class="indexterm" href="converting-tables-to-innodb.html"> Converting Tables from MyISAM to InnoDB </a> </dt> </dl> </dd> <dt> transaction model, <a class="indexterm" href="innodb-locking-transaction-model.html"> InnoDB Locking and Transaction Model </a> , <a class="indexterm" href="innodb-transaction-model.html"> InnoDB Transaction Model </a> </dt> <dt> transactions, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-transactions"> Handling Too-Long Or Too-Short Transactions </a> </dt> <dt> transferring data, <a class="indexterm" href="converting-tables-to-innodb.html#innodb-convert-transfer"> Transferring Data </a> </dt> <dt> troubleshooting, <a class="indexterm" href="innodb-troubleshooting.html"> InnoDB Troubleshooting </a> </dt> <dd> <dl> <dt> cannot open datafile, <a class="indexterm" href="innodb-troubleshooting-datadict.html#innodb-cannot-open-data-file-error"> Cannot Open Datafile </a> </dt> <dt> data dictionary problems, <a class="indexterm" href="innodb-troubleshooting-datadict.html"> Troubleshooting InnoDB Data Dictionary Operations </a> </dt> <dt> deadlocks, <a class="indexterm" href="innodb-deadlocks.html"> Deadlocks in InnoDB </a> , <a class="indexterm" href="innodb-deadlock-detection.html"> Deadlock Detection </a> </dt> <dt> defragmenting tables, <a class="indexterm" href="innodb-file-defragmenting.html"> Defragmenting a Table </a> </dt> <dt> I/O problems, <a class="indexterm" href="error-creating-innodb.html"> Troubleshooting InnoDB I/O Problems </a> </dt> <dt> online DDL, <a class="indexterm" href="innodb-online-ddl-limitations.html"> Online DDL Limitations </a> </dt> <dt> performance problems, <a class="indexterm" href="optimizing-innodb.html"> Optimizing for InnoDB Tables </a> </dt> <dt> recovery problems, <a class="indexterm" href="forcing-innodb-recovery.html"> Forcing InnoDB Recovery </a> </dt> <dt> restoring orphan ibd files, <a class="indexterm" href="innodb-troubleshooting-datadict.html#restoring-orphaned-ibd-files"> Restoring Orphan File-Per-Table ibd Files </a> </dt> <dt> SQL errors, <a class="indexterm" href="innodb-error-handling.html"> InnoDB Error Handling </a> </dt> </dl> </dd> </dl> </dd> <dt id="ientry-idm46045223115296"> InnoDB buffer pool, <a class="indexterm" href="innodb-buffer-pool-optimization.html"> InnoDB Buffer Pool Optimization </a> , <a class="indexterm" href="innodb-buffer-pool.html#innodb-buffer-pool-monitoring"> Monitoring the Buffer Pool Using the InnoDB Standard Monitor </a> , <a class="indexterm" href="innodb-buffer-pool-resize.html"> Configuring InnoDB Buffer Pool Size </a> , <a class="indexterm" href="innodb-multiple-buffer-pools.html"> Configuring Multiple Buffer Pool Instances </a> , <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> , <a class="indexterm" href="innodb-performance-read_ahead.html"> Configuring InnoDB Buffer Pool Prefetching (Read-Ahead) </a> , <a class="indexterm" href="innodb-preload-buffer-pool.html"> Saving and Restoring the Buffer Pool State </a> </dt> <dt id="ientry-idm46045124525200"> InnoDB Cluster </dt> <dd> <dl> <dt> introduction, <a class="indexterm" href="mysql-innodb-cluster-introduction.html"> InnoDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045149443120"> InnoDB Monitors, <a class="indexterm" href="innodb-monitors.html"> InnoDB Monitors </a> </dt> <dd> <dl> <dt> enabling, <a class="indexterm" href="innodb-enabling-monitors.html"> Enabling InnoDB Monitors </a> </dt> <dt> output, <a class="indexterm" href="innodb-standard-monitor.html"> InnoDB Standard Monitor and Lock Monitor Output </a> </dt> </dl> </dd> <dt id="ientry-idm46045164423616"> InnoDB predicate locks, <a class="indexterm" href="innodb-locking.html#innodb-predicate-locks"> Predicate Locks for Spatial Indexes </a> </dt> <dt id="ientry-idm46045124488768"> InnoDB ReplicaSet </dt> <dd> <dl> <dt> introduction, <a class="indexterm" href="mysql-innodb-replicaset-introduction.html"> InnoDB ReplicaSet </a> </dt> </dl> </dd> <dt id="ientry-idm46045167490240"> InnoDB storage engine, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> , <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> </dt> <dt id="ientry-idm46045077899568"> InnoDB table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-innodb-table-reference.html"> INFORMATION_SCHEMA InnoDB Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045210750080"> InnoDB tables </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-innodb"> InnoDB Table Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045157426144"> innodb-dedicated-server mysqld </dt> <dd> <dl> <dt> option, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045157381552"> innodb-status-file option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045157353568"> innodb_adaptive_flushing system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157322784"> innodb_adaptive_flushing_lwm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162778816"> innodb_adaptive_hash_index </dt> <dd> <dl> <dt> and innodb_thread_concurrency, <a class="indexterm" href="innodb-performance-thread_concurrency.html"> Configuring Thread Concurrency for InnoDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045157289600"> innodb_adaptive_hash_index system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157256064"> innodb_adaptive_hash_index_parts variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157223728"> innodb_adaptive_max_sleep_delay system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157184176"> innodb_autoextend_increment system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045032341760"> innodb_autoinc_lock_mode, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045157143568"> innodb_autoinc_lock_mode system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157109440"> innodb_background_drop_list_empty system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077795008"> INNODB_BUFFER_PAGE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-buffer-page-table.html"> The INFORMATION_SCHEMA INNODB_BUFFER_PAGE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045077602416"> INNODB_BUFFER_PAGE_LRU </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-buffer-page-lru-table.html"> The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045263051760"> Innodb_buffer_pool_bytes_data status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263028896"> Innodb_buffer_pool_bytes_dirty status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045157080768"> innodb_buffer_pool_chunk_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045157009264"> innodb_buffer_pool_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156979072"> innodb_buffer_pool_dump_at_shutdown system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156943904"> innodb_buffer_pool_dump_now system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156905040"> innodb_buffer_pool_dump_pct system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045263076880"> Innodb_buffer_pool_dump_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045156872896"> innodb_buffer_pool_filename system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156802944"> innodb_buffer_pool_instances system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162870240"> innodb_buffer_pool_in_core_file option, <a class="indexterm" href="innodb-buffer-pool-in-core-file.html"> Excluding or Including Buffer Pool Pages from Core Files </a> </dt> <dt id="ientry-idm46045156836512"> innodb_buffer_pool_in_core_file system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156752416"> innodb_buffer_pool_load_abort system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156716688"> innodb_buffer_pool_load_at_startup system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156682928"> innodb_buffer_pool_load_now system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045263065840"> Innodb_buffer_pool_load_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263041312"> Innodb_buffer_pool_pages_data status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263018752"> Innodb_buffer_pool_pages_dirty status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263010752"> Innodb_buffer_pool_pages_flushed status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045263001952"> Innodb_buffer_pool_pages_free status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262993952"> Innodb_buffer_pool_pages_latched status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262984352"> Innodb_buffer_pool_pages_misc status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262968256"> Innodb_buffer_pool_pages_total status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262925888"> Innodb_buffer_pool_reads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262956912"> Innodb_buffer_pool_read_ahead status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262947936"> Innodb_buffer_pool_read_ahead_evicted status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262938096"> Innodb_buffer_pool_read_ahead_rnd status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262931312"> Innodb_buffer_pool_read_requests status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262918592"> Innodb_buffer_pool_resize_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262907824"> Innodb_buffer_pool_resize_status_code variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262890448"> Innodb_buffer_pool_resize_status_progress variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045156648848"> innodb_buffer_pool_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077425312"> INNODB_BUFFER_POOL_STATS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-buffer-pool-stats-table.html"> The INFORMATION_SCHEMA INNODB_BUFFER_POOL_STATS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045262880256"> Innodb_buffer_pool_wait_free status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262868464"> Innodb_buffer_pool_write_requests status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045063195600"> innodb_buffer_stats_by_schema view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-buffer-stats-by-schema.html"> The innodb_buffer_stats_by_schema and x$innodb_buffer_stats_by_schema Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063164736"> innodb_buffer_stats_by_table view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-buffer-stats-by-table.html"> The innodb_buffer_stats_by_table and x$innodb_buffer_stats_by_table Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045077331680"> INNODB_CACHED_INDEXES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cached-indexes-table.html"> The INFORMATION_SCHEMA INNODB_CACHED_INDEXES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045166986640"> innodb_change_buffering, <a class="indexterm" href="innodb-change-buffer.html#innodb-change-buffer-configuration"> Configuring Change Buffering </a> </dt> <dt id="ientry-idm46045156550784"> innodb_change_buffering system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156479408"> innodb_change_buffering_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156585376"> innodb_change_buffer_max_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156446208"> innodb_checkpoint_disabled system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156417712"> innodb_checksum_algorithm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077299632"> INNODB_CMP </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmp-table.html"> The INFORMATION_SCHEMA INNODB_CMP and INNODB_CMP_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077254480"> INNODB_CMPMEM </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmpmem-table.html"> The INFORMATION_SCHEMA INNODB_CMPMEM and INNODB_CMPMEM_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077253024"> INNODB_CMPMEM_RESET </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmpmem-table.html"> The INFORMATION_SCHEMA INNODB_CMPMEM and INNODB_CMPMEM_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077207360"> INNODB_CMP_PER_INDEX </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmp-per-index-table.html"> The INFORMATION_SCHEMA INNODB_CMP_PER_INDEX and INNODB_CMP_PER_INDEX_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045156319904"> innodb_cmp_per_index_enabled system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077205856"> INNODB_CMP_PER_INDEX_RESET </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmp-per-index-table.html"> The INFORMATION_SCHEMA INNODB_CMP_PER_INDEX and INNODB_CMP_PER_INDEX_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077298176"> INNODB_CMP_RESET </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-cmp-table.html"> The INFORMATION_SCHEMA INNODB_CMP and INNODB_CMP_RESET Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077149184"> INNODB_COLUMNS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-columns-table.html"> The INFORMATION_SCHEMA INNODB_COLUMNS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045156289232"> innodb_commit_concurrency system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156217632"> innodb_compression_failure_threshold_pct system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156182336"> innodb_compression_level system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156148784"> innodb_compression_pad_pct_max system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045156252688"> innodb_compress_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162782032"> innodb_concurrency_tickets, <a class="indexterm" href="innodb-performance-thread_concurrency.html"> Configuring Thread Concurrency for InnoDB </a> </dt> <dt id="ientry-idm46045156112896"> innodb_concurrency_tickets system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077087584"> INNODB_DATAFILES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-datafiles-table.html"> The INFORMATION_SCHEMA INNODB_DATAFILES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045156058832"> innodb_data_file_path system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262861504"> Innodb_data_fsyncs status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045156021632"> innodb_data_home_dir system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262850800"> Innodb_data_pending_fsyncs status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262842448"> Innodb_data_pending_reads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262836896"> Innodb_data_pending_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262831312"> Innodb_data_read status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262825776"> Innodb_data_reads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262820336"> Innodb_data_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262814912"> Innodb_data_written status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262809440"> Innodb_dblwr_pages_written status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262800080"> Innodb_dblwr_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045155989552"> innodb_ddl_buffer_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045259812640"> innodb_ddl_log table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045155953408"> innodb_ddl_log_crash_reset_debug system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155925920"> innodb_ddl_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155893696"> innodb_deadlock_detect system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045160811632"> innodb_default_row_format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-defining"> Defining the Row Format of a Table </a> </dt> <dt id="ientry-idm46045155865408"> innodb_default_row_format system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155818432"> innodb_directories system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155771600"> innodb_disable_sort_file_cache system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155745008"> innodb_doublewrite system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155695328"> innodb_doublewrite_batch_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155662208"> innodb_doublewrite_dir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155636448"> innodb_doublewrite_files, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155602752"> innodb_doublewrite_pages, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045259458160"> innodb_dynamic_metadata table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045165001664"> innodb_extend_and_initialize, <a class="indexterm" href="innodb-optimize-tablespace-page-allocation.html"> Optimizing Tablespace Space Allocation on Linux </a> </dt> <dt id="ientry-idm46045155567952"> innodb_extend_and_initialize system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155538784"> innodb_fast_shutdown system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045077060768"> INNODB_FIELDS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-fields-table.html"> The INFORMATION_SCHEMA INNODB_FIELDS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045161720656"> innodb_file_per_table, <a class="indexterm" href="innodb-compression-usage.html"> Creating Compressed Tables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045155460928"> innodb_file_per_table system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155423488"> innodb_fill_factor system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155498544"> innodb_fil_make_page_dirty_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155100960"> innodb_flushing_avg_loops system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155379456"> innodb_flush_log_at_timeout system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155343632"> innodb_flush_log_at_trx_commit system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155282368"> innodb_flush_method system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155180336"> innodb_flush_neighbors system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155137568"> innodb_flush_sync system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045155065568"> innodb_force_load_corrupted system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045183301680"> innodb_force_recovery system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dd> <dl> <dt> DROP TABLE, <a class="indexterm" href="drop-table.html"> DROP TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045077035104"> INNODB_FOREIGN </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-foreign-table.html"> The INFORMATION_SCHEMA INNODB_FOREIGN Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076998912"> INNODB_FOREIGN_COLS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-foreign-cols-table.html"> The INFORMATION_SCHEMA INNODB_FOREIGN_COLS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045154994720"> innodb_fsync_threshold system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154960656"> innodb_ft_aux_table system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076972128"> INNODB_FT_BEING_DELETED </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-being-deleted-table.html"> The INFORMATION_SCHEMA INNODB_FT_BEING_DELETED Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045154927184"> innodb_ft_cache_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076930576"> INNODB_FT_CONFIG </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-config-table.html"> The INFORMATION_SCHEMA INNODB_FT_CONFIG Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076884160"> INNODB_FT_DEFAULT_STOPWORD </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-default-stopword-table.html"> The INFORMATION_SCHEMA INNODB_FT_DEFAULT_STOPWORD Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076852832"> INNODB_FT_DELETED </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-deleted-table.html"> The INFORMATION_SCHEMA INNODB_FT_DELETED Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045154886528"> innodb_ft_enable_diag_print system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154852544"> innodb_ft_enable_stopword system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076815632"> INNODB_FT_INDEX_CACHE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-index-cache-table.html"> The INFORMATION_SCHEMA INNODB_FT_INDEX_CACHE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076751568"> INNODB_FT_INDEX_TABLE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-ft-index-table-table.html"> The INFORMATION_SCHEMA INNODB_FT_INDEX_TABLE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045154820528"> innodb_ft_max_token_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154787184"> innodb_ft_min_token_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154752960"> innodb_ft_num_word_optimize system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154717008"> innodb_ft_result_cache_limit system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154678464"> innodb_ft_server_stopword_table system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154636544"> innodb_ft_sort_pll_degree system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154601200"> innodb_ft_total_cache_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154564224"> innodb_ft_user_stopword_table system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262793904"> Innodb_have_atomic_builtins status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045154522976"> innodb_idle_flush_pct system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076683488"> INNODB_INDEXES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-indexes-table.html"> The INFORMATION_SCHEMA INNODB_INDEXES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259513040"> innodb_index_stats table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> , <a class="indexterm" href="innodb-persistent-stats.html"> Configuring Persistent Optimizer Statistics Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045162677200"> innodb_io_capacity, <a class="indexterm" href="innodb-configuring-io-capacity.html"> Configuring InnoDB I/O Capacity </a> </dt> <dt id="ientry-idm46045154487648"> innodb_io_capacity system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154447648"> innodb_io_capacity_max system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154407360"> innodb_limit_optimistic_insert_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045063132128"> innodb_lock_waits view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-lock-waits.html"> The innodb_lock_waits and x$innodb_lock_waits Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045032306800"> innodb_lock_wait_timeout, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045154374192"> innodb_lock_wait_timeout system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154314160"> innodb_log_buffer_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154277120"> innodb_log_checkpoint_fuzzy_now system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154248896"> innodb_log_checkpoint_now system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154220672"> innodb_log_checksums system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154190768"> innodb_log_compressed_pages system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154097488"> innodb_log_files_in_group system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154150720"> innodb_log_file_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154048576"> innodb_log_group_home_dir system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045154022624"> innodb_log_spin_cpu_abs_lwm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153990512"> innodb_log_spin_cpu_pct_hwm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262787296"> Innodb_log_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045153955184"> innodb_log_wait_for_flush_spin_hwm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153869616"> innodb_log_writer_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262771680"> Innodb_log_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045153918832"> innodb_log_write_ahead_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262778944"> Innodb_log_write_requests status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045153842352"> innodb_lru_scan_depth system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153797312"> innodb_max_dirty_pages_pct system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153758256"> innodb_max_dirty_pages_pct_lwm system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153724560"> innodb_max_purge_lag system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153689040"> innodb_max_purge_lag_delay system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153651280"> innodb_max_undo_log_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153615856"> innodb_merge_threshold_set_all_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076632400"> INNODB_METRICS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-metrics-table.html"> The INFORMATION_SCHEMA INNODB_METRICS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045153582000"> innodb_monitor_disable system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153551408"> innodb_monitor_enable system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153520688"> innodb_monitor_reset system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153482096"> innodb_monitor_reset_all system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153446976"> innodb_numa_interleave variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262764672"> Innodb_num_open_files status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045163145984"> innodb_old_blocks_pct, <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> </dt> <dt id="ientry-idm46045153409360"> innodb_old_blocks_pct system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045163144912"> innodb_old_blocks_time, <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> </dt> <dt id="ientry-idm46045153371456"> innodb_old_blocks_time system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153329728"> innodb_online_alter_log_max_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153290896"> innodb_open_files system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153239056"> innodb_optimize_fulltext_only system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262758448"> Innodb_os_log_fsyncs status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262750816"> Innodb_os_log_pending_fsyncs status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262743040"> Innodb_os_log_pending_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262735952"> Innodb_os_log_written status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262722672"> Innodb_pages_created status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262716448"> Innodb_pages_read status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262709488"> Innodb_pages_written status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045153203808"> innodb_page_cleaners system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262728944"> Innodb_page_size status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045153139920"> innodb_page_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153085744"> innodb_parallel_read_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045153047264"> innodb_print_all_deadlocks system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dd> <dl> <dt> innodb_print_all_deadlocks, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045153011760"> innodb_print_ddl_logs system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152984688"> innodb_purge_batch_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152909168"> innodb_purge_rseg_truncate_frequency system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152943488"> innodb_purge_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152874432"> innodb_random_read_ahead system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045163097664"> innodb_read_ahead_threshold, <a class="indexterm" href="innodb-performance-read_ahead.html"> Configuring InnoDB Buffer Pool Prefetching (Read-Ahead) </a> </dt> <dt id="ientry-idm46045309042080"> innodb_read_ahead_threshold system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162734656"> innodb_read_io_threads, <a class="indexterm" href="innodb-performance-multiple_io_threads.html"> Configuring the Number of Background InnoDB I/O Threads </a> </dt> <dt id="ientry-idm46045308991376"> innodb_read_io_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045308952064"> innodb_read_only system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045251174368"> INNODB_REDO_LOG_ARCHIVE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045152799920"> innodb_redo_log_archive_dirs system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152773584"> innodb_redo_log_capacity system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262696848"> Innodb_redo_log_capacity_resized status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262684880"> Innodb_redo_log_checkpoint_lsn status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262678704"> Innodb_redo_log_current_lsn status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045251168896"> INNODB_REDO_LOG_ENABLE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045262703264"> Innodb_redo_log_enabled status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045152727616"> innodb_redo_log_encrypt system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045067476048"> innodb_redo_log_files table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-innodb-redo-log-files-table.html"> The innodb_redo_log_files Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045262671456"> Innodb_redo_log_flushed_to_disk_lsn status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262663616"> Innodb_redo_log_logical_size status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262657200"> Innodb_redo_log_physical_size status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262650864"> Innodb_redo_log_read_only status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262645328"> Innodb_redo_log_resize_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262635744"> Innodb_redo_log_uuid status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045152701680"> innodb_replication_delay system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152669920"> innodb_rollback_on_timeout system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152642192"> innodb_rollback_segments system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262594896"> Innodb_rows_deleted status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262588672"> Innodb_rows_inserted status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262582448"> Innodb_rows_read status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262576240"> Innodb_rows_updated status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262630304"> Innodb_row_lock_current_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262623152"> Innodb_row_lock_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262616128"> Innodb_row_lock_time_avg status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262609024"> Innodb_row_lock_time_max status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262601952"> Innodb_row_lock_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045152608944"> innodb_saved_page_number_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152575728"> innodb_segment_reserve_factor system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076564064"> INNODB_SESSION_TEMP_TABLESPACES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-session-temp-tablespaces-table.html"> The INFORMATION_SCHEMA INNODB_SESSION_TEMP_TABLESPACES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045152544816"> innodb_sort_buffer_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162605888"> innodb_spin_wait_delay, <a class="indexterm" href="innodb-performance-spin_lock_polling.html"> Configuring Spin Lock Polling </a> </dt> <dt id="ientry-idm46045152512368"> innodb_spin_wait_delay system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162604816"> innodb_spin_wait_pause_multiplier, <a class="indexterm" href="innodb-performance-spin_lock_polling.html"> Configuring Spin Lock Polling </a> </dt> <dt id="ientry-idm46045152480288"> innodb_spin_wait_pause_multiplier system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152450528"> innodb_stats_auto_recalc system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162371248"> innodb_stats_include_delete_marked system variable, <a class="indexterm" href="innodb-persistent-stats.html#innodb-persistent-stats-delete-marked"> Including Delete-marked Records in Persistent Statistics Calculations </a> , <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152385456"> innodb_stats_method system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152346944"> innodb_stats_on_metadata system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152304864"> innodb_stats_persistent system variable </dt> <dd> <dl> <dt> innodb_stats_persistent, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045152275648"> innodb_stats_persistent_sample_pages system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162085936"> innodb_stats_transient_sample_pages, <a class="indexterm" href="innodb-statistics-estimation.html"> Configuring Non-Persistent Optimizer Statistics Parameters </a> </dt> <dt id="ientry-idm46045152232384"> innodb_stats_transient_sample_pages system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152188688"> innodb_status_output system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152161728"> innodb_status_output_locks system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152305872"> innodb_stat_persistent system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045032297424"> innodb_strict_mode, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045152132448"> innodb_strict_mode system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152089488"> innodb_sync_array_size system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152030800"> innodb_sync_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045152060256"> innodb_sync_spin_loops system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262567792"> Innodb_system_rows_deleted status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262561552"> Innodb_system_rows_inserted status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262548976"> Innodb_system_rows_read status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262555248"> Innodb_system_rows_updated status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045076529152"> INNODB_TABLES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-tables-table.html"> The INFORMATION_SCHEMA INNODB_TABLES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076461376"> INNODB_TABLESPACES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-tablespaces-table.html"> The INFORMATION_SCHEMA INNODB_TABLESPACES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076375216"> INNODB_TABLESPACES_BRIEF </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-tablespaces-brief-table.html"> The INFORMATION_SCHEMA INNODB_TABLESPACES_BRIEF Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076337216"> INNODB_TABLESTATS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-tablestats-table.html"> The INFORMATION_SCHEMA INNODB_TABLESTATS View </a> </dt> </dl> </dd> <dt id="ientry-idm46045152004688"> innodb_table_locks system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045259516000"> innodb_table_stats table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> , <a class="indexterm" href="innodb-persistent-stats.html"> Configuring Persistent Optimizer Statistics Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045151968816"> innodb_temp_data_file_path system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151920192"> innodb_temp_tablespaces_dir system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076283856"> INNODB_TEMP_TABLE_INFO </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-temp-table-info-table.html"> The INFORMATION_SCHEMA INNODB_TEMP_TABLE_INFO Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045162780992"> innodb_thread_concurrency, <a class="indexterm" href="innodb-performance-thread_concurrency.html"> Configuring Thread Concurrency for InnoDB </a> </dt> <dt id="ientry-idm46045151890768"> innodb_thread_concurrency system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162779904"> innodb_thread_sleep_delay, <a class="indexterm" href="innodb-performance-thread_concurrency.html"> Configuring Thread Concurrency for InnoDB </a> </dt> <dt id="ientry-idm46045151830448"> innodb_thread_sleep_delay system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151793552"> innodb_tmpdir system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262542752"> Innodb_truncated_status_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045076250352"> INNODB_TRX </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-trx-table.html"> The INFORMATION_SCHEMA INNODB_TRX Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045151742720"> innodb_trx_purge_view_update_only_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151717024"> innodb_trx_rseg_n_slots_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151685552"> innodb_undo_directory system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151655408"> innodb_undo_log_encrypt system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151628224"> innodb_undo_log_truncate system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151600496"> innodb_undo_tablespaces system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045262536464"> Innodb_undo_tablespaces_active status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262529152"> Innodb_undo_tablespaces_explicit status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262522800"> Innodb_undo_tablespaces_implicit status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262515120"> Innodb_undo_tablespaces_total status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045151565712"> innodb_use_fdatasync system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045162701680"> innodb_use_native_aio, <a class="indexterm" href="innodb-linux-native-aio.html"> Using Asynchronous I/O on Linux </a> </dt> <dt id="ientry-idm46045151532576"> innodb_use_native_aio system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151497840"> innodb_validate_tablespace_paths system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045151469776"> innodb_version system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045076146128"> INNODB_VIRTUAL </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-innodb-virtual-table.html"> The INFORMATION_SCHEMA INNODB_VIRTUAL Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045162733584"> innodb_write_io_threads, <a class="indexterm" href="innodb-performance-multiple_io_threads.html"> Configuring the Number of Background InnoDB I/O Threads </a> </dt> <dt id="ientry-idm46045151463248"> innodb_write_io_threads system variable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt id="ientry-idm46045332981104"> Innovation Series, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> MySQL releases, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> <dt id="ientry-idm46045175221760"> INOUT parameter </dt> <dd> <dl> <dt> condition handling, <a class="indexterm" href="conditions-and-parameters.html"> Condition Handling and OUT or INOUT Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045102512992"> input-type option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102491728"> input-workers option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045227662080"> INSERT, <a class="indexterm" href="insert-optimization.html"> Optimizing INSERT Statements </a> , <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt id="ientry-idm46045032289248"> insert, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045182259824"> INSERT ... SELECT, <a class="indexterm" href="insert-select.html"> INSERT ... SELECT Statement </a> </dt> <dt id="ientry-idm46045182258784"> INSERT ... TABLE, <a class="indexterm" href="insert-select.html"> INSERT ... SELECT Statement </a> </dt> <dt id="ientry-idm46045032277056"> insert buffer, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045166984080"> insert buffering, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> disabling, <a class="indexterm" href="innodb-change-buffer.html#innodb-change-buffer-configuration"> Configuring Change Buffering </a> </dt> </dl> </dd> <dt id="ientry-idm46045182050400"> INSERT DELAYED, <a class="indexterm" href="insert-delayed.html"> INSERT DELAYED Statement </a> </dt> <dt id="ientry-idm46045032257888"> insert intention lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045251696656"> INSERT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045203353056"> INSERT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045312365920"> insert-ignore option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045164580272"> insert-intention lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt id="ientry-idm46045081823408"> insertable views </dt> <dd> <dl> <dt> insertable, <a class="indexterm" href="view-updatability.html"> Updatable and Insertable Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045227659552"> inserting </dt> <dd> <dl> <dt> speed of, <a class="indexterm" href="insert-optimization.html"> Optimizing INSERT Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045118542512"> InsertRecoveryWork, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045222859152"> inserts </dt> <dd> <dl> <dt> concurrent, <a class="indexterm" href="internal-locking.html#internal-table-level-locking"> Table-Level Locking </a> , <a class="indexterm" href="concurrent-inserts.html"> Concurrent Inserts </a> </dt> </dl> </dd> <dt id="ientry-idm46045274901696"> insert_id system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045171801904"> INSTALL COMPONENT statement, <a class="indexterm" href="install-component.html"> INSTALL COMPONENT Statement </a> </dt> <dt id="ientry-idm46045279894560"> install option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045171738464"> INSTALL PLUGIN statement, <a class="indexterm" href="install-plugin.html"> INSTALL PLUGIN Statement </a> </dt> <dt id="ientry-idm46045279875184"> install-manual option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045332671856"> installation layouts, <a class="indexterm" href="installation-layouts.html"> Installation Layouts </a> </dt> <dt id="ientry-idm46045329719648"> installation overview, <a class="indexterm" href="source-installation.html"> Installing MySQL from Source </a> </dt> <dt id="ientry-idm46045333064112"> installing </dt> <dd> <dl> <dt> binary distribution, <a class="indexterm" href="binary-installation.html"> Installing MySQL on Unix/Linux Using Generic Binaries </a> </dt> <dt> Linux RPM packages, <a class="indexterm" href="linux-installation-rpm.html"> Installing MySQL on Linux Using RPM Packages from Oracle </a> </dt> <dt> macOS DMG packages, <a class="indexterm" href="macos-installation.html"> Installing MySQL on macOS </a> </dt> <dt> overview, <a class="indexterm" href="installing.html"> Installing MySQL </a> </dt> <dt> Perl, <a class="indexterm" href="perl-support.html"> Perl Installation Notes </a> </dt> <dt> Perl on Windows, <a class="indexterm" href="activestate-perl.html"> Installing ActiveState Perl on Windows </a> </dt> <dt> Solaris PKG packages, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt> source distribution, <a class="indexterm" href="source-installation.html"> Installing MySQL from Source </a> </dt> </dl> </dd> <dt id="ientry-idm46045257338080"> installing components, <a class="indexterm" href="component-loading.html"> Installing and Uninstalling Components </a> , <a class="indexterm" href="install-component.html"> INSTALL COMPONENT Statement </a> </dt> <dt id="ientry-idm46045254213360"> installing loadable functions, <a class="indexterm" href="function-loading.html"> Installing and Uninstalling Loadable Functions </a> </dt> <dt id="ientry-idm46045123108864"> installing NDB Cluster, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> </dt> <dd> <dl> <dt> Debian Linux, <a class="indexterm" href="mysql-cluster-install-debian.html"> Installing NDB Cluster Using .deb Files </a> </dt> <dt> Linux, <a class="indexterm" href="mysql-cluster-install-linux.html"> Installation of NDB Cluster on Linux </a> </dt> <dt> Linux binary release, <a class="indexterm" href="mysql-cluster-install-linux-binary.html"> Installing an NDB Cluster Binary Release on Linux </a> </dt> <dt> Linux RPM, <a class="indexterm" href="mysql-cluster-install-linux-rpm.html"> Installing NDB Cluster from RPM </a> </dt> <dt> Linux source release, <a class="indexterm" href="mysql-cluster-install-linux-source.html"> Building NDB Cluster from Source on Linux </a> </dt> <dt> Ubuntu Linux, <a class="indexterm" href="mysql-cluster-install-debian.html"> Installing NDB Cluster Using .deb Files </a> </dt> <dt> Windows, <a class="indexterm" href="mysql-cluster-install-windows.html"> Installing NDB Cluster on Windows </a> </dt> <dt> Windows binary release, <a class="indexterm" href="mysql-cluster-install-windows-binary.html"> Installing NDB Cluster on Windows from a Binary Release </a> </dt> <dt> Windows source, <a class="indexterm" href="mysql-cluster-install-windows-source.html"> Compiling and Installing NDB Cluster from Source on Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045257098720"> installing plugins, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> , <a class="indexterm" href="install-plugin.html"> INSTALL PLUGIN Statement </a> </dt> <dt id="ientry-idm46045328568912"> INSTALL_BINDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328563072"> INSTALL_DOCDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328557200"> INSTALL_DOCREADMEDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328550624"> INSTALL_INCLUDEDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328544656"> INSTALL_INFODIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328538752"> INSTALL_LAYOUT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328520000"> INSTALL_LIBDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328514160"> INSTALL_MANDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328508272"> INSTALL_MYSQLSHAREDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328502384"> INSTALL_MYSQLTESTDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328494688"> INSTALL_PKGCONFIGDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328484832"> INSTALL_PLUGINDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328477504"> INSTALL_PRIV_LIBDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328454688"> INSTALL_SBINDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328447456"> INSTALL_SECURE_FILE_PRIVDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328436576"> INSTALL_SHAREDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328429984"> INSTALL_STATIC_LIBRARIES option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328421200"> INSTALL_SUPPORTFILESDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045032250736"> instance, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045303145856"> instance option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045203335808"> INSTR(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045032239504"> instrumentation, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045214323568"> INT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045190526016"> integer arithmetic, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045214313456"> INTEGER data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045220460992"> integers, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> <dt id="ientry-idm46045164583296"> intention lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045106840560"> interactive option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045274892896"> interactive_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032224208"> interceptor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045191489392"> internal functions, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045222920416"> internal locking, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> <dt id="ientry-idm46045211710928"> internal storage format </dt> <dd> <dl> <dt> geometry values, <a class="indexterm" href="gis-data-formats.html#gis-internal-format"> Internal Geometry Storage Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045191337808"> INTERNAL_AUTO_INCREMENT(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191331248"> INTERNAL_AVG_ROW_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191318160"> INTERNAL_CHECKSUM(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191324672"> INTERNAL_CHECK_TIME(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191311648"> INTERNAL_DATA_FREE(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191305120"> INTERNAL_DATA_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191298688"> INTERNAL_DD_CHAR_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191292112"> INTERNAL_GET_COMMENT_OR_ERROR(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191285536"> INTERNAL_GET_ENABLED_ROLE_JSON() function, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191278928"> INTERNAL_GET_HOSTNAME() function, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191272384"> INTERNAL_GET_USERNAME() function, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191265728"> INTERNAL_GET_VIEW_WARNING_OR_ERROR(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191259088"> INTERNAL_INDEX_COLUMN_CARDINALITY(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191252560"> INTERNAL_INDEX_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191246048"> INTERNAL_IS_ENABLED_ROLE() function, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191239472"> INTERNAL_IS_MANDATORY_ROLE() function, <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191232880"> INTERNAL_KEYS_DISABLED(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191226352"> INTERNAL_MAX_DATA_LENGTH(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045191219776"> INTERNAL_TABLE_ROWS(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045274857088"> internal_tmp_mem_storage_engine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045191213248"> INTERNAL_UPDATE_TIME(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045182031952"> INTERSECT, <a class="indexterm" href="intersect.html"> INTERSECT Clause </a> </dt> <dd> <dl> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt> set operations, <a class="indexterm" href="set-operations.html"> Set Operations with UNION, INTERSECT, and EXCEPT </a> </dt> </dl> </dd> <dt id="ientry-idm46045218514928"> INTERVAL </dt> <dd> <dl> <dt> temporal interval syntax, <a class="indexterm" href="expressions.html#temporal-intervals"> Temporal Intervals </a> </dt> </dl> </dd> <dt id="ientry-idm46045218512336"> interval syntax, <a class="indexterm" href="expressions.html#temporal-intervals"> Temporal Intervals </a> </dt> <dt id="ientry-idm46045207160848"> INTERVAL(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045181227728"> INTO </dt> <dd> <dl> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt> SELECT, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt> TABLE statement, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt> VALUES statement, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045180586000"> INTO OUTFILE </dt> <dd> <dl> <dt> with TABLE statement, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045032219680"> intrinsic temporary table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045220610144"> introducer </dt> <dd> <dl> <dt> binary character set, <a class="indexterm" href="charset-binary-set.html"> The Binary Character Set </a> </dt> <dt> bit-value literal, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> <dt> character set, <a class="indexterm" href="charset-introducer.html"> Character Set Introducers </a> </dt> <dt> hexadecimal literal, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> <dt> string literal, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="charset-literal.html"> Character String Literal Character Set and Collation </a> </dt> </dl> </dd> <dt id="ientry-idm46045032215888"> inverted index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045186422032"> invisible columns, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> , <a class="indexterm" href="invisible-columns.html"> Invisible Columns </a> </dt> <dd> <dl> <dt> binary log, <a class="indexterm" href="invisible-columns.html#invisible-column-binary-logging"> The Binary Log and Invisible Columns </a> </dt> <dt> metadata, <a class="indexterm" href="invisible-columns.html#invisible-column-metadata"> Invisible Column Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045227027712"> invisible indexes, <a class="indexterm" href="invisible-indexes.html"> Invisible Indexes </a> , <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="create-index.html#create-index-options"> Index Options </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dd> <dl> <dt> metadata, <a class="indexterm" href="invisible-indexes.html"> Invisible Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045170286064"> INVOKER privileges, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> , <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt id="ientry-idm46045032209088"> IOPS, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045063055632"> io_by_thread_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-by-thread-by-latency.html"> The io_by_thread_by_latency and x$io_by_thread_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063028000"> io_global_by_file_by_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-file-by-bytes.html"> The io_global_by_file_by_bytes and x$io_global_by_file_by_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062999264"> io_global_by_file_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-file-by-latency.html"> The io_global_by_file_by_latency and x$io_global_by_file_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062970512"> io_global_by_wait_by_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-wait-by-bytes.html"> The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062933232"> io_global_by_wait_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-wait-by-latency.html"> The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045250005904"> IP addresses </dt> <dd> <dl> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045250004416"> IPv6 addresses </dt> <dd> <dl> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045269700160"> IPv6 connections, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045207137440"> IS boolean_value, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207120352"> IS NOT boolean_value, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207389376"> IS NOT DISTINCT FROM operator, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207063680"> IS NOT NULL, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045229028336"> IS NULL, <a class="indexterm" href="is-null-optimization.html"> IS NULL Optimization </a> , <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dd> <dl> <dt> and indexes, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> </dl> </dd> <dt id="ientry-idm46045207052800"> ISNULL(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045178290736"> ISOLATION LEVEL, <a class="indexterm" href="set-transaction.html"> SET TRANSACTION Statement </a> </dt> <dt id="ientry-idm46045164401936"> isolation level, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045199086416"> IS_FREE_LOCK(), <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045190823536"> IS_IPV4(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190795408"> IS_IPV4_COMPAT(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190770480"> IS_IPV4_MAPPED(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190749872"> IS_IPV6(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045199073328"> IS_USED_LOCK(), <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045190734016"> IS_UUID(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045191206544"> IS_VISIBLE_DD_OBJECT(), <a class="indexterm" href="internal-functions.html"> Internal Functions </a> </dt> <dt id="ientry-idm46045176273904"> ITERATE, <a class="indexterm" href="iterate.html"> ITERATE Statement </a> </dt> <dt id="ientry-idm46045309179904"> iterations option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_J"> </a> J </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045032185328"> J2EE, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045055636528"> Japanese character sets </dt> <dd> <dl> <dt> conversion, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045055652368"> Japanese, Korean, Chinese character sets </dt> <dd> <dl> <dt> frequently asked questions, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045060383840"> Java, <a class="indexterm" href="connector-j-info.html"> MySQL Connector/J </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032166176"> JBoss, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060616256"> JDBC, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045124275344"> jdbc:mysql:loadbalance://, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dt id="ientry-idm46045032156976"> JNDI, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045229506896"> join, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> nested-loop algorithm, <a class="indexterm" href="nested-join-optimization.html"> Nested Join Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045180540304"> JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045229582432"> join algorithm </dt> <dd> <dl> <dt> Block Nested-Loop, <a class="indexterm" href="nested-loop-joins.html"> Nested-Loop Join Algorithms </a> </dt> <dt> Nested-Loop, <a class="indexterm" href="nested-loop-joins.html"> Nested-Loop Join Algorithms </a> </dt> </dl> </dd> <dt id="ientry-idm46045306371744"> join option </dt> <dd> <dl> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045225241312"> join type </dt> <dd> <dl> <dt> ALL, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> const, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> eq_ref, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> fulltext, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> index, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> index_merge, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> index_subquery, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> range, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> ref, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> ref_or_null, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> system, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> unique_subquery, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045180377008"> joins </dt> <dd> <dl> <dt> USING versus ON, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> </dl> </dd> <dt id="ientry-idm46045274818272"> join_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045223785776"> JOIN_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045211402704"> JSON </dt> <dd> <dl> <dt> array, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> autowrapped values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt> false literal, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="create-table-secondary-indexes.html#json-column-indirect-index"> Indexing a Generated Column to Provide a JSON Column Index </a> </dt> <dt> normalized values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt> null literal, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> null, true, and false literals, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> object, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> quote mark handling, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> scalar, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> sensible values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt> string, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> temporal values, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> true literal, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt> valid values, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045211477120"> JSON data type, <a class="indexterm" href="json.html"> The JSON Data Type </a> </dt> <dt id="ientry-idm46045195837968"> JSON functions, <a class="indexterm" href="json-functions.html"> JSON Functions </a> , <a class="indexterm" href="json-function-reference.html"> JSON Function Reference </a> </dt> <dt id="ientry-idm46045194332000"> JSON pointer URI fragment identifiers, <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> <dt id="ientry-idm46045194480000"> JSON schema validation, <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> <dt id="ientry-idm46045195670816"> JSON_ARRAY(), <a class="indexterm" href="json-creation-functions.html"> Functions That Create JSON Values </a> </dt> <dt id="ientry-idm46045193051600"> JSON_ARRAYAGG(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045195136288"> JSON_ARRAY_APPEND(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045195110576"> JSON_ARRAY_INSERT(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045195618768"> JSON_CONTAINS(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045195581872"> JSON_CONTAINS_PATH(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045194794192"> JSON_DEPTH(), <a class="indexterm" href="json-attribute-functions.html"> Functions That Return JSON Value Attributes </a> </dt> <dt id="ientry-idm46045195555088"> JSON_EXTRACT(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045195085088"> JSON_INSERT(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045195425568"> JSON_KEYS(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045194778096"> JSON_LENGTH(), <a class="indexterm" href="json-attribute-functions.html"> Functions That Return JSON Value Attributes </a> </dt> <dt id="ientry-idm46045195055808"> JSON_MERGE(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045211232608"> JSON_MERGE() (deprecated), <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt id="ientry-idm46045211234752"> JSON_MERGE_PATCH(), <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045211233680"> JSON_MERGE_PRESERVE(), <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045195658576"> JSON_OBJECT(), <a class="indexterm" href="json-creation-functions.html"> Functions That Create JSON Values </a> </dt> <dt id="ientry-idm46045193031632"> JSON_OBJECTAGG(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045195407008"> JSON_OVERLAPS(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045194253936"> JSON_PRETTY(), <a class="indexterm" href="json-utility-functions.html"> JSON Utility Functions </a> </dt> <dt id="ientry-idm46045195646864"> JSON_QUOTE(), <a class="indexterm" href="json-creation-functions.html"> Functions That Create JSON Values </a> </dt> <dt id="ientry-idm46045194961376"> JSON_REMOVE(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045194941872"> JSON_REPLACE(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045194452080"> JSON_SCHEMA_VALID(), <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> <dd> <dl> <dt> and CHECK constraints, <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045194345040"> JSON_SCHEMA_VALIDATION_REPORT(), <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> <dt id="ientry-idm46045195361664"> JSON_SEARCH(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045194914432"> JSON_SET(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045194228128"> JSON_STORAGE_FREE(), <a class="indexterm" href="json-utility-functions.html"> JSON Utility Functions </a> </dt> <dt id="ientry-idm46045194177200"> JSON_STORAGE_SIZE(), <a class="indexterm" href="json-utility-functions.html"> JSON Utility Functions </a> </dt> <dt id="ientry-idm46045194660016"> JSON_TABLE(), <a class="indexterm" href="json-table-functions.html"> JSON Table Functions </a> </dt> <dt id="ientry-idm46045194757040"> JSON_TYPE(), <a class="indexterm" href="json-attribute-functions.html"> Functions That Return JSON Value Attributes </a> </dt> <dt id="ientry-idm46045194874112"> JSON_UNQUOTE(), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045194677184"> JSON_VALID(), <a class="indexterm" href="json-attribute-functions.html"> Functions That Return JSON Value Attributes </a> </dt> <dt id="ientry-idm46045195298224"> JSON_VALUE(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_K"> </a> K </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045102471200"> keep-state option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045117193056"> KeepAliveSendInterval, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045274764176"> keep_files_on_create system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045244653264"> Kerberos </dt> <dd> <dl> <dt> authentication, <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045244490720"> Kerberos authentication </dt> <dd> <dl> <dt> destroy_tickets parameter, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> <dt> GSSAPI mode on Windows clients, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> <dt> krb5.conf file, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045223093840"> Key cache </dt> <dd> <dl> <dt> MyISAM, <a class="indexterm" href="myisam-key-cache.html"> The MyISAM Key Cache </a> </dt> </dl> </dd> <dt id="ientry-idm46045168850016"> key cache </dt> <dd> <dl> <dt> assigning indexes to, <a class="indexterm" href="cache-index.html"> CACHE INDEX Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045032143216"> key distribution center, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045239683760"> key management </dt> <dd> <dl> <dt> keyring, <a class="indexterm" href="keyring-functions-general-purpose.html"> General-Purpose Keyring Key-Management Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045239913856"> key migration </dt> <dd> <dl> <dt> keyring, <a class="indexterm" href="keyring-key-migration.html"> Migrating Keys Between Keyring Keystores </a> </dt> </dl> </dd> <dt id="ientry-idm46045084228400"> key partitioning, <a class="indexterm" href="partitioning-key.html"> KEY Partitioning </a> </dt> <dt id="ientry-idm46045083733216"> key partitions </dt> <dd> <dl> <dt> managing, <a class="indexterm" href="partitioning-management-hash-key.html"> Management of HASH and KEY Partitions </a> </dt> <dt> splitting and merging, <a class="indexterm" href="partitioning-management-hash-key.html"> Management of HASH and KEY Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045148150736"> key space </dt> <dd> <dl> <dt> MyISAM, <a class="indexterm" href="key-space.html"> Space Needed for Keys </a> </dt> </dl> </dd> <dt id="ientry-idm46045227165680"> key-value store, <a class="indexterm" href="index-btree-hash.html#hash-index-characteristics"> Hash Index Characteristics </a> </dt> <dt id="ientry-idm46045240475136"> KeyControl (Entrust) </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-entrust-keycontrol"> Configuring keyring_okv for Entrust KeyControl </a> </dt> </dl> </dd> <dt id="ientry-idm46045241058432"> keyring, <a class="indexterm" href="keyring.html"> The MySQL Keyring </a> </dt> <dd> <dl> <dt> key management, <a class="indexterm" href="keyring-functions-general-purpose.html"> General-Purpose Keyring Key-Management Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045240813696"> keyring components </dt> <dd> <dl> <dt> component_keyring_encrypted_file, <a class="indexterm" href="keyring-encrypted-file-component.html"> Using the component_keyring_encrypted_file Encrypted File-Based Keyring Component </a> </dt> <dt> component_keyring_file, <a class="indexterm" href="keyring-file-component.html"> Using the component_keyring_file File-Based Keyring Component </a> </dt> <dt> component_keyring_oci, <a class="indexterm" href="keyring-oci-component.html"> Using the Oracle Cloud Infrastructure Vault Keyring Component </a> </dt> </dl> </dd> <dt id="ientry-idm46045239685248"> keyring functions </dt> <dd> <dl> <dt> general purpose, <a class="indexterm" href="keyring-functions-general-purpose.html"> General-Purpose Keyring Key-Management Functions </a> </dt> <dt> installing, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> <dt> keyring_key_fetch(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> keyring_key_generate(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> keyring_key_length_fetch(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> keyring_key_remove(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> keyring_key_store(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> keyring_key_type_fetch(), <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt> plugin specific, <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> <dt> uninstalling, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> <dt> using, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-usage"> Using General-Purpose Keyring Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045239914896"> keyring key migration, <a class="indexterm" href="keyring-key-migration.html"> Migrating Keys Between Keyring Keystores </a> </dt> <dt id="ientry-idm46045240679888"> keyring plugins </dt> <dd> <dl> <dt> keyring_aws, <a class="indexterm" href="keyring-aws-plugin.html"> Using the keyring_aws Amazon Web Services Keyring Plugin </a> </dt> <dt> keyring_hashicorp, <a class="indexterm" href="keyring-hashicorp-plugin.html"> Using the HashiCorp Vault Keyring Plugin </a> </dt> <dt> keyring_okv, <a class="indexterm" href="keyring-okv-plugin.html"> Using the keyring_okv KMIP Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045254301312"> keyring service functions </dt> <dd> <dl> <dt> my_key_fetch(), <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt> my_key_generate(), <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt> my_key_remove(), <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt> my_key_store(), <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> </dl> </dd> <dt id="ientry-idm46045239191424"> keyring system variables, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239358672"> keyring-migration-destination option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239333776"> keyring-migration-from-component option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239314192"> keyring-migration-host option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239294896"> keyring-migration-password option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239277024"> keyring-migration-port option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239260224"> keyring-migration-socket option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239245808"> keyring-migration-source option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239222960"> keyring-migration-to-component option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239203312"> keyring-migration-user option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045239432768"> keyring_aws functions </dt> <dd> <dl> <dt> keyring_aws_rotate_cmk(), <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> <dt> keyring_aws_rotate_keys(), <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045240452000"> keyring_aws keyring plugin, <a class="indexterm" href="keyring-aws-plugin.html"> Using the keyring_aws Amazon Web Services Keyring Plugin </a> </dt> <dt id="ientry-idm46045240885280"> keyring_aws plugin, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045239186432"> keyring_aws_cmk_id system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239161168"> keyring_aws_conf_file system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239130656"> keyring_aws_data_file system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239098800"> keyring_aws_region system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239433872"> keyring_aws_rotate_cmk() keyring_aws function, <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> <dt id="ientry-idm46045239418400"> keyring_aws_rotate_keys() keyring_aws function, <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> <dt id="ientry-idm46045241020112"> keyring_component_status table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="keyring.html"> The MySQL Keyring </a> , <a class="indexterm" href="performance-schema-keyring-component-status-table.html"> The keyring_component_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045239395120"> keyring_hashicorp functions </dt> <dd> <dl> <dt> keyring_hashicorp_update_config(), <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045240335696"> keyring_hashicorp keyring plugin, <a class="indexterm" href="keyring-hashicorp-plugin.html"> Using the HashiCorp Vault Keyring Plugin </a> </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="keyring-hashicorp-plugin.html#keyring-hashicorp-plugin-configuration"> keyring_hashicorp Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045240882304"> keyring_hashicorp plugin, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045239044560"> keyring_hashicorp_auth_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238986896"> keyring_hashicorp_caching system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239017984"> keyring_hashicorp_ca_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238959408"> keyring_hashicorp_commit_auth_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238910992"> keyring_hashicorp_commit_caching system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238935216"> keyring_hashicorp_commit_ca_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238886768"> keyring_hashicorp_commit_role_id system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238862352"> keyring_hashicorp_commit_server_url system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238837968"> keyring_hashicorp_commit_store_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238813712"> keyring_hashicorp_role_id system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238785936"> keyring_hashicorp_secret_id system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238756960"> keyring_hashicorp_server_url system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238729632"> keyring_hashicorp_store_path system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239396240"> keyring_hashicorp_update_config() keyring_hashicorp function, <a class="indexterm" href="keyring-functions-plugin-specific.html"> Plugin-Specific Keyring Key-Management Functions </a> </dt> <dt id="ientry-idm46045241026304"> keyring_keys table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="keyring.html"> The MySQL Keyring </a> , <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> , <a class="indexterm" href="performance-schema-keyring-keys-table.html"> The keyring_keys table </a> </dt> </dl> </dd> <dt id="ientry-idm46045239530320"> keyring_key_fetch() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045239506288"> keyring_key_generate() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045239490704"> keyring_key_length_fetch() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045239478032"> keyring_key_remove() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045239465232"> keyring_key_store() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045239450576"> keyring_key_type_fetch() keyring function, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-reference"> General-Purpose Keyring Function Reference </a> </dt> <dt id="ientry-idm46045240089680"> keyring_oci keyring component </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="keyring-oci-component.html#keyring-oci-component-configure"> Configuration Notes </a> </dt> </dl> </dd> <dt id="ientry-idm46045240680944"> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html"> Using the keyring_okv KMIP Plugin </a> </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-configuration"> General keyring_okv Configuration </a> </dt> <dt> Entrust KeyControl, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-entrust-keycontrol"> Configuring keyring_okv for Entrust KeyControl </a> </dt> <dt> Gemalto SafeNet KeySecure Applicance, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-keysecure"> Configuring keyring_okv for Gemalto SafeNet KeySecure Appliance </a> </dt> <dt> Oracle Key Vault, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-oracle-key-vault"> Configuring keyring_okv for Oracle Key Vault </a> </dt> <dt> Townsend Alliance Key Manager, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-alliance"> Configuring keyring_okv for Townsend Alliance Key Manager </a> </dt> </dl> </dd> <dt id="ientry-idm46045240888256"> keyring_okv plugin, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045238698368"> keyring_okv_conf_dir system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045238660256"> keyring_operations system variable, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt id="ientry-idm46045239669120"> keyring_udf plugin </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> <dt> uninstalling, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045333253744"> keys, <a class="indexterm" href="column-indexes.html"> Column Indexes </a> </dt> <dd> <dl> <dt> foreign, <a class="indexterm" href="ansi-diff-foreign-keys.html"> FOREIGN KEY Constraint Differences </a> , <a class="indexterm" href="example-foreign-keys.html"> Using Foreign Keys </a> </dt> <dt> multi-column, <a class="indexterm" href="multiple-column-indexes.html"> Multiple-Column Indexes </a> </dt> <dt> searching on two, <a class="indexterm" href="searching-on-two-keys.html"> Searching on Two Keys </a> </dt> </dl> </dd> <dt id="ientry-idm46045310367936"> keys option </dt> <dd> <dl> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045096372144"> keys-to-dir option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045307011184"> keys-used option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045032131536"> keystore, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045244570544"> keytab file </dt> <dd> <dl> <dt> Kerberos authentication, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-process"> How Kerberos Authentication of MySQL Users Works </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-installation"> Installing Kerberos Pluggable Authentication </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> , <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045219567040"> keywords, <a class="indexterm" href="keywords.html"> Keywords and Reserved Words </a> </dt> <dt id="ientry-idm46045079533344"> KEYWORDS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-keywords-table.html"> The INFORMATION_SCHEMA KEYWORDS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045079520144"> keyword_list.h header file, <a class="indexterm" href="information-schema-keywords-table.html"> The INFORMATION_SCHEMA KEYWORDS Table </a> </dt> <dt id="ientry-idm46045262508064"> Key_blocks_not_flushed status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262501792"> Key_blocks_unused status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262493664"> Key_blocks_used status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045161723216"> KEY_BLOCK_SIZE, <a class="indexterm" href="innodb-compression-usage.html"> Creating Compressed Tables </a> , <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045307340768"> key_buffer_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045274724368"> key_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274654688"> key_cache_age_threshold system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274617936"> key_cache_block_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274581712"> key_cache_division_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045079588928"> KEY_COLUMN_USAGE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-key-column-usage-table.html"> The INFORMATION_SCHEMA KEY_COLUMN_USAGE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045262481200"> Key_reads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262487264"> Key_read_requests status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262463808"> Key_writes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262469936"> Key_write_requests status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045221878400"> Kill </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045168490544"> KILL statement, <a class="indexterm" href="kill.html"> KILL Statement </a> </dt> <dt id="ientry-idm46045221637024"> Killed </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221032816"> Killing slave </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045053315536"> known errors, <a class="indexterm" href="known-issues.html"> Known Issues in MySQL </a> </dt> <dt id="ientry-idm46045055627904"> Korean, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045244832608"> krb5.conf file </dt> <dd> <dl> <dt> Kerberos authentication, <a class="indexterm" href="kerberos-pluggable-authentication.html#kerberos-pluggable-authentication-usage"> Using Kerberos Pluggable Authentication </a> </dt> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_L"> </a> L </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045176479376"> labels </dt> <dd> <dl> <dt> stored program block, <a class="indexterm" href="statement-labels.html"> Statement Labels </a> </dt> </dl> </dd> <dt id="ientry-idm46045192234112"> LAG(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045215465392"> language support </dt> <dd> <dl> <dt> error messages, <a class="indexterm" href="error-message-language.html"> Setting the Error Message Language </a> </dt> </dl> </dd> <dt id="ientry-idm46045099930048"> lap option </dt> <dd> <dl> <dt> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045222150512"> large page support, <a class="indexterm" href="large-page-support.html"> Enabling Large Page Support </a> </dt> <dt id="ientry-idm46045185858624"> large tables </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045279856064"> large-pages option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045274550304"> large_files_support system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274528416"> large_pages system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274499136"> large_page_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045204703056"> LAST_DAY(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045274468368"> last_insert_id system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045198640784"> LAST_INSERT_ID(), <a class="indexterm" href="information-functions.html"> Information Functions </a> , <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> <dt> and stored routines, <a class="indexterm" href="stored-routines-last-insert-id.html"> Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() </a> </dt> <dt> and triggers, <a class="indexterm" href="stored-routines-last-insert-id.html"> Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() </a> </dt> </dl> </dd> <dt id="ientry-idm46045262457680"> Last_query_cost status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262450000"> Last_query_partial_plans status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045192171312"> LAST_VALUE(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045032128304"> latch, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045118153200"> LateAlloc, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045224936832"> lateral derived tables, <a class="indexterm" href="explain-output.html#explain-extra-information"> EXPLAIN Extra Information </a> , <a class="indexterm" href="lateral-derived-tables.html"> Lateral Derived Tables </a> </dt> <dt id="ientry-idm46045062894000"> latest_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-latest-file-io.html"> The latest_file_io and x$latest_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045332670784"> layout of installation, <a class="indexterm" href="installation-layouts.html"> Installation Layouts </a> </dt> <dt id="ientry-idm46045279823248"> lc-messages option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279794528"> lc-messages-dir option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045203320704"> LCASE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045118706064"> LcpScanProgressTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118554352"> lcp_simulator.cc (test program), <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045274459136"> lc_messages system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274430768"> lc_messages_dir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274405600"> lc_time_names system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045245389040"> LDAP </dt> <dd> <dl> <dt> authentication, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045327843936"> LDAP authentication </dt> <dd> <dl> <dt> client-side logging, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> GSSAPI authentication method, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> <dt> Kerberos authentication method, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> <dt> krb5.conf file, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> <dt> ldap_destroy_tgt parameter, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> <dt> ldap_server_host parameter, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> <dt> server-side logging, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> WITH_AUTHENTICATION_LDAP CMake option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045245205504"> ldap.conf configuration file, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-ldap-conf"> LDAP Pluggable Authentication and ldap.conf </a> </dt> <dt id="ientry-idm46045245198208"> LDAPNOINIT environment variable, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-ldap-conf"> LDAP Pluggable Authentication and ldap.conf </a> </dt> <dt id="ientry-idm46045244685920"> ldap_destroy_tgt parameter </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> </dl> </dd> <dt id="ientry-idm46045244688928"> ldap_server_host parameter </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-gssapi"> The GSSAPI/Kerberos Authentication Method </a> </dt> </dl> </dd> <dt id="ientry-idm46045215060544"> LDML syntax, <a class="indexterm" href="ldml-rules.html"> LDML Syntax Supported in MySQL </a> </dt> <dt id="ientry-idm46045326442368"> LD_LIBRARY_PATH environment variable, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> </dt> <dt id="ientry-idm46045329924448"> LD_PRELOAD environment variable, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> </dt> <dt id="ientry-idm46045326444944"> LD_RUN_PATH environment variable, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045192158448"> LEAD(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045207027264"> LEAST(), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045176259088"> LEAVE, <a class="indexterm" href="leave.html"> LEAVE Statement </a> </dt> <dt id="ientry-idm46045321796896"> ledir option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045229442256"> LEFT JOIN, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180536016"> LEFT OUTER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045203308080"> LEFT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045227553600"> leftmost prefix of indexes, <a class="indexterm" href="mysql-indexes.html"> How MySQL Uses Indexes </a> , <a class="indexterm" href="multiple-column-indexes.html"> Multiple-Column Indexes </a> </dt> <dt id="ientry-idm46045220077824"> legal names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt id="ientry-idm46045307778192"> length option </dt> <dd> <dl> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> </dl> </dd> <dt id="ientry-idm46045203295232"> LENGTH(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045207342928"> less than (&lt;), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207355888"> less than or equal (&lt;=), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045332622864"> libaio, <a class="indexterm" href="binary-installation.html"> Installing MySQL on Unix/Linux Using Generic Binaries </a> , <a class="indexterm" href="linux-installation-debian.html"> Installing MySQL on Linux Using Debian Packages from Oracle </a> , <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt id="ientry-idm46045055075408"> libmysql, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> FAQ, <a class="indexterm" href="faqs-c-api.html"> MySQL 8.4 FAQ: C API, libmysql </a> </dt> </dl> </dd> <dt id="ientry-idm46045032115664"> libmysqlclient, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060607680"> libmysqlclient library, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> <dt id="ientry-idm46045032107424"> libmysqld, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045302790080"> LIBMYSQL_ENABLE_CLEARTEXT_PLUGIN environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302784880"> LIBMYSQL_PLUGINS environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302787472"> LIBMYSQL_PLUGIN_DIR environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045060606608"> library </dt> <dd> <dl> <dt> libmysqlclient, <a class="indexterm" href="connectors-apis.html"> Connectors and APIs </a> </dt> </dl> </dd> <dt id="ientry-idm46045303031248"> libs option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045303025392"> libs_r option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045274375120"> license system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032099936"> lifecycle interceptor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045227226576"> LIKE, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dd> <dl> <dt> and indexes, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> <dt> and wildcards, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> </dl> </dd> <dt id="ientry-idm46045228666976"> LIMIT, <a class="indexterm" href="information-functions.html"> Information Functions </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-limit.html"> Replication and LIMIT </a> </dt> <dt> optimizations, <a class="indexterm" href="limit-optimization.html"> LIMIT Query Optimization </a> </dt> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> </dl> </dd> <dt id="ientry-idm46045260170000"> limitations </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-restrictions-limitations.html"> InnoDB Restrictions and Limitations </a> </dt> <dt> replication, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-restrictions"> Resource Group Restrictions </a> </dt> </dl> </dd> <dt id="ientry-idm46045123674048"> limitations of NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations.html"> Known Limitations of NDB Cluster </a> </dt> <dt id="ientry-idm46045226468320"> limits </dt> <dd> <dl> <dt> file-size, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-limits.html"> InnoDB Limits </a> </dt> <dt> maximum columns per table, <a class="indexterm" href="column-count-limit.html#column-count-limits"> Column Count Limits </a> </dt> <dt> maximum number of databases, <a class="indexterm" href="database-count-limit.html"> Limits on Number of Databases and Tables </a> , <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> maximum number of tables, <a class="indexterm" href="database-count-limit.html"> Limits on Number of Databases and Tables </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> maximum row size, <a class="indexterm" href="column-count-limit.html#row-size-limits"> Row Size Limits </a> </dt> <dt> maximum tables per join, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt> maximum tables per view, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> table size, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> </dl> </dd> <dt id="ientry-idm46045319008192"> line-numbers option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045084268512"> linear hash partitioning, <a class="indexterm" href="partitioning-linear-hash.html"> LINEAR HASH Partitioning </a> </dt> <dt id="ientry-idm46045084173728"> linear key partitioning, <a class="indexterm" href="partitioning-key.html"> KEY Partitioning </a> </dt> <dt id="ientry-idm46045220557024"> linefeed (\n), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045312823776"> lines-terminated-by option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045212173504"> LINESTRING data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197716032"> LineString(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045222486208"> links </dt> <dd> <dl> <dt> symbolic, <a class="indexterm" href="symbolic-links.html"> Using Symbolic Links </a> </dt> </dl> </dd> <dt id="ientry-idm46045328415216"> LINK_RANDOMIZE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328407360"> LINK_RANDOMIZE_SEED option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045032094592"> list, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045084673056"> list partitioning, <a class="indexterm" href="partitioning-list.html"> LIST Partitioning </a> , <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt id="ientry-idm46045083924240"> list partitions </dt> <dd> <dl> <dt> adding and dropping, <a class="indexterm" href="partitioning-management-range-list.html"> Management of RANGE and LIST Partitions </a> </dt> <dt> managing, <a class="indexterm" href="partitioning-management-range-list.html"> Management of RANGE and LIST Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045060927680"> list_add() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-list-add.html"> The list_add() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060904464"> list_drop() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-list-drop.html"> The list_drop() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045220641376"> literals, <a class="indexterm" href="literals.html"> Literal Values </a> </dt> <dd> <dl> <dt> bit value, <a class="indexterm" href="bit-value-literals.html"> Bit-Value Literals </a> </dt> <dt> boolean, <a class="indexterm" href="boolean-literals.html"> Boolean Literals </a> </dt> <dt> date, <a class="indexterm" href="date-and-time-literals.html"> Date and Time Literals </a> </dt> <dt> hexadecimal, <a class="indexterm" href="hexadecimal-literals.html"> Hexadecimal Literals </a> </dt> <dt> numeric, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> <dt> string, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt> time, <a class="indexterm" href="date-and-time-literals.html"> Date and Time Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045205969712"> LN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045032085344"> load balancing, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045252580688"> LOAD DATA, <a class="indexterm" href="load-data.html"> LOAD DATA Statement </a> , <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-load-data.html"> Replication and LOAD DATA </a> </dt> <dt> LOCAL loading, <a class="indexterm" href="load-data-local-security.html"> Security Considerations for LOAD DATA LOCAL </a> </dt> </dl> </dd> <dt id="ientry-idm46045309948784"> load emulation, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt id="ientry-idm46045181441984"> LOAD XML, <a class="indexterm" href="load-xml.html"> LOAD XML Statement </a> </dt> <dt id="ientry-idm46045318991216"> load-data-local-dir option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> </dl> </dd> <dt id="ientry-idm46045171893952"> loadable function </dt> <dd> <dl> <dt> creating, <a class="indexterm" href="create-function-loadable.html"> CREATE FUNCTION Statement for Loadable Functions </a> </dt> <dt> deleting, <a class="indexterm" href="drop-function-loadable.html"> DROP FUNCTION Statement for Loadable Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045254244496"> loadable functions, <a class="indexterm" href="server-loadable-functions.html"> MySQL Server Loadable Functions </a> </dt> <dd> <dl> <dt> API, <a class="indexterm" href="server-loadable-functions.html"> MySQL Server Loadable Functions </a> </dt> <dt> installing, <a class="indexterm" href="function-loading.html"> Installing and Uninstalling Loadable Functions </a> </dt> <dt> reference, <a class="indexterm" href="loadable-function-reference.html"> Loadable Function Reference </a> </dt> <dt> uninstalling, <a class="indexterm" href="function-loading.html"> Installing and Uninstalling Loadable Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045325408192"> loading </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="loading-tables.html"> Loading Data into a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045252495328"> Loading local data is disabled; this must be enabled on both the client and server side </dt> <dd> <dl> <dt> error message, <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> </dl> </dd> <dt id="ientry-idm46045203274992"> LOAD_FILE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045256354352"> load_rewrite_rules() Rewriter function, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-routines"> Rewriter Query Rewrite Plugin Procedures and Functions </a> </dt> <dt id="ientry-idm46045311323824"> local option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> </dl> </dd> <dt id="ientry-idm46045318951792"> local-infile option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> </dl> </dd> <dt id="ientry-idm46045304427216"> local-load option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> </dl> </dd> <dt id="ientry-idm46045279769472"> local-service option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045322742832"> localhost, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> special treatment of, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045204687744"> LOCALTIME, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204674944"> LOCALTIMESTAMP, <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045274352032"> local_infile system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> <dt id="ientry-idm46045203253472"> LOCATE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045114454368"> LocationDomainId (API nodes), <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045119818624"> LocationDomainId (data nodes), <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045120334512"> LocationDomainId (management nodes), <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> <dt id="ientry-idm46045032077376"> lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032070704"> lock escalation, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180812144"> LOCK IN SHARE MODE, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045178594144"> LOCK INSTANCE FOR BACKUP, <a class="indexterm" href="lock-instance-for-backup.html"> LOCK INSTANCE FOR BACKUP and UNLOCK INSTANCE Statements </a> </dt> <dt id="ientry-idm46045032064064"> lock mode, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045149436944"> Lock Monitor, <a class="indexterm" href="innodb-monitor-types.html"> InnoDB Monitor Types </a> , <a class="indexterm" href="innodb-standard-monitor.html"> InnoDB Standard Monitor and Lock Monitor Output </a> </dt> <dt id="ientry-idm46045303139616"> lock option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045178557104"> LOCK TABLES, <a class="indexterm" href="lock-tables.html"> LOCK TABLES and UNLOCK TABLES Statements </a> </dt> <dt id="ientry-idm46045251686240"> LOCK TABLES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045312150784"> lock-all-tables option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312137040"> lock-tables option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045262443328"> Locked_connects status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045274266368"> locked_in_memory system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045116501440"> LockExecuteThreadToCPU, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045280036640"> locking, <a class="indexterm" href="innodb-locking-transaction-model.html"> InnoDB Locking and Transaction Model </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> external, <a class="indexterm" href="server-options.html"> Server Command Options </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-crash-recovery.html"> Using myisamchk for Crash Recovery </a> , <a class="indexterm" href="external-locking.html"> External Locking </a> , <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> information schema, <a class="indexterm" href="innodb-information-schema-transactions.html"> InnoDB INFORMATION_SCHEMA Transaction and Locking Information </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> </dt> <dt> internal, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> <dt> metadata, <a class="indexterm" href="metadata-locking.html"> Metadata Locking </a> </dt> <dt> Performance Schema, <a class="indexterm" href="innodb-information-schema-transactions.html"> InnoDB INFORMATION_SCHEMA Transaction and Locking Information </a> </dt> <dt> row-level, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> <dt> table-level, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> </dl> </dd> <dt id="ientry-idm46045199172640"> locking functions, <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045222917888"> locking methods, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> <dt id="ientry-idm46045164069792"> locking read, <a class="indexterm" href="innodb-locking-reads.html#innodb-locking-reads-nowait-skip-locked"> Locking Read Concurrency with NOWAIT and SKIP LOCKED </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> NOWAIT, <a class="indexterm" href="innodb-locking-reads.html#innodb-locking-reads-nowait-skip-locked"> Locking Read Concurrency with NOWAIT and SKIP LOCKED </a> </dt> <dt> SKIP LOCKED, <a class="indexterm" href="innodb-locking-reads.html#innodb-locking-reads-nowait-skip-locked"> Locking Read Concurrency with NOWAIT and SKIP LOCKED </a> </dt> </dl> </dd> <dt id="ientry-idm46045254474112"> locking service </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="locking-service.html#locking-service-function-installation"> Installing or Uninstalling the Locking Service Function Interface </a> </dt> <dt> mysql_acquire_locking_service_locks() C function, <a class="indexterm" href="locking-service.html#locking-service-c-interface"> The Locking Service C Interface </a> </dt> <dt> mysql_release_locking_service_locks() C function, <a class="indexterm" href="locking-service.html#locking-service-c-interface"> The Locking Service C Interface </a> </dt> <dt> service_get_read_locks() function, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> <dt> service_get_write_locks() function, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> <dt> service_release_locks() function, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> <dt> uninstalling, <a class="indexterm" href="locking-service.html#locking-service-function-installation"> Installing or Uninstalling the Locking Service Function Interface </a> </dt> </dl> </dd> <dt id="ientry-idm46045221630544"> Locking system tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045254515088"> locking_service service, <a class="indexterm" href="locking-service.html"> The Locking Service </a> </dt> <dt id="ientry-idm46045116472032"> LockMaintThreadsToCPU, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118132688"> LockPagesInMainMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045089088032"> locks_per_fragment </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-locks-per-fragment.html"> The ndbinfo locks_per_fragment Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045253458048"> lock_order system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253561008"> LOCK_ORDER tool, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253425840"> lock_order_debug_loop system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253399424"> lock_order_debug_missing_arc system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253373568"> lock_order_debug_missing_key system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253347008"> lock_order_debug_missing_unlock system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253320448"> lock_order_dependencies system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253293504"> lock_order_extra_dependencies system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253265472"> lock_order_output_directory system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253238960"> lock_order_print_txt system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253212496"> lock_order_trace_loop system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253186144"> lock_order_trace_missing_arc system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253159664"> lock_order_trace_missing_key system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045253133104"> lock_order_trace_missing_unlock system variable, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt id="ientry-idm46045274315984"> lock_wait_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045032031376"> log, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045032017408"> log buffer, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045257267392"> log component </dt> <dd> <dl> <dt> log_filter_dragnet, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt> log_filter_internal, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt> log_sink_internal, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_json, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_syseventlog, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt> log_sink_test, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> </dl> </dd> <dt id="ientry-idm46045032011568"> log file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045257422400"> log files </dt> <dd> <dl> <dt> maintaining, <a class="indexterm" href="log-file-maintenance.html"> Server Log Maintenance </a> </dt> </dl> </dd> <dt id="ientry-idm46045107740640"> log files (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dd> <dl> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> </dl> </dd> <dt id="ientry-idm46045032005536"> log group, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045321085984"> log option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045205948656"> LOG(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045140935008"> log-bin option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045140891712"> log-bin-index option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045321781568"> log-error option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045279722272"> log-isam option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045102440416"> log-level option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045106826288"> log-name option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045279707712"> log-raw option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279673536"> log-short-format option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279657760"> log-tc option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279640864"> log-tc-size option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045205902496"> LOG10(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045205921088"> LOG2(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045108050864"> logbuffer-size option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045089006976"> logbuffers </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-logbuffers.html"> The ndbinfo logbuffers Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045120306896"> LogDestination, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> <dt id="ientry-idm46045252837232"> logging </dt> <dd> <dl> <dt> passwords, <a class="indexterm" href="password-logging.html"> Passwords and Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045093477104"> logging commands (NDB Cluster), <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt id="ientry-idm46045221625584"> logging slow query </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045031999472"> logical, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031995424"> logical backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045207007312"> logical operators, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> <dt id="ientry-idm46045221620672"> login </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045323794304"> login-path option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045116999200"> LogLevelCheckpoint, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116915504"> LogLevelCongestion, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116957520"> LogLevelConnection, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116936608"> LogLevelError, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116894512"> LogLevelInfo, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116978352"> LogLevelNodeRestart, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117041056"> LogLevelShutdown, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117061968"> LogLevelStartup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117020208"> LogLevelStatistic, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045259450992"> logs </dt> <dd> <dl> <dt> flushing, <a class="indexterm" href="server-logs.html"> MySQL Server Logs </a> </dt> <dt> server, <a class="indexterm" href="server-logs.html"> MySQL Server Logs </a> </dt> </dl> </dd> <dt id="ientry-idm46045088977200"> logspaces </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-logspaces.html"> The ndbinfo logspaces Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045139760352"> log_bin system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139724320"> log_bin_basename system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139699168"> log_bin_index system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139674896"> log_bin_trust_function_creators system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045274241184"> log_error system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274215280"> log_error_services system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274185920"> log_error_suppression_list system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274143904"> log_error_verbosity system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045257253728"> log_filter_dragnet log component, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt id="ientry-idm46045257268480"> log_filter_internal log component, <a class="indexterm" href="error-log-components.html#error-log-filter-components"> Filter Error Log Components </a> </dt> <dt id="ientry-idm46045274083424"> log_output system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274036480"> log_queries_not_using_indexes system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045274009824"> log_raw system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045139639920"> log_replica_updates system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045257238944"> log_sink_internal log component, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt id="ientry-idm46045257228096"> log_sink_json log component, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt id="ientry-idm46045257199808"> log_sink_syseventlog log component, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt id="ientry-idm46045257186800"> log_sink_test log component, <a class="indexterm" href="error-log-components.html#error-log-sink-components"> Sink Error Log Components </a> </dt> <dt id="ientry-idm46045139596240"> log_slave_updates system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045273980400"> log_slow_admin_statements system variable </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045273947184"> log_slow_extra system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045143226608"> log_slow_replica_statements system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045143181264"> log_slow_slave_statements system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045139567360"> log_statements_unsafe_for_binlog system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045067452928"> log_status table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-log-status-table.html"> The log_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045273878976"> log_throttle_queries_not_using_indexes system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273919360"> log_timestamps system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045221873504"> Long Data </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045212587824"> LONG data type, <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt id="ientry-idm46045212820432"> LONGBLOB data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045119064960"> LongMessageBuffer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045212809088"> LONGTEXT data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045273844688"> long_query_time system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045176476400"> LOOP, <a class="indexterm" href="loop.html"> LOOP Statement </a> </dt> <dd> <dl> <dt> labels, <a class="indexterm" href="statement-labels.html"> Statement Labels </a> </dt> </dl> </dd> <dt id="ientry-idm46045107459392"> loops option </dt> <dd> <dl> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045228778704"> Loose Index Scan </dt> <dd> <dl> <dt> GROUP BY optimizing, <a class="indexterm" href="group-by-optimization.html#loose-index-scan"> Loose Index Scan </a> </dt> </dl> </dd> <dt id="ientry-idm46045323708576"> --loose option prefix, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045228284144"> LooseScan </dt> <dd> <dl> <dt> semijoin strategy, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> </dl> </dd> <dt id="ientry-idm46045031984976"> loose_, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045100950304"> lossy-conversions option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045054468224"> lost connection errors, <a class="indexterm" href="error-lost-connection.html"> Lost connection to MySQL server </a> </dt> <dt id="ientry-idm46045311264464"> low-priority option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045031980544"> low-water mark, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045203236064"> LOWER(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045273763536"> lower_case_file_system system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dd> <dl> <dt> GRANT, <a class="indexterm" href="grant.html#grant-privileges"> Privileges Supported by MySQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045273741088"> lower_case_table_names system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045182906656"> LOW_PRIORITY </dt> <dd> <dl> <dt> DELETE modifier, <a class="indexterm" href="delete.html"> DELETE Statement </a> </dt> <dt> INSERT modifier, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt> UPDATE modifier, <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045273801472"> low_priority_updates system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045203204720"> LPAD(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045031977072"> LRU, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045163143840"> LRU page replacement, <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> </dt> <dt id="ientry-idm46045031966608"> LSN, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045203189312"> LTRIM(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045332979616"> LTS Series, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> MySQL releases, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_M"> </a> M </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045331698080"> macOS </dt> <dd> <dl> <dt> installation, <a class="indexterm" href="macos-installation.html"> Installing MySQL on macOS </a> </dt> </dl> </dd> <dt id="ientry-idm46045261018672"> main connection interface, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> </dt> <dt id="ientry-idm46045335204128"> main features of MySQL, <a class="indexterm" href="features.html"> The Main Features of MySQL </a> </dt> <dt id="ientry-idm46045257423888"> maintaining </dt> <dd> <dl> <dt> log files, <a class="indexterm" href="log-file-maintenance.html"> Server Log Maintenance </a> </dt> <dt> tables, <a class="indexterm" href="myisam-maintenance-schedule.html"> Setting Up a MyISAM Table Maintenance Schedule </a> </dt> </dl> </dd> <dt id="ientry-idm46045315948144"> maintenance </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045204662928"> MAKEDATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204647552"> MAKETIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045203175552"> MAKE_SET(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045221119248"> Making temporary file (append) before replaying LOAD DATA INFILE </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221112864"> Making temporary file (create) before replaying LOAD DATA INFILE </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045086958576"> malicious SQL statements </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045221615712"> manage keys </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045260239104"> management </dt> <dd> <dl> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-management"> Resource Group Management </a> </dt> </dl> </dd> <dt id="ientry-idm46045106429936"> management client (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dd> <dl> <dt> (see also mgm) </dt> </dl> </dd> <dt id="ientry-idm46045124337600"> management node (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> </dl> </dd> <dt id="ientry-idm46045107199424"> management nodes (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dd> <dl> <dt> (see also mgmd) </dt> </dl> </dd> <dt id="ientry-idm46045094662304"> managing NDB Cluster, <a class="indexterm" href="mysql-cluster-management.html"> Management of NDB Cluster </a> </dt> <dt id="ientry-idm46045108490704"> managing NDB Cluster processes, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045273681888"> mandatory_roles system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045335340320"> manual </dt> <dd> <dl> <dt> available formats, <a class="indexterm" href="manual-info.html"> About This Manual </a> </dt> <dt> online location, <a class="indexterm" href="manual-info.html"> About This Manual </a> </dt> <dt> syntax conventions, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt> typographical conventions, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> </dl> </dd> <dt id="ientry-idm46045251160976"> MASKING_DICTIONARIES_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045232682480"> masking_dictionaries_flush MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt id="ientry-idm46045232675072"> masking_dictionary_remove MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt id="ientry-idm46045232658400"> masking_dictionary_term_add() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt id="ientry-idm46045232632592"> masking_dictionary_term_remove() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt id="ientry-idm46045233050816"> mask_canada_sin() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt id="ientry-idm46045233026960"> mask_iban() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt id="ientry-idm46045233002368"> mask_inner() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt id="ientry-idm46045232977456"> mask_outer() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt id="ientry-idm46045232953552"> mask_pan() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt id="ientry-idm46045232934176"> mask_pan_relaxed() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt id="ientry-idm46045232914176"> mask_ssn() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt id="ientry-idm46045232890384"> mask_uk_nin() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt id="ientry-idm46045232864128"> mask_uuid() MySQL Enterprise Data Masking and De-Identification function, <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt id="ientry-idm46045221289104"> Master has sent all binlog to slave; waiting for more updates </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045031948288"> master thread, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045313135152"> master-data option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045143878256"> master-retry-count option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045193436720"> MASTER_POS_WAIT(), <a class="indexterm" href="replication-functions-synchronization.html"> Position-Based Synchronization Functions </a> </dt> <dt id="ientry-idm46045139539552"> master_verify_checksum system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045202027024"> MATCH ... AGAINST(), <a class="indexterm" href="fulltext-search.html"> Full-Text Search Functions </a> </dt> <dt id="ientry-idm46045325068912"> matching </dt> <dd> <dl> <dt> patterns, <a class="indexterm" href="pattern-matching.html"> Pattern Matching </a> </dt> </dl> </dd> <dt id="ientry-idm46045228219424"> materialization </dt> <dd> <dl> <dt> common table expressions, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> , <a class="indexterm" href="optimizer-hints.html#optimizer-hints-table-level"> Table-Level Optimizer Hints </a> </dt> <dt> derived tables, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> , <a class="indexterm" href="optimizer-hints.html#optimizer-hints-table-level"> Table-Level Optimizer Hints </a> </dt> <dt> subqueries, <a class="indexterm" href="subquery-materialization.html"> Optimizing Subqueries with Materialization </a> </dt> <dt> view references, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> , <a class="indexterm" href="optimizer-hints.html#optimizer-hints-table-level"> Table-Level Optimizer Hints </a> </dt> </dl> </dd> <dt id="ientry-idm46045190530304"> math, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045206199728"> mathematical functions, <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045192973552"> MAX(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192972480"> MAX(DISTINCT), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045318891424"> max-allowed-packet option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045140718864"> max-binlog-dump-events option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045318875392"> max-join-size option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045306994992"> max-record-length option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045143850736"> max-relay-log-size option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045102391840"> max-rows option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045118882320"> MaxAllocate, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117493952"> MaxBufferedEpochBytes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117517360"> MaxBufferedEpochs, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045114983600"> MaxDiskDataLatency, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117377232"> MaxDiskWriteSpeed, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117352736"> MaxDiskWriteSpeedOtherNodeRestart, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117328080"> MaxDiskWriteSpeedOwnRestart, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119409392"> MaxDMLOperationsPerTransaction, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119043968"> MaxFKBuildBatchSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045323705744"> --maximum option prefix, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045226469792"> maximums </dt> <dd> <dl> <dt> maximum columns per table, <a class="indexterm" href="column-count-limit.html#column-count-limits"> Column Count Limits </a> </dt> <dt> maximum number of databases, <a class="indexterm" href="database-count-limit.html"> Limits on Number of Databases and Tables </a> , <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> maximum number of tables, <a class="indexterm" href="database-count-limit.html"> Limits on Number of Databases and Tables </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> maximum row size, <a class="indexterm" href="column-count-limit.html#row-size-limits"> Row Size Limits </a> </dt> <dt> maximum tables per join, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt> maximum tables per view, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> table size, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> </dl> </dd> <dt id="ientry-idm46045118640560"> MaxLCPStartDelay, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118485776"> MaxNoOfAttributes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119383056"> MaxNoOfConcurrentIndexOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119468240"> MaxNoOfConcurrentOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119023360"> MaxNoOfConcurrentScans, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118280384"> MaxNoOfConcurrentSubOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119500832"> MaxNoOfConcurrentTransactions, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116137984"> MaxNoOfExecutionThreads </dt> <dd> <dl> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045119354736"> MaxNoOfFiredTriggers, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119436592"> MaxNoOfLocalOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118998336"> MaxNoOfLocalScans, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118683248"> MaxNoOfOpenFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118414784"> MaxNoOfOrderedIndexes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118661776"> MaxNoOfSavedMessages, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118310880"> MaxNoOfSubscribers, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118335904"> MaxNoOfSubscriptions, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118447712"> MaxNoOfTables, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118358528"> MaxNoOfTriggers, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118386368"> MaxNoOfUniqueHashIndexes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118970576"> MaxParallelCopyInstances, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118948272"> MaxParallelScansPerFragment, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118925264"> MaxReorgBuildBatchSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045114289072"> MaxScanBatchSize, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045115734512"> MaxSendDelay, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045114812576"> MaxStartFailRetries, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118904656"> MaxUIBuildBatchSize, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045135360240"> max_allowed_packet </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-max-allowed-packet.html"> Replication and max_allowed_packet </a> </dt> </dl> </dd> <dt id="ientry-idm46045273615568"> max_allowed_packet system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045139510704"> max_binlog_cache_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139446896"> max_binlog_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045139399440"> max_binlog_stmt_cache_size system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045184360432"> MAX_BLOB_PART_SIZE, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045273525440"> max_connections system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045247562496"> MAX_CONNECTIONS_PER_HOUR, <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> </dt> <dt id="ientry-idm46045273561936"> max_connect_errors system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273491104"> max_delayed_threads system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273456544"> max_digest_length system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273411408"> max_error_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273375536"> max_execution_time system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045262435376"> Max_execution_time_exceeded status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262428528"> Max_execution_time_set status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262419056"> Max_execution_time_set_failed status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045273327760"> max_heap_table_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045327989264"> MAX_INDEXES option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045273275072"> max_insert_delayed_threads system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045317214608"> max_join_size system variable, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273204368"> max_length_for_sort_data system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273169632"> max_points_in_geometry system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273137328"> max_prepared_stmt_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045247564640"> MAX_QUERIES_PER_HOUR, <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> </dt> <dt id="ientry-idm46045143152288"> max_relay_log_size system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045185861600"> MAX_ROWS </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="partitioning-overview.html"> Overview of Partitioning in MySQL </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045273106240"> max_seeks_for_key system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273064944"> max_sort_length system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045273022896"> max_sp_recursion_depth system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045247563568"> MAX_UPDATES_PER_HOUR, <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> </dt> <dt id="ientry-idm46045262412192"> Max_used_connections status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262406720"> Max_used_connections_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045247561408"> MAX_USER_CONNECTIONS, <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> </dt> <dt id="ientry-idm46045272989104"> max_user_connections system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272945120"> max_write_lock_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045196393744"> MBR, <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196362592"> MBRContains(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196347472"> MBRCoveredBy(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196331120"> MBRCovers(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196318688"> MBRDisjoint(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196308752"> MBREquals(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196298064"> MBRIntersects(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196288176"> MBROverlaps(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196277232"> MBRTouches(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045196266336"> MBRWithin(), <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045199342144"> MD5(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045031936080"> MDL, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045095728080"> measured-load option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045262393632"> mecab_charset status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045272901856"> mecab_rc_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031933120"> medium trust, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045315231968"> medium-check option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045212842032"> MEDIUMBLOB data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045214334400"> MEDIUMINT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045212832144"> MEDIUMTEXT data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045195183600"> MEMBER OF(), <a class="indexterm" href="json-search-functions.html"> Functions That Search JSON Values </a> </dt> <dt id="ientry-idm46045088954768"> membership </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-membership.html"> The ndbinfo membership Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045031928608"> memcached, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045279617792"> memlock option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045329925536"> memory allocation library, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> , <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt id="ientry-idm46045227375008"> MEMORY storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="memory-storage-engine.html"> The MEMORY Storage Engine </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-memory.html"> Replication and MEMORY Tables </a> </dt> <dt> optimization, <a class="indexterm" href="column-indexes.html#column-indexes-memory-storage-engine"> Indexes in the MEMORY Storage Engine </a> </dt> </dl> </dd> <dt id="ientry-idm46045306582864"> memory usage </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-memory.html"> myisamchk Memory Usage </a> </dt> </dl> </dd> <dt id="ientry-idm46045222344288"> memory use, <a class="indexterm" href="memory-use.html"> How MySQL Uses Memory </a> </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> <dt> monitoring, <a class="indexterm" href="monitor-mysql-memory-use.html"> Monitoring MySQL Memory Usage </a> </dt> <dt> Performance Schema, <a class="indexterm" href="performance-schema-startup-configuration.html"> Performance Schema Startup Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045088880272"> memoryusage </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-memoryusage.html"> The ndbinfo memoryusage Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045062873168"> memory_by_host_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-host-by-current-bytes.html"> The memory_by_host_by_current_bytes and x$memory_by_host_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062847808"> memory_by_thread_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-thread-by-current-bytes.html"> The memory_by_thread_by_current_bytes and x$memory_by_thread_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062822848"> memory_by_user_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-user-by-current-bytes.html"> The memory_by_user_by_current_bytes and x$memory_by_user_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062797536"> memory_global_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-global-by-current-bytes.html"> The memory_global_by_current_bytes and x$memory_global_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062772544"> memory_global_total view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-global-total.html"> The memory_global_total and x$memory_global_total Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045088840496"> memory_per_fragment </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-memory-per-fragment.html"> The ndbinfo memory_per_fragment Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068177136"> memory_summary_by_account_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068171056"> memory_summary_by_host_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068180176"> memory_summary_by_thread_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068174096"> memory_summary_by_user_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068168016"> memory_summary_global_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045116873600"> MemReportFrequency, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045031922256"> merge, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045148714736"> MERGE storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="merge-storage-engine.html"> The MERGE Storage Engine </a> </dt> <dt id="ientry-idm46045147488688"> MERGE tables </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="merge-storage-engine.html"> The MERGE Storage Engine </a> </dt> </dl> </dd> <dt id="ientry-idm46045227961984"> merging </dt> <dd> <dl> <dt> common table expressions, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> derived tables, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> view references, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> </dl> </dd> <dt id="ientry-idm46045211235824"> merging JSON values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt id="ientry-idm46045227012560"> metadata </dt> <dd> <dl> <dt> database, <a class="indexterm" href="information-schema.html"> INFORMATION_SCHEMA Tables </a> </dt> <dt> database object, <a class="indexterm" href="charset-metadata.html"> UTF-8 for Metadata </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-information-schema-tables.html"> INFORMATION_SCHEMA InnoDB Tables </a> </dt> <dt> invisible columns, <a class="indexterm" href="invisible-columns.html#invisible-column-metadata"> Invisible Column Metadata </a> </dt> <dt> invisible indexes, <a class="indexterm" href="invisible-indexes.html"> Invisible Indexes </a> </dt> <dt> stored routines, <a class="indexterm" href="stored-routines-metadata.html"> Stored Routine Metadata </a> </dt> <dt> triggers, <a class="indexterm" href="trigger-metadata.html"> Trigger Metadata </a> </dt> <dt> views, <a class="indexterm" href="view-metadata.html"> View Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045031915104"> metadata lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045222708352"> metadata locking, <a class="indexterm" href="metadata-locking.html"> Metadata Locking </a> , <a class="indexterm" href="performance-schema-metadata-locks-table.html"> The metadata_locks Table </a> </dt> <dt id="ientry-idm46045070360768"> metadata_locks table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-metadata-locks-table.html"> The metadata_locks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045222916816"> methods </dt> <dd> <dl> <dt> locking, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> </dl> </dd> <dt id="ientry-idm46045031903344"> metrics counter, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045062759680"> metrics view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-metrics.html"> The metrics View </a> </dt> </dl> </dd> <dt id="ientry-idm46045248034288"> MFA (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045124331216"> mgmd (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045124337600"> management node (NDB Cluster) </a> ) </dt> </dl> </dd> </dl> </dd> <dt id="ientry-idm46045204633664"> MICROSECOND(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045203151392"> MID(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045163148128"> midpoint insertion, <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> </dt> <dt id="ientry-idm46045031895312"> midpoint insertion strategy, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045192943280"> MIN(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192942208"> MIN(DISTINCT), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045117303632"> MinDiskWriteSpeed, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119533824"> MinFreePct, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045031885008"> mini-transaction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045196392704"> minimum bounding rectangle, <a class="indexterm" href="spatial-relation-functions-mbr.html"> Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </dt> <dt id="ientry-idm46045206368848"> minus </dt> <dd> <dl> <dt> unary (-), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045180316080"> MINUS (EXCEPT) </dt> <dd> <dl> <dt> set operations, <a class="indexterm" href="set-operations.html"> Set Operations with UNION, INTERSECT, and EXCEPT </a> </dt> </dl> </dd> <dt id="ientry-idm46045204618896"> MINUTE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045272871152"> min_examined_row_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045332946752"> mirror sites, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> <dt id="ientry-idm46045191203456"> miscellaneous functions, <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045102369184"> missing-ai-column option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045134939168"> mixed statements (Replication), <a class="indexterm" href="replication-features-transactions.html"> Replication and Transactions </a> </dt> <dt id="ientry-idm46045031872752"> mixed-mode insert, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031856592"> MM.MySQL, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045205877280"> MOD (modulo), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045205879424"> MOD(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045324800112"> modes </dt> <dd> <dl> <dt> batch, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> </dt> </dl> </dd> <dt id="ientry-idm46045205876208"> modulo (%), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045205875136"> modulo (MOD), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045325704976"> monitor </dt> <dd> <dl> <dt> terminal, <a class="indexterm" href="tutorial.html"> Tutorial </a> </dt> </dl> </dd> <dt id="ientry-idm46045102349888"> monitor option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045255310944"> monitoring, <a class="indexterm" href="clone-plugin-monitoring.html"> Monitoring Cloning Operations </a> , <a class="indexterm" href="monitor-mysql-memory-use.html"> Monitoring MySQL Memory Usage </a> , <a class="indexterm" href="innodb-buffer-pool.html#innodb-buffer-pool-monitoring"> Monitoring the Buffer Pool Using the InnoDB Standard Monitor </a> , <a class="indexterm" href="innodb-change-buffer.html#innodb-change-buffer-monitoring"> Monitoring the Change Buffer </a> , <a class="indexterm" href="innodb-fulltext-index.html#innodb-fulltext-index-monitoring"> Monitoring InnoDB Full-Text Indexes </a> , <a class="indexterm" href="innodb-buffer-pool-resize.html#innodb-buffer-pool-online-resize-monitoring"> Monitoring Online Buffer Pool Resizing Progress </a> , <a class="indexterm" href="innodb-preload-buffer-pool.html#monitor-buffer-pool-load-performance-schema"> Monitoring Buffer Pool Load Progress Using Performance Schema </a> , <a class="indexterm" href="innodb-compression-tuning-monitoring.html"> Monitoring InnoDB Table Compression at Runtime </a> , <a class="indexterm" href="innodb-data-encryption.html#innodb-data-encryption-progress-monitoring"> Monitoring Encryption Progress </a> , <a class="indexterm" href="monitor-alter-table-performance-schema.html"> Monitoring ALTER TABLE Progress for InnoDB Tables Using Performance Schema </a> , <a class="indexterm" href="monitor-innodb-mutex-waits-performance-schema.html"> Monitoring InnoDB Mutex Waits Using Performance Schema </a> , <a class="indexterm" href="mysql-enterprise-monitor.html"> MySQL Enterprise Monitor Overview </a> </dt> <dd> <dl> <dt> multi-source replication, <a class="indexterm" href="replication-multi-source-monitoring.html"> Monitoring Multi-Source Replication </a> </dt> <dt> threads, <a class="indexterm" href="thread-information.html"> Examining Server Thread (Process) Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045149442048"> Monitors, <a class="indexterm" href="innodb-monitors.html"> InnoDB Monitors </a> </dt> <dd> <dl> <dt> enabling, <a class="indexterm" href="innodb-enabling-monitors.html"> Enabling InnoDB Monitors </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-troubleshooting.html"> InnoDB Troubleshooting </a> </dt> <dt> output, <a class="indexterm" href="innodb-standard-monitor.html"> InnoDB Standard Monitor and Lock Monitor Output </a> </dt> </dl> </dd> <dt id="ientry-idm46045031853248"> Mono, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045204605040"> MONTH(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204588992"> MONTHNAME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045031848656"> .MRG file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045223776176"> MRR, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045327643888"> MSVC_CPPCHECK option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045321237616"> multi mysqld, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt id="ientry-idm46045227369536"> multi-column indexes, <a class="indexterm" href="multiple-column-indexes.html"> Multiple-Column Indexes </a> </dt> <dt id="ientry-idm46045031841520"> multi-core, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045229324672"> Multi-Range Read </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="mrr-optimization.html"> Multi-Range Read Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045145327696"> multi-source replication, <a class="indexterm" href="replication-multi-source.html"> MySQL Multi-Source Replication </a> </dt> <dd> <dl> <dt> adding binary log source, <a class="indexterm" href="replication-multi-source-adding-binlog-master.html"> Adding Binary Log Based Replication Sources to a Multi-Source Replica </a> </dt> <dt> adding GTID source, <a class="indexterm" href="replication-multi-source-adding-gtid-master.html"> Adding GTID-Based Sources to a Multi-Source Replica </a> </dt> <dt> configuring, <a class="indexterm" href="replication-multi-source-configuration.html"> Configuring Multi-Source Replication </a> </dt> <dt> error messages, <a class="indexterm" href="replication-multi-source.html"> MySQL Multi-Source Replication </a> </dt> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html"> NDB Cluster Replication Conflict Resolution </a> </dt> <dt> monitoring, <a class="indexterm" href="replication-multi-source-monitoring.html"> Monitoring Multi-Source Replication </a> </dt> <dt> overview, <a class="indexterm" href="replication-multi-source.html"> MySQL Multi-Source Replication </a> </dt> <dt> performance schema, <a class="indexterm" href="replication-multi-source-monitoring.html#replication-multi-source-monitoring-tutorial"> Monitoring Channels Using Performance Schema Tables </a> </dt> <dt> provisioning, <a class="indexterm" href="replication-multi-source-provision-replica.html"> Provisioning a Multi-Source Replica for GTID-Based Replication </a> </dt> <dt> resetting replica, <a class="indexterm" href="replication-multi-source-reset-replica.html"> Resetting Multi-Source Replicas </a> </dt> <dt> starting replica, <a class="indexterm" href="replication-multi-source-start-replica.html"> Starting Multi-Source Replicas </a> </dt> <dt> stopping replica, <a class="indexterm" href="replication-multi-source-stop-replica.html"> Stopping Multi-Source Replicas </a> </dt> <dt> tutorials, <a class="indexterm" href="replication-multi-source.html"> MySQL Multi-Source Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045187845584"> multi-valued indexes, <a class="indexterm" href="create-index.html#create-index-multi-valued"> Multi-Valued Indexes </a> </dt> <dt id="ientry-idm46045054210352"> multibyte character sets, <a class="indexterm" href="cannot-initialize-character-set.html"> Can't initialize character set </a> </dt> <dt id="ientry-idm46045215296256"> multibyte characters, <a class="indexterm" href="multibyte-characters.html"> Multi-Byte Character Support for Complex Character Sets </a> </dt> <dt id="ientry-idm46045248035376"> multifactor authentication, <a class="indexterm" href="multifactor-authentication.html"> Multifactor Authentication </a> </dt> <dt id="ientry-idm46045212170288"> MULTILINESTRING data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197705712"> MultiLineString(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045163165184"> multiple buffer pools, <a class="indexterm" href="innodb-multiple-buffer-pools.html"> Configuring Multiple Buffer Pool Instances </a> </dt> <dt id="ientry-idm46045254132416"> multiple servers, <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> </dt> <dt id="ientry-idm46045188096368"> multiple-part index, <a class="indexterm" href="create-index.html"> CREATE INDEX Statement </a> </dt> <dt id="ientry-idm46045206352000"> multiplication (*), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045212171360"> MULTIPOINT data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197696256"> MultiPoint(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045212169200"> MULTIPOLYGON data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197686720"> MultiPolygon(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045031837872"> mutex, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045149542320"> mutex wait </dt> <dd> <dl> <dt> monitoring, <a class="indexterm" href="monitor-innodb-mutex-waits-performance-schema.html"> Monitoring InnoDB Mutex Waits Using Performance Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045073550656"> mutex_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-mutex-instances-table.html"> The mutex_instances Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045327968016"> MUTEX_TYPE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045031827520"> MVCC, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045167230544"> MVCC (multi-version concurrency control), <a class="indexterm" href="innodb-multi-versioning.html"> InnoDB Multi-Versioning </a> </dt> <dt id="ientry-idm46045335065520"> My </dt> <dd> <dl> <dt> derivation, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045122265296"> my.cnf, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-install-configuration.html"> Initial Configuration of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-config-file.html"> NDB Cluster Configuration Files </a> , <a class="indexterm" href="mysql-cluster-config-example.html"> NDB Cluster Configuration: Basic Example </a> </dt> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045136022096"> my.cnf option file, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> <dt id="ientry-idm46045031812816"> my.ini, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045106782192"> mycnf option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045031808960"> .MYD file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031803632"> .MYI file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045306493376"> MyISAM </dt> <dd> <dl> <dt> compressed tables, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> , <a class="indexterm" href="compressed-format.html"> Compressed Table Characteristics </a> </dt> <dt> converting tables to InnoDB, <a class="indexterm" href="converting-tables-to-innodb.html"> Converting Tables from MyISAM to InnoDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045223094912"> MyISAM key cache, <a class="indexterm" href="myisam-key-cache.html"> The MyISAM Key Cache </a> </dt> <dt id="ientry-idm46045148713664"> MyISAM storage engine, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> , <a class="indexterm" href="myisam-storage-engine.html"> The MyISAM Storage Engine </a> </dt> <dt id="ientry-idm46045279584112"> myisam-block-size option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324383328"> myisamchk, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="myisamchk.html"> myisamchk — MyISAM Table-Maintenance Utility </a> </dt> <dd> <dl> <dt> analyze option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> backup option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> block-search option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> check option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> check-only-changed option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> correct-checksum option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> data-file-length option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> debug option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> defaults-file option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> description option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> example output, <a class="indexterm" href="myisamchk-table-info.html"> Obtaining Table Information with myisamchk </a> </dt> <dt> extend-check option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> , <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> fast option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> force option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> , <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> help option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> HELP option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> information option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> keys-used option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> max-record-length option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> medium-check option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> no-defaults option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> options, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> print-defaults option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> quick option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> read-only option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> recover option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> safe-recover option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> set-auto-increment[ option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> set-collation option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> silent option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> sort-index option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> sort-records option, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> <dt> sort-recover option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> tmpdir option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> unpack option, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> update-state option, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> verbose option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> version option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> wait option, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324378416"> myisamlog, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="myisamlog.html"> myisamlog — Display MyISAM Log File Contents </a> </dt> <dt id="ientry-idm46045324373328"> myisampack, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> , <a class="indexterm" href="silent-column-changes.html"> Silent Column Specification Changes </a> , <a class="indexterm" href="compressed-format.html"> Compressed Table Characteristics </a> </dt> <dd> <dl> <dt> backup option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> debug option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> force option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> help option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> join option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> silent option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> test option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> tmpdir option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> verbose option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> version option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> wait option, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045307339680"> myisam_block_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045272836832"> myisam_data_pointer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045324388416"> myisam_ftdump, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dd> <dl> <dt> count option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> dump option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> help option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> length option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> stats option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> verbose option, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> </dl> </dd> <dt id="ientry-idm46045272800592"> myisam_max_sort_file_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt id="ientry-idm46045272752096"> myisam_mmap_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272712512"> myisam_recover_options system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt id="ientry-idm46045307336416"> myisam_sort_buffer_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045272644880"> myisam_sort_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt id="ientry-idm46045272605360"> myisam_stats_method system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272564208"> myisam_use_mmap system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031798336"> MyODBC drivers, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045335241616"> MySQL </dt> <dd> <dl> <dt> debugging, <a class="indexterm" href="debugging-mysql.html"> Debugging MySQL </a> </dt> <dt> defined, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> <dt> introduction, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> <dt> pronunciation, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> </dl> </dd> <dt id="ientry-idm46045324438656"> mysql, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> auto-rehash option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> auto-vertical-output option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> batch option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> binary-as-hex option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> binary-mode option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> bind-address option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> charset command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> clear command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> column-names option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> column-type-info option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> comments option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> compress option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> connect command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> connect-expired-password option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> connect-timeout option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> database option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> debug option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> delimiter command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> delimiter option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> disable named commands, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> dns-srv-name option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> edit command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> ego command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> execute option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> exit command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> force option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> go command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> help command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> help option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> histignore option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> host option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> html option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> i-am-a-dummy option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> ignore-spaces option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> init-command option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> init-command-add option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> line-numbers option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> load-data-local-dir option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> <dt> local-infile option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> max-allowed-packet option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> max-join-size option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> named-commands option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> net-buffer-length option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> network-namespace option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> no-auto-rehash option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> no-beep option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> nopager command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> notee command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> nowarning command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> oci-config-file option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> one-database option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> pager command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> pager option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> password option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> pipe option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> plugin-authentication-kerberos-client-mode option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> plugin-authentication-webauthn-client-preserve-privacy option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> port option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> print command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> prompt command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> prompt option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> protocol option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> query_attributes command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> quick option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> quit command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> raw option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> reconnect option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> register-factor option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> rehash command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> resetconnection command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> safe-updates option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> select-limit option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> show-warnings option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> sigint-ignore option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> silent option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> skip-column-names option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> skip-line-numbers option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> skip-system-command option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> socket option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> source command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> SSL options, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> ssl_session_data_print command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> status command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> syslog option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> system command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> system-command option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> table option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> tee command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> tee option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> telemetry_client, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> telemetry_client.otel-help, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.oteltrace, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_bsp_max_export_batch_size, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_bsp_max_queue_size, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_bsp_schedule_delay, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_certificates, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_client_certificates, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_client_key, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_compression, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_endpoint, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_headers, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_protocol, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_exporter_otlp_traces_timeout, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_log_level, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> telemetry_client.otel_resource_attributes, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> unbuffered option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> use command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> user option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> version option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> vertical option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> wait option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> warnings command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> xml option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045331261136"> MySQL APT Repository, <a class="indexterm" href="linux-installation-apt-repo.html"> Installing MySQL on Linux Using the MySQL APT Repository </a> , <a class="indexterm" href="updating-apt-repo.html"> Upgrading MySQL with the MySQL APT Repository </a> </dt> <dt id="ientry-idm46045332996240"> MySQL binary distribution, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt id="ientry-idm46045060349904"> MySQL C API, <a class="indexterm" href="c-api-info.html"> MySQL C API </a> </dt> <dt id="ientry-idm46045317124640"> mysql client parser </dt> <dd> <dl> <dt> versus mysqld parser, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> </dt> </dl> </dd> <dt id="ientry-idm46045094619648"> MySQL Cluster Manager </dt> <dd> <dl> <dt> and ndb_mgm, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045320152032"> mysql command options, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt id="ientry-idm46045317917632"> mysql commands </dt> <dd> <dl> <dt> list of, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045332375040"> MySQL Configurator, <a class="indexterm" href="mysql-configurator.html"> Configuration: Using MySQL Configurator </a> </dt> <dt id="ientry-idm46045167825600"> MySQL Data Dictionary, <a class="indexterm" href="data-dictionary.html"> MySQL Data Dictionary </a> </dt> <dt id="ientry-idm46045146345536"> mysql database </dt> <dd> <dl> <dt> gtid_executed table, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table"> mysql.gtid_executed Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045335064128"> MySQL Dolphin name, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> <dt id="ientry-idm46045238630784"> MySQL Enterprise Audit, <a class="indexterm" href="audit-log.html"> MySQL Enterprise Audit </a> , <a class="indexterm" href="mysql-enterprise-audit.html"> MySQL Enterprise Audit Overview </a> </dt> <dt id="ientry-idm46045132829776"> MySQL Enterprise Backup, <a class="indexterm" href="mysql-enterprise-backup.html"> MySQL Enterprise Backup Overview </a> </dt> <dd> <dl> <dt> Group Replication, <a class="indexterm" href="group-replication-enterprise-backup.html"> Using MySQL Enterprise Backup with Group Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045233534864"> MySQL Enterprise Data Masking and De-Identification, <a class="indexterm" href="data-masking.html"> MySQL Enterprise Data Masking and De-Identification </a> , <a class="indexterm" href="mysql-enterprise-data-masking.html"> MySQL Enterprise Data Masking and De-Identification Overview </a> </dt> <dt id="ientry-idm46045233491696"> MySQL Enterprise Data Masking and De-Identification components </dt> <dd> <dl> <dt> elements, <a class="indexterm" href="data-masking-components-vs-plugin.html"> Data-Masking Components Versus the Data-Masking Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045233049680"> MySQL Enterprise Data Masking and De-Identification functions </dt> <dd> <dl> <dt> gen_blacklist(), <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt> gen_blocklist(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-generating-component-functions"> Dictionary Generating Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt> gen_dictionary(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-generating-component-functions"> Dictionary Generating Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt> gen_dictionary_drop(), <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt> gen_dictionary_load(), <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-dictionary-plugin-functions"> Random Data Dictionary-Based Plugin Functions </a> </dt> <dt> gen_range(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt> gen_rnd_canada_sin(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt> gen_rnd_email(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt> gen_rnd_iban(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt> gen_rnd_pan(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt> gen_rnd_ssn(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt> gen_rnd_uk_nin(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt> gen_rnd_us_phone(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-generation-plugin-functions"> Random Data Generation Plugin Functions </a> </dt> <dt> gen_rnd_uuid(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-generation-component-functions"> Random Data Generation Component Functions </a> </dt> <dt> masking_dictionaries_flush, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt> masking_dictionary_remove, <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt> masking_dictionary_term_add(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt> masking_dictionary_term_remove(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-dictionary-masking-component-functions"> Dictionary Masking Administration Component Functions </a> </dt> <dt> mask_canada_sin(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt> mask_iban(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt> mask_inner(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt> mask_outer(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt> mask_pan(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt> mask_pan_relaxed(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt> mask_ssn(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> , <a class="indexterm" href="data-masking-plugin-functions.html#data-masking-masking-plugin-functions"> Data Masking Plugin Functions </a> </dt> <dt> mask_uk_nin(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> <dt> mask_uuid(), <a class="indexterm" href="data-masking-component-functions.html#data-masking-masking-component-functions"> Data Masking Component Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045233490160"> MySQL Enterprise Data Masking and De-Identification plugin </dt> <dd> <dl> <dt> elements, <a class="indexterm" href="data-masking-components-vs-plugin.html"> Data-Masking Components Versus the Data-Masking Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045231986768"> MySQL Enterprise Encryption, <a class="indexterm" href="enterprise-encryption.html"> MySQL Enterprise Encryption </a> , <a class="indexterm" href="mysql-enterprise-encryption.html"> MySQL Enterprise Encryption Overview </a> </dt> <dt id="ientry-idm46045234626944"> MySQL Enterprise Firewall, <a class="indexterm" href="firewall.html"> MySQL Enterprise Firewall </a> , <a class="indexterm" href="mysql-enterprise-firewall.html"> MySQL Enterprise Firewall Overview </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="firewall-installation.html"> Installing or Uninstalling MySQL Enterprise Firewall </a> </dt> <dt> using, <a class="indexterm" href="firewall-usage.html"> Using MySQL Enterprise Firewall </a> </dt> </dl> </dd> <dt id="ientry-idm46045233819248"> MySQL Enterprise Firewall functions </dt> <dd> <dl> <dt> firewall_group_delist(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> firewall_group_enlist(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> mysql_firewall_flush_status(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> normalize_statement(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> read_firewall_groups(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> read_firewall_group_allowlist(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> read_firewall_users(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> read_firewall_whitelist(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> set_firewall_group_mode(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt> set_firewall_mode(), <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045233976592"> MySQL Enterprise Firewall stored procedures </dt> <dd> <dl> <dt> sp_firewall_group_delist(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_firewall_group_enlist(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_migrate_firewall_user_to_group(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_reload_firewall_group_rules(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_reload_firewall_rules(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_set_firewall_group_mode(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_set_firewall_group_mode_and_user(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt> sp_set_firewall_mode(), <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> </dl> </dd> <dt id="ientry-idm46045234074816"> MySQL Enterprise Firewall tables </dt> <dd> <dl> <dt> firewall_groups, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt> firewall_group_allowlist, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt> firewall_membership, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt> firewall_users, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> <dt> firewall_whitelist, <a class="indexterm" href="firewall-reference.html#firewall-tables"> MySQL Enterprise Firewall Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045060187584"> MySQL Enterprise Monitor, <a class="indexterm" href="mysql-enterprise-monitor.html"> MySQL Enterprise Monitor Overview </a> </dt> <dt id="ientry-idm46045248020656"> MySQL Enterprise Security, <a class="indexterm" href="multifactor-authentication.html"> Multifactor Authentication </a> , <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> , <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> , <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> , <a class="indexterm" href="kerberos-pluggable-authentication.html"> Kerberos Pluggable Authentication </a> , <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> , <a class="indexterm" href="mysql-enterprise-security.html"> MySQL Enterprise Security Overview </a> </dt> <dt id="ientry-idm46045256870816"> MySQL Enterprise Thread Pool, <a class="indexterm" href="thread-pool.html"> MySQL Enterprise Thread Pool </a> , <a class="indexterm" href="mysql-enterprise-thread-pool.html"> MySQL Enterprise Thread Pool Overview </a> </dt> <dd> <dl> <dt> elements, <a class="indexterm" href="thread-pool-elements.html"> Thread Pool Elements </a> </dt> <dt> installing, <a class="indexterm" href="thread-pool-installation.html"> Thread Pool Installation </a> </dt> </dl> </dd> <dt id="ientry-idm46045159423296"> MySQL Enterprise Transparent Data Encryption, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dt id="ientry-idm46045335068544"> MySQL history, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> <dt id="ientry-idm46045317477648"> mysql history file, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> </dt> <dt id="ientry-idm46045335066528"> MySQL name, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> <dt id="ientry-idm46045086999280"> MySQL privileges </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045317603792"> mysql prompt command, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt id="ientry-idm46045322015104"> MySQL server </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysqld.html"> mysqld — The MySQL Server </a> , <a class="indexterm" href="mysqld-server.html"> The MySQL Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045128188560"> MySQL Shell, <a class="indexterm" href="mysql-shell-userguide.html"> MySQL Shell </a> </dt> <dd> <dl> <dt> NoSQL, <a class="indexterm" href="mysql-shell-userguide.html"> MySQL Shell </a> </dt> </dl> </dd> <dt id="ientry-idm46045128124800"> MySQL Shell JavaScript tutorial, <a class="indexterm" href="mysql-shell-tutorial-javascript.html"> JavaScript Quick-Start Guide: MySQL Shell for Document Store </a> </dt> <dd> <dl> <dt> add documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-add.html"> Working with Collections </a> </dt> <dt> append insert delete, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-modify.html#mysql-shell-tutorial-javascript-append-insert-delete"> Append, Insert, and Delete Arrays </a> </dt> <dt> collection operations, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-operations.html"> Create, List, and Drop Collections </a> </dt> <dt> confirm schema, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-operations.html#idm46045127949776"> Confirm the Schema </a> </dt> <dt> create collections, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-operations.html#mysql-shell-tutorial-javascript-collections-create"> Create a Collection </a> </dt> <dt> delete all records, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-delete.html#mysql-shell-tutorial-javascript-delete-all-records"> Delete All Records in a Table </a> </dt> <dt> delete first record, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-delete.html#mysql-shell-tutorial-javascript-delete-first-record"> Delete the First Record </a> </dt> <dt> delete records using conditions, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-delete.html#mysql-shell-tutorial-javascript-delete-records-using-conditions"> Delete Records Using Conditions </a> </dt> <dt> documents and collections, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-collections.html"> Documents and Collections </a> </dt> <dt> documents in tables, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-in-tables.html"> Documents in Tables </a> </dt> <dt> drop collections, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-operations.html#mysql-shell-tutorial-javascript-collections-drop"> Drop a Collection </a> </dt> <dt> drop index, <a class="indexterm" href="mysql-shell-tutorial-javascript-indexes-create.html#mysql-shell-tutorial-javascript-drop-index"> Drop an Index </a> </dt> <dt> drop table, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-delete.html#idm46045127460464"> Drop a Table </a> </dt> <dt> filter searches, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-select.html#mysql-shell-tutorial-javascript-filter-searches"> Filter Searches </a> </dt> <dt> find all documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-find.html#mysql-shell-tutorial-javascript-documents-find-all"> Find All Documents in a Collection </a> </dt> <dt> find documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-find.html"> Find Documents </a> </dt> <dt> find documents with filter search, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-find.html#mysql-shell-tutorial-javascript-documents-find-filter-searches"> Filter Searches </a> </dt> <dt> get collections, <a class="indexterm" href="mysql-shell-tutorial-javascript-collections-operations.html#mysql-shell-tutorial-javascript-collections-get"> List Collections </a> </dt> <dt> help in MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-javascript-shell.html#mysql-shell-tutorial-javascript-shell-help"> Get Help for MySQL Shell </a> </dt> <dt> index documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-indexes-create.html"> Create and Drop Indexes </a> </dt> <dt> insert complete record, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-insert.html#mysql-shell-tutorial-javascript-insert-complete-record"> Insert a Complete Record </a> </dt> <dt> insert partial record, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-insert.html#mysql-shell-tutorial-javascript-insert-partial-record"> Insert a Partial Record </a> </dt> <dt> insert record, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-in-tables.html#mysql-shell-tutorial-javascript-insert-record"> Insert a Record </a> </dt> <dt> limit, order, offset results, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-select.html#mysql-shell-tutorial-javascript-limit-order-offset-results"> Limit, Order, and Offset Results </a> </dt> <dt> limit, sort, and skip results, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-find.html#idm46045127813040"> Limit, Sort, and Skip Results </a> </dt> <dt> modify documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-modify.html"> Modify Documents </a> </dt> <dt> nonunique index, <a class="indexterm" href="mysql-shell-tutorial-javascript-indexes-create.html#mysql-shell-tutorial-javascript-nonunique-index"> Add a Nonunique Index </a> </dt> <dt> project results, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-find.html#idm46045127822800"> Project Results </a> , <a class="indexterm" href="mysql-shell-tutorial-javascript-table-select.html#mysql-shell-tutorial-javascript-project-results"> Project Results </a> </dt> <dt> quit MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-javascript-shell.html#mysql-shell-tutorial-javascript-shell-quit"> Quit MySQL Shell </a> </dt> <dt> relational tables, <a class="indexterm" href="mysql-shell-tutorial-javascript-relational-tables.html"> Relational Tables </a> </dt> <dt> remove all documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-remove.html#mysql-shell-tutorial-javascript-remove-all-documents"> Remove All Documents in a Collection </a> </dt> <dt> remove documents, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-remove.html"> Remove Documents </a> </dt> <dt> remove documents by condition, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-remove.html#mysql-shell-tutorial-javascript-remove-documents-by-condition"> Remove Documents Using Conditions </a> </dt> <dt> remove first document, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-remove.html#mysql-shell-tutorial-javascript-remove-first-document"> Remove the First Document </a> </dt> <dt> remove last document, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-remove.html#mysql-shell-tutorial-javascript-remove-last-document"> Remove the Last Document in an Order </a> </dt> <dt> select all records, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-select.html#mysql-shell-tutorial-javascript-select-all-records"> Select All Records </a> </dt> <dt> select records, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-in-tables.html#mysql-shell-tutorial-javascript-select-record"> Select a Record </a> </dt> <dt> select tables, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-select.html"> Select Tables </a> </dt> <dt> set and unset fields, <a class="indexterm" href="mysql-shell-tutorial-javascript-documents-modify.html#idm46045127777984"> Set and Unset Document Fields </a> </dt> <dt> table insert records, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-insert.html"> Insert Records into Tables </a> </dt> <dt> unique index, <a class="indexterm" href="mysql-shell-tutorial-javascript-indexes-create.html#mysql-shell-tutorial-javascript-unique-index"> Add a Unique Index </a> </dt> <dt> update table records, <a class="indexterm" href="mysql-shell-tutorial-javascript-table-update.html"> Update Tables </a> </dt> <dt> using MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-javascript-shell.html"> MySQL Shell </a> </dt> <dt> world x, <a class="indexterm" href="mysql-shell-tutorial-javascript-download.html#idm46045128032320"> The world_x Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045127420880"> MySQL Shell Python tutorial, <a class="indexterm" href="mysql-shell-tutorial-python.html"> Python Quick-Start Guide: MySQL Shell for Document Store </a> </dt> <dd> <dl> <dt> add documents, <a class="indexterm" href="mysql-shell-tutorial-python-documents-add.html"> Working with Collections </a> </dt> <dt> append insert delete, <a class="indexterm" href="mysql-shell-tutorial-python-documents-modify.html#mysql-shell-tutorial-python-append-insert-delete"> Append, Insert, and Delete Arrays </a> </dt> <dt> collection operations, <a class="indexterm" href="mysql-shell-tutorial-python-collections-operations.html"> Create, List, and Drop Collections </a> </dt> <dt> collections create, <a class="indexterm" href="mysql-shell-tutorial-python-collections-operations.html#mysql-shell-tutorial-python-collections-create"> Create a Collection </a> </dt> <dt> collections drop, <a class="indexterm" href="mysql-shell-tutorial-python-collections-operations.html#mysql-shell-tutorial-python-collections-drop"> Drop a Collection </a> </dt> <dt> collections get, <a class="indexterm" href="mysql-shell-tutorial-python-collections-operations.html#mysql-shell-tutorial-python-collections-get"> List Collections </a> </dt> <dt> confirm schema, <a class="indexterm" href="mysql-shell-tutorial-python-collections-operations.html#idm46045127243040"> Confirm the Schema </a> </dt> <dt> delete all records, <a class="indexterm" href="mysql-shell-tutorial-python-table-delete.html#mysql-shell-tutorial-python-delete-all-records"> Delete All Records in a Table </a> </dt> <dt> delete first record, <a class="indexterm" href="mysql-shell-tutorial-python-table-delete.html#mysql-shell-tutorial-python-delete-first-record"> Delete the First Record </a> </dt> <dt> delete records using conditions, <a class="indexterm" href="mysql-shell-tutorial-python-table-delete.html#mysql-shell-tutorial-python-delete-records-using-conditions"> Delete Records Using Conditions </a> </dt> <dt> documents and collections, <a class="indexterm" href="mysql-shell-tutorial-python-documents-collections.html"> Documents and Collections </a> </dt> <dt> documents in tables, <a class="indexterm" href="mysql-shell-tutorial-python-documents-in-tables.html"> Documents in Tables </a> </dt> <dt> documents index, <a class="indexterm" href="mysql-shell-tutorial-python-documents-index.html"> Create and Drop Indexes </a> </dt> <dt> documents remove, <a class="indexterm" href="mysql-shell-tutorial-python-documents-remove.html"> Remove Documents </a> </dt> <dt> drop index, <a class="indexterm" href="mysql-shell-tutorial-python-documents-index.html#mysql-shell-tutorial-python-drop-index"> Drop an Index </a> </dt> <dt> drop table, <a class="indexterm" href="mysql-shell-tutorial-python-table-delete.html#mysql-shell-tutorial-python-drop-table"> Drop a Table </a> </dt> <dt> filter searches, <a class="indexterm" href="mysql-shell-tutorial-python-table-select.html#mysql-shell-tutorial-python-filter-searches"> Filter Searches </a> </dt> <dt> find all documents, <a class="indexterm" href="mysql-shell-tutorial-python-documents-find.html#mysql-shell-tutorial-python-documents-find-all"> Find All Documents in a Collection </a> </dt> <dt> find documents, <a class="indexterm" href="mysql-shell-tutorial-python-documents-find.html"> Find Documents </a> </dt> <dt> find documents with filter search, <a class="indexterm" href="mysql-shell-tutorial-python-documents-find.html#mysql-shell-tutorial-python-documents-find-filter-searches"> Filter Searches </a> </dt> <dt> help in MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-python-shell.html#mysql-shell-tutorial-python-shell-help"> Get Help for MySQL Shell </a> </dt> <dt> insert complete record, <a class="indexterm" href="mysql-shell-tutorial-python-table-insert.html#mysql-shell-tutorial-python-insert-complete-record"> Insert a Complete Record </a> </dt> <dt> insert partial record, <a class="indexterm" href="mysql-shell-tutorial-python-table-insert.html#mysql-shell-tutorial-python-insert-partial-record"> Insert a Partial Record </a> </dt> <dt> insert record, <a class="indexterm" href="mysql-shell-tutorial-python-documents-in-tables.html#mysql-shell-tutorial-python-insert-record"> Insert a Record </a> </dt> <dt> limit order offset results, <a class="indexterm" href="mysql-shell-tutorial-python-table-select.html#mysql-shell-tutorial-python-limit-order-offset-results"> Limit, Order, and Offset Results </a> </dt> <dt> limit, sort, and skip results, <a class="indexterm" href="mysql-shell-tutorial-python-documents-find.html#idm46045127106256"> Limit, Sort, and Skip Results </a> </dt> <dt> modify documents, <a class="indexterm" href="mysql-shell-tutorial-python-documents-modify.html"> Modify Documents </a> </dt> <dt> nonunique index, <a class="indexterm" href="mysql-shell-tutorial-python-documents-index.html#mysql-shell-tutorial-python-nonunique-index"> Add a Nonunique Index </a> </dt> <dt> project results, <a class="indexterm" href="mysql-shell-tutorial-python-documents-find.html#idm46045127116016"> Project Results </a> , <a class="indexterm" href="mysql-shell-tutorial-python-table-select.html#mysql-shell-tutorial-python-project-results"> Project Results </a> </dt> <dt> quit MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-python-shell.html#mysql-shell-tutorial-python-shell-quit"> Quit MySQL Shell </a> </dt> <dt> relational tables, <a class="indexterm" href="mysql-shell-tutorial-python-relational-tables.html"> Relational Tables </a> </dt> <dt> remove all documents, <a class="indexterm" href="mysql-shell-tutorial-python-documents-remove.html#mysql-shell-tutorial-python-remove-all-documents"> Remove All Documents in a Collection </a> </dt> <dt> remove documents by condition, <a class="indexterm" href="mysql-shell-tutorial-python-documents-remove.html#mysql-shell-tutorial-python-remove-documents-by-condition"> Remove Documents Using Conditions </a> </dt> <dt> remove first document, <a class="indexterm" href="mysql-shell-tutorial-python-documents-remove.html#mysql-shell-tutorial-python-remove-first-document"> Remove the First Document </a> </dt> <dt> remove last document, <a class="indexterm" href="mysql-shell-tutorial-python-documents-remove.html#mysql-shell-tutorial-python-remove-last-document"> Remove the Last Document in an Order </a> </dt> <dt> select all records, <a class="indexterm" href="mysql-shell-tutorial-python-table-select.html#mysql-shell-tutorial-python-select-all-records"> Select All Records </a> </dt> <dt> select records, <a class="indexterm" href="mysql-shell-tutorial-python-documents-in-tables.html#mysql-shell-tutorial-python-select-record"> Select a Record </a> </dt> <dt> set and unset fields, <a class="indexterm" href="mysql-shell-tutorial-python-documents-modify.html#idm46045127071248"> Set and Unset Document Fields </a> </dt> <dt> table insert, <a class="indexterm" href="mysql-shell-tutorial-python-table-insert.html"> Insert Records into Tables </a> </dt> <dt> table select, <a class="indexterm" href="mysql-shell-tutorial-python-table-select.html"> Select Tables </a> </dt> <dt> unique index, <a class="indexterm" href="mysql-shell-tutorial-python-documents-index.html#mysql-shell-tutorial-python-unique-index"> Add a Unique Index </a> </dt> <dt> update table records, <a class="indexterm" href="mysql-shell-tutorial-python-table-update.html"> Update Tables </a> </dt> <dt> using MySQL Shell, <a class="indexterm" href="mysql-shell-tutorial-python-shell.html"> MySQL Shell </a> </dt> <dt> world x, <a class="indexterm" href="mysql-shell-tutorial-python-download.html#mysql-shell-tutorial-python-world-x"> The world_x Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045330980560"> MySQL SLES Repository, <a class="indexterm" href="linux-installation-sles-repo.html"> Using the MySQL SLES Repository </a> , <a class="indexterm" href="updating-sles-repo.html"> Upgrading MySQL with the MySQL SLES Repository </a> </dt> <dt id="ientry-idm46045324749808"> mysql source (command for reading from text files), <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> , <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> </dt> <dt id="ientry-idm46045332995152"> MySQL source distribution, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt id="ientry-idm46045148719024"> MySQL storage engines, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> </dt> <dt id="ientry-idm46045135274272"> MySQL system tables </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-mysqldb.html"> Replication of the mysql System Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045332950384"> MySQL version, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> <dt id="ientry-idm46045331415056"> MySQL Yum Repository, <a class="indexterm" href="linux-installation-yum-repo.html"> Installing MySQL on Linux Using the MySQL Yum Repository </a> , <a class="indexterm" href="updating-yum-repo.html"> Upgrading MySQL with the MySQL Yum Repository </a> </dt> <dt id="ientry-idm46045324748704"> mysql \. (command for reading from text files), <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> , <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> </dt> <dt id="ientry-idm46045279562816"> mysql-native-password option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045146351088"> mysql.gtid_executed table, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table"> mysql.gtid_executed Table </a> </dt> <dd> <dl> <dt> compression, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table-compression"> mysql.gtid_executed Table Compression </a> </dt> <dt> thread/sql/compress_gtid_table, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table-compression"> mysql.gtid_executed Table Compression </a> </dt> </dl> </dd> <dt id="ientry-idm46045324467392"> mysql.server, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dd> <dl> <dt> basedir option, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> datadir option, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> pid-file option, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> service-startup-timeout option, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045137970288"> mysql.slave_master_info table, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt id="ientry-idm46045137969200"> mysql.slave_relay_log_info table, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt id="ientry-idm46045053781216"> mysql.sock </dt> <dd> <dl> <dt> protection, <a class="indexterm" href="problems-with-mysql-sock.html"> How to Protect or Change the MySQL Unix Socket File </a> </dt> </dl> </dd> <dt id="ientry-idm46045324434400"> mysqladmin, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> , <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> , <a class="indexterm" href="show-status.html"> SHOW STATUS Statement </a> , <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> , <a class="indexterm" href="flush.html"> FLUSH Statement </a> , <a class="indexterm" href="kill.html"> KILL Statement </a> </dt> <dd> <dl> <dt> bind-address option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> compress option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> connect-timeout option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> count option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> debug option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> force option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> help option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> host option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> no-beep option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> password option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> port option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> relative option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> show-warnings option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> shutdown-timeout option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> silent option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> sleep option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> socket option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> user option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> version option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> vertical option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> wait option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045316944336"> mysqladmin command options, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045321069936"> mysqladmin option </dt> <dd> <dl> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045031787360"> mysqlbackup command, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324358800"> mysqlbinlog, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dd> <dl> <dt> base64-output option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> bind-address option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> binlog-row-event-max-size option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> compress option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> connection-server-id option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> database option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> debug option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> disable-log-bin option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> exclude-gtids option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> force-if-open option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> force-read option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> help option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> hexdump option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> host option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> idempotent option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> include-gtids option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> local-load option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> offset option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> open-files-limit option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> password option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> port option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> print-table-metadata option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> raw option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> read-from-remote-master option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> read-from-remote-server option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> read-from-remote-source option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> require-row-format option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> result-file option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> rewrite-db option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> server-id option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> server-id-bits option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> set-charset option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> short-form option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> skip-gtids option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> socket option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> start-datetime option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> start-position option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> stop-datetime option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> stop-never option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> stop-never-slave-server-id option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> stop-position option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> to-last-log option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> user option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> verify-binlog-checksum option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> version option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045324428752"> mysqlcheck, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dd> <dl> <dt> all-databases option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> all-in-1 option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> analyze option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> auto-repair option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> bind-address option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> check option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> check-only-changed option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> check-upgrade option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> compress option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> databases option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> debug option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> extended option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> fast option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> force option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> help option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> host option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> medium-check option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> optimize option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> password option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> port option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> quick option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> repair option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> silent option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> skip-database option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> socket option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> tables option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> use-frm option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> user option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> version option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> write-binlog option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045031778304"> mysqlclient, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324479552"> mysqld, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> allow-suspicious-udfs option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ansi option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> as NDB Cluster process, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt> audit-log option, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> basedir option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> binlog-checksum option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> binlog-do-db option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> binlog-ignore-db option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> binlog-row-event-max-size option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> chroot option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> command options, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> console option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> core-file option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> daemonize option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> datadir option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ddl-rewriter option, <a class="indexterm" href="ddl-rewriter-options.html"> ddl_rewriter Plugin Options </a> </dt> <dt> debug option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> debug-sync-timeout option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> default-time-zone option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> defaults-file option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> early-plugin-load option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> exit codes, <a class="indexterm" href="server-shutdown.html"> The Server Shutdown Process </a> </dt> <dt> exit-info option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> external-locking option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> flush option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> gdb option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> help option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> initialize option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> initialize-insecure option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> innodb-dedicated-server option, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb-status-file option, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> install option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> install-manual option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> keyring-migration-destination option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-from-component option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-host option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-password option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-port option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-socket option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-source option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-to-component option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> keyring-migration-user option, <a class="indexterm" href="keyring-options.html"> Keyring Command Options </a> </dt> <dt> large-pages option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> lc-messages option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> lc-messages-dir option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> local-service option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-bin option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> log-bin-index option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> log-error option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-isam option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-raw option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-short-format option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-tc option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log-tc-size option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> log_slow_admin_statements system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> master-retry-count option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> max-binlog-dump-events option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> max-relay-log-size option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> memlock option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> myisam-block-size option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> MySQL server, <a class="indexterm" href="mysqld.html"> mysqld — The MySQL Server </a> , <a class="indexterm" href="mysqld-server.html"> The MySQL Server </a> </dt> <dt> mysql-native-password option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ndb-allow-copying-alter-table option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-applier-allow-skip-epoch option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-batch-size option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-blob-read-batch-bytes option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-blob-write-batch-bytes option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-cluster-connection-pool option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-cluster-connection-pool-nodeids option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-apply-status, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-empty-epochs, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-empty-update, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-exclusive-reads, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-fail-terminate, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-orig, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-transaction-dependency, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-log-transaction-id, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-mgm-tls, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-mgmd-host, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-nodeid, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-optimization-delay option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-schema-dist-timeout option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-transid-mysql-connection-map option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-wait-connected option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndb-wait-setup option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbcluster option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbinfo option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> no-defaults option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> no-monitor option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> performance-schema-consumer-events-stages-current option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-stages-history option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-stages-history-long option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-statements-cpu option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-statements-current option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-statements-history option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-statements-history-long option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-transactions-current option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-transactions-history option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-transactions-history-long option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-waits-current option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-waits-history option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-events-waits-history-long option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-global-instrumentation option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-statements-digest option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-thread-instrumentation option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-consumer-xxx option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> performance-schema-instrument option, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> <dt> plugin option prefix, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> plugin-load option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> plugin-load-add option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> port option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> port-open-timeout option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> print-defaults option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> relay-log-purge option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> relay-log-space-limit option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> remove option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> replicate-do-db option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-do-table option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-ignore-db option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-ignore-table option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-rewrite-db option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-same-server-id option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-wild-do-table option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> replicate-wild-ignore-table option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> role in NDB Cluster (see SQL Node (NDB Cluster)) </dt> <dt> safe-user-create option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> server_uuid variable, <a class="indexterm" href="replication-options.html"> Replication and Binary Logging Options and Variables </a> </dt> <dt> show-replica-auth-info option, <a class="indexterm" href="replication-options-source.html#replication-optvars-masters"> Startup Options for Replication Source Servers </a> </dt> <dt> show-slave-auth-info option, <a class="indexterm" href="replication-options-source.html#replication-optvars-masters"> Startup Options for Replication Source Servers </a> </dt> <dt> skip-grant-tables option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> skip-ndbcluster option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> skip-new option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> skip-replica-start option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> skip-show-database option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> skip-slave-start option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> skip-stack-trace option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> skip-symbolic-links option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> slave-skip-errors option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> slave-sql-verify-checksum option, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> <dt> slow-start-timeout option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> socket option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> sporadic-binlog-dump-fail option, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> <dt> sql-mode option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> standalone option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> starting, <a class="indexterm" href="changing-mysql-user.html"> How to Run MySQL as a Normal User </a> </dt> <dt> super-large-pages option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> symbolic-links option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> sysdate-is-now option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> tc-heuristic-recover option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> tmpdir option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> transaction-isolation option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> transaction-read-only option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> upgrade option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> user option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> validate-config option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> validate-password option, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-options"> Password Validation Plugin Options </a> </dt> <dt> validate-user-plugins option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> verbose option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> version option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045108481024"> mysqld (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045321732048"> mysqld option </dt> <dd> <dl> <dt> malloc-lib, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045302458384"> mysqld options, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dt id="ientry-idm46045113948288"> mysqld options and variables </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-options-variables.html"> MySQL Server Options and Variables for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045317123184"> mysqld parser </dt> <dd> <dl> <dt> versus mysql client parser, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> </dt> </dl> </dd> <dt id="ientry-idm46045302457312"> mysqld system variables, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dt id="ientry-idm46045073767888"> mysqld threads </dt> <dd> <dl> <dt> observability, <a class="indexterm" href="performance-schema-setup-instruments-table.html"> The setup_instruments Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045324237568"> mysqld-auto.cnf option file, <a class="indexterm" href="program-options.html"> Specifying Program Options </a> , <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="using-system-variables.html"> Using System Variables </a> , <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> , <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="nonpersistible-system-variables.html"> Nonpersistible and Persist-Restricted System Variables </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> , <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> , <a class="indexterm" href="reset-persist.html"> RESET PERSIST Statement </a> , <a class="indexterm" href="performance-schema-persisted-variables-table.html"> Performance Schema persisted_variables Table </a> </dt> <dt id="ientry-idm46045312325200"> mysqld-long-query-time option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045321761968"> mysqld-safe-log-timestamps option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045321667056"> mysqld-version option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045031767120"> MySQLdb, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045325765552"> mysqldump, <a class="indexterm" href="copying-databases.html"> Copying MySQL Databases to Another Machine </a> , <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> add-drop-database option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> add-drop-table option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> add-drop-trigger option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> add-locks option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> all-databases option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> all-tablespaces option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> allow-keywords option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> apply-replica-statements option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> apply-slave-statements option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> bind-address option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> column-statistics option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> comments option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> compact option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> compatible option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> complete-insert option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> compress option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> create-options option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> databases option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> debug option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> delete-master-logs option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> delete-source-logs option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> disable-keys option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> dump-date option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> dump-replica option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> dump-slave option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> events option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> extended-insert option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> fields-enclosed-by option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> fields-escaped-by option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> fields-optionally-enclosed-by option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> fields-terminated-by option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> flush-logs option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> flush-privileges option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> force option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> help option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> hex-blob option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> host option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ignore-error option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ignore-table option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ignore-views option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> include-master-host-port option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> include-source-host-port option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> init-command option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> init-command-add option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> insert-ignore option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> lines-terminated-by option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> lock-all-tables option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> lock-tables option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> log-error option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> master-data option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> max-allowed-packet option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld-long-query-time option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> net-buffer-length option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> network-timeout option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-autocommit option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-create-db option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-create-info option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-data option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-set-names option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> no-tablespaces option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> opt option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> order-by-primary option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> output-as-version option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> password option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> plugin-authentication-kerberos-client-mode option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> port option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> problems, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> quick option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> quote-names option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> replace option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> result-file option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> routines option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> set-charset option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> set-gtid-purged option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> show-create-skip-secondary-engine option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> single-transaction option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> skip-comments option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> skip-generated-invisible-primary-key option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> skip-opt option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> socket option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> source-data option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tab option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tables option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> triggers option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> tz-utc option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> user option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> using for backups, <a class="indexterm" href="using-mysqldump.html"> Using mysqldump for Backups </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> version option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> views, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> where option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> workarounds, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> xml option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045324354304"> mysqldumpslow, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dd> <dl> <dt> abstract-numbers option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> debug option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> grep option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> help option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> host option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> instance option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> lock option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> reverse option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> sort option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> top option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045324461792"> mysqld_multi, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dd> <dl> <dt> defaults-extra-file option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> example option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> help option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> log option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqladmin option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> no-log option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> password option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> silent option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> tcp-ip option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> user option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> version option, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045329895760"> MYSQLD_OPTS environment variable, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> </dt> <dt id="ientry-idm46045324474016"> mysqld_safe, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dd> <dl> <dt> basedir option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> core-file-size option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> datadir option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> help option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> ledir option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> log-error option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> malloc-lib option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqld option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqld-safe-log-timestamps option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqld-version option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> nice option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> open-files-limit option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> pid-file option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> port option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> skip-kill-mysqld option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> skip-syslog option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> socket option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> syslog option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> syslog-tag option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> timezone option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> user option, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045325764480"> mysqlimport, <a class="indexterm" href="copying-databases.html"> Copying MySQL Databases to Another Machine </a> , <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="load-data.html"> LOAD DATA Statement </a> </dt> <dd> <dl> <dt> bind-address option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> columns option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> compress option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> debug option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> delete option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> force option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> help option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> host option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ignore option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ignore-lines option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> local option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> <dt> lock-tables option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> low-priority option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> password option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> port option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> replace option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> silent option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> socket option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> use-threads option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> user option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> version option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045324414880"> mysqlsh, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt id="ientry-idm46045324408096"> mysqlshow, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dd> <dl> <dt> bind-address option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> compress option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> count option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> debug option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> default-character-set option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> help option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> host option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> keys option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> password option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> port option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> show-table-type option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> socket option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> status option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> user option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> version option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045324403872"> mysqlslap, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dd> <dl> <dt> auto-generate-sql option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-add-autoincrement option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-execute-number option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-guid-primary option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-load-type option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-secondary-indexes option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-unique-query-number option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-unique-write-number option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> auto-generate-sql-write-number option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> commit option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> compress option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> compression-algorithms option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> concurrency option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> create option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> create-schema option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> csv option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> debug option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> debug-check option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> debug-info option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> default-auth option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> delimiter option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> detach option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> enable-cleartext-plugin option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> engine option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> help option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> host option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> iterations option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> login-path option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> no-drop option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> number-char-cols option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> number-int-cols option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> number-of-queries option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> only-print option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> password option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> pipe option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> plugin-dir option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> port option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> post-query option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> post-system option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> pre-query option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> pre-system option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> protocol option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> query option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> shared-memory-base-name option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> silent option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> socket option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> sql-mode option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> SSL options, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> user option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> verbose option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> version option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> zstd-compression-level option, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045125788784"> mysqlx X Plugin option, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125765344"> mysqlx_bind_address system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125697584"> mysqlx_compression_algorithms system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125662064"> mysqlx_connect_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125628096"> mysqlx_deflate_default_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125596208"> mysqlx_deflate_max_client_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125565184"> mysqlx_document_id_unique_prefix system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125532784"> mysqlx_enable_hello_notice system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125506656"> mysqlx_idle_worker_thread_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125474000"> mysqlx_interactive_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125439824"> mysqlx_lz4_default_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125408000"> mysqlx_lz4_max_client_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125377104"> mysqlx_max_allowed_packet system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125342864"> mysqlx_max_connections system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125310464"> mysqlx_min_worker_threads system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125280000"> mysqlx_port system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125248176"> mysqlx_port_open_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125215568"> mysqlx_read_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125182160"> mysqlx_socket system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125139200"> mysqlx_ssl_ca system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125110176"> mysqlx_ssl_capath system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125081232"> mysqlx_ssl_cert system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125052208"> mysqlx_ssl_cipher system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045125023264"> mysqlx_ssl_crl system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045124994304"> mysqlx_ssl_crlpath system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045124965424"> mysqlx_ssl_key system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045302748768"> MYSQLX_TCP_PORT environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045327954736"> MYSQLX_TCP_PORT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327943664"> MYSQLX_UNIX_ADDR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045302746192"> MYSQLX_UNIX_PORT environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045124936400"> mysqlx_wait_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045124900976"> mysqlx_write_timeout system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045124868208"> mysqlx_zstd_default_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045124835056"> mysqlx_zstd_max_client_compression_level system variable, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt id="ientry-idm46045254472592"> mysql_acquire_locking_service_locks() C function </dt> <dd> <dl> <dt> locking service, <a class="indexterm" href="locking-service.html#locking-service-c-interface"> The Locking Service C Interface </a> </dt> </dl> </dd> <dt id="ientry-idm46045245966048"> mysql_clear_password authentication plugin, <a class="indexterm" href="cleartext-pluggable-authentication.html"> Client-Side Cleartext Pluggable Authentication </a> </dt> <dt id="ientry-idm46045303064400"> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dd> <dl> <dt> cflags option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> cxxflags option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> include option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> libs option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> libs_r option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> plugindir option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> port option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> socket option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> variable option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> version option, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045324368240"> mysql_config_editor, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dd> <dl> <dt> debug option, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> help option, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> version option, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045303063488"> mysql_config_server, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt id="ientry-idm46045328399600"> MYSQL_DATADIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324324368"> MYSQL_DEBUG environment variable, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="debugging-client.html"> Debugging a MySQL Client </a> </dt> <dt id="ientry-idm46045233683584"> mysql_firewall_database system variable, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt id="ientry-idm46045233715600"> mysql_firewall_flush_status() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233655456"> mysql_firewall_mode system variable, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt id="ientry-idm46045233629680"> mysql_firewall_reload_interval_seconds, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt id="ientry-idm46045233590704"> mysql_firewall_trace system variable, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt id="ientry-idm46045075954624"> MYSQL_FIREWALL_USERS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-mysql-firewall-users-table.html"> The INFORMATION_SCHEMA MYSQL_FIREWALL_USERS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045075934224"> MYSQL_FIREWALL_WHITELIST </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-mysql-firewall-whitelist-table.html"> The INFORMATION_SCHEMA MYSQL_FIREWALL_WHITELIST Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045302779728"> MYSQL_GROUP_SUFFIX environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045317485376"> MYSQL_HISTFILE environment variable, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045317482800"> MYSQL_HISTIGNORE environment variable, <a class="indexterm" href="mysql-logging.html"> mysql Client Logging </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302772000"> MYSQL_HOME environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045322691232"> MYSQL_HOST environment variable, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045189467616"> mysql_info(), <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="insert.html"> INSERT Statement </a> , <a class="indexterm" href="load-data.html#load-data-statement-result-information"> Statement Result Information </a> , <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> <dt id="ientry-idm46045182335504"> mysql_insert_id(), <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt id="ientry-idm46045254329024"> mysql_keyring service, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt id="ientry-idm46045327983296"> MYSQL_MAINTAINER_MODE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324361680"> mysql_migrate_keyring, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dd> <dl> <dt> component-dir option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> destination-keyring option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> destination-keyring-configuration-dir option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> get-server-public-key option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> help option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> host option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> online-migration option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> password option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> port option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> server-public-key-path option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> socket option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> source-keyring option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> source-keyring-configuration-dir option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> SSL options, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> user option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> version option, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045246352832"> mysql_native_password authentication plugin, <a class="indexterm" href="native-pluggable-authentication.html"> Native Pluggable Authentication </a> </dt> <dt id="ientry-idm46045272537728"> mysql_native_password_proxy_users system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt id="ientry-idm46045244253744"> mysql_no_login authentication plugin, <a class="indexterm" href="no-login-pluggable-authentication.html"> No-Login Pluggable Authentication </a> </dt> <dt id="ientry-idm46045252524256"> mysql_options() </dt> <dd> <dl> <dt> MYSQL_OPT_LOAD_DATA_LOCAL_DIR, <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> <dt> MYSQL_OPT_LOCAL_INFILE, <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-permitted-files"> Restricting Files Permitted for Local Data Loading </a> </dt> </dl> </dd> <dt id="ientry-idm46045327935200"> MYSQL_PROJECT_NAME option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045302766848"> MYSQL_PS1 environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302764272"> MYSQL_PWD environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045218268448"> mysql_query_attribute_string() function, <a class="indexterm" href="query-attributes.html#query-attribute-functions"> Query Attribute Loadable Functions </a> </dt> <dt id="ientry-idm46045220482976"> mysql_real_escape_string_quote(), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045254454640"> mysql_release_locking_service_locks() C function </dt> <dd> <dl> <dt> locking service, <a class="indexterm" href="locking-service.html#locking-service-c-interface"> The Locking Service C Interface </a> </dt> </dl> </dd> <dt id="ientry-idm46045324452224"> mysql_secure_installation, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dd> <dl> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> help option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> host option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> password option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> port option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> protocol option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> socket option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> SSL options, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ssl-fips-mode option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> tls-ciphersuites option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> tls-sni-servername option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> tls-version option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> use-default option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> user option, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045260034112"> mysql_session_track_get_first() C API function, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-capi-support"> C API Session State Tracker Support </a> </dt> <dt id="ientry-idm46045260028832"> mysql_session_track_get_next() C API function, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-capi-support"> C API Session State Tracker Support </a> </dt> <dt id="ientry-idm46045324326944"> MYSQL_TCP_PORT environment variable, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="multiple-unix-servers.html"> Running Multiple MySQL Instances on Unix </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt id="ientry-idm46045327929232"> MYSQL_TCP_PORT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045323777312"> MYSQL_TEST_LOGIN_FILE environment variable, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> , <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302753936"> MYSQL_TEST_TRACE_CRASH environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045302756528"> MYSQL_TEST_TRACE_DEBUG environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045324447872"> mysql_tzinfo_to_sql, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="mysql-tzinfo-to-sql.html"> mysql_tzinfo_to_sql — Load the Time Zone Tables </a> </dt> <dt id="ientry-idm46045327918656"> MYSQL_UNIX_ADDR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045324329520"> MYSQL_UNIX_PORT environment variable, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="multiple-unix-servers.html"> Running Multiple MySQL Instances on Unix </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt id="ientry-idm46045327156016"> MYSQL_VERSION file </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-third-party.html"> MySQL Configuration and Third-Party Tools </a> </dt> </dl> </dd> <dt id="ientry-idm46045254302400"> my_key_fetch() keyring service function, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt id="ientry-idm46045254286496"> my_key_generate() keyring service function, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt id="ientry-idm46045254270128"> my_key_remove() keyring service function, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt id="ientry-idm46045254260192"> my_key_store() keyring service function, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> <dt id="ientry-idm46045324343360"> my_print_defaults, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dd> <dl> <dt> config-file option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> debug option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> defaults-file option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> extra-file option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> help option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> login-path option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> no-defaults option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> show option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> verbose option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> version option, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_N"> </a> N </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045114013968"> Name, <a class="indexterm" href="mysql-cluster-system-definition.html"> Defining the System </a> </dt> <dt id="ientry-idm46045320689792"> name-file option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045332097680"> named pipes, <a class="indexterm" href="windows-select-server.html"> Selecting a MySQL Server Type </a> , <a class="indexterm" href="windows-testing.html"> Testing The MySQL Installation </a> </dt> <dt id="ientry-idm46045260386032"> named time zone support </dt> <dd> <dl> <dt> Unknown or incorrect time zone, <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045191775408"> named windows </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-named-windows.html"> Named Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045318860336"> named-commands option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045272505968"> named_pipe system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272478256"> named_pipe_full_access_group system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045220078896"> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> <dt> variables, <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045260629024"> namespaces </dt> <dd> <dl> <dt> network, <a class="indexterm" href="network-namespace-support.html"> Network Namespace Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045190710784"> NAME_CONST(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> , <a class="indexterm" href="stored-programs-logging.html"> Stored Program Binary Logging </a> </dt> <dt id="ientry-idm46045332987040"> naming </dt> <dd> <dl> <dt> releases of MySQL, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> <dt id="ientry-idm46045212993152"> NATIONAL CHAR data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045212949440"> NATIONAL VARCHAR data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045092010016"> native backup and restore </dt> <dd> <dl> <dt> backup identifiers, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045031754528"> native C API, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045210259664"> native functions </dt> <dd> <dl> <dt> reference, <a class="indexterm" href="built-in-function-reference.html"> Built-In Function and Operator Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045210258176"> native operators </dt> <dd> <dl> <dt> reference, <a class="indexterm" href="built-in-function-reference.html"> Built-In Function and Operator Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045180533872"> NATURAL INNER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180534944"> NATURAL JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045031751280"> natural key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180532800"> NATURAL LEFT JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180531728"> NATURAL LEFT OUTER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180528512"> NATURAL RIGHT JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180527440"> NATURAL RIGHT OUTER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045212992080"> NCHAR data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045091109056"> NDB API counters (NDB Cluster), <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dd> <dl> <dt> scope, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dt> status variables associated with, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dt> types, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045086743152"> NDB API database objects </dt> <dd> <dl> <dt> and NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-general.html"> General Requirements for NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045086830256"> NDB API replica status variables </dt> <dd> <dl> <dt> and NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication.html"> NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045221007520"> NDB Cluster, <a class="indexterm" href="mysql-cluster.html"> MySQL NDB Cluster 8.4 </a> </dt> <dd> <dl> <dt> "quick" configuration, <a class="indexterm" href="mysql-cluster-quick.html"> Quick Test Setup of NDB Cluster </a> </dt> <dt> administration, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> , <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> , <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> and application feature requirements, <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> and DNS, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> </dt> <dt> and INFORMATION_SCHEMA, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> <dt> and IP addressing, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> </dt> <dt> and MySQL privileges, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> <dt> and MySQL root user, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> , <a class="indexterm" href="mysql-cluster-security-mysql-security-procedures.html"> NDB Cluster and MySQL Security Procedures </a> </dt> <dt> and networking, <a class="indexterm" href="mysql-cluster-overview-requirements.html"> NDB Cluster Hardware, Software, and Networking Requirements </a> </dt> <dt> and transactions, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> API node, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt> applications supported, <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> </dt> <dt> availability, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> </dt> <dt> available platforms, <a class="indexterm" href="mysql-cluster-general-info.html"> General Information </a> </dt> <dt> BACKUP Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> backups, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> , <a class="indexterm" href="mysql-cluster-backup.html"> Online Backup of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-backup-concepts.html"> NDB Cluster Backup Concepts </a> , <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> , <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> , <a class="indexterm" href="mysql-cluster-backup-troubleshooting.html"> NDB Cluster Backup Troubleshooting </a> </dt> <dt> CHECKPOINT Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> cluster logs, <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> CLUSTERLOG commands, <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> CLUSTERLOG STATISTICS command, <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> commands, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> , <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> compared to InnoDB, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-engines.html"> Differences Between the NDB and InnoDB Storage Engines </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> compared to standalone MySQL Server, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-engines.html"> Differences Between the NDB and InnoDB Storage Engines </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> , <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> concepts, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dt> configuration, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> , <a class="indexterm" href="mysql-cluster-configuration.html"> Configuration of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-quick.html"> Quick Test Setup of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-computer-definition.html"> Defining Computers in an NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> , <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt> configuration (example), <a class="indexterm" href="mysql-cluster-config-example.html"> NDB Cluster Configuration: Basic Example </a> </dt> <dt> configuration changes, <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> configuration files, <a class="indexterm" href="mysql-cluster-install-configuration.html"> Initial Configuration of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-config-file.html"> NDB Cluster Configuration Files </a> </dt> <dt> configuration parameters, <a class="indexterm" href="mysql-cluster-configuration-overview.html"> Overview of NDB Cluster Configuration Parameters, Options, and Variables </a> , <a class="indexterm" href="mysql-cluster-params-ndbd.html"> NDB Cluster Data Node Configuration Parameters </a> , <a class="indexterm" href="mysql-cluster-params-mgmd.html"> NDB Cluster Management Node Configuration Parameters </a> , <a class="indexterm" href="mysql-cluster-params-api.html"> NDB Cluster SQL Node and API Node Configuration Parameters </a> , <a class="indexterm" href="mysql-cluster-params-other.html"> Other NDB Cluster Configuration Parameters </a> </dt> <dt> configuring, <a class="indexterm" href="mysql-cluster-backup-configuration.html"> Configuration for NDB Cluster Backups </a> </dt> <dt> CONNECT command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> CONNECTION Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> connection string, <a class="indexterm" href="mysql-cluster-connection-strings.html"> NDB Cluster Connection Strings </a> </dt> <dt> CREATE NODEGROUP command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> data node, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> data nodes, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dt> defining node hosts, <a class="indexterm" href="mysql-cluster-computer-definition.html"> Defining Computers in an NDB Cluster </a> </dt> <dt> direct connections between nodes, <a class="indexterm" href="mysql-cluster-tcp-definition-direct.html"> NDB Cluster TCP/IP Connections Using Direct Connections </a> </dt> <dt> Disk Data tables (see <a href="#ientry-idm46045091734176"> NDB Cluster Disk Data </a> ) </dt> <dt> DROP NODEGROUP command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> ENTER SINGLE USER MODE command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> ERROR Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> error logs, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> event log format, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> event logging thresholds, <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> event logs, <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> event severity levels, <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> event types, <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> execution threads, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> EXIT command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> EXIT SINGLE USER MODE command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> FAQ, <a class="indexterm" href="faqs-mysql-cluster.html"> MySQL 8.4 FAQ: NDB Cluster </a> </dt> <dt> fragment replicas, <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt> FULLY_REPLICATED (NDB_TABLE), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> GCP Stop errors, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> general description, <a class="indexterm" href="mysql-cluster-overview.html"> NDB Cluster Overview </a> </dt> <dt> HELP command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> HostName parameter </dt> <dd> <dl> <dt> and security, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt> importing data, <a class="indexterm" href="mysql-cluster-importing-data.html"> Importing Data Into MySQL Cluster </a> </dt> <dt> indirect indexes, <a class="indexterm" href="create-table-secondary-indexes.html#json-column-indirect-index"> Indexing a Generated Column to Provide a JSON Column Index </a> </dt> <dt> INFO Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> information sources, <a class="indexterm" href="mysql-cluster-general-info.html"> General Information </a> </dt> <dt> insecurity of communication protocols, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> installation, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> </dt> <dt> installation (Linux), <a class="indexterm" href="mysql-cluster-install-linux.html"> Installation of NDB Cluster on Linux </a> </dt> <dt> installation (Windows), <a class="indexterm" href="mysql-cluster-install-windows.html"> Installing NDB Cluster on Windows </a> </dt> <dt> installing .deb file (Linux), <a class="indexterm" href="mysql-cluster-install-debian.html"> Installing NDB Cluster Using .deb Files </a> </dt> <dt> installing binary (Windows), <a class="indexterm" href="mysql-cluster-install-windows-binary.html"> Installing NDB Cluster on Windows from a Binary Release </a> </dt> <dt> installing binary release (Linux), <a class="indexterm" href="mysql-cluster-install-linux-binary.html"> Installing an NDB Cluster Binary Release on Linux </a> </dt> <dt> installing from source (Linux), <a class="indexterm" href="mysql-cluster-install-linux-source.html"> Building NDB Cluster from Source on Linux </a> </dt> <dt> installing from source (Windows), <a class="indexterm" href="mysql-cluster-install-windows-source.html"> Compiling and Installing NDB Cluster from Source on Windows </a> </dt> <dt> installing RPM (Linux), <a class="indexterm" href="mysql-cluster-install-linux-rpm.html"> Installing NDB Cluster from RPM </a> </dt> <dt> interconnects, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-interconnects.html"> Using High-Speed Interconnects with NDB Cluster </a> </dt> <dt> Java clients, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dt> JSON, <a class="indexterm" href="create-table-secondary-indexes.html#json-column-indirect-index"> Indexing a Generated Column to Provide a JSON Column Index </a> </dt> <dt> large tables, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> log files, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dt> logging commands, <a class="indexterm" href="mysql-cluster-logging-management-commands.html"> NDB Cluster Logging Management Commands </a> </dt> <dt> management client (ndb_mgm), <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> management commands, <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> management node, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> <dt> management nodes, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> managing, <a class="indexterm" href="mysql-cluster-management.html"> Management of NDB Cluster </a> </dt> <dt> MAX_ROWS, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> memory usage and recovery, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> , <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> mgm client, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> mgm management client, <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> mgm process, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> mgmd process, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> monitoring, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dt> multiple management servers, <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> mysqld options and variables for, <a class="indexterm" href="mysql-cluster-options-variables.html"> MySQL Server Options and Variables for NDB Cluster </a> </dt> <dt> mysqld process, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbd process, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> , <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-install-first-start.html"> Initial Startup of NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd process, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> network configuration </dt> <dd> <dl> <dt> and security, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt> networking, <a class="indexterm" href="mysql-cluster-tcp-definition-direct.html"> NDB Cluster TCP/IP Connections Using Direct Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt> node failure (single user mode), <a class="indexterm" href="mysql-cluster-single-user-mode.html"> NDB Cluster Single User Mode </a> </dt> <dt> node identifiers, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt> node logs, <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> </dt> <dt> NODELOG DEBUG command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> NODERESTART Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> nodes and node groups, <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt> nodes and types, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dt> NOLOGGING (NDB_TABLE), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> partitioning support, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> partitions, <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt> PARTITION_BALANCE (NDB_TABLE), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> Performance Schema, <a class="indexterm" href="mysql-cluster-ps-tables.html"> NDB Cluster and the Performance Schema </a> </dt> <dt> performing queries, <a class="indexterm" href="mysql-cluster-install-example-data.html"> NDB Cluster Example with Tables and Data </a> </dt> <dt> preparing for replication, <a class="indexterm" href="mysql-cluster-replication-preparation.html"> Preparing the NDB Cluster for Replication </a> </dt> <dt> process management, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt> PROMPT command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> QUIT command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> READ_BACKUP (NDB_TABLE), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt> replication, <a class="indexterm" href="mysql-cluster-replication.html"> NDB Cluster Replication </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> </dl> </dd> <dt> REPORT command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> requirements, <a class="indexterm" href="mysql-cluster-overview-requirements.html"> NDB Cluster Hardware, Software, and Networking Requirements </a> </dt> <dt> resetting, <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> RESTART command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> restarting, <a class="indexterm" href="mysql-cluster-install-shutdown-restart.html"> Safe Shutdown and Restart of NDB Cluster </a> </dt> <dt> restoring backups, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> rolling restarts (multiple management servers), <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> runtime statistics, <a class="indexterm" href="mysql-cluster-log-statistics.html"> Using CLUSTERLOG STATISTICS in the NDB Cluster Management Client </a> </dt> <dt> SCHEMA Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> security, <a class="indexterm" href="mysql-cluster-security.html"> NDB Cluster Security Issues </a> </dt> <dd> <dl> <dt> and firewalls, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> and HostName parameter, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> and network configuration, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> and network ports, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> and remote administration, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> <dt> networking, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt> security procedures, <a class="indexterm" href="mysql-cluster-security-mysql-security-procedures.html"> NDB Cluster and MySQL Security Procedures </a> </dt> <dt> shared memory transport, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt> SHOW command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> SHUTDOWN command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> shutting down, <a class="indexterm" href="mysql-cluster-install-shutdown-restart.html"> Safe Shutdown and Restart of NDB Cluster </a> </dt> <dt> single user mode, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> , <a class="indexterm" href="mysql-cluster-single-user-mode.html"> NDB Cluster Single User Mode </a> </dt> <dt> SINGLEUSER Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> SQL node, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt> SQL nodes, <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt> SQL statements for monitoring, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> <dt> START BACKUP command, <a class="indexterm" href="mysql-cluster-replication-backups.html"> NDB Cluster Backups With NDB Cluster Replication </a> </dt> <dt> START command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> start phases (summary), <a class="indexterm" href="mysql-cluster-start-phases.html"> Summary of NDB Cluster Start Phases </a> </dt> <dt> starting, <a class="indexterm" href="mysql-cluster-quick.html"> Quick Test Setup of NDB Cluster </a> </dt> <dt> starting nodes, <a class="indexterm" href="mysql-cluster-install-windows-initial-start.html"> Initial Startup of NDB Cluster on Windows </a> , <a class="indexterm" href="mysql-cluster-install-first-start.html"> Initial Startup of NDB Cluster </a> </dt> <dt> starting or restarting, <a class="indexterm" href="mysql-cluster-start-phases.html"> Summary of NDB Cluster Start Phases </a> </dt> <dt> STARTUP Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> STATISTICS Events, <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt> STATUS command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> status variables, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> STOP command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-ndb"> NDB Table Storage Requirements </a> </dt> <dt> thread states, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> TLS INFO command, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> TLS support, <a class="indexterm" href="mysql-cluster-tls.html"> TLS Link Encryption for NDB Cluster </a> </dt> <dt> trace files, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> transaction handling, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> transaction isolation level, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> transporters, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> , <a class="indexterm" href="mysql-cluster-interconnects.html"> Using High-Speed Interconnects with NDB Cluster </a> </dt> <dd> <dl> <dt> shared memory (SHM), <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt> TCP/IP, <a class="indexterm" href="mysql-cluster-tcp-definition-direct.html"> NDB Cluster TCP/IP Connections Using Direct Connections </a> </dt> </dl> </dd> <dt> troubleshooting backups, <a class="indexterm" href="mysql-cluster-backup-troubleshooting.html"> NDB Cluster Backup Troubleshooting </a> </dt> <dt> upgrades and downgrades, <a class="indexterm" href="mysql-cluster-upgrade-downgrade.html"> Upgrading and Downgrading NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt> USING HASH, <a class="indexterm" href="create-index.html#create-index-options"> Index Options </a> </dt> <dt> using tables and data, <a class="indexterm" href="mysql-cluster-install-example-data.html"> NDB Cluster Example with Tables and Data </a> </dt> </dl> </dd> <dt id="ientry-idm46045124080864"> NDB Cluster 8.4, <a class="indexterm" href="mysql-cluster-what-is-new.html"> What is New in MySQL NDB Cluster 8.4 </a> </dt> <dt id="ientry-idm46045091734176"> NDB Cluster Disk Data, <a class="indexterm" href="mysql-cluster-disk-data.html"> NDB Cluster Disk Data Tables </a> </dt> <dd> <dl> <dt> creating log file groups, <a class="indexterm" href="mysql-cluster-disk-data-objects.html"> NDB Cluster Disk Data Objects </a> </dt> <dt> creating tables, <a class="indexterm" href="mysql-cluster-disk-data-objects.html"> NDB Cluster Disk Data Objects </a> </dt> <dt> creating tablespaces, <a class="indexterm" href="mysql-cluster-disk-data-objects.html"> NDB Cluster Disk Data Objects </a> </dt> <dt> dropping Disk Data objects, <a class="indexterm" href="mysql-cluster-disk-data-objects.html"> NDB Cluster Disk Data Objects </a> </dt> <dt> storage requirements, <a class="indexterm" href="mysql-cluster-disk-data-storage-requirements.html"> NDB Cluster Disk Data Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045123109936"> NDB Cluster How-To, <a class="indexterm" href="mysql-cluster-installation.html"> NDB Cluster Installation </a> </dt> <dt id="ientry-idm46045123675120"> NDB Cluster limitations, <a class="indexterm" href="mysql-cluster-limitations.html"> Known Limitations of NDB Cluster </a> </dt> <dd> <dl> <dt> and differences from standard MySQL limits, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> <dt> binary logging, <a class="indexterm" href="mysql-cluster-limitations-exclusive-to-cluster.html"> Issues Exclusive to NDB Cluster </a> </dt> <dt> database objects, <a class="indexterm" href="mysql-cluster-limitations-database-objects.html"> Limits Associated with Database Objects in NDB Cluster </a> </dt> <dt> Disk Data storage, <a class="indexterm" href="mysql-cluster-limitations-disk-data.html"> Limitations Relating to NDB Cluster Disk Data Storage </a> </dt> <dt> error handling and reporting, <a class="indexterm" href="mysql-cluster-limitations-error-handling.html"> NDB Cluster Error Handling </a> </dt> <dt> geometry data types, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> implementation, <a class="indexterm" href="mysql-cluster-limitations-exclusive-to-cluster.html"> Issues Exclusive to NDB Cluster </a> </dt> <dt> imposed by configuration, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> <dt> JSON columns, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> memory usage and transaction handling, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> multiple management servers, <a class="indexterm" href="mysql-cluster-limitations-multiple-nodes.html"> Limitations Relating to Multiple NDB Cluster Nodes </a> </dt> <dt> multiple MySQL servers, <a class="indexterm" href="mysql-cluster-limitations-multiple-nodes.html"> Limitations Relating to Multiple NDB Cluster Nodes </a> </dt> <dt> partitioning, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> performance, <a class="indexterm" href="mysql-cluster-limitations-performance.html"> Limitations Relating to Performance in NDB Cluster </a> </dt> <dt> resolved in current version from previous versions, <a class="indexterm" href="mysql-cluster-limitations-resolved.html"> Previous NDB Cluster Issues Resolved in NDB Cluster 8.4 </a> </dt> <dt> syntax, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> transactions, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> unsupported features, <a class="indexterm" href="mysql-cluster-limitations-unsupported.html"> Unsupported or Missing Features in NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045108489616"> NDB Cluster processes, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045108487456"> NDB Cluster programs, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045086855872"> NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication.html"> NDB Cluster Replication </a> </dt> <dd> <dl> <dt> and --initial option, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> and circular replication, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> and NDB API database objects, <a class="indexterm" href="mysql-cluster-replication-general.html"> General Requirements for NDB Cluster Replication </a> </dt> <dt> and primary key, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> and single point of failure, <a class="indexterm" href="mysql-cluster-replication-two-channels.html"> Using Two Replication Channels for NDB Cluster Replication </a> </dt> <dt> and unique keys, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> backups, <a class="indexterm" href="mysql-cluster-replication-backups.html"> NDB Cluster Backups With NDB Cluster Replication </a> </dt> <dt> bidirectional replication, <a class="indexterm" href="mysql-cluster-replication-multi-source.html"> NDB Cluster Replication: Bidirectional and Circular Replication </a> </dt> <dt> circular replication, <a class="indexterm" href="mysql-cluster-replication-multi-source.html"> NDB Cluster Replication: Bidirectional and Circular Replication </a> </dt> <dt> concepts, <a class="indexterm" href="mysql-cluster-replication-abbreviations.html"> NDB Cluster Replication: Abbreviations and Symbols </a> , <a class="indexterm" href="mysql-cluster-replication-general.html"> General Requirements for NDB Cluster Replication </a> </dt> <dt> conflict resolution, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html"> NDB Cluster Replication Conflict Resolution </a> </dt> <dt> failover, <a class="indexterm" href="mysql-cluster-replication-two-channels.html"> Using Two Replication Channels for NDB Cluster Replication </a> , <a class="indexterm" href="mysql-cluster-replication-failover.html"> Implementing Failover with NDB Cluster Replication </a> </dt> <dt> gap event, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> known issues, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> loss of connection, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> point-in-time recovery, <a class="indexterm" href="mysql-cluster-replication-pitr.html"> Point-In-Time Recovery Using NDB Cluster Replication </a> </dt> <dt> preparing, <a class="indexterm" href="mysql-cluster-replication-preparation.html"> Preparing the NDB Cluster for Replication </a> </dt> <dt> read conflict detection and resolution, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-detection-examples"> Examples </a> </dt> <dt> requirements, <a class="indexterm" href="mysql-cluster-replication-general.html"> General Requirements for NDB Cluster Replication </a> </dt> <dt> reset-replica.pl backup automation script, <a class="indexterm" href="mysql-cluster-replication-auto-sync.html"> NDB Cluster Replication: Automating Synchronization of the Replica to the Source Binary Log </a> </dt> <dt> restoring from backup, <a class="indexterm" href="mysql-cluster-replication-backups.html"> NDB Cluster Backups With NDB Cluster Replication </a> </dt> <dt> starting, <a class="indexterm" href="mysql-cluster-replication-starting.html"> Starting NDB Cluster Replication (Single Replication Channel) </a> </dt> <dt> storage engines other than NDB on replica, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> synchronization of source and replica, <a class="indexterm" href="mysql-cluster-replication-auto-sync.html"> NDB Cluster Replication: Automating Synchronization of the Replica to the Source Binary Log </a> </dt> <dt> system tables used, <a class="indexterm" href="mysql-cluster-replication-schema.html"> NDB Cluster Replication Schema and Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045086831712"> NDB Cluster Replication </dt> <dd> <dl> <dt> and NDB API replica status variables, <a class="indexterm" href="mysql-cluster-replication.html"> NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045085297616"> NDB Cluster replication conflict resolution </dt> <dd> <dl> <dt> exceptions table, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-exceptions-table"> Conflict Resolution Exceptions Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045184382576"> NDB comment options, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045100618960"> ndb option </dt> <dd> <dl> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045090979984"> NDB statistics variables </dt> <dd> <dl> <dt> and NDB API counters, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045091108016"> NDB statistics variables (NDB Cluster), <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dd> <dl> <dt> scope, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> <dt> types, <a class="indexterm" href="mysql-cluster-ndb-api-statistics.html"> NDB API Statistics Counters and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045124460576"> NDB storage engine (see <a href="#ientry-idm46045221007520"> NDB Cluster </a> ) </dt> <dd> <dl> <dt> FAQ, <a class="indexterm" href="faqs-mysql-cluster.html"> MySQL 8.4 FAQ: NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045086981888"> NDB tables </dt> <dd> <dl> <dt> and MySQL root user, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045086869696"> NDB utilities </dt> <dd> <dl> <dt> security issues, <a class="indexterm" href="mysql-cluster-security-mysql-security-procedures.html"> NDB Cluster and MySQL Security Procedures </a> </dt> </dl> </dd> <dt id="ientry-idm46045085261408"> NDB$CFT_CAUSE, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-exceptions-table"> Conflict Resolution Exceptions Table </a> </dt> <dt id="ientry-idm46045085407040"> NDB$EPOCH(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dd> <dl> <dt> limitations, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045085329904"> NDB$EPOCH2(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085321920"> NDB$EPOCH2_TRANS(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085405968"> NDB$EPOCH_TRANS(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085471792"> NDB$MAX(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085460992"> NDB$MAX_DELETE_WIN(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085428480"> NDB$MAX_DEL_WIN_INS(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085448064"> NDB$MAX_INS(), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085480480"> NDB$OLD, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045085269040"> NDB$OP_TYPE, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-exceptions-table"> Conflict Resolution Exceptions Table </a> </dt> <dt id="ientry-idm46045085251680"> NDB$ORIG_TRANSID, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-exceptions-table"> Conflict Resolution Exceptions Table </a> </dt> <dt id="ientry-idm46045113892528"> ndb-allow-copying-alter-table option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113864992"> ndb-applier-allow-skip-epoch option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113842816"> ndb-batch-size option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113733104"> ndb-blob-read-batch-bytes option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113692800"> ndb-blob-write-batch-bytes option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113810832"> ndb-cluster-connection-pool option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113759216"> ndb-cluster-connection-pool-nodeids option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113650560"> ndb-connectstring option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045113637312"> ndb-default-column-format option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045113607264"> ndb-deferred-constraints option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045113544160"> ndb-distribution option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045113512096"> ndb-log-apply-status option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113479168"> ndb-log-empty-epochs option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113447568"> ndb-log-empty-update option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113417968"> ndb-log-exclusive-reads option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113389808"> ndb-log-fail-terminate option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113363776"> ndb-log-orig option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113335040"> ndb-log-transaction-dependency option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113307536"> ndb-log-transaction-id option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045085512560"> ndb-log-update-as-write </dt> <dd> <dl> <dt> conflict resolution, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-source-column"> Source Column Control </a> </dt> </dl> </dd> <dt id="ientry-idm46045113278448"> ndb-log-update-as-write option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045113207568"> ndb-log-update-minimal option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045086201040"> ndb-log-update-write, <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-replication"> ndb_replication Table </a> </dt> <dt id="ientry-idm46045086213104"> ndb-log-updated-only, <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-replication"> ndb_replication Table </a> </dt> <dt id="ientry-idm46045113243936"> ndb-log-updated-only option (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt id="ientry-idm46045113170960"> ndb-mgm-tls option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045113137872"> ndb-mgmd-host option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045098917872"> ndb-nodegroup-map option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045113121584"> ndb-nodeid option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045113055424"> ndb-optimization-delay option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113022768"> ndb-optimized-node-selection option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045113576160"> ndb-schema-dist-timeout option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113009840"> ndb-tls-search-path option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045112982160"> ndb-transid-mysql-connection-map option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045112951760"> ndb-wait-connected option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045112916496"> ndb-wait-setup option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045113922688"> ndbcluster option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045087313184"> ndbcluster plugin threads, <a class="indexterm" href="mysql-cluster-ps-tables.html#mysql-cluster-plugin-threads"> ndbcluster Plugin Threads </a> </dt> <dt id="ientry-idm46045124459088"> NDBCLUSTER storage engine (see <a href="#ientry-idm46045221007520"> NDB Cluster </a> ) </dt> <dt id="ientry-idm46045108486384"> ndbd, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dd> <dl> <dt> -n option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-delay option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> filesystem-password option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> filesystem-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> initial option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> initial-start option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> install option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> logbuffer-size option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> nostart option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> nowait-nodes option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> remove option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045124333120"> ndbd (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045124339088"> data node (NDB Cluster) </a> ) </dt> </dl> </dd> </dl> </dd> <dt id="ientry-idm46045090673808"> ndbinfo database, <a class="indexterm" href="mysql-cluster-ndbinfo.html"> ndbinfo: The NDB Cluster Information Database </a> </dt> <dd> <dl> <dt> and query cache, <a class="indexterm" href="mysql-cluster-ndbinfo.html"> ndbinfo: The NDB Cluster Information Database </a> </dt> <dt> basic usage, <a class="indexterm" href="mysql-cluster-ndbinfo.html"> ndbinfo: The NDB Cluster Information Database </a> </dt> <dt> determining support for, <a class="indexterm" href="mysql-cluster-ndbinfo.html"> ndbinfo: The NDB Cluster Information Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045113077440"> ndbinfo option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045110942544"> ndbinfo_database system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045110917888"> ndbinfo_max_bytes system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045110887584"> ndbinfo_max_rows system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045110857296"> ndbinfo_offline system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108485312"> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dd> <dl> <dt> -l option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> delay option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> loops option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045110831472"> ndbinfo_show_hidden system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045110794512"> ndbinfo_table_prefix system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045110769232"> ndbinfo_version system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045116201552"> ndbmtd, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dd> <dl> <dt> -n option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ClassicFragmentation, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> configuration, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> connect-delay option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> EnableMultithreadedBackup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> initial option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> initial-start option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> install option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> logbuffer-size option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> MaxNoOfExecutionThreads, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> nostart option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> nowait-nodes option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> remove option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> trace files, <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045108454480"> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dd> <dl> <dt> compress option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> decrypt-key option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> decrypt-key-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> decrypt-password option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> decrypt-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> detailed-info option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-block-size option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-cipher option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-kdf-iter-count option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-key option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-key-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-password option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> encrypt-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> info option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045110727024"> Ndb_api_adaptive_send_deferred_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110713472"> Ndb_api_adaptive_send_deferred_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110720240"> Ndb_api_adaptive_send_deferred_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110706608"> Ndb_api_adaptive_send_deferred_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110699648"> Ndb_api_adaptive_send_forced_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110686080"> Ndb_api_adaptive_send_forced_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110692880"> Ndb_api_adaptive_send_forced_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110679296"> Ndb_api_adaptive_send_forced_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110672272"> Ndb_api_adaptive_send_unforced_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110658704"> Ndb_api_adaptive_send_unforced_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110665504"> Ndb_api_adaptive_send_unforced_count_session session variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110651920"> Ndb_api_adaptive_send_unforced_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110579840"> Ndb_api_bytes_received_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110596528"> Ndb_api_bytes_received_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110607568"> Ndb_api_bytes_received_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110586624"> Ndb_api_bytes_received_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110617376"> Ndb_api_bytes_sent_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110633936"> Ndb_api_bytes_sent_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110644960"> Ndb_api_bytes_sent_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110624160"> Ndb_api_bytes_sent_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110521312"> Ndb_api_event_bytes_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110530912"> Ndb_api_event_bytes_count_injector status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110560288"> Ndb_api_event_data_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110569968"> Ndb_api_event_data_count_injector status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110540800"> Ndb_api_event_nondata_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110550496"> Ndb_api_event_nondata_count_injector status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110483584"> Ndb_api_pk_op_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110500448"> Ndb_api_pk_op_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110511584"> Ndb_api_pk_op_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110490432"> Ndb_api_pk_op_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110446000"> Ndb_api_pruned_scan_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110462640"> Ndb_api_pruned_scan_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110473680"> Ndb_api_pruned_scan_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110452848"> Ndb_api_pruned_scan_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110408528"> Ndb_api_range_scan_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110425024"> Ndb_api_range_scan_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110436112"> Ndb_api_range_scan_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110415312"> Ndb_api_range_scan_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110370976"> Ndb_api_read_row_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110387776"> Ndb_api_read_row_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110398848"> Ndb_api_read_row_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110377824"> Ndb_api_read_row_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110327744"> Ndb_api_scan_batch_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110344368"> Ndb_api_scan_batch_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110355472"> Ndb_api_scan_batch_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110334528"> Ndb_api_scan_batch_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110290144"> Ndb_api_table_scan_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110306736"> Ndb_api_table_scan_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110317872"> Ndb_api_table_scan_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110296928"> Ndb_api_table_scan_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110252704"> Ndb_api_trans_abort_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110269232"> Ndb_api_trans_abort_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110280240"> Ndb_api_trans_abort_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110259488"> Ndb_api_trans_abort_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110209760"> Ndb_api_trans_close_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110229104"> Ndb_api_trans_close_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110242912"> Ndb_api_trans_close_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110216608"> Ndb_api_trans_close_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110169680"> Ndb_api_trans_commit_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110186288"> Ndb_api_trans_commit_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110197296"> Ndb_api_trans_commit_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110176400"> Ndb_api_trans_commit_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110131728"> Ndb_api_trans_local_read_row_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110148752"> Ndb_api_trans_local_read_row_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110159936"> Ndb_api_trans_local_read_row_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110138752"> Ndb_api_trans_local_read_row_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110094320"> Ndb_api_trans_start_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110110848"> Ndb_api_trans_start_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110121856"> Ndb_api_trans_start_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110101104"> Ndb_api_trans_start_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110057056"> Ndb_api_uk_op_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110073680"> Ndb_api_uk_op_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110084656"> Ndb_api_uk_op_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110063840"> Ndb_api_uk_op_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110016672"> Ndb_api_wait_exec_complete_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110034848"> Ndb_api_wait_exec_complete_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110047312"> Ndb_api_wait_exec_complete_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110023536"> Ndb_api_wait_exec_complete_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109977504"> Ndb_api_wait_meta_request_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109994320"> Ndb_api_wait_meta_request_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045110005488"> Ndb_api_wait_meta_request_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109984288"> Ndb_api_wait_meta_request_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109939760"> Ndb_api_wait_nanos_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109956352"> Ndb_api_wait_nanos_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109967488"> Ndb_api_wait_nanos_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109946544"> Ndb_api_wait_nanos_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109901920"> Ndb_api_wait_scan_result_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109918688"> Ndb_api_wait_scan_result_count_replica status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109929920"> Ndb_api_wait_scan_result_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109908704"> Ndb_api_wait_scan_result_count_slave status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045086499456"> ndb_apply_status table (NDB Cluster replication), <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-apply-status"> ndb_apply_status Table </a> , <a class="indexterm" href="mysql-cluster-replication-failover.html"> Implementing Failover with NDB Cluster Replication </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045112855360"> ndb_autoincrement_prefetch_sz system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045259539936"> ndb_binlog_index table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045086470304"> ndb_binlog_index table (NDB Cluster replication), <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-binlog-index"> ndb_binlog_index Table </a> , <a class="indexterm" href="mysql-cluster-replication-failover.html"> Implementing Failover with NDB Cluster Replication </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> </dl> </dd> <dt id="ientry-idm46045108479952"> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dd> <dl> <dt> add-missing option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> check-missing option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> check-orphans option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> delete-orphans option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> dump-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045112820448"> ndb_clear_apply_status system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109892064"> Ndb_cluster_node_id status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045184362992"> NDB_COLUMN, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045108478880"> ndb_config, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> cluster-config-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> config-binary-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> config-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> configinfo option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> config_from_node option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> connections option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> diff-default option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> fields option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> host option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> mycnf option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> nodes option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> query option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> query-all option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> system option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> type option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> xml option, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045109886032"> Ndb_config_from_host status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109879920"> Ndb_config_from_port status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109873776"> Ndb_config_generation status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109868064"> Ndb_conflict_fn_epoch status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109850448"> Ndb_conflict_fn_epoch2 status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109842768"> Ndb_conflict_fn_epoch2_trans status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109859344"> Ndb_conflict_fn_epoch_trans status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109833824"> Ndb_conflict_fn_max status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109825376"> Ndb_conflict_fn_max_del_win status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109816544"> Ndb_conflict_fn_max_del_win_ins status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109807728"> Ndb_conflict_fn_max_ins status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109799248"> Ndb_conflict_fn_old status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109790656"> Ndb_conflict_last_conflict_epoch status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109760400"> Ndb_conflict_last_stable_epoch status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109780992"> Ndb_conflict_reflected_op_discard_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109774080"> Ndb_conflict_reflected_op_prepare_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109767232"> Ndb_conflict_refresh_op_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045112792048"> ndb_conflict_role system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109720128"> Ndb_conflict_trans_conflict_commit_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109728320"> Ndb_conflict_trans_detect_iter_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109735280"> Ndb_conflict_trans_reject_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109753536"> Ndb_conflict_trans_row_conflict_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109743472"> Ndb_conflict_trans_row_reject_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045108477808"> ndb_cpcd, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045112749312"> ndb_data_node_neighbour system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112713952"> ndb_dbg_check_shares system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112683520"> ndb_default_column_format system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112651104"> ndb_deferred_constraints system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108476736"> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> diskscan option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> transactional option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> tupscan option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045108475664"> ndb_desc, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dd> <dl> <dt> auto-inc option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> blob-info option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> context option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> extra-node-info option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> extra-partition-info option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> table option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> unqualified option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045112619376"> ndb_distribution system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108474592"> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045108473520"> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045109713232"> Ndb_epoch_delete_delete_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045108472448"> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dd> <dl> <dt> connection-timeout option, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> dry-scp option, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> fs option, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> options, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> <dt> skip-nodegroup option, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045112586528"> ndb_eventbuffer_free_percent system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112555840"> ndb_eventbuffer_max_alloc system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109707504"> Ndb_execute_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045112525088"> ndb_extra_logging system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112489808"> ndb_force_send system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112462272"> ndb_fully_replicated system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108471376"> ndb_import, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dd> <dl> <dt> abort-on-error option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ai-increment option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ai-offset option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ai-prefetch-sz option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> connections option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> continue option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> csvopt option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> db-workers option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> errins-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> errins-type option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> fields-enclosed-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> fields-escaped-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> fields-optionally-enclosed-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> fields-terminated-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> idlesleep option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> idlespin option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ignore-lines option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> input-type option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> input-workers option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> keep-state option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> lines-terminated-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> log-level option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> max-rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> missing-ai-column option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> monitor option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> no-asynch option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> no-hint option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> opbatch option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> opbytes option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> output-type option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> output-workers option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> pagecnt option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> pagesize option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> polltimeout option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> rejects option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> resume option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> rowbatch option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> rowbytes option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> state-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> stats option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> table option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> tempdelay option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> temperrors option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045108470304"> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dd> <dl> <dt> -d option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> delete option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> dump option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> example, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> interpreting output, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> loops option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> query option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-check option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-create option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-create-if-not-exist option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-create-if-not-valid option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-drop option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-skip-events option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> sys-skip-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> update option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045112431952"> ndb_index_stat_enable system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112403888"> ndb_index_stat_option system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112278448"> ndb_join_pushdown system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109700880"> Ndb_last_commit_epoch_server status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109694656"> Ndb_last_commit_epoch_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045112191072"> ndb_log_apply_status system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045085996880"> ndb_log_apply_status variable (NDB Cluster replication), <a class="indexterm" href="mysql-cluster-replication-failover.html"> Implementing Failover with NDB Cluster Replication </a> </dt> <dt id="ientry-idm46045112164560"> ndb_log_bin system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112136176"> ndb_log_binlog_index system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112104992"> ndb_log_cache_size system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112071776"> ndb_log_empty_epochs system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045112045328"> ndb_log_empty_update system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045085117776"> ndb_log_exclusive_reads (system variable), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-detection-examples"> Examples </a> </dt> <dt id="ientry-idm46045112017024"> ndb_log_exclusive_reads system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111989408"> ndb_log_orig system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111932400"> ndb_log_transaction_compression system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111887360"> ndb_log_transaction_compression_level_zstd system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111962032"> ndb_log_transaction_id system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111851456"> ndb_metadata_check system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111822320"> ndb_metadata_check_interval system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109688416"> Ndb_metadata_detected_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109682784"> Ndb_metadata_excluded_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045111786704"> ndb_metadata_sync system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109674448"> Ndb_metadata_synced_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045108482096"> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> (see mgm) </dt> <dd> <dl> <dt> -e option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> backup-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> encrypt-backup option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> execute option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> test-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> using with MySQL Cluster Manager, <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045122199376"> ndb_mgm (NDB Cluster management node client), <a class="indexterm" href="mysql-cluster-install-first-start.html"> Initial Startup of NDB Cluster </a> </dt> <dt id="ientry-idm46045108483168"> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> (see mgmd) </dt> <dd> <dl> <dt> -d option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> -f option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> -P option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> -v option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> bind-address option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> cluster-config-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> config-cache option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> config-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> configdir option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> daemon option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> initial option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> install option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> interactive option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> log-name option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> mycnf option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> no-nodeid-checks option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> nodaemon option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> nowait-nodes option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> print-full-config option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> reload option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> remove option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> skip-config-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045107203056"> ndb_mgmd (NDB Cluster process), <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt id="ientry-idm46045124329296"> ndb_mgmd (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045124337600"> management node (NDB Cluster) </a> ) </dt> </dl> </dd> </dl> </dd> <dt id="ientry-idm46045108469232"> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dd> <dl> <dt> abort-on-error option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> drop-source option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> error-insert option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> exclude-missing-columns option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> lossy-conversions option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> promote-attributes option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> staging-tries option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045109668880"> Ndb_number_of_data_nodes status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045111755680"> ndb_optimized_node_selection system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045100742256"> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dd> <dl> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> silent option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045108468160"> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dd> <dl> <dt> backup-key option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> backup-key-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> backup-password option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> backup-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> control-directory-number option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> fragment-id option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> no-print-rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> print-header-words option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> print-restored-rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> print-rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> print-rows-per-page option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> rowid-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> show-ignored-rows option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> table-id option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045108467088"> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dd> <dl> <dt> file-key option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> file-key-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> quiet option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045108466016"> ndb_print_frag_file, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-print-frag-file.html"> ndb_print_frag_file — Print NDB Fragment List File Contents </a> </dt> <dt id="ientry-idm46045108464944"> ndb_print_schema_file, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-print-schema-file.html"> ndb_print_schema_file — Print NDB Schema File Contents </a> </dt> <dt id="ientry-idm46045108463872"> ndb_print_sys_file, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-print-sys-file.html"> ndb_print_sys_file — Print NDB System File Contents </a> </dt> <dt id="ientry-idm46045109632656"> Ndb_pruned_scan_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109662800"> Ndb_pushed_queries_defined status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109655072"> Ndb_pushed_queries_dropped status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109649456"> Ndb_pushed_queries_executed status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045109642656"> Ndb_pushed_reads status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045184212752"> ndb_read_backup </dt> <dd> <dl> <dt> and NDB_TABLE, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045111696528"> ndb_read_backup system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111662720"> ndb_recv_thread_activation_threshold system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111631552"> ndb_recv_thread_cpu_mask system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045100007408"> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> <dd> <dl> <dt> dump option, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> <dt> file-key option, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> <dt> file-key-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> <dt> lap option, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> <dt> twiddle option, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045086420608"> ndb_replication table, <a class="indexterm" href="mysql-cluster-replication-schema.html#ndb-replication-ndb-replication"> ndb_replication Table </a> </dt> <dt id="ientry-idm46045111130944"> ndb_replica_batch_size system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111096112"> ndb_replica_blob_write_batch_bytes system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109622688"> Ndb_replica_max_replicated_epoch status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045111603552"> ndb_report_thresh_binlog_epoch_slip system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111569552"> ndb_report_thresh_binlog_mem_usage system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045099812448"> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dd> <dl> <dt> allow-pk-changes option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> and circular replication, <a class="indexterm" href="mysql-cluster-replication-multi-source.html"> NDB Cluster Replication: Bidirectional and Circular Replication </a> </dt> <dt> append option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> backup-password option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> backup-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> backup-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> backupid option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> connect option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> decrypt option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> disable-indexes option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> dont-ignore-systab-0 option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> errors, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> exclude-databases option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> exclude-intermediate-sql-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> exclude-missing-columns option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> exclude-missing-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> exclude-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> fields-enclosed-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> fields-optionally-enclosed-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> fields-terminated-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> hex option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ignore-extended-pk-updates option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> include-databases option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> include-stored-grants option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> include-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> lines-terminated-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> lossy-conversions option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-nodegroup-map option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> no-binlog option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> no-restore-disk-objects option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> no-upgrade option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> num-slices option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> parallelism option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> preserve-trailing-spaces option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print-data option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print-log option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print-meta option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> print-sql-log option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> progress-frequency option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> promote-attributes option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> rebuild-indexes option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> remap-column option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> restore-data option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> restore-epoch option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> restore-meta option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> restore-privilege-tables option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> rewrite-database option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> skip-broken-objects option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> skip-table-check option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> skip-unknown-objects option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> slice-id option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> tab option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> timestamp-printouts option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> typical and required options, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> with-apply-status option, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045111538192"> ndb_row_checksum system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109614000"> Ndb_scan_count status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045111507984"> ndb_schema_dist_lock_wait_timeout system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111474944"> ndb_schema_dist_timeout system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111442176"> ndb_schema_dist_upgrade_allowed system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045098103632"> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dd> <dl> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> filesystem-password option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> filesystem-password-from-stdin option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> </dl> </dd> <dt id="ientry-idm46045108462800"> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> delimiter option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> descending option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> disk option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> gci option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> gci64 option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> header option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> lock option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> nodata option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> order option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> parallelism option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> rowid option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> tupscan option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> useHexFormat option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045108461728"> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045111414624"> ndb_show_foreign_key_mock_tables system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108459840"> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> database option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> loops option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> parsable option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> show-temp-status option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> type option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> unqualified option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045108457696"> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dd> <dl> <dt> bind-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> bound-hostname option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-cert option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-days option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-key option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-ordinal option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> CA-tool option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> check option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> config-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> create-CA option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> create-key option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> curve option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> duration option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> keys-to-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> no-config option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> node-id option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> node-type option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> passphrase option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> pending option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> promote option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> remote-CA-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> remote-exec-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> remote-openssl option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> replace-by option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> rotate-CA option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> schedule option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> sign option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> skip-sign option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> stdio option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> to-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045108458768"> ndb_size.pl, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-size-pl.html"> ndb_size.pl — NDBCLUSTER Size Requirement Estimator </a> </dt> <dt id="ientry-idm46045210713776"> ndb_size.pl script, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-ndb"> NDB Table Storage Requirements </a> </dt> <dt id="ientry-idm46045111385552"> ndb_slave_conflict_role system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045109607232"> Ndb_slave_max_replicated_epoch status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045251149104"> NDB_STORED_USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> , <a class="indexterm" href="mysql-cluster-privilege-synchronization.html"> Privilege Synchronization and NDB_STORED_USER </a> </dt> <dt id="ientry-idm46045109600464"> Ndb_system_name status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045186012144"> NDB_TABLE, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> , <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045111350944"> ndb_table_no_logging system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111314720"> ndb_table_temporary system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108456624"> ndb_top, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dd> <dl> <dt> color option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> graph option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> host option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> measured-load option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> node-id option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> os-load option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> password option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> port option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> sleep-time option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> socket option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> sort option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> text option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> user option, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045079514080"> ndb_transid_mysql_connection_map </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-ndb-transid-mysql-connection-map-table.html"> The INFORMATION_SCHEMA ndb_transid_mysql_connection_map Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045109594880"> Ndb_trans_hint_count_session status variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt id="ientry-idm46045111287984"> ndb_use_copying_alter_table system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111265984"> ndb_use_exact_count system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111240144"> ndb_use_transactions system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045327333328"> NDB_UTILS_LINK_DYNAMIC </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045111212080"> ndb_version system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045111188368"> ndb_version_string system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045108455552"> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> , <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dd> <dl> <dt> character-sets-dir option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> connect-retries option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> connect-retry-delay option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> connect-string option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> core-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> defaults-extra-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> defaults-file option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> defaults-group-suffix option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> help option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> login-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-connectstring option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-mgm-tls option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-mgmd-host option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-nodeid option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-optimized-node-selection option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> ndb-tls-search-path option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> no-contact option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> no-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> no-login-paths option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> not-started option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> nowait-nodes option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> print-defaults option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> single-user option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> timeout option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> usage option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> verbose option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> version option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> wait-nodes option, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045220458848"> negative values, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> <dt id="ientry-idm46045031739360"> neighbor page, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045180113328"> nested queries, <a class="indexterm" href="subqueries.html"> Subqueries </a> </dt> <dt id="ientry-idm46045229583488"> Nested-Loop join algorithm, <a class="indexterm" href="nested-loop-joins.html"> Nested-Loop Join Algorithms </a> </dt> <dt id="ientry-idm46045229505408"> nested-loop join algorithm, <a class="indexterm" href="nested-join-optimization.html"> Nested Join Optimization </a> </dt> <dt id="ientry-idm46045031730752"> .NET, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045318839920"> net-buffer-length option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045249929008"> netmask notation </dt> <dd> <dl> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045260630096"> network namespaces, <a class="indexterm" href="network-namespace-support.html"> Network Namespace Support </a> </dt> <dt id="ientry-idm46045087012544"> network ports </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt id="ientry-idm46045318826336"> network-namespace option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045312275360"> network-timeout option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045272440144"> net_buffer_length system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272398192"> net_read_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272361712"> net_retry_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272328528"> net_write_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045335007952"> new features, <a class="indexterm" href="mysql-nutshell.html#mysql-nutshell-additions"> Features Added or Changed in MySQL 8.4 </a> </dt> <dt id="ientry-idm46045124078704"> new features in NDB Cluster, <a class="indexterm" href="mysql-cluster-what-is-new.html"> What is New in MySQL NDB Cluster 8.4 </a> </dt> <dt id="ientry-idm46045220558912"> newline (\n), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045164581280"> next-key lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045163616192"> NFS </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-init-startup-configuration.html#innodb-startup-storage-considerations"> Important Storage Considerations </a> </dt> </dl> </dd> <dt id="ientry-idm46045272294784"> ngram_token_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045321644272"> nice option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045053473744"> no matching rows, <a class="indexterm" href="no-matching-rows.html"> Solving Problems with No Matching Rows </a> </dt> <dt id="ientry-idm46045216954928"> NO PAD collations, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> , <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-pad-attributes"> Collation Pad Attributes </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt id="ientry-idm46045102213456"> no-asynch option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045318811232"> no-auto-rehash option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045312118512"> no-autocommit option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045318798048"> no-beep option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045099019424"> no-binlog option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045308317344"> no-check option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045096275248"> no-config option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045095212832"> no-contact option </dt> <dd> <dl> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045313644240"> no-create-db option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313629392"> no-create-info option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312517120"> no-data option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045323744016"> no-defaults option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045309132496"> no-drop option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045102190928"> no-hint option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045321027472"> no-log option </dt> <dd> <dl> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045323760784"> no-login-paths option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045279535200"> no-monitor option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045106659920"> no-nodeid-checks option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045100337856"> no-print-rows option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045099006368"> no-restore-disk-objects option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045313355376"> no-set-names option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045313612976"> no-tablespaces option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045098992608"> no-upgrade option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045106648720"> nodaemon option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045097687680"> nodata option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045124213072"> node groups (NDB Cluster), <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt id="ientry-idm46045093551328"> node logs (NDB Cluster), <a class="indexterm" href="mysql-cluster-event-reports.html"> Event Reports Generated in NDB Cluster </a> </dt> <dt id="ientry-idm46045096225776"> node-id option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045096205200"> node-type option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045060355024"> Node.js, <a class="indexterm" href="connector-nodejs-info.html"> MySQL Connector/Node.js </a> </dt> <dt id="ientry-idm46045119845216"> NodeGroup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118856112"> NodeGroupTransporters, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045120430256"> NodeId, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045105009792"> nodeid option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045109476768"> NodeId1, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045109452624"> NodeId2, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045109427968"> NodeIdServer, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045094523472"> NODELOG DEBUG command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045093137856"> NODERESTART Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045088469536"> nodes </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-nodes.html"> The ndbinfo nodes Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045104994256"> nodes option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045184240320"> NOLOGGING, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045184228832"> NOLOGGING (NDB_TABLE) </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045031720880"> non-locking read, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031710080"> non-repeatable read, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031698096"> nonblocking I/O, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045220301904"> nondelimited strings, <a class="indexterm" href="date-and-time-literals.html#date-and-time-string-numeric-literals"> String and Numeric Literals in Date and Time Context </a> </dt> <dt id="ientry-idm46045228574688"> nondeterministic functions </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="function-optimization.html"> Function Call Optimization </a> </dt> <dt> replication, <a class="indexterm" href="function-optimization.html"> Function Call Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045184225856"> nonlogging tables </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> , <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045053507504"> Nontransactional tables, <a class="indexterm" href="nontransactional-tables.html"> Rollback Failure for Nontransactional Tables </a> </dt> <dt id="ientry-idm46045118615760"> NoOfFragmentLogFiles, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115708864"> NoOfFragmentLogParts, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119790944"> NoOfReplicas, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045317802096"> nopager command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045031694800"> normalized, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045211257296"> normalized JSON values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt id="ientry-idm46045233698480"> normalize_statement() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045128186032"> NoSQL, <a class="indexterm" href="mysql-shell-userguide.html"> MySQL Shell </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045128171248"> NoSQL database </dt> <dd> <dl> <dt> MySQL as a, <a class="indexterm" href="document-store.html"> Using MySQL as a Document Store </a> </dt> </dl> </dd> <dt id="ientry-idm46045107861504"> nostart option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045206966464"> NOT </dt> <dd> <dl> <dt> logical, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045207271392"> NOT BETWEEN, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207371200"> not equal (!=), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207373360"> not equal (&lt;&gt;), <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045179880496"> NOT EXISTS </dt> <dd> <dl> <dt> with subqueries, <a class="indexterm" href="exists-and-not-exists-subqueries.html"> Subqueries with EXISTS or NOT EXISTS </a> </dt> </dl> </dd> <dt id="ientry-idm46045207235536"> NOT EXISTS() operator, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045207171696"> NOT IN, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045202543744"> NOT LIKE, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045031677680"> NOT NULL constraint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045202444368"> NOT REGEXP, <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045095193120"> not-started option </dt> <dd> <dl> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045317794656"> notee command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045329911712"> NOTIFY_SOCKET environment variable, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045262399904"> Not_flushed_delayed_rows status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045204574592"> NOW(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045180814288"> NOWAIT, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045092049296"> NOWAIT (START BACKUP command), <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt id="ientry-idm46045107835600"> nowait-nodes option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045317788336"> nowarning command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045261506800"> NO_AUTO_VALUE_ON_ZERO SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261486224"> NO_BACKSLASH_ESCAPES SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261478320"> NO_DIR_IN_CREATE SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261471312"> NO_ENGINE_SUBSTITUTION SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045223817760"> NO_GROUP_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223768496"> NO_ICP, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223809968"> NO_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223795152"> NO_INDEX_MERGE, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223784704"> NO_JOIN_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223775136"> NO_MRR, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223759280"> NO_ORDER_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223764384"> NO_RANGE_OPTIMIZATION, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045223752256"> NO_SKIP_SCAN, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045261454640"> NO_UNSIGNED_SUBTRACTION SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261424576"> NO_ZERO_DATE SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261402736"> NO_ZERO_IN_DATE SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045192132160"> NTH_VALUE(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045192113408"> NTILE(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045220578704"> NUL, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045325110000"> NULL, <a class="indexterm" href="working-with-null.html"> Working with NULL Values </a> , <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> ORDER BY, <a class="indexterm" href="order-by-optimization.html#order-by-index-use"> Use of Indexes to Satisfy ORDER BY </a> </dt> <dt> testing for null, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> , <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045211395264"> null literal </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045325108960"> NULL value, <a class="indexterm" href="working-with-null.html"> Working with NULL Values </a> , <a class="indexterm" href="null-values.html"> NULL Values </a> </dt> <dd> <dl> <dt> ORDER BY, <a class="indexterm" href="null-values.html"> NULL Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045186447856"> NULL values </dt> <dd> <dl> <dt> and AUTO_INCREMENT columns, <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> <dt> and indexes, <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt> and TIMESTAMP columns, <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> <dt> vs. empty values, <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045229486992"> NULL-complemented row, <a class="indexterm" href="nested-join-optimization.html"> Nested Join Optimization </a> , <a class="indexterm" href="outer-join-simplification.html"> Outer Join Simplification </a> </dt> <dt id="ientry-idm46045229367968"> null-rejected condition, <a class="indexterm" href="outer-join-simplification.html"> Outer Join Simplification </a> </dt> <dt id="ientry-idm46045206591232"> NULLIF(), <a class="indexterm" href="flow-control-functions.html"> Flow Control Functions </a> </dt> <dt id="ientry-idm46045098822288"> num-slices option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045116449472"> Numa, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045309098720"> number-char-cols option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309082352"> number-int-cols option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045309066688"> number-of-queries option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045220463552"> numbers, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> <dt id="ientry-idm46045115680272"> NumCPUs, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045214232608"> NUMERIC data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045214458048"> numeric data types, <a class="indexterm" href="numeric-types.html"> Numeric Data Types </a> </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-numeric"> Numeric Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045220468016"> numeric literals </dt> <dd> <dl> <dt> approximate-value, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="precision-math-numbers.html"> Types of Numeric Values </a> </dt> <dt> exact-value, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="precision-math-numbers.html"> Types of Numeric Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045214489792"> numeric precision, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045214481472"> numeric scale, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045212948352"> NVARCHAR data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_O"> </a> O </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045211398240"> object </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045082640096"> objects </dt> <dd> <dl> <dt> stored, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> </dt> </dl> </dd> <dt id="ientry-idm46045068552384"> objects_summary_global_by_type table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-objects-summary-global-by-type-table.html"> Object Wait Summary Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045083421440"> obtaining information about partitions, <a class="indexterm" href="partitioning-info.html"> Obtaining Information About Partitions </a> </dt> <dt id="ientry-idm46045318763904"> oci-config-file option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045203138752"> OCT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045203123072"> OCTET_LENGTH(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045031648272"> ODBC, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045269438128"> ODBC compatibility, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="type-conversion.html"> Type Conversion in Expression Evaluation </a> , <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045328392240"> ODBC_INCLUDES option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328386256"> ODBC_LIB_DIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045118085616"> ODirect, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045118059536"> ODirectSyncFlag, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045256965312"> OFF </dt> <dd> <dl> <dt> plugin activation option, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> </dl> </dd> <dt id="ientry-idm46045031644800"> off-page column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045272262256"> offline_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045304346048"> offset option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045212230832"> OGC (see <a href="#ientry-idm46045212231920"> Open Geospatial Consortium </a> ) </dt> <dt id="ientry-idm46045192776816"> OLAP, <a class="indexterm" href="group-by-modifiers.html"> GROUP BY Modifiers </a> </dt> <dt id="ientry-idm46045272206800"> old_alter_table system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031635184"> OLTP, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045256959472"> ON </dt> <dd> <dl> <dt> plugin activation option, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> </dl> </dd> <dt id="ientry-idm46045182269184"> ON DUPLICATE KEY </dt> <dd> <dl> <dt> INSERT modifier, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045182522016"> ON DUPLICATE KEY UPDATE, <a class="indexterm" href="insert.html"> INSERT Statement </a> </dt> <dt id="ientry-idm46045180374032"> ON versus USING </dt> <dd> <dl> <dt> joins, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> </dl> </dd> <dt id="ientry-idm46045318751872"> one-database option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045248031296"> one-factor authentication (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045262381520"> Ongoing_anonymous_gtid_violating_transaction_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262387312"> Ongoing_anonymous_transaction_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262374512"> Ongoing_automatic_gtid_violating_transaction_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045031623040"> online, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045160573136"> online DDL, <a class="indexterm" href="innodb-online-ddl.html"> InnoDB and Online DDL </a> , <a class="indexterm" href="innodb-online-ddl-operations.html"> Online DDL Operations </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> concurrency, <a class="indexterm" href="innodb-online-ddl-performance.html"> Online DDL Performance and Concurrency </a> </dt> <dt> limitations, <a class="indexterm" href="innodb-online-ddl-limitations.html"> Online DDL Limitations </a> </dt> </dl> </dd> <dt id="ientry-idm46045335341328"> online location of manual, <a class="indexterm" href="manual-info.html"> About This Manual </a> </dt> <dt id="ientry-idm46045092604336"> online upgrades and downgrades (NDB Cluster), <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dd> <dl> <dt> order of node updates, <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045305535024"> online-migration option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045309047776"> only-print option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045192596064"> ONLY_FULL_GROUP_BY </dt> <dd> <dl> <dt> SQL mode, <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> </dl> </dd> <dt id="ientry-idm46045261377344"> ONLY_FULL_GROUP_BY SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045102179344"> opbatch option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102156144"> opbytes option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045176114048"> OPEN, <a class="indexterm" href="open.html"> Cursor OPEN Statement </a> </dt> <dt id="ientry-idm46045212231920"> Open Geospatial Consortium, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045335222496"> Open Source </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> </dl> </dd> <dt id="ientry-idm46045316950016"> open tables, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt id="ientry-idm46045321616080"> open-files-limit option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045262345616"> Opened_files status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262333040"> Opened_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262338528"> Opened_table_definitions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045212232992"> OpenGIS, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045226722000"> opening </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045221026976"> Opening master dump table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220999984"> Opening mysql.ndb_apply_status </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221610800"> Opening system tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221605840"> Opening tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045245204464"> OpenLDAP configuration </dt> <dd> <dl> <dt> ldap.conf file, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-ldap-conf"> LDAP Pluggable Authentication and ldap.conf </a> </dt> </dl> </dd> <dt id="ientry-idm46045316959664"> opens, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045329403408"> OpenSSL, <a class="indexterm" href="source-ssl-library-configuration.html"> Configuring SSL Library Support </a> , <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> <dd> <dl> <dt> FIPS mode, <a class="indexterm" href="fips-mode.html"> FIPS Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045231471584"> OpenSSL FIPS Object Module, <a class="indexterm" href="fips-mode.html"> FIPS Support </a> </dt> <dt id="ientry-idm46045262367744"> Open_files status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045272172560"> open_files_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045262362000"> Open_streams status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262351040"> Open_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262356432"> Open_table_definitions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045333009680"> operating systems </dt> <dd> <dl> <dt> file-size limits, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> <dt> supported, <a class="indexterm" href="platform-support.html"> Supported Platforms </a> , <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> <dt id="ientry-idm46045206398384"> operations </dt> <dd> <dl> <dt> arithmetic, <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045088412016"> operations_per_fragment </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-operations-per-fragment.html"> The ndbinfo operations_per_fragment Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045218686464"> operators, <a class="indexterm" href="functions.html"> Functions and Operators </a> </dt> <dd> <dl> <dt> arithmetic, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> assignment, <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> , <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt> bit, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> cast, <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> , <a class="indexterm" href="cast-functions.html"> Cast Functions and Operators </a> </dt> <dt> logical, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> <dt> precedence, <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> <dt> string, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt> string comparison, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045031602496"> .OPT file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045312259696"> opt option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045031597472"> optimistic, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045230418656"> optimization, <a class="indexterm" href="optimization.html"> Optimization </a> , <a class="indexterm" href="derived-condition-pushdown-optimization.html"> Derived Condition Pushdown Optimization </a> , <a class="indexterm" href="optimizing-innodb-diskio.html"> Optimizing InnoDB Disk I/O </a> </dt> <dd> <dl> <dt> Batched Key Access, <a class="indexterm" href="bnl-bka-optimization.html"> Block Nested-Loop and Batched Key Access Joins </a> , <a class="indexterm" href="bnl-bka-optimization.html#bka-optimization"> Batched Key Access Joins </a> </dt> <dt> benchmarking, <a class="indexterm" href="optimize-benchmarking.html"> Measuring Performance (Benchmarking) </a> </dt> <dt> BLOB types, <a class="indexterm" href="optimize-blob.html"> Optimizing for BLOB Types </a> </dt> <dt> Block Nested-Loop, <a class="indexterm" href="bnl-bka-optimization.html"> Block Nested-Loop and Batched Key Access Joins </a> , <a class="indexterm" href="bnl-bka-optimization.html#bnl-optimization"> Block Nested-Loop Algorithm for Outer Joins and Semijoins </a> </dt> <dt> character and string types, <a class="indexterm" href="optimize-character.html"> Optimizing for Character and String Types </a> </dt> <dt> common table expressions, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> </dt> <dt> data change statements, <a class="indexterm" href="data-change-optimization.html"> Optimizing Data Change Statements </a> </dt> <dt> data size, <a class="indexterm" href="data-size.html"> Optimizing Data Size </a> </dt> <dt> DELETE statements, <a class="indexterm" href="delete-optimization.html"> Optimizing DELETE Statements </a> </dt> <dt> derived tables, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> </dt> <dt> disk I/O, <a class="indexterm" href="disk-issues.html"> Optimizing Disk I/O </a> </dt> <dt> foreign keys, <a class="indexterm" href="foreign-key-optimization.html"> Foreign Key Optimization </a> </dt> <dt> full table scans, <a class="indexterm" href="table-scan-avoidance.html"> Avoiding Full Table Scans </a> </dt> <dt> full-text queries, <a class="indexterm" href="column-indexes.html#column-indexes-fulltext"> FULLTEXT Indexes </a> </dt> <dt> indexes, <a class="indexterm" href="optimization-indexes.html"> Optimization and Indexes </a> </dt> <dt> INFORMATION_SCHEMA queries, <a class="indexterm" href="information-schema-optimization.html"> Optimizing INFORMATION_SCHEMA Queries </a> </dt> <dt> InnoDB tables, <a class="indexterm" href="optimizing-innodb.html"> Optimizing for InnoDB Tables </a> </dt> <dt> INSERT statements, <a class="indexterm" href="insert-optimization.html"> Optimizing INSERT Statements </a> </dt> <dt> many tables, <a class="indexterm" href="optimize-multi-tables.html"> Optimizing for Many Tables </a> </dt> <dt> MEMORY storage engine, <a class="indexterm" href="column-indexes.html#column-indexes-memory-storage-engine"> Indexes in the MEMORY Storage Engine </a> </dt> <dt> MEMORY tables, <a class="indexterm" href="optimizing-memory-tables.html"> Optimizing for MEMORY Tables </a> </dt> <dt> memory usage, <a class="indexterm" href="optimizing-memory.html"> Optimizing Memory Use </a> </dt> <dt> Multi-Range Read, <a class="indexterm" href="mrr-optimization.html"> Multi-Range Read Optimization </a> </dt> <dt> MyISAM tables, <a class="indexterm" href="optimizing-myisam.html"> Optimizing for MyISAM Tables </a> </dt> <dt> nondeterministic functions, <a class="indexterm" href="function-optimization.html"> Function Call Optimization </a> </dt> <dt> numeric types, <a class="indexterm" href="optimize-numeric.html"> Optimizing for Numeric Data </a> </dt> <dt> Performance Schema queries, <a class="indexterm" href="performance-schema-optimization.html"> Optimizing Performance Schema Queries </a> </dt> <dt> PERFORMANCE_SCHEMA, <a class="indexterm" href="monitoring-performance-schema.html"> Measuring Performance with performance_schema </a> </dt> <dt> primary keys, <a class="indexterm" href="primary-key-optimization.html"> Primary Key Optimization </a> </dt> <dt> REPAIR TABLE statements, <a class="indexterm" href="repair-table-optimization.html"> Optimizing REPAIR TABLE Statements </a> </dt> <dt> SELECT statements, <a class="indexterm" href="select-optimization.html"> Optimizing SELECT Statements </a> </dt> <dt> SPATIAL indexes, <a class="indexterm" href="spatial-index-optimization.html"> SPATIAL Index Optimization </a> </dt> <dt> spatial queries, <a class="indexterm" href="column-indexes.html#column-indexes-spatial"> Spatial Indexes </a> </dt> <dt> SQL statements, <a class="indexterm" href="statement-optimization.html"> Optimizing SQL Statements </a> </dt> <dt> subqueries, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> </dt> <dt> subquery, <a class="indexterm" href="subquery-optimization-with-exists.html"> Optimizing Subqueries with the EXISTS Strategy </a> </dt> <dt> subquery materialization, <a class="indexterm" href="subquery-materialization.html"> Optimizing Subqueries with Materialization </a> </dt> <dt> tips, <a class="indexterm" href="miscellaneous-optimization-tips.html"> Other Optimization Tips </a> </dt> <dt> UPDATE statements, <a class="indexterm" href="update-optimization.html"> Optimizing UPDATE Statements </a> </dt> <dt> views, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> </dt> <dt> WHERE clauses, <a class="indexterm" href="where-optimization.html"> WHERE Clause Optimization </a> </dt> <dt> window functions, <a class="indexterm" href="window-function-optimization.html"> Window Function Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045229707712"> optimization (NDB), <a class="indexterm" href="engine-condition-pushdown-optimization.html"> Engine Condition Pushdown Optimization </a> , <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045229889936"> optimizations, <a class="indexterm" href="index-merge-optimization.html"> Index Merge Optimization </a> </dt> <dd> <dl> <dt> LIMIT clause, <a class="indexterm" href="limit-optimization.html"> LIMIT Query Optimization </a> </dt> <dt> row constructors, <a class="indexterm" href="row-constructor-optimization.html"> Row Constructor Expression Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045315200864"> optimize option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045083479840"> OPTIMIZE TABLE </dt> <dd> <dl> <dt> and partitioning, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045172207008"> OPTIMIZE TABLE statement, <a class="indexterm" href="optimize-table.html"> OPTIMIZE TABLE Statement </a> </dt> <dt id="ientry-idm46045224546832"> optimizer, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-optimizer.html"> Replication and the Query Optimizer </a> </dt> <dt> controlling, <a class="indexterm" href="controlling-optimizer.html"> Controlling the Query Optimizer </a> </dt> <dt> cost model, <a class="indexterm" href="cost-model.html"> The Optimizer Cost Model </a> </dt> <dt> query plan evaluation, <a class="indexterm" href="controlling-query-plan-evaluation.html"> Controlling Query Plan Evaluation </a> </dt> <dt> switchable optimizations, <a class="indexterm" href="switchable-optimizations.html"> Switchable Optimizations </a> </dt> </dl> </dd> <dt id="ientry-idm46045224183312"> optimizer hints, <a class="indexterm" href="optimizer-hints.html"> Optimizer Hints </a> </dt> <dt id="ientry-idm46045162464512"> optimizer statistics </dt> <dd> <dl> <dt> for InnoDB tables, <a class="indexterm" href="innodb-persistent-stats.html"> Configuring Persistent Optimizer Statistics Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045162087008"> Optimizer Statistics, <a class="indexterm" href="innodb-statistics-estimation.html"> Configuring Non-Persistent Optimizer Statistics Parameters </a> </dt> <dt id="ientry-idm46045272109408"> optimizer_prune_level system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272078592"> optimizer_search_depth system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045272047856"> optimizer_switch system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="switchable-optimizations.html"> Switchable Optimizations </a> </dt> <dd> <dl> <dt> use_invisible_indexes flag, <a class="indexterm" href="invisible-indexes.html"> Invisible Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045079462448"> OPTIMIZER_TRACE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-optimizer-trace-table.html"> The INFORMATION_SCHEMA OPTIMIZER_TRACE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045327910480"> OPTIMIZER_TRACE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045271991776"> optimizer_trace system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271967888"> optimizer_trace_features system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271943840"> optimizer_trace_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271912656"> optimizer_trace_max_mem_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271879248"> optimizer_trace_offset system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045251129792"> OPTIMIZE_LOCAL_TABLE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045327362880"> OPTIMIZE_SANITIZER_BUILDS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> </dl> </dd> <dt id="ientry-idm46045230480576"> optimizing </dt> <dd> <dl> <dt> DISTINCT, <a class="indexterm" href="distinct-optimization.html"> DISTINCT Optimization </a> </dt> <dt> filesort, <a class="indexterm" href="order-by-optimization.html#order-by-filesort"> Use of filesort to Satisfy ORDER BY </a> , <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> <dt> GROUP BY, <a class="indexterm" href="group-by-optimization.html"> GROUP BY Optimization </a> </dt> <dt> LEFT JOIN, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> </dt> <dt> ORDER BY, <a class="indexterm" href="order-by-optimization.html"> ORDER BY Optimization </a> </dt> <dt> outer joins, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> </dt> <dt> RIGHT JOIN, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> </dt> <dt> tables, <a class="indexterm" href="myisam-optimization.html"> MyISAM Table Optimization </a> </dt> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045031578048"> option, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031571056"> option file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324236480"> option files, <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dd> <dl> <dt> .my.cnf, <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="option-files.html#option-file-order"> Option File Processing Order </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> , <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dt> .mylogin.cnf, <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> C:\my.cnf, <a class="indexterm" href="multiple-server-clients.html"> Using Client Programs in a Multiple-Server Environment </a> </dt> <dt> escape sequences, <a class="indexterm" href="option-files.html#option-file-syntax"> Option File Syntax </a> </dt> <dt> my.cnf, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> <dt> mysqld-auto.cnf, <a class="indexterm" href="program-options.html"> Specifying Program Options </a> , <a class="indexterm" href="option-files.html"> Using Option Files </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="using-system-variables.html"> Using System Variables </a> , <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> , <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="nonpersistible-system-variables.html"> Nonpersistible and Persist-Restricted System Variables </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> , <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> , <a class="indexterm" href="reset-persist.html"> RESET PERSIST Statement </a> , <a class="indexterm" href="performance-schema-persisted-variables-table.html"> Performance Schema persisted_variables Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045323718528"> option prefix </dt> <dd> <dl> <dt> --disable, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt> --enable, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt> --loose, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt> --maximum, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt> --skip, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> </dl> </dd> <dt id="ientry-idm46045329375904"> options </dt> <dd> <dl> <dt> boolean, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt> CMake, <a class="indexterm" href="source-configuration-options.html"> MySQL Source-Configuration Options </a> </dt> <dt> command-line </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysqld, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dt> provided by MySQL, <a class="indexterm" href="tutorial.html"> Tutorial </a> </dt> <dt> replication, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> </dl> </dd> <dt id="ientry-idm46045324624288"> OR, <a class="indexterm" href="searching-on-two-keys.html"> Searching on Two Keys </a> , <a class="indexterm" href="index-merge-optimization.html"> Index Merge Optimization </a> </dt> <dd> <dl> <dt> bitwise, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> logical, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045229891024"> OR Index Merge optimization, <a class="indexterm" href="index-merge-optimization.html"> Index Merge Optimization </a> </dt> <dt id="ientry-idm46045333470464"> Oracle compatibility, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> , <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> , <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="explain.html#explain-table-structure"> Obtaining Table Structure Information </a> </dt> <dt id="ientry-idm46045240614304"> Oracle Key Vault, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-oracle-key-vault"> Configuring keyring_okv for Oracle Key Vault </a> </dt> </dl> </dd> <dt id="ientry-idm46045203112736"> ORD(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045325215360"> ORDER BY, <a class="indexterm" href="sorting-rows.html"> Sorting Rows </a> , <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dd> <dl> <dt> maximum sort length, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> NULL, <a class="indexterm" href="order-by-optimization.html#order-by-index-use"> Use of Indexes to Satisfy ORDER BY </a> </dt> <dt> NULL value, <a class="indexterm" href="null-values.html"> NULL Values </a> </dt> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045228990736"> ORDER BY optimization, <a class="indexterm" href="order-by-optimization.html"> ORDER BY Optimization </a> </dt> <dt id="ientry-idm46045097556256"> order option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045312104016"> order-by-primary option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045223760352"> ORDER_INDEX, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045136110864"> original_commit_timestamp, <a class="indexterm" href="replication-delayed.html"> Delayed Replication </a> </dt> <dt id="ientry-idm46045139360592"> original_commit_timestamp system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045144355760"> original_server_version system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045081585792"> orphan stored objects, <a class="indexterm" href="stored-objects-security.html#stored-objects-security-orphan-objects"> Orphan Stored Objects </a> </dt> <dt id="ientry-idm46045095688112"> os-load option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045083000320"> Out of resources error </dt> <dd> <dl> <dt> and partitioned tables, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> </dl> </dd> <dt id="ientry-idm46045175223248"> OUT parameter </dt> <dd> <dl> <dt> condition handling, <a class="indexterm" href="conditions-and-parameters.html"> Condition Handling and OUT or INOUT Parameters </a> </dt> </dl> </dd> <dt id="ientry-idm46045320672384"> out-dir option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045320654848"> out-file option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> </dl> </dd> <dt id="ientry-idm46045213927504"> out-of-range handling, <a class="indexterm" href="out-of-range-and-overflow.html"> Out-of-Range and Overflow Handling </a> </dt> <dt id="ientry-idm46045229445232"> outer joins </dt> <dd> <dl> <dt> optimizing, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045180629440"> OUTFILE, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt id="ientry-idm46045313114448"> output-as-version option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045102133120"> output-type option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045102113152"> output-workers option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045192001056"> OVER clause </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045328006528"> over-aligned type storage, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt id="ientry-idm46045213926432"> overflow handling, <a class="indexterm" href="out-of-range-and-overflow.html"> Out-of-Range and Overflow Handling </a> </dt> <dt id="ientry-idm46045031564704"> overflow page, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045109406624"> OverloadLimit, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045340959232"> overview, <a class="indexterm" href="introduction.html"> General Information </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_P"> </a> P </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045216960464"> pad attribute </dt> <dd> <dl> <dt> collations, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> , <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045216957488"> PAD SPACE collations, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> , <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-pad-attributes"> Collation Pad Attributes </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt id="ientry-idm46045261363184"> PAD_CHAR_TO_FULL_LENGTH SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045031556704"> page, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031541072"> page cleaner, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045161143856"> page compression, <a class="indexterm" href="innodb-page-compression.html"> InnoDB Page Compression </a> </dt> <dt id="ientry-idm46045308123296"> page option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045165838688"> page size, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-physical-structure.html"> The Physical Structure of an InnoDB Index </a> </dt> </dl> </dd> <dt id="ientry-idm46045307945552"> page-type-dump option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045307964912"> page-type-summary option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045102069024"> pagecnt option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045317782720"> pager command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045318709072"> pager option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045102092064"> pagesize option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045245918416"> PAM </dt> <dd> <dl> <dt> pluggable authentication, <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045031510608"> .par file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045098731680"> parallelism option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045302464480"> parameters </dt> <dd> <dl> <dt> server, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045079440640"> PARAMETERS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-parameters-table.html"> The INFORMATION_SCHEMA PARAMETERS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259802640"> parameters table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259808048"> parameter_type_elements table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045064188736"> parent events </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-obtaining-parent-events.html"> Obtaining Parent Event Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045031499792"> parent table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045207538096"> parentheses ( and ), <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> <dt id="ientry-idm46045181236336"> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt id="ientry-idm46045096812640"> parsable option </dt> <dd> <dl> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045271845008"> parser_max_mem_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031492768"> partial backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031486768"> partial index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045249694096"> partial revokes, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> , <a class="indexterm" href="partial-revokes.html"> Privilege Restriction Using Partial Revokes </a> </dt> <dt id="ientry-idm46045031481488"> partial trust, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045135159168"> partial updates </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-errors.html"> Replica Errors During Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045271807408"> partial_revokes system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045085018608"> PARTITION, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dt id="ientry-idm46045191944608"> PARTITION BY </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045084595632"> PARTITION BY LIST COLUMNS, <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt id="ientry-idm46045084596720"> PARTITION BY RANGE COLUMNS, <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt id="ientry-idm46045083969888"> partition management, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> <dt id="ientry-idm46045083359696"> partition pruning, <a class="indexterm" href="partitioning-pruning.html"> Partition Pruning </a> </dt> <dt id="ientry-idm46045191946096"> partitioning, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dd> <dl> <dt> advantages, <a class="indexterm" href="partitioning-overview.html"> Overview of Partitioning in MySQL </a> </dt> <dt> and dates, <a class="indexterm" href="partitioning-types.html"> Partitioning Types </a> </dt> <dt> and foreign keys, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> and FULLTEXT indexes, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-partitioning.html"> Replication and Partitioning </a> , <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> </dt> <dt> and SQL mode, <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> , <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> and subqueries, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> and temporary tables, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> , <a class="indexterm" href="partitioning-limitations-partitioning-keys-unique-keys.html"> Partitioning Keys, Primary Keys, and Unique Keys </a> </dt> <dt> by hash, <a class="indexterm" href="partitioning-hash.html"> HASH Partitioning </a> </dt> <dt> by key, <a class="indexterm" href="partitioning-key.html"> KEY Partitioning </a> </dt> <dt> by linear hash, <a class="indexterm" href="partitioning-linear-hash.html"> LINEAR HASH Partitioning </a> </dt> <dt> by linear key, <a class="indexterm" href="partitioning-key.html"> KEY Partitioning </a> </dt> <dt> by list, <a class="indexterm" href="partitioning-list.html"> LIST Partitioning </a> </dt> <dt> by range, <a class="indexterm" href="partitioning-range.html"> RANGE Partitioning </a> </dt> <dt> COLUMNS, <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt> concepts, <a class="indexterm" href="partitioning-overview.html"> Overview of Partitioning in MySQL </a> </dt> <dt> data type of partitioning key, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> enabling, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dt> functions allowed in partitioning expressions, <a class="indexterm" href="partitioning-limitations-functions.html"> Partitioning Limitations Relating to Functions </a> </dt> <dt> index prefixes, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> keys, <a class="indexterm" href="partitioning-overview.html"> Overview of Partitioning in MySQL </a> </dt> <dt> limitations, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> operators not permitted in partitioning expressions, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> operators supported in partitioning expressions, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> optimization, <a class="indexterm" href="partitioning-info.html"> Obtaining Information About Partitions </a> , <a class="indexterm" href="partitioning-pruning.html"> Partition Pruning </a> </dt> <dt> partitioning expression, <a class="indexterm" href="partitioning-overview.html"> Overview of Partitioning in MySQL </a> </dt> <dt> resources, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dt> storage engines (limitations), <a class="indexterm" href="partitioning-limitations-storage-engines.html"> Partitioning Limitations Relating to Storage Engines </a> </dt> <dt> subpartitioning, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> support, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dt> support in NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-syntax.html"> Noncompliance with SQL Syntax in NDB Cluster </a> </dt> <dt> tables, <a class="indexterm" href="partitioning.html"> Partitioning </a> </dt> <dt> types, <a class="indexterm" href="partitioning-types.html"> Partitioning Types </a> </dt> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045083001824"> Partitioning </dt> <dd> <dl> <dt> maximum number of partitions, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> </dl> </dd> <dt id="ientry-idm46045083422496"> partitioning information statements, <a class="indexterm" href="partitioning-info.html"> Obtaining Information About Partitions </a> </dt> <dt id="ientry-idm46045082850928"> partitioning keys and primary keys, <a class="indexterm" href="partitioning-limitations-partitioning-keys-unique-keys.html"> Partitioning Keys, Primary Keys, and Unique Keys </a> </dt> <dt id="ientry-idm46045082848352"> partitioning keys and unique keys, <a class="indexterm" href="partitioning-limitations-partitioning-keys-unique-keys.html"> Partitioning Keys, Primary Keys, and Unique Keys </a> </dt> <dt id="ientry-idm46045083968816"> partitions </dt> <dd> <dl> <dt> adding and dropping, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> <dt> analyzing, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> <dt> checking, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> <dt> managing, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> <dt> modifying, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> <dt> optimizing, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> <dt> repairing, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> <dt> splitting and merging, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> <dt> truncating, <a class="indexterm" href="partitioning-management.html"> Partition Management </a> </dt> </dl> </dd> <dt id="ientry-idm46045079385264"> PARTITIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-partitions-table.html"> The INFORMATION_SCHEMA PARTITIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045124210944"> partitions (NDB Cluster), <a class="indexterm" href="mysql-cluster-nodes-groups.html"> NDB Cluster Nodes, Node Groups, Fragment Replicas, and Partitions </a> </dt> <dt id="ientry-idm46045115658448"> PartitionsPerNode, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045184238176"> PARTITION_BALANCE, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045184200304"> PARTITION_BALANCE (NDB_TABLE) </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045096241456"> passphrase option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045326681840"> password </dt> <dd> <dl> <dt> resetting expired, <a class="indexterm" href="password-management.html#password-expiration-policy"> Password Expiration Policy </a> </dt> <dt> root user, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> </dl> </dd> <dt id="ientry-idm46045248689824"> password management, <a class="indexterm" href="password-management.html"> Password Management </a> </dt> <dt id="ientry-idm46045323475360"> password option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045241829472"> password policy, <a class="indexterm" href="validate-password.html"> The Password Validation Component </a> </dt> <dt id="ientry-idm46045241830544"> password validation, <a class="indexterm" href="validate-password.html"> The Password Validation Component </a> </dt> <dt id="ientry-idm46045323458576"> password1 option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> , <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> , <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt id="ientry-idm46045323437936"> password2 option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> , <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> , <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt id="ientry-idm46045323425008"> password3 option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> , <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> , <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt id="ientry-idm46045251121792"> PASSWORDLESS_USER_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045252904032"> passwords </dt> <dd> <dl> <dt> administrator guidelines, <a class="indexterm" href="password-security-admin.html"> Administrator Guidelines for Password Security </a> </dt> <dt> expiration, <a class="indexterm" href="expired-password-handling.html"> Server Handling of Expired Passwords </a> </dt> <dt> for users, <a class="indexterm" href="user-names.html"> Account User Names and Passwords </a> </dt> <dt> forgotten, <a class="indexterm" href="resetting-permissions.html"> How to Reset the Root Password </a> </dt> <dt> logging, <a class="indexterm" href="password-logging.html"> Passwords and Logging </a> </dt> <dt> lost, <a class="indexterm" href="resetting-permissions.html"> How to Reset the Root Password </a> </dt> <dt> resetting, <a class="indexterm" href="expired-password-handling.html"> Server Handling of Expired Passwords </a> , <a class="indexterm" href="resetting-permissions.html"> How to Reset the Root Password </a> </dt> <dt> security, <a class="indexterm" href="password-security.html"> Keeping Passwords Secure </a> , <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt> setting, <a class="indexterm" href="assigning-passwords.html"> Assigning Account Passwords </a> , <a class="indexterm" href="set-password.html"> SET PASSWORD Statement </a> </dt> <dt> user guidelines, <a class="indexterm" href="password-security-user.html"> End-User Guidelines for Password Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045271751488"> password_history system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259652192"> password_history table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045271714976"> password_require_current system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271683504"> password_reuse_interval system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045332032512"> PATH environment variable, <a class="indexterm" href="mysql-installation-windows-path.html"> Customizing the PATH for MySQL Tools </a> , <a class="indexterm" href="windows-postinstallation.html"> Windows Postinstallation Procedures </a> , <a class="indexterm" href="testing-server.html"> Testing the Server </a> , <a class="indexterm" href="invoking-programs.html"> Invoking MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045323968656"> path name separators </dt> <dd> <dl> <dt> Windows, <a class="indexterm" href="option-files.html#option-file-syntax"> Option File Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045325069984"> pattern matching, <a class="indexterm" href="pattern-matching.html"> Pattern Matching </a> , <a class="indexterm" href="regexp.html"> Regular Expressions </a> </dt> <dt id="ientry-idm46045191928544"> peer row </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045096188656"> pending option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045192080720"> PERCENT_RANK(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045230417584"> performance, <a class="indexterm" href="optimization.html"> Optimization </a> </dt> <dd> <dl> <dt> benchmarks, <a class="indexterm" href="custom-benchmarks.html"> Using Your Own Benchmarks </a> </dt> <dt> disk I/O, <a class="indexterm" href="disk-issues.html"> Optimizing Disk I/O </a> </dt> <dt> estimating, <a class="indexterm" href="estimating-performance.html"> Estimating Query Performance </a> </dt> </dl> </dd> <dt id="ientry-idm46045151222528"> Performance Schema, <a class="indexterm" href="innodb-performance-schema.html"> InnoDB Integration with MySQL Performance Schema </a> , <a class="indexterm" href="performance-schema.html"> MySQL Performance Schema </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> data_locks table, <a class="indexterm" href="innodb-information-schema-transactions.html"> InnoDB INFORMATION_SCHEMA Transaction and Locking Information </a> </dt> <dt> data_lock_waits table, <a class="indexterm" href="innodb-information-schema-transactions.html"> InnoDB INFORMATION_SCHEMA Transaction and Locking Information </a> </dt> <dt> event filtering, <a class="indexterm" href="performance-schema-filtering.html"> Performance Schema Event Filtering </a> </dt> <dt> keyring tables, <a class="indexterm" href="performance-schema-keyring-tables.html"> Performance Schema Keyring Tables </a> </dt> <dt> memory use, <a class="indexterm" href="performance-schema-startup-configuration.html"> Performance Schema Startup Configuration </a> </dt> <dt> MySQL Enterprise Firewall tables, <a class="indexterm" href="performance-schema-firewall-tables.html"> Performance Schema Firewall Tables </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-ps-tables.html"> NDB Cluster and the Performance Schema </a> </dt> <dt> table reference, <a class="indexterm" href="performance-schema-table-reference.html"> Performance Schema Table Reference </a> </dt> <dt> Thread pool tables, <a class="indexterm" href="performance-schema-thread-pool-tables.html"> Performance Schema Thread Pool Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045191702672"> Performance Schema functions, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt id="ientry-idm46045227706944"> Performance Schema queries </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="performance-schema-optimization.html"> Optimizing Performance Schema Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045066266336"> performance-schema-consumer-events-stages-current option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066259184"> performance-schema-consumer-events-stages-history option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066252016"> performance-schema-consumer-events-stages-history-long option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066244848"> performance-schema-consumer-events-statements-cpu option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066237744"> performance-schema-consumer-events-statements-current option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066230624"> performance-schema-consumer-events-statements-history option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066223344"> performance-schema-consumer-events-statements-history-long option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066216240"> performance-schema-consumer-events-transactions-current option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066209056"> performance-schema-consumer-events-transactions-history option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066201872"> performance-schema-consumer-events-transactions-history-long option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066194704"> performance-schema-consumer-events-waits-current option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066187648"> performance-schema-consumer-events-waits-history option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066180576"> performance-schema-consumer-events-waits-history-long option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066173472"> performance-schema-consumer-global-instrumentation option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066166320"> performance-schema-consumer-statements-digest option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066159344"> performance-schema-consumer-thread-instrumentation option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066281712"> performance-schema-consumer-xxx option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045066273552"> performance-schema-instrument option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-options.html"> Performance Schema Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045260884864"> performance_schema </dt> <dd> <dl> <dt> accounts table, <a class="indexterm" href="performance-schema-accounts-table.html"> The accounts Table </a> </dt> <dt> binary_log_transaction_compression_stats, <a class="indexterm" href="performance-schema-binary-log-transaction-compression-stats-table.html"> The binary_log_transaction_compression_stats Table </a> </dt> <dt> clone_progress table, <a class="indexterm" href="performance-schema-clone-progress-table.html"> The clone_progress Table </a> </dt> <dt> clone_status table, <a class="indexterm" href="performance-schema-clone-status-table.html"> The clone_status Table </a> </dt> <dt> component_scheduler_tasks table, <a class="indexterm" href="performance-schema-component-scheduler-tasks-table.html"> The component_scheduler_tasks Table </a> </dt> <dt> cond_instances table, <a class="indexterm" href="performance-schema-cond-instances-table.html"> The cond_instances Table </a> </dt> <dt> data_locks table, <a class="indexterm" href="performance-schema-data-locks-table.html"> The data_locks Table </a> , <a class="indexterm" href="performance-schema-obtaining-parent-events.html"> Obtaining Parent Event Information </a> </dt> <dt> data_lock_waits table, <a class="indexterm" href="performance-schema-data-lock-waits-table.html"> The data_lock_waits Table </a> </dt> <dt> eplication_group_member_actions, <a class="indexterm" href="performance-schema-replication-group-member-actions-table.html"> The replication_group_member_actions Table </a> </dt> <dt> error_log table, <a class="indexterm" href="performance-schema-error-log-table.html"> The error_log Table </a> </dt> <dt> events_errors_summary_by_account_by_error table, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> <dt> events_errors_summary_by_host_by_error table, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> <dt> events_errors_summary_by_thread_by_error table, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> <dt> events_errors_summary_by_user_by_error table, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> <dt> events_errors_summary_global_by_error table, <a class="indexterm" href="performance-schema-error-summary-tables.html"> Error Summary Tables </a> </dt> <dt> events_stages_current table, <a class="indexterm" href="performance-schema-events-stages-current-table.html"> The events_stages_current Table </a> </dt> <dt> events_stages_history table, <a class="indexterm" href="performance-schema-events-stages-history-table.html"> The events_stages_history Table </a> </dt> <dt> events_stages_history_long table, <a class="indexterm" href="performance-schema-events-stages-history-long-table.html"> The events_stages_history_long Table </a> </dt> <dt> events_stages_summary_by_account_by_event_name table, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> <dt> events_stages_summary_by_host_by_event_name table, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> <dt> events_stages_summary_by_thread_by_event_name table, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> <dt> events_stages_summary_by_user_by_event_name table, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> <dt> events_stages_summary_global_by_event_name table, <a class="indexterm" href="performance-schema-stage-summary-tables.html"> Stage Summary Tables </a> </dt> <dt> events_statements_current table, <a class="indexterm" href="performance-schema-events-statements-current-table.html"> The events_statements_current Table </a> </dt> <dt> events_statements_histogram_by_digest table, <a class="indexterm" href="performance-schema-statement-histogram-summary-tables.html"> Statement Histogram Summary Tables </a> </dt> <dt> events_statements_histogram_global table, <a class="indexterm" href="performance-schema-statement-histogram-summary-tables.html"> Statement Histogram Summary Tables </a> </dt> <dt> events_statements_history table, <a class="indexterm" href="performance-schema-events-statements-history-table.html"> The events_statements_history Table </a> </dt> <dt> events_statements_history_long table, <a class="indexterm" href="performance-schema-events-statements-history-long-table.html"> The events_statements_history_long Table </a> </dt> <dt> events_statements_summary_by_account_by_event_name table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_by_digest table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_by_host_by_event_name table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_by_program table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_by_thread_by_event_name table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_by_user_by_event_name table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_statements_summary_global_by_event_name table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> events_transactions_current table, <a class="indexterm" href="performance-schema-events-transactions-current-table.html"> The events_transactions_current Table </a> </dt> <dt> events_transactions_history table, <a class="indexterm" href="performance-schema-events-transactions-history-table.html"> The events_transactions_history Table </a> </dt> <dt> events_transactions_history_long table, <a class="indexterm" href="performance-schema-events-transactions-history-long-table.html"> The events_transactions_history_long Table </a> </dt> <dt> events_transactions_summary_by_account_by_event table, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> <dt> events_transactions_summary_by_host_by_event_name table, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> <dt> events_transactions_summary_by_thread_by_event_name table, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> <dt> events_transactions_summary_by_user_by_event_name table, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> <dt> events_transactions_summary_global_by_event_name table, <a class="indexterm" href="performance-schema-transaction-summary-tables.html"> Transaction Summary Tables </a> </dt> <dt> events_waits_current table, <a class="indexterm" href="performance-schema-events-waits-current-table.html"> The events_waits_current Table </a> </dt> <dt> events_waits_history table, <a class="indexterm" href="performance-schema-events-waits-history-table.html"> The events_waits_history Table </a> </dt> <dt> events_waits_history_long table, <a class="indexterm" href="performance-schema-events-waits-history-long-table.html"> The events_waits_history_long Table </a> </dt> <dt> events_waits_summary_by_account_by_event_name table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> events_waits_summary_by_host_by_event_name table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> events_waits_summary_by_instance table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> events_waits_summary_by_thread_by_event_name table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> events_waits_summary_by_user_by_event_name table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> events_waits_summary_global_by_event_name table, <a class="indexterm" href="performance-schema-wait-summary-tables.html"> Wait Event Summary Tables </a> </dt> <dt> file_instances table, <a class="indexterm" href="performance-schema-file-instances-table.html"> The file_instances Table </a> </dt> <dt> file_summary_by_event_name table, <a class="indexterm" href="performance-schema-file-summary-tables.html"> File I/O Summary Tables </a> </dt> <dt> file_summary_by_instance table, <a class="indexterm" href="performance-schema-file-summary-tables.html"> File I/O Summary Tables </a> </dt> <dt> firewall_groups table, <a class="indexterm" href="performance-schema-firewall-groups-table.html"> The firewall_groups Table </a> </dt> <dt> firewall_group_allowlist table, <a class="indexterm" href="performance-schema-firewall-group-allowlist-table.html"> The firewall_group_allowlist Table </a> </dt> <dt> firewall_membership table, <a class="indexterm" href="performance-schema-firewall-membership-table.html"> The firewall_membership Table </a> </dt> <dt> hosts table, <a class="indexterm" href="performance-schema-hosts-table.html"> The hosts Table </a> </dt> <dt> host_cache table, <a class="indexterm" href="host-cache.html"> DNS Lookups and the Host Cache </a> , <a class="indexterm" href="performance-schema-host-cache-table.html"> The host_cache Table </a> </dt> <dt> innodb_redo_log_files table, <a class="indexterm" href="performance-schema-innodb-redo-log-files-table.html"> The innodb_redo_log_files Table </a> </dt> <dt> keyring_component_status table, <a class="indexterm" href="keyring.html"> The MySQL Keyring </a> , <a class="indexterm" href="performance-schema-keyring-component-status-table.html"> The keyring_component_status Table </a> </dt> <dt> keyring_keys table, <a class="indexterm" href="keyring.html"> The MySQL Keyring </a> , <a class="indexterm" href="audit-log-logging-configuration.html#audit-log-file-encryption"> Encrypting Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-routines"> Audit Log Functions </a> , <a class="indexterm" href="performance-schema-keyring-keys-table.html"> The keyring_keys table </a> </dt> <dt> log_status table, <a class="indexterm" href="performance-schema-log-status-table.html"> The log_status Table </a> </dt> <dt> memory_summary_by_account_by_event_name table, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> <dt> memory_summary_by_host_by_event_name table, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> <dt> memory_summary_by_thread_by_event_name table, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> <dt> memory_summary_by_user_by_event_name table, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> <dt> memory_summary_global_by_event_name table, <a class="indexterm" href="performance-schema-memory-summary-tables.html"> Memory Summary Tables </a> </dt> <dt> metadata_locks table, <a class="indexterm" href="performance-schema-metadata-locks-table.html"> The metadata_locks Table </a> </dt> <dt> mutex_instances table, <a class="indexterm" href="performance-schema-mutex-instances-table.html"> The mutex_instances Table </a> </dt> <dt> objects_summary_global_by_type table, <a class="indexterm" href="performance-schema-objects-summary-global-by-type-table.html"> Object Wait Summary Table </a> </dt> <dt> parent events, <a class="indexterm" href="performance-schema-obtaining-parent-events.html"> Obtaining Parent Event Information </a> </dt> <dt> performance_timers table, <a class="indexterm" href="performance-schema-performance-timers-table.html"> The performance_timers Table </a> </dt> <dt> prepared_statements_instances table, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt> processlist table, <a class="indexterm" href="performance-schema-processlist-table.html"> The processlist Table </a> </dt> <dt> replication_applier_configuration, <a class="indexterm" href="performance-schema-replication-applier-configuration-table.html"> The replication_applier_configuration Table </a> </dt> <dt> replication_applier_filters, <a class="indexterm" href="performance-schema-replication-applier-filters-table.html"> The replication_applier_filters Table </a> </dt> <dt> replication_applier_global_filters, <a class="indexterm" href="performance-schema-replication-applier-global-filters-table.html"> The replication_applier_global_filters Table </a> </dt> <dt> replication_applier_status, <a class="indexterm" href="performance-schema-replication-applier-status-table.html"> The replication_applier_status Table </a> </dt> <dt> replication_applier_status_by_coordinator, <a class="indexterm" href="performance-schema-replication-applier-status-by-coordinator-table.html"> The replication_applier_status_by_coordinator Table </a> </dt> <dt> replication_applier_status_by_worker, <a class="indexterm" href="performance-schema-replication-applier-status-by-worker-table.html"> The replication_applier_status_by_worker Table </a> </dt> <dt> replication_asynchronous_connection_failover, <a class="indexterm" href="performance-schema-replication-asynchronous-connection-failover-table.html"> The replication_asynchronous_connection_failover Table </a> </dt> <dt> replication_asynchronous_connection_failover_managed, <a class="indexterm" href="performance-schema-replication-asynchronous-connection-failover-managed-table.html"> The replication_asynchronous_connection_failover_managed Table </a> </dt> <dt> replication_connection_configuration, <a class="indexterm" href="performance-schema-replication-connection-configuration-table.html"> The replication_connection_configuration Table </a> </dt> <dt> replication_connection_status, <a class="indexterm" href="performance-schema-replication-connection-status-table.html"> The replication_connection_status Table </a> </dt> <dt> replication_group_communication_information, <a class="indexterm" href="performance-schema-replication-group-communication-information-table.html"> The replication_group_communication_information Table </a> </dt> <dt> replication_group_configuration_version, <a class="indexterm" href="performance-schema-replication-group-configuration-version-table.html"> The replication_group_configuration_version Table </a> </dt> <dt> replication_group_members, <a class="indexterm" href="performance-schema-replication-group-members-table.html"> The replication_group_members Table </a> </dt> <dt> replication_group_member_stats, <a class="indexterm" href="performance-schema-replication-group-member-stats-table.html"> The replication_group_member_stats Table </a> </dt> <dt> rwlock_instances table, <a class="indexterm" href="performance-schema-rwlock-instances-table.html"> The rwlock_instances Table </a> </dt> <dt> session_account_connect_attrs table, <a class="indexterm" href="performance-schema-session-account-connect-attrs-table.html"> The session_account_connect_attrs Table </a> </dt> <dt> session_connect_attrs table, <a class="indexterm" href="performance-schema-session-connect-attrs-table.html"> The session_connect_attrs Table </a> </dt> <dt> setup_actors table, <a class="indexterm" href="performance-schema-setup-actors-table.html"> The setup_actors Table </a> </dt> <dt> setup_consumers table, <a class="indexterm" href="performance-schema-setup-consumers-table.html"> The setup_consumers Table </a> </dt> <dt> setup_instruments table, <a class="indexterm" href="performance-schema-setup-instruments-table.html"> The setup_instruments Table </a> </dt> <dt> setup_meters table, <a class="indexterm" href="performance-schema-setup-meters-table.html"> The setup_meters Table </a> </dt> <dt> setup_metrics table, <a class="indexterm" href="performance-schema-setup-metrics-table.html"> The setup_metrics Table </a> </dt> <dt> setup_objects table, <a class="indexterm" href="performance-schema-setup-objects-table.html"> The setup_objects Table </a> </dt> <dt> setup_threads table, <a class="indexterm" href="performance-schema-setup-threads-table.html"> The setup_threads Table </a> </dt> <dt> socket_instances table, <a class="indexterm" href="performance-schema-socket-instances-table.html"> The socket_instances Table </a> </dt> <dt> socket_summary_by_event_name table, <a class="indexterm" href="performance-schema-socket-summary-tables.html"> Socket Summary Tables </a> </dt> <dt> socket_summary_by_instance table, <a class="indexterm" href="performance-schema-socket-summary-tables.html"> Socket Summary Tables </a> </dt> <dt> table_handles table, <a class="indexterm" href="performance-schema-table-handles-table.html"> The table_handles Table </a> </dt> <dt> table_io_waits_summary_by_index_usage table, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-io-waits-summary-by-index-usage-table"> The table_io_waits_summary_by_index_usage Table </a> </dt> <dt> table_io_waits_summary_by_table table, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-io-waits-summary-by-table-table"> The table_io_waits_summary_by_table Table </a> </dt> <dt> table_lock_waits_summary_by_table table, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-lock-waits-summary-by-table-table"> The table_lock_waits_summary_by_table Table </a> </dt> <dt> thread table, <a class="indexterm" href="performance-schema-threads-table.html"> The threads Table </a> </dt> <dt> tls_channel_status table, <a class="indexterm" href="performance-schema-tls-channel-status-table.html"> The tls_channel_status Table </a> </dt> <dt> tp_connections table, <a class="indexterm" href="performance-schema-tp-connections-table.html"> The tp_connections Table </a> </dt> <dt> tp_thread_group_state table, <a class="indexterm" href="performance-schema-tp-thread-group-state-table.html"> The tp_thread_group_state Table </a> </dt> <dt> tp_thread_group_stats table, <a class="indexterm" href="performance-schema-tp-thread-group-stats-table.html"> The tp_thread_group_stats Table </a> </dt> <dt> tp_thread_state table, <a class="indexterm" href="performance-schema-tp-thread-state-table.html"> The tp_thread_state Table </a> </dt> <dt> users table, <a class="indexterm" href="performance-schema-users-table.html"> The users Table </a> </dt> <dt> user_defined_functions table, <a class="indexterm" href="obtaining-loadable-function-information.html"> Obtaining Information About Loadable Functions </a> , <a class="indexterm" href="performance-schema-user-defined-functions-table.html"> The user_defined_functions Table </a> </dt> <dt> user_variables_by_thread table, <a class="indexterm" href="performance-schema-user-variable-tables.html"> Performance Schema User-Defined Variable Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045075870112"> performance_schema database, <a class="indexterm" href="performance-schema.html"> MySQL Performance Schema </a> </dt> <dd> <dl> <dt> restrictions, <a class="indexterm" href="performance-schema-restrictions.html"> Restrictions on Performance Schema </a> </dt> <dt> TRUNCATE TABLE, <a class="indexterm" href="performance-schema-table-characteristics.html"> Performance Schema General Table Characteristics </a> , <a class="indexterm" href="performance-schema-restrictions.html"> Restrictions on Performance Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045075872688"> PERFORMANCE_SCHEMA storage engine, <a class="indexterm" href="performance-schema.html"> MySQL Performance Schema </a> </dt> <dt id="ientry-idm46045066140320"> performance_schema system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045087144816"> performance_schema.global_status table </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045087196752"> performance_schema.global_variables table </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045064534336"> Performance_schema_accounts_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045066102720"> performance_schema_accounts_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064527472"> Performance_schema_cond_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064521920"> Performance_schema_cond_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045066067744"> performance_schema_digests_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064516416"> Performance_schema_digest_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045066032832"> performance_schema_error_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065997536"> performance_schema_events_stages_history_long_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065965088"> performance_schema_events_stages_history_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065932448"> performance_schema_events_statements_history_long_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065899888"> performance_schema_events_statements_history_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065867408"> performance_schema_events_transactions_history_long_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065834624"> performance_schema_events_transactions_history_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065802064"> performance_schema_events_waits_history_long_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065769616"> performance_schema_events_waits_history_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064508112"> Performance_schema_file_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064502496"> Performance_schema_file_handles_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064496928"> Performance_schema_file_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064491488"> Performance_schema_hosts_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045065737264"> performance_schema_hosts_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064484576"> Performance_schema_index_stat_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064477696"> Performance_schema_locker_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045065702176"> performance_schema_max_cond_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065670592"> performance_schema_max_cond_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065638752"> performance_schema_max_digest_length system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065602720"> performance_schema_max_digest_sample_age system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065562480"> performance_schema_max_file_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065531088"> performance_schema_max_file_handles system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065493952"> performance_schema_max_file_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065462112"> performance_schema_max_index_stat system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065428192"> performance_schema_max_memory_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065394272"> performance_schema_max_metadata_locks system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065360368"> performance_schema_max_meter_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065329760"> performance_schema_max_metric_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065299120"> performance_schema_max_mutex_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065267664"> performance_schema_max_mutex_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065235664"> performance_schema_max_prepared_statements_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065167648"> performance_schema_max_program_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065199072"> performance_schema_max_rwlock_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065134256"> performance_schema_max_rwlock_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065102352"> performance_schema_max_socket_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065070944"> performance_schema_max_socket_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045065039104"> performance_schema_max_sql_text_length system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064992688"> performance_schema_max_stage_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064961280"> performance_schema_max_statement_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064930720"> performance_schema_max_statement_stack system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064898576"> performance_schema_max_table_handles system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064863888"> performance_schema_max_table_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064832048"> performance_schema_max_table_lock_stat system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064799408"> performance_schema_max_thread_classes system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064767936"> performance_schema_max_thread_instances system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064468864"> Performance_schema_memory_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064463232"> Performance_schema_metadata_lock_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064455136"> Performance_schema_meter_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064449568"> Performance_schema_metric_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064443872"> Performance_schema_mutex_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064438256"> Performance_schema_mutex_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064432672"> Performance_schema_nested_statement_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064425600"> Performance_schema_prepared_statements_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064417232"> Performance_schema_program_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064410208"> Performance_schema_rwlock_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064404720"> Performance_schema_rwlock_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064398960"> Performance_schema_session_connect_attrs_longest_seen status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064387504"> Performance_schema_session_connect_attrs_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064725600"> performance_schema_session_connect_attrs_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064680832"> performance_schema_setup_actors_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064648528"> performance_schema_setup_objects_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064616160"> performance_schema_show_processlist system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045064376240"> Performance_schema_socket_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064370672"> Performance_schema_socket_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064365008"> Performance_schema_stage_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064359504"> Performance_schema_statement_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064353856"> Performance_schema_table_handles_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064346848"> Performance_schema_table_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064341216"> Performance_schema_table_lock_stat_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064334208"> Performance_schema_thread_classes_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064328704"> Performance_schema_thread_instances_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064320448"> Performance_schema_users_lost status variable, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt id="ientry-idm46045064577392"> performance_schema_users_size system variable, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt id="ientry-idm46045067403104"> performance_timers table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-performance-timers-table.html"> The performance_timers Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045204543440"> PERIOD_ADD(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204526320"> PERIOD_DIFF(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045326528176"> Perl, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="perl-support.html"> Perl Installation Notes </a> </dt> <dt> installing on Windows, <a class="indexterm" href="activestate-perl.html"> Installing ActiveState Perl on Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045060340752"> Perl API, <a class="indexterm" href="apis-perl.html"> MySQL Perl API </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045326457296"> Perl DBI/DBD </dt> <dd> <dl> <dt> installation problems, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> </dt> </dl> </dd> <dt id="ientry-idm46045227611008"> permission checks </dt> <dd> <dl> <dt> effect on speed, <a class="indexterm" href="permission-optimization.html"> Optimizing Database Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045324338144"> perror, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dd> <dl> <dt> help option, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt> silent option, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt> verbose option, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> <dt> version option, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045263902448"> PERSIST </dt> <dd> <dl> <dt> SET statement, <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> </dt> </dl> </dd> <dt id="ientry-idm46045271644928"> persisted_globals_load system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> </dt> <dt id="ientry-idm46045031462800"> persistent statistics, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045263900960"> PERSIST_ONLY </dt> <dd> <dl> <dt> SET statement, <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> </dt> </dl> </dd> <dt id="ientry-idm46045271607392"> persist_only_admin_x509_subject system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045251107568"> PERSIST_RO_VARIABLES_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045271569744"> persist_sensitive_variables_in_plaintext system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031453968"> pessimistic, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045088278832"> pgman_time_track_stats </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-pgman-time-track-stats.html"> The ndbinfo pgman_time_track_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045031446496"> phantom, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045163891360"> phantom rows, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> <dt id="ientry-idm46045215952304"> phone book collation, German, <a class="indexterm" href="charset-we-sets.html"> West European Character Sets </a> </dt> <dt id="ientry-idm46045031433552"> PHP, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031426416"> PHP API, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031418176"> physical, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031414080"> physical backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045205852368"> PI(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045321597920"> pid-file option </dt> <dd> <dl> <dt> mysql.server, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045271534528"> pid_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045221868560"> Ping </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045323412144"> pipe option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045261344176"> PIPES_AS_CONCAT SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045031404992"> PITR, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045302738464"> PKG_CONFIG_PATH environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045031401472"> plan stability, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333006704"> platforms </dt> <dd> <dl> <dt> supported, <a class="indexterm" href="platform-support.html"> Supported Platforms </a> </dt> </dl> </dd> <dt id="ientry-idm46045248094320"> pluggable authentication </dt> <dd> <dl> <dt> PAM, <a class="indexterm" href="pam-pluggable-authentication.html"> PAM Pluggable Authentication </a> </dt> <dt> restrictions, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-restrictions"> Restrictions on Pluggable Authentication </a> </dt> <dt> Windows, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045238632272"> plugin </dt> <dd> <dl> <dt> audit_log, <a class="indexterm" href="audit-log.html"> MySQL Enterprise Audit </a> </dt> </dl> </dd> <dt id="ientry-idm46045256966784"> plugin activation options </dt> <dd> <dl> <dt> FORCE, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> <dt> FORCE_PLUS_PERMANENT, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> <dt> OFF, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> <dt> ON, <a class="indexterm" href="plugin-loading.html#server-plugin-activating"> Controlling Plugin Activation State </a> </dt> </dl> </dd> <dt id="ientry-idm46045257133472"> plugin API, <a class="indexterm" href="server-plugins.html"> MySQL Server Plugins </a> </dt> <dt id="ientry-idm46045256832096"> plugin installing </dt> <dd> <dl> <dt> audit_log, <a class="indexterm" href="audit-log-installation.html"> Installing or Uninstalling MySQL Enterprise Audit </a> </dt> <dt> Clone, <a class="indexterm" href="clone-plugin-installation.html"> Installing the Clone Plugin </a> </dt> <dt> CONNECTION_CONTROL, <a class="indexterm" href="connection-control-installation.html"> Connection-Control Plugin Installation </a> </dt> <dt> CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS, <a class="indexterm" href="connection-control-installation.html"> Connection-Control Plugin Installation </a> </dt> <dt> Data Masking, <a class="indexterm" href="data-masking-plugin-installation.html"> MySQL Enterprise Data Masking and De-Identification Plugin Installation </a> </dt> <dt> ddl_rewriter, <a class="indexterm" href="ddl-rewriter-installation.html"> Installing or Uninstalling ddl_rewriter </a> </dt> <dt> keyring_aws, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> <dt> keyring_hashicorp, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> <dt> keyring_okv, <a class="indexterm" href="keyring-plugin-installation.html"> Keyring Plugin Installation </a> </dt> <dt> keyring_udf, <a class="indexterm" href="keyring-functions-general-purpose.html#keyring-function-installation"> Installing or Uninstalling General-Purpose Keyring Functions </a> </dt> <dt> MySQL Enterprise Firewall plugins, <a class="indexterm" href="firewall-installation.html"> Installing or Uninstalling MySQL Enterprise Firewall </a> </dt> <dt> MySQL Enterprise Thread Pool, <a class="indexterm" href="thread-pool-installation.html"> Thread Pool Installation </a> </dt> <dt> Rewriter query rewrite plugin, <a class="indexterm" href="rewriter-query-rewrite-plugin-installation.html"> Installing or Uninstalling the Rewriter Query Rewrite Plugin </a> </dt> <dt> Version Tokens, <a class="indexterm" href="version-tokens-installation.html"> Installing or Uninstalling Version Tokens </a> </dt> </dl> </dd> <dt id="ientry-idm46045279433696"> plugin option prefix </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045254516576"> plugin service </dt> <dd> <dl> <dt> locking_service, <a class="indexterm" href="locking-service.html"> The Locking Service </a> </dt> <dt> mysql_keyring, <a class="indexterm" href="keyring-service.html"> The Keyring Service </a> </dt> </dl> </dd> <dt id="ientry-idm46045254522208"> plugin services, <a class="indexterm" href="plugin-services.html"> MySQL Plugin Services </a> </dt> <dt id="ientry-idm46045259616640"> plugin table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045256613744"> plugin uninstalling </dt> <dd> <dl> <dt> Data Masking, <a class="indexterm" href="data-masking-plugin-installation.html"> MySQL Enterprise Data Masking and De-Identification Plugin Installation </a> </dt> <dt> Rewriter query rewrite plugin, <a class="indexterm" href="rewriter-query-rewrite-plugin-installation.html"> Installing or Uninstalling the Rewriter Query Rewrite Plugin </a> </dt> <dt> Version Tokens, <a class="indexterm" href="version-tokens-installation.html"> Installing or Uninstalling Version Tokens </a> </dt> </dl> </dd> <dt id="ientry-idm46045318620544"> plugin-authentication-kerberos-client-mode option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045318599136"> plugin-authentication-webauthn-client-preserve-privacy option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045323397632"> plugin-dir option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045279512048"> plugin-load option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279468768"> plugin-load-add option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045303018384"> plugindir option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045257131328"> plugins </dt> <dd> <dl> <dt> activating, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> </dt> <dt> clone, <a class="indexterm" href="clone-plugin.html"> The Clone Plugin </a> </dt> <dt> daemon_keyring_proxy_plugin, <a class="indexterm" href="daemon-keyring-proxy-plugin.html"> The Keyring Proxy Bridge Plugin </a> </dt> <dt> installing, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> , <a class="indexterm" href="install-plugin.html"> INSTALL PLUGIN Statement </a> </dt> <dt> security, <a class="indexterm" href="security-plugins.html"> Security Components and Plugins </a> </dt> <dt> server, <a class="indexterm" href="server-plugins.html"> MySQL Server Plugins </a> </dt> <dt> uninstalling, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> , <a class="indexterm" href="uninstall-plugin.html"> UNINSTALL PLUGIN Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045079229232"> PLUGINS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-plugins-table.html"> The INFORMATION_SCHEMA PLUGINS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045271507184"> plugin_dir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045212174576"> POINT data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197677280"> Point(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045230822784"> point-in-time recovery, <a class="indexterm" href="point-in-time-recovery.html"> Point-in-Time (Incremental) Recovery </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-recovery.html#innodb-recovery-point-in-time"> Point-in-Time Recovery </a> </dt> <dt> using NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-pitr.html"> Point-In-Time Recovery Using NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045102048032"> polltimeout option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045212172432"> POLYGON data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045197669312"> Polygon(), <a class="indexterm" href="gis-mysql-specific-functions.html"> MySQL-Specific Functions That Create Geometry Values </a> </dt> <dt id="ientry-idm46045031387648"> port, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045323381088"> port option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045271475968"> port system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045279381872"> port-open-timeout option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045230375840"> portability, <a class="indexterm" href="optimize-overview.html#optimize-portability-performance"> Balancing Portability and Performance </a> </dt> <dd> <dl> <dt> types, <a class="indexterm" href="other-vendor-data-types.html"> Using Data Types from Other Database Engines </a> </dt> </dl> </dd> <dt id="ientry-idm46045120380768"> PortNumber, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> <dt id="ientry-idm46045120170064"> PortNumberStats, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> <dt id="ientry-idm46045327952176"> ports, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> , <a class="indexterm" href="starting-server-troubleshooting.html"> Troubleshooting Problems Starting the MySQL Server </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="multiple-unix-servers.html"> Running Multiple MySQL Instances on Unix </a> , <a class="indexterm" href="security-guidelines.html"> Security Guidelines </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> , <a class="indexterm" href="windows-and-ssh.html"> Connecting to MySQL Remotely from Windows with SSH </a> , <a class="indexterm" href="performance-schema-socket-instances-table.html"> The socket_instances Table </a> , <a class="indexterm" href="can-not-connect-to-server.html"> Can't connect to [local] MySQL server </a> </dt> <dt id="ientry-idm46045203095712"> POSITION(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045075535088"> post-filtering </dt> <dd> <dl> <dt> Performance Schema, <a class="indexterm" href="performance-schema-filtering.html"> Performance Schema Event Filtering </a> </dt> </dl> </dd> <dt id="ientry-idm46045308850608"> post-query option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045308837152"> post-system option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045333360672"> PostgreSQL compatibility, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> <dt id="ientry-idm46045254134944"> postinstall </dt> <dd> <dl> <dt> multiple servers, <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> </dt> </dl> </dd> <dt id="ientry-idm46045327114784"> postinstallation </dt> <dd> <dl> <dt> setup and testing, <a class="indexterm" href="postinstallation.html"> Postinstallation Setup and Testing </a> </dt> </dl> </dd> <dt id="ientry-idm46045205838624"> POW(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045205824320"> POWER(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045075536576"> pre-filtering </dt> <dd> <dl> <dt> Performance Schema, <a class="indexterm" href="performance-schema-filtering.html"> Performance Schema Event Filtering </a> </dt> </dl> </dd> <dt id="ientry-idm46045308823056"> pre-query option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045308809680"> pre-system option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045324240928"> precedence </dt> <dd> <dl> <dt> command options, <a class="indexterm" href="program-options.html"> Specifying Program Options </a> </dt> <dt> operator, <a class="indexterm" href="operator-precedence.html"> Operator Precedence </a> </dt> </dl> </dd> <dt id="ientry-idm46045214488720"> precision </dt> <dd> <dl> <dt> arithmetic, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt> fractional seconds, <a class="indexterm" href="data-types.html"> Data Types </a> , <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> </dt> <dt> numeric, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045190531376"> precision math, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045109384880"> PreferIPVersion, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045271444416"> preload_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045221863664"> Prepare </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045178104160"> PREPARE, <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> , <a class="indexterm" href="prepare.html"> PREPARE Statement </a> </dt> <dd> <dl> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045031380368"> prepared backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031371456"> prepared statement, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045222973600"> prepared statements, <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> , <a class="indexterm" href="prepare.html"> PREPARE Statement </a> , <a class="indexterm" href="execute.html"> EXECUTE Statement </a> , <a class="indexterm" href="deallocate-prepare.html"> DEALLOCATE PREPARE Statement </a> </dt> <dd> <dl> <dt> repreparation, <a class="indexterm" href="statement-caching.html"> Caching of Prepared Statements and Stored Programs </a> </dt> </dl> </dd> <dt id="ientry-idm46045068944336"> prepared_statements_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045262321968"> Prepared_stmt_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045221590912"> preparing </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221586016"> preparing for alter table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045109362656"> PreSendChecksum, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045098705920"> preserve-trailing-spaces option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045308300256"> pretty option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045333149440"> primary key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> constraint, <a class="indexterm" href="constraint-primary-key.html"> PRIMARY KEY and UNIQUE Index Constraints </a> </dt> <dt> deleting, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045189014896"> PRIMARY KEY, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045082847264"> primary keys </dt> <dd> <dl> <dt> and partitioning keys, <a class="indexterm" href="partitioning-limitations-partitioning-keys-unique-keys.html"> Partitioning Keys, Primary Keys, and Unique Keys </a> </dt> </dl> </dd> <dt id="ientry-idm46045248442784"> primary passwords, <a class="indexterm" href="password-management.html#dual-passwords"> Dual Password Support </a> </dt> <dt id="ientry-idm46045113990560"> PrimaryMGMNode, <a class="indexterm" href="mysql-cluster-system-definition.html"> Defining the System </a> </dt> <dt id="ientry-idm46045031354928"> principal, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045317764704"> print command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045098679968"> print option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098659616"> print-data option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045323722144"> print-defaults option, <a class="indexterm" href="option-file-options.html"> Command-Line Options that Affect Option-File Handling </a> </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045106564432"> print-full-config option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045100315280"> print-header-words option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045098625936"> print-log option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098612832"> print-meta option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045100304048"> print-restored-rows option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045100283728"> print-rows option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045100271328"> print-rows-per-page option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045098600880"> print-sql-log option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045304242896"> print-table-metadata option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045271410496"> print_identified_with_as_hex system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045248776432"> privilege </dt> <dd> <dl> <dt> changes, <a class="indexterm" href="privilege-changes.html"> When Privilege Changes Take Effect </a> </dt> </dl> </dd> <dt id="ientry-idm46045227609552"> privilege checks </dt> <dd> <dl> <dt> effect on speed, <a class="indexterm" href="permission-optimization.html"> Optimizing Database Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045250725696"> privilege information </dt> <dd> <dl> <dt> location, <a class="indexterm" href="grant-tables.html"> Grant Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045249007120"> privilege restrictions </dt> <dd> <dl> <dt> GRANT statement, <a class="indexterm" href="grant.html#grant-as"> The AS Clause and Privilege Restrictions </a> </dt> <dt> partial revokes, <a class="indexterm" href="partial-revokes.html"> Privilege Restriction Using Partial Revokes </a> </dt> </dl> </dd> <dt id="ientry-idm46045091344576"> privilege synchronization (NDB Cluster), <a class="indexterm" href="mysql-cluster-privilege-synchronization.html"> Privilege Synchronization and NDB_STORED_USER </a> </dt> <dt id="ientry-idm46045252333056"> privilege system, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045326692464"> privileges </dt> <dd> <dl> <dt> access, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt> adding, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> ALL, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> ALL PRIVILEGES, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> ALLOW_NONEXISTENT_DEFINER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> ALTER, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> ALTER ROUTINE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-mysqldb.html"> Replication of the mysql System Schema </a> </dt> <dt> APPLICATION_PASSWORD_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> AUDIT_ABORT_EXEMPT, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> AUDIT_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> AUTHENTICATION_POLICY_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> BACKUP_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> BINLOG_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> BINLOG_ENCRYPTION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> checking, <a class="indexterm" href="creating-accounts.html#checking-account-privileges"> Checking Account Privileges and Properties </a> </dt> <dt> CLONE_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> CONNECTION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> CREATE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE ROLE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE ROUTINE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE TABLESPACE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE TEMPORARY TABLES, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> CREATE VIEW, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> default, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt> DEFINER, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> , <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt> DELETE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> deleting, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt> display, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> </dt> <dt> DROP, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> DROP ROLE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> dropping, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt> ENCRYPTION_KEY_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> EVENT, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> EXECUTE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> FILE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> FIREWALL_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FIREWALL_EXEMPT, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FIREWALL_USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FLUSH_OPTIMIZER_COSTS, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FLUSH_PRIVILEGES, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FLUSH_STATUS, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FLUSH_TABLES, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> FLUSH_USER_RESOURCES, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> GRANT OPTION, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> granting, <a class="indexterm" href="grant.html"> GRANT Statement </a> </dt> <dt> GROUP_REPLICATION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> GROUP_REPLICATION_STREAM, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> INDEX, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> INNODB_REDO_LOG_ARCHIVE, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> INNODB_REDO_LOG_ENABLE, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> INSERT, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> INVOKER, <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> , <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt> LOCK TABLES, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> MASKING_DICTIONARIES_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> NDB_STORED_USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> OPTIMIZE_LOCAL_TABLE, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> PASSWORDLESS_USER_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> PERSIST_RO_VARIABLES_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> PROCESS, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> PROXY, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> REFERENCES, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> RELOAD, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> REPLICATION CLIENT, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> REPLICATION SLAVE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> REPLICATION_APPLIER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> REPLICATION_SLAVE_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> RESOURCE_GROUP_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> RESOURCE_GROUP_USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> revoking, <a class="indexterm" href="creating-accounts.html#revoking-account-privileges"> Revoking Account Privileges </a> , <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> <dt> ROLE_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SELECT, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> SENSITIVE_VARIABLES_OBSERVER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SERVICE_CONNECTION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SESSION_VARIABLES_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SET_ANY_DEFINER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SHOW DATABASES, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> SHOW VIEW, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> SHOW_ROUTINE, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SHUTDOWN, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> SKIP_QUERY_REWRITE, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> SQL SECURITY, <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt> static versus dynamic, <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> </dt> <dt> stored objects, <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt> SUPER, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> SYSTEM_USER, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> , <a class="indexterm" href="account-categories.html"> Account Categories </a> </dt> <dt> SYSTEM_VARIABLES_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> TABLE_ENCRYPTION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> TELEMETRY_LOG_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> TEMPORARY tables, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> , <a class="indexterm" href="create-temporary-table.html"> CREATE TEMPORARY TABLE Statement </a> , <a class="indexterm" href="grant.html#grant-table-privileges"> Table Privileges </a> </dt> <dt> TP_CONNECTION_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> TRANSACTION_GTID_TAG, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> TRIGGER, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> UPDATE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> USAGE, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt> VERSION_TOKEN_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt> XA_RECOVER_ADMIN, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> </dl> </dd> <dt id="ientry-idm46045335347376"> problems </dt> <dd> <dl> <dt> access denied errors, <a class="indexterm" href="error-access-denied.html"> Access denied </a> </dt> <dt> common errors, <a class="indexterm" href="problems.html"> Problems and Common Errors </a> </dt> <dt> compiling MySQL server, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt> DATE columns, <a class="indexterm" href="using-date.html"> Problems Using DATE Columns </a> </dt> <dt> date values, <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt> installing on Solaris, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt> installing Perl, <a class="indexterm" href="perl-support-problems.html"> Problems Using the Perl DBI/DBD Interface </a> </dt> <dt> lost connection errors, <a class="indexterm" href="error-lost-connection.html"> Lost connection to MySQL server </a> </dt> <dt> reporting, <a class="indexterm" href="introduction.html"> General Information </a> , <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> starting the server, <a class="indexterm" href="starting-server-troubleshooting.html"> Troubleshooting Problems Starting the MySQL Server </a> </dt> <dt> table locking, <a class="indexterm" href="table-locking.html"> Table Locking Issues </a> </dt> <dt> time zone, <a class="indexterm" href="timezone-problems.html"> Time Zone Problems </a> </dt> </dl> </dd> <dt id="ientry-idm46045082562576"> procedures </dt> <dd> <dl> <dt> stored, <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> </dl> </dd> <dt id="ientry-idm46045031351712"> process, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045108491792"> process management (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045251678208"> PROCESS privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045222053904"> processes </dt> <dd> <dl> <dt> display, <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> </dt> <dt> monitoring, <a class="indexterm" href="thread-information.html"> Examining Server Thread (Process) Information </a> </dt> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-processes.html"> The ndbinfo processes Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045220995504"> Processing events </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220990592"> Processing events from schema table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221858768"> Processlist </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045169917376"> PROCESSLIST, <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-processlist-table.html"> The INFORMATION_SCHEMA PROCESSLIST Table </a> </dt> <dt> possible inconsistency with INFORMATION_SCHEMA tables, <a class="indexterm" href="innodb-information-schema-internal-data.html"> Persistence and Consistency of InnoDB Transaction and Locking Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045067374672"> processlist </dt> <dd> <dl> <dt> monitoring, <a class="indexterm" href="performance-schema-processlist-table.html"> The processlist Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045067376160"> processlist table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-processlist-table.html"> The processlist Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045062686944"> processlist view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-processlist.html"> The processlist and x$processlist Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045259679600"> procs_priv table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045079091376"> PROFILING </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-profiling-table.html"> The INFORMATION_SCHEMA PROFILING Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045271379856"> profiling system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271369136"> profiling_history_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045323675840"> program variables </dt> <dd> <dl> <dt> setting, <a class="indexterm" href="program-variables.html"> Using Options to Set Program Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045324349856"> program-development utilities, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt id="ientry-idm46045324440912"> programs </dt> <dd> <dl> <dt> administrative, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt> client, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt> stored, <a class="indexterm" href="sql-compound-statements.html"> Compound Statement Syntax </a> , <a class="indexterm" href="stored-objects.html"> Stored Objects </a> </dt> <dt> utility, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> </dl> </dd> <dt id="ientry-idm46045098585776"> progress-frequency option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045096166192"> promote option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045100802304"> promote-attributes option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045317759088"> prompt command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045094514976"> PROMPT command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045318531936"> prompt option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045325590672"> prompts </dt> <dd> <dl> <dt> meanings, <a class="indexterm" href="entering-queries.html"> Entering Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045335209840"> pronunciation </dt> <dd> <dl> <dt> MySQL, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> </dl> </dd> <dt id="ientry-idm46045323361616"> protocol option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045271361072"> protocol_compression_algorithms system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271316224"> protocol_version system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045247775744"> proxies_priv </dt> <dd> <dl> <dt> grant table, <a class="indexterm" href="proxy-users.html#proxy-users-granting-proxy-privilege"> Granting and Revoking the PROXY Privilege </a> </dt> </dl> </dd> <dt id="ientry-idm46045326668448"> proxies_priv table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045201824448"> proximity search, <a class="indexterm" href="fulltext-boolean.html"> Boolean Full-Text Searches </a> </dt> <dt id="ientry-idm46045109340304"> Proxy, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045251651136"> PROXY privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045244968688"> proxy user mapping </dt> <dd> <dl> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-usage-group-mapping"> LDAP Authentication Group Preference and Mapping Specification </a> </dt> </dl> </dd> <dt id="ientry-idm46045247869792"> proxy users, <a class="indexterm" href="proxy-users.html"> Proxy Users </a> </dt> <dd> <dl> <dt> conflict with anonymous users, <a class="indexterm" href="proxy-users.html#proxy-users-conflicts"> Default Proxy User and Anonymous User Conflicts </a> </dt> <dt> default proxy user, <a class="indexterm" href="proxy-users.html#default-proxy-users"> Default Proxy Users </a> </dt> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-usage-proxying"> LDAP Authentication with Proxying </a> </dt> <dt> PAM authentication, <a class="indexterm" href="pam-pluggable-authentication.html#pam-authentication-unix-with-proxy"> PAM Unix Password Authentication with Proxy Users and Group Mapping </a> </dt> <dt> PROXY privilege, <a class="indexterm" href="proxy-users.html#proxy-users-granting-proxy-privilege"> Granting and Revoking the PROXY Privilege </a> </dt> <dt> server user mapping, <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt> system variables, <a class="indexterm" href="proxy-users.html#proxy-users-system-variables"> Proxy User System Variables </a> </dt> <dt> Windows authentication, <a class="indexterm" href="windows-pluggable-authentication.html#windows-pluggable-authentication-usage"> Using Windows Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045271288240"> proxy_user system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045031346896"> pseudo-record, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045271266032"> pseudo_replica_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271211472"> pseudo_slave_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271187616"> pseudo_thread_id system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045062599488"> ps_check_lost_instrumentation view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-check-lost-instrumentation.html"> The ps_check_lost_instrumentation View </a> </dt> </dl> </dd> <dt id="ientry-idm46045191554160"> PS_CURRENT_THREAD_ID() function, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt id="ientry-idm46045060891392"> ps_is_account_enabled() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-is-account-enabled.html"> The ps_is_account_enabled() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060874960"> ps_is_consumer_enabled() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-is-consumer-enabled.html"> The ps_is_consumer_enabled() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060856960"> ps_is_instrument_default_enabled() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-is-instrument-default-enabled.html"> The ps_is_instrument_default_enabled() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060840288"> ps_is_instrument_default_timed() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-is-instrument-default-timed.html"> The ps_is_instrument_default_timed() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060823568"> ps_is_thread_instrumented() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-is-thread-instrumented.html"> The ps_is_thread_instrumented() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045061547488"> ps_setup_disable_background_threads() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-disable-background-threads.html"> The ps_setup_disable_background_threads() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061537760"> ps_setup_disable_consumer() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-disable-consumer.html"> The ps_setup_disable_consumer() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061523008"> ps_setup_disable_instrument() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-disable-instrument.html"> The ps_setup_disable_instrument() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061506032"> ps_setup_disable_thread() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-disable-thread.html"> The ps_setup_disable_thread() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061488208"> ps_setup_enable_background_threads() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-enable-background-threads.html"> The ps_setup_enable_background_threads() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061478352"> ps_setup_enable_consumer() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-enable-consumer.html"> The ps_setup_enable_consumer() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061463472"> ps_setup_enable_instrument() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-enable-instrument.html"> The ps_setup_enable_instrument() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061446496"> ps_setup_enable_thread() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-enable-thread.html"> The ps_setup_enable_thread() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061428624"> ps_setup_reload_saved() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-reload-saved.html"> The ps_setup_reload_saved() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061416880"> ps_setup_reset_to_default() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-reset-to-default.html"> The ps_setup_reset_to_default() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061405472"> ps_setup_save() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-save.html"> The ps_setup_save() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061375264"> ps_setup_show_disabled() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-disabled.html"> The ps_setup_show_disabled() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061360688"> ps_setup_show_disabled_consumers() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-disabled-consumers.html"> The ps_setup_show_disabled_consumers() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061350576"> ps_setup_show_disabled_instruments() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-disabled-instruments.html"> The ps_setup_show_disabled_instruments() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061340656"> ps_setup_show_enabled() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-enabled.html"> The ps_setup_show_enabled() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061327120"> ps_setup_show_enabled_consumers() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-enabled-consumers.html"> The ps_setup_show_enabled_consumers() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061317296"> ps_setup_show_enabled_instruments() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-setup-show-enabled-instruments.html"> The ps_setup_show_enabled_instruments() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061307392"> ps_statement_avg_latency_histogram() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-statement-avg-latency-histogram.html"> The ps_statement_avg_latency_histogram() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045060801296"> ps_thread_account() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-thread-account.html"> The ps_thread_account() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045191532640"> PS_THREAD_ID() function, <a class="indexterm" href="performance-schema-functions.html"> Performance Schema Functions </a> </dt> <dt id="ientry-idm46045060784384"> ps_thread_id() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-thread-id.html"> The ps_thread_id() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060760816"> ps_thread_stack() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-thread-stack.html"> The ps_thread_stack() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060742720"> ps_thread_trx_info() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-thread-trx-info.html"> The ps_thread_trx_info() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045061293392"> ps_trace_statement_digest() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-trace-statement-digest.html"> The ps_trace_statement_digest() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061257456"> ps_trace_thread() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-trace-thread.html"> The ps_trace_thread() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045061228960"> ps_truncate_all_tables() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-ps-truncate-all-tables.html"> The ps_truncate_all_tables() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045031342464"> Pthreads, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045162570640"> purge, <a class="indexterm" href="innodb-purge-configuration.html"> Purge Configuration </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045177896800"> PURGE BINARY LOGS, <a class="indexterm" href="purge-binary-logs.html"> PURGE BINARY LOGS Statement </a> </dt> <dt id="ientry-idm46045031328400"> purge buffering, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045162569568"> purge configuration, <a class="indexterm" href="innodb-purge-configuration.html"> Purge Configuration </a> </dt> <dt id="ientry-idm46045031319712"> purge lag, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045162568496"> purge scheduling, <a class="indexterm" href="innodb-purge-configuration.html"> Purge Configuration </a> </dt> <dt id="ientry-idm46045031313952"> purge thread, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221579824"> Purging old relay logs </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045112275920"> pushdown joins (NDB), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045060362736"> Python, <a class="indexterm" href="connector-python-info.html"> MySQL Connector/Python </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> third-party driver, <a class="indexterm" href="apis-python.html"> MySQL Python API </a> </dt> </dl> </dd> <dt id="ientry-idm46045031302000"> Python API, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_Q"> </a> Q </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045204509680"> QUARTER(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045325643504"> queries </dt> <dd> <dl> <dt> entering, <a class="indexterm" href="entering-queries.html"> Entering Queries </a> </dt> <dt> estimating performance, <a class="indexterm" href="estimating-performance.html"> Estimating Query Performance </a> </dt> <dt> examples, <a class="indexterm" href="examples.html"> Examples of Common Queries </a> </dt> <dt> speed of, <a class="indexterm" href="select-optimization.html"> Optimizing SELECT Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045262315232"> Queries status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045221853856"> Query </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045031298480"> query, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045218358416"> query attributes, <a class="indexterm" href="query-attributes.html"> Query Attributes </a> </dt> <dt id="ientry-idm46045090611344"> query cache </dt> <dd> <dl> <dt> and ndbinfo database tables, <a class="indexterm" href="mysql-cluster-ndbinfo.html"> ndbinfo: The NDB Cluster Information Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045221574912"> query end </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045031287824"> query execution plan, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045201620208"> query expansion, <a class="indexterm" href="fulltext-query-expansion.html"> Full-Text Searches with Query Expansion </a> </dt> <dt id="ientry-idm46045308763760"> query option </dt> <dd> <dl> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045256647040"> query rewrite plugins </dt> <dd> <dl> <dt> ddl_rewriter, <a class="indexterm" href="ddl-rewriter.html"> The ddl_rewriter Plugin </a> </dt> <dt> Rewriter, <a class="indexterm" href="rewriter-query-rewrite-plugin.html"> The Rewriter Query Rewrite Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045104937296"> query-all option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045271154832"> query_alloc_block_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045317748192"> query_attributes command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045257175296"> query_attributes component, <a class="indexterm" href="query-attribute-components.html"> Query Attribute Components </a> </dt> <dt id="ientry-idm46045271117328"> query_prealloc_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045316968448"> questions, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045262306448"> Questions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045221233408"> Queueing master event to the relay log </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221229312"> Queueing source event to the relay log </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045182902768"> QUICK </dt> <dd> <dl> <dt> DELETE modifier, <a class="indexterm" href="delete.html"> DELETE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045318496880"> quick option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045031279264"> quiesce, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045100115600"> quiet option </dt> <dd> <dl> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045221848832"> Quit </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045317727264"> quit command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045094493472"> QUIT command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045220512672"> quotation marks </dt> <dd> <dl> <dt> in strings, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045220481936"> QUOTE(), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045312806064"> quote-names option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045060712176"> quote_identifier() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-quote-identifier.html"> The quote_identifier() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045250002928"> quoting, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dd> <dl> <dt> account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> column alias, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> , <a class="indexterm" href="problems-with-alias.html"> Problems with Column Aliases </a> </dt> <dt> host names in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> schema objects, <a class="indexterm" href="grant.html#grant-quoting"> Object Quoting Guidelines </a> </dt> <dt> user names in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045220492800"> quoting binary data, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045220063920"> quoting of identifiers, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_R"> </a> R </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045031268272"> R-tree, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045205815184"> RADIANS(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045031265488"> RAID, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045205802560"> RAND(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045031261504"> random dive, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045199325552"> RANDOM_BYTES(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045271075856"> rand_seed1 system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045271036848"> rand_seed2 system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045225119616"> range join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045084780656"> range partitioning, <a class="indexterm" href="partitioning-range.html"> RANGE Partitioning </a> , <a class="indexterm" href="partitioning-columns.html"> COLUMNS Partitioning </a> </dt> <dt id="ientry-idm46045083922752"> range partitions </dt> <dd> <dl> <dt> adding and dropping, <a class="indexterm" href="partitioning-management-range-list.html"> Management of RANGE and LIST Partitions </a> </dt> <dt> managing, <a class="indexterm" href="partitioning-management-range-list.html"> Management of RANGE and LIST Partitions </a> </dt> </dl> </dd> <dt id="ientry-idm46045271030080"> range_alloc_block_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270990240"> range_optimizer_max_mem_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045192065616"> RANK(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045031257280"> raw backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045318472240"> raw option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045165530752"> raw partitions, <a class="indexterm" href="innodb-system-tablespace.html#innodb-raw-devices"> Using Raw Disk Partitions for the System Tablespace </a> </dt> <dt id="ientry-idm46045270956240"> rbr_exec_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045164348480"> READ COMMITTED, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> implementation in NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> transaction isolation level, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> </dl> </dd> <dt id="ientry-idm46045085141456"> read conflict detection and resolution </dt> <dd> <dl> <dt> in NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-detection-examples"> Examples </a> </dt> </dl> </dd> <dt id="ientry-idm46045307917712"> read from standard in </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045031233840"> read phenomena, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045164289040"> READ UNCOMMITTED, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> transaction isolation level, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> </dl> </dd> <dt id="ientry-idm46045031220176"> read view, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045163096624"> read-ahead, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> linear, <a class="indexterm" href="innodb-performance-read_ahead.html"> Configuring InnoDB Buffer Pool Prefetching (Read-Ahead) </a> </dt> <dt> random, <a class="indexterm" href="innodb-performance-read_ahead.html"> Configuring InnoDB Buffer Pool Prefetching (Read-Ahead) </a> </dt> </dl> </dd> <dt id="ientry-idm46045304152112"> read-from-remote-master option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045304139104"> read-from-remote-server option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045304180224"> read-from-remote-source option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045190019984"> read-only database </dt> <dd> <dl> <dt> ALTER DATABASE, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045307134800"> read-only option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045031202160"> read-only transaction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221105104"> Reading event from the relay log </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221021312"> Reading master dump table data </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045184239248"> READ_BACKUP, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045184215728"> READ_BACKUP (NDB_TABLE) </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045307338592"> read_buffer_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045270920032"> read_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045233789184"> read_firewall_groups() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233801392"> read_firewall_group_allowlist() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233755872"> read_firewall_users() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233742304"> read_firewall_whitelist() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045270868656"> read_only system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270782832"> read_rnd_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045214140928"> REAL data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045116412240"> RealtimeScheduler, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045261334960"> REAL_AS_FLOAT SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045098511152"> rebuild-indexes option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045221015664"> Rebuilding the index on master dump table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045109318400"> ReceiveBufferMemory, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045221569280"> Receiving from client </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045327228224"> reconfiguring, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt id="ientry-idm46045318447632"> reconnect option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045221224288"> Reconnecting after a failed binlog dump request </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221219264"> Reconnecting after a failed master event read </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221215104"> Reconnecting after a failed source event read </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045067229824"> reconnection </dt> <dd> <dl> <dt> automatic, <a class="indexterm" href="performance-schema-threads-table.html"> The threads Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045031193520"> record lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045163884336"> record-level locks </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-next-key-locking.html"> Phantom Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045178096480"> RECOVER </dt> <dd> <dl> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045306969216"> recover option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045230821744"> recovery </dt> <dd> <dl> <dt> from crash, <a class="indexterm" href="myisam-crash-recovery.html"> Using myisamchk for Crash Recovery </a> </dt> <dt> incremental, <a class="indexterm" href="point-in-time-recovery.html"> Point-in-Time (Incremental) Recovery </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-recovery.html"> InnoDB Recovery </a> </dt> <dt> point in time, <a class="indexterm" href="point-in-time-recovery.html"> Point-in-Time (Incremental) Recovery </a> </dt> </dl> </dd> <dt id="ientry-idm46045118584224"> RecoveryWork, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045031186032"> redo, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045164867088"> redo log, <a class="indexterm" href="innodb-redo-log.html"> Redo Log </a> , <a class="indexterm" href="innodb-redo-log.html#innodb-modifying-redo-log-capacity"> Configuring Redo Log Capacity </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045164797824"> redo log archiving, <a class="indexterm" href="innodb-redo-log.html#innodb-redo-log-archiving"> Redo Log Archiving </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045117118560"> RedoBuffer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045114892144"> RedoOverCommitCounter </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045114868368"> RedoOverCommitLimit </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045226857680"> reducing </dt> <dd> <dl> <dt> data size, <a class="indexterm" href="data-size.html"> Optimizing Data Size </a> </dt> </dl> </dd> <dt id="ientry-idm46045160970496"> redundant row format, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-redundant"> REDUNDANT Row Format </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045225193296"> ref join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045188965744"> references, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt id="ientry-idm46045251645008"> REFERENCES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045167482976"> referential integrity, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045079042272"> REFERENTIAL_CONSTRAINTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-referential-constraints-table.html"> The INFORMATION_SCHEMA REFERENTIAL_CONSTRAINTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045221843952"> Refresh </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045229027264"> ref_or_null, <a class="indexterm" href="is-null-optimization.html"> IS NULL Optimization </a> </dt> <dt id="ientry-idm46045225163792"> ref_or_null join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045202432976"> REGEXP, <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045202491536"> REGEXP operator, <a class="indexterm" href="regexp.html"> Regular Expressions </a> </dt> <dt id="ientry-idm46045202408144"> REGEXP_INSTR(), <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045202377232"> REGEXP_LIKE(), <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045202327888"> REGEXP_REPLACE(), <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045270744384"> regexp_stack_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045202300352"> REGEXP_SUBSTR(), <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045270709792"> regexp_time_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045221838976"> Register Slave </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045318433008"> register-factor option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045221205184"> Registering replica on source </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221209280"> Registering slave on master </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045249169136"> regular account </dt> <dd> <dl> <dt> account categories, <a class="indexterm" href="account-categories.html"> Account Categories </a> </dt> </dl> </dd> <dt id="ientry-idm46045202489392"> regular expression syntax, <a class="indexterm" href="regexp.html"> Regular Expressions </a> </dt> <dt id="ientry-idm46045194355824"> regular expressions </dt> <dd> <dl> <dt> in JSON schemas, <a class="indexterm" href="json-validation-functions.html"> JSON Schema Validation Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045249083360"> regular session </dt> <dd> <dl> <dt> session categories, <a class="indexterm" href="account-categories.html#system-user-sessions"> System and Regular Sessions </a> </dt> </dl> </dd> <dt id="ientry-idm46045317720528"> rehash command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045102013616"> rejects option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045031140256"> relational, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045335225280"> relational databases </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> </dl> </dd> <dt id="ientry-idm46045316243696"> relative option </dt> <dd> <dl> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045137972448"> relay log (replication), <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt id="ientry-idm46045143812672"> relay-log-purge option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143784240"> relay-log-space-limit option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143110704"> relay_log system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045143065728"> relay_log_basename system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045143042544"> relay_log_index system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045143001760"> relay_log_purge system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142973888"> relay_log_recovery system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142924512"> relay_log_space_limit system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045332994064"> release numbers, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt id="ientry-idm46045178625648"> RELEASE SAVEPOINT, <a class="indexterm" href="savepoint.html"> SAVEPOINT, ROLLBACK TO SAVEPOINT, and RELEASE SAVEPOINT Statements </a> </dt> <dt id="ientry-idm46045332985552"> releases </dt> <dd> <dl> <dt> GA, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt> naming scheme, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> </dl> </dd> <dt id="ientry-idm46045199061888"> RELEASE_ALL_LOCKS(), <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045199051424"> RELEASE_LOCK(), <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045031127264"> relevance, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045106547472"> reload option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045251638368"> RELOAD privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045098479168"> remap-column option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045087008240"> remote administration (NDB Cluster) </dt> <dd> <dl> <dt> and security issues, <a class="indexterm" href="mysql-cluster-security-networking-issues.html"> NDB Cluster Security and Networking Issues </a> </dt> </dl> </dd> <dt id="ientry-idm46045096154992"> remote-CA-host option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096139200"> remote-exec-path option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045096122400"> remote-openssl option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045279356704"> remove option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045334494800"> removed features, <a class="indexterm" href="mysql-nutshell.html#mysql-nutshell-removals"> Features Removed in MySQL 8.4 </a> </dt> <dt id="ientry-idm46045221564384"> Removing duplicates </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221558016"> removing tmp table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221551760"> rename </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045183165408"> rename database, <a class="indexterm" href="rename-table.html"> RENAME TABLE Statement </a> </dt> <dt id="ientry-idm46045221546880"> rename result table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045183202928"> RENAME TABLE, <a class="indexterm" href="rename-table.html"> RENAME TABLE Statement </a> </dt> <dt id="ientry-idm46045173199328"> RENAME USER statement, <a class="indexterm" href="rename-user.html"> RENAME USER Statement </a> </dt> <dt id="ientry-idm46045173196768"> renaming user accounts, <a class="indexterm" href="rename-user.html"> RENAME USER Statement </a> </dt> <dt id="ientry-idm46045221540672"> Reopen tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045315946784"> repair </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045221535600"> Repair by sorting </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221530688"> Repair done </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045315044976"> repair option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045307114032"> repair options </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045135242848"> REPAIR TABLE </dt> <dd> <dl> <dt> and partitioning, <a class="indexterm" href="partitioning-maintenance.html"> Maintenance of Partitions </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-repair-table.html"> Replication and REPAIR TABLE </a> </dt> </dl> </dd> <dt id="ientry-idm46045172051664"> REPAIR TABLE statement, <a class="indexterm" href="repair-table.html"> REPAIR TABLE Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="repair-table.html"> REPAIR TABLE Statement </a> </dt> <dt> options, <a class="indexterm" href="repair-table.html#repair-table-options"> REPAIR TABLE Options </a> </dt> <dt> output, <a class="indexterm" href="repair-table.html#repair-table-output"> REPAIR TABLE Output </a> </dt> <dt> partitioning support, <a class="indexterm" href="repair-table.html#repair-table-support"> REPAIR TABLE Storage Engine and Partitioning Support </a> </dt> <dt> storage engine support, <a class="indexterm" href="repair-table.html#repair-table-support"> REPAIR TABLE Storage Engine and Partitioning Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045221525056"> Repair with keycache </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045230578736"> repairing </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="myisam-repair.html"> How to Repair MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045176474912"> REPEAT, <a class="indexterm" href="repeat.html"> REPEAT Statement </a> </dt> <dd> <dl> <dt> labels, <a class="indexterm" href="statement-labels.html"> Statement Labels </a> </dt> </dl> </dd> <dt id="ientry-idm46045203065808"> REPEAT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045164378160"> REPEATABLE READ, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> transaction isolation level, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> </dl> </dd> <dt id="ientry-idm46045218080256"> repertoire, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> character set, <a class="indexterm" href="charset-repertoire.html"> Character Set Repertoire </a> , <a class="indexterm" href="charset-unicode-utf8mb3.html"> The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding) </a> </dt> <dt> string, <a class="indexterm" href="charset-repertoire.html"> Character Set Repertoire </a> </dt> </dl> </dd> <dt id="ientry-idm46045181862192"> REPLACE, <a class="indexterm" href="replace.html"> REPLACE Statement </a> </dt> <dd> <dl> <dt> LOAD DATA modifier, <a class="indexterm" href="load-data.html#load-data-error-handling"> Duplicate-Key and Error Handling </a> </dt> </dl> </dd> <dt id="ientry-idm46045313597984"> replace option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045203051184"> REPLACE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045096110160"> replace-by option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045031103840"> replica, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221095952"> Replica has read all relay log; waiting for more updates </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045177769680"> replicas </dt> <dd> <dl> <dt> statements, <a class="indexterm" href="replication-statements-replica.html"> SQL Statements for Controlling Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143744496"> replicate-do-db option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143613696"> replicate-do-table option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143667344"> replicate-ignore-db option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143588688"> replicate-ignore-table option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143563136"> replicate-rewrite-db option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143511968"> replicate-same-server-id option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143487984"> replicate-wild-do-table option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143440944"> replicate-wild-ignore-table option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045260175536"> replication, <a class="indexterm" href="replication.html"> Replication </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> and AUTO_INCREMENT, <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> <dt> and character sets, <a class="indexterm" href="replication-features-charset.html"> Replication and Character Sets </a> </dt> <dt> and CHECKSUM TABLE statement, <a class="indexterm" href="replication-features-checksum-table.html"> Replication and CHECKSUM TABLE </a> </dt> <dt> and CREATE ... IF NOT EXISTS, <a class="indexterm" href="replication-features-create-if-not-exists.html"> Replication of CREATE ... IF NOT EXISTS Statements </a> </dt> <dt> and CREATE TABLE ... SELECT, <a class="indexterm" href="replication-features-create-select.html"> Replication of CREATE TABLE ... SELECT Statements </a> </dt> <dt> and DATA DIRECTORY, <a class="indexterm" href="replication-features-directory.html"> Replication and DIRECTORY Table Options </a> </dt> <dt> and DROP ... IF EXISTS, <a class="indexterm" href="replication-features-drop-if-exists.html"> Replication of DROP ... IF EXISTS Statements </a> </dt> <dt> and errors on replica, <a class="indexterm" href="replication-features-errors.html"> Replica Errors During Replication </a> </dt> <dt> and floating-point values, <a class="indexterm" href="replication-features-floatvalues.html"> Replication and Floating-Point Values </a> </dt> <dt> and FLUSH, <a class="indexterm" href="replication-features-flush.html"> Replication and FLUSH </a> </dt> <dt> and fractional seconds, <a class="indexterm" href="replication-features-fractional-seconds.html"> Replication and Fractional Seconds Support </a> </dt> <dt> and functions, <a class="indexterm" href="replication-features-functions.html"> Replication and System Functions </a> </dt> <dt> and INDEX DIRECTORY, <a class="indexterm" href="replication-features-directory.html"> Replication and DIRECTORY Table Options </a> </dt> <dt> and invoked features, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> <dt> and LAST_INSERT_ID(), <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> <dt> and LIMIT, <a class="indexterm" href="replication-features-limit.html"> Replication and LIMIT </a> </dt> <dt> and LOAD DATA, <a class="indexterm" href="replication-features-load-data.html"> Replication and LOAD DATA </a> </dt> <dt> and max_allowed_packet, <a class="indexterm" href="replication-features-max-allowed-packet.html"> Replication and max_allowed_packet </a> </dt> <dt> and MEMORY tables, <a class="indexterm" href="replication-features-memory.html"> Replication and MEMORY Tables </a> </dt> <dt> and mysql (system) schema, <a class="indexterm" href="replication-features-mysqldb.html"> Replication of the mysql System Schema </a> </dt> <dt> and partial updates, <a class="indexterm" href="replication-features-errors.html"> Replica Errors During Replication </a> </dt> <dt> and partitioned tables, <a class="indexterm" href="replication-features-partitioning.html"> Replication and Partitioning </a> </dt> <dt> and partitioning, <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> </dt> <dt> and privileges, <a class="indexterm" href="replication-features-mysqldb.html"> Replication of the mysql System Schema </a> </dt> <dt> and query optimizer, <a class="indexterm" href="replication-features-optimizer.html"> Replication and the Query Optimizer </a> </dt> <dt> and REPAIR TABLE statement, <a class="indexterm" href="repair-table.html"> REPAIR TABLE Statement </a> , <a class="indexterm" href="replication-features-repair-table.html"> Replication and REPAIR TABLE </a> </dt> <dt> and reserved words, <a class="indexterm" href="replication-features-reserved-words.html"> Replication and Reserved Words </a> </dt> <dt> and scheduled events, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> <dt> and SQL mode, <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> </dt> <dt> and stored routines, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> <dt> and temporary tables, <a class="indexterm" href="replication-features-temptables.html"> Replication and Temporary Tables </a> </dt> <dt> and time zones, <a class="indexterm" href="replication-features-timezone.html"> Replication and Time Zones </a> </dt> <dt> and TIMESTAMP, <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> <dt> and transactions, <a class="indexterm" href="replication-features-timeout.html"> Replication Retries and Timeouts </a> , <a class="indexterm" href="replication-features-transactions.html"> Replication and Transactions </a> </dt> <dt> and triggers, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> , <a class="indexterm" href="replication-features-triggers.html"> Replication and Triggers </a> </dt> <dt> and TRUNCATE TABLE, <a class="indexterm" href="replication-features-truncate.html"> Replication and TRUNCATE TABLE </a> </dt> <dt> and user name length, <a class="indexterm" href="replication-features-user-names.html"> Replication and User Name Length </a> </dt> <dt> and variables, <a class="indexterm" href="replication-features-variables.html"> Replication and Variables </a> </dt> <dt> and views, <a class="indexterm" href="replication-features-views.html"> Replication and Views </a> </dt> <dt> attribute demotion, <a class="indexterm" href="replication-features-differing-tables.html#replication-features-different-data-types"> Replication of Columns Having Different Data Types </a> </dt> <dt> attribute promotion, <a class="indexterm" href="replication-features-differing-tables.html#replication-features-different-data-types"> Replication of Columns Having Different Data Types </a> </dt> <dt> BLACKHOLE, <a class="indexterm" href="replication-features-blackhole.html"> Replication and BLACKHOLE Tables </a> </dt> <dt> circular, <a class="indexterm" href="mysql-cluster-replication-issues.html"> Known Issues in NDB Cluster Replication </a> </dt> <dt> crashes, <a class="indexterm" href="replication-features-shutdowns.html"> Replication and Source or Replica Shutdowns </a> </dt> <dt> delayed, <a class="indexterm" href="replication-delayed.html"> Delayed Replication </a> </dt> <dt> group, <a class="indexterm" href="group-replication.html"> Group Replication </a> </dt> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-replication.html"> NDB Cluster Replication </a> </dt> <dd> <dl> <dt> (see also <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> </dl> </dd> <dt> nondeterministic functions, <a class="indexterm" href="function-optimization.html"> Function Call Optimization </a> </dt> <dt> relay log, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt> replication metadata repositories, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-replication"> Resource Group Replication </a> </dt> <dt> row-based vs statement-based, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> <dt> safe and unsafe statements, <a class="indexterm" href="replication-rbr-safe-unsafe.html"> Determination of Safe and Unsafe Statements in Binary Logging </a> </dt> <dt> semisynchronous, <a class="indexterm" href="replication-semisync.html"> Semisynchronous Replication </a> </dt> <dt> shutdown and restart, <a class="indexterm" href="replication-features-shutdowns.html"> Replication and Source or Replica Shutdowns </a> , <a class="indexterm" href="replication-features-temptables.html"> Replication and Temporary Tables </a> </dt> <dt> statements incompatible with STATEMENT format, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> <dt> thread states, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> , <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> timeouts, <a class="indexterm" href="replication-features-timeout.html"> Replication Retries and Timeouts </a> </dt> <dt> unexpected halt, <a class="indexterm" href="replication-solutions-unexpected-replica-halt.html"> Handling an Unexpected Halt of a Replica </a> </dt> <dt> with differing tables on source and replica, <a class="indexterm" href="replication-features-differing-tables.html"> Replication with Differing Table Definitions on Source and Replica </a> </dt> </dl> </dd> <dt id="ientry-idm46045138171408"> replication channel </dt> <dd> <dl> <dt> commands, <a class="indexterm" href="channels-commands-single-channel.html"> Commands for Operations on a Single Channel </a> </dt> <dt> compatibility, <a class="indexterm" href="channels-with-prev-replication.html"> Compatibility with Previous Replication Statements </a> </dt> <dt> naming conventions, <a class="indexterm" href="channels-naming-conventions.html"> Replication Channel Naming Conventions </a> </dt> <dt> startup options, <a class="indexterm" href="channels-startup-options.html"> Startup Options and Replication Channels </a> </dt> </dl> </dd> <dt id="ientry-idm46045137337184"> replication channel based filters, <a class="indexterm" href="replication-rules-channel-based-filters.html"> Replication Channel Based Filters </a> </dt> <dt id="ientry-idm46045138188240"> replication channels, <a class="indexterm" href="replication-channels.html"> Replication Channels </a> </dt> <dt id="ientry-idm46045251605344"> REPLICATION CLIENT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045137558608"> replication filtering options </dt> <dd> <dl> <dt> and case sensitivity, <a class="indexterm" href="replication-rules.html"> How Servers Evaluate Replication Filtering Rules </a> </dt> </dl> </dd> <dt id="ientry-idm46045138524096"> replication formats </dt> <dd> <dl> <dt> compared, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045194116896"> replication functions, <a class="indexterm" href="replication-functions.html"> Replication Functions </a> </dt> <dd> <dl> <dt> asynchronous_connection_failover_add_managed(), <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt> asynchronous_connection_failover_add_source(), <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt> asynchronous_connection_failover_delete_managed(), <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> <dt> asynchronous_connection_failover_delete_source(), <a class="indexterm" href="replication-functions-async-failover.html"> Asynchronous Replication Channel Failover Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045138569168"> replication implementation, <a class="indexterm" href="replication-implementation.html"> Replication Implementation </a> </dt> <dt id="ientry-idm46045136023168"> replication limitations, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> <dt id="ientry-idm46045137971376"> replication metadata repositories, <a class="indexterm" href="replica-logs.html"> Relay Log and Replication Metadata Repositories </a> </dt> <dt id="ientry-idm46045145599360"> replication mode, <a class="indexterm" href="replication-mode-change-online.html"> Changing GTID Mode on Online Servers </a> </dt> <dd> <dl> <dt> concepts, <a class="indexterm" href="replication-mode-change-online-concepts.html"> Replication Mode Concepts </a> </dt> <dt> disabling online, <a class="indexterm" href="replication-mode-change-online-disable-gtids.html"> Disabling GTID Transactions Online </a> </dt> <dt> enabling online, <a class="indexterm" href="replication-mode-change-online-enable-gtids.html"> Enabling GTID Transactions Online </a> </dt> <dt> verifying anonymous transactions, <a class="indexterm" href="replication-mode-change-online-verify-transactions.html"> Verifying Replication of Anonymous Transactions </a> </dt> </dl> </dd> <dt id="ientry-idm46045136025728"> replication options, <a class="indexterm" href="replication-features.html"> Replication Features and Issues </a> </dt> <dt id="ientry-idm46045176856064"> replication server </dt> <dd> <dl> <dt> statements, <a class="indexterm" href="replication-statements-group.html"> SQL Statements for Controlling Group Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045251596224"> REPLICATION SLAVE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045221305776"> replication source </dt> <dd> <dl> <dt> thread states, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045177912272"> replication sources </dt> <dd> <dl> <dt> statements, <a class="indexterm" href="replication-statements-source.html"> SQL Statements for Controlling Source Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045134577232"> replication technologies, <a class="indexterm" href="group-replication-replication-technologies.html"> Replication Technologies </a> </dt> <dt id="ientry-idm46045086853344"> replication, asynchronous (see <a href="#ientry-idm46045086855872"> NDB Cluster replication </a> ) </dt> <dt id="ientry-idm46045251093600"> REPLICATION_APPLIER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045071584528"> replication_applier_configuration </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-configuration-table.html"> The replication_applier_configuration Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071525344"> replication_applier_filters </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-filters-table.html"> The replication_applier_filters Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071496128"> replication_applier_global_filters </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-global-filters-table.html"> The replication_applier_global_filters Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071475328"> replication_applier_status </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-status-table.html"> The replication_applier_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071426384"> replication_applier_status_by_coordinator </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-status-by-coordinator-table.html"> The replication_applier_status_by_coordinator Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071336368"> replication_applier_status_by_worker </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-applier-status-by-worker-table.html"> The replication_applier_status_by_worker Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071215424"> replication_asynchronous_connection_failover </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-asynchronous-connection-failover-table.html"> The replication_asynchronous_connection_failover Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071178112"> replication_asynchronous_connection_failover_managed </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-asynchronous-connection-failover-managed-table.html"> The replication_asynchronous_connection_failover_managed Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071110512"> replication_connection_configuration </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-connection-configuration-table.html"> The replication_connection_configuration Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045070889216"> replication_connection_status </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-connection-status-table.html"> The replication_connection_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071144960"> replication_group_communication_information </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-group-communication-information-table.html"> The replication_group_communication_information Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045070908176"> replication_group_configuration_version </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-group-configuration-version-table.html"> The replication_group_configuration_version Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045070709216"> replication_group_members </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-group-members-table.html"> The replication_group_members Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045070778464"> replication_group_member_stats </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-replication-group-member-actions-table.html"> The replication_group_member_actions Table </a> , <a class="indexterm" href="performance-schema-replication-group-member-stats-table.html"> The replication_group_member_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045142284080"> replication_optimize_for_static_plugin_config system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142253760"> replication_sender_observe_commit_only system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045251081008"> REPLICATION_SLAVE_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045086057824"> replica_allow_batching, <a class="indexterm" href="mysql-cluster-replication-starting.html"> Starting NDB Cluster Replication (Single Replication Channel) </a> </dt> <dt id="ientry-idm46045111163664"> replica_allow_batching system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045142890528"> replica_checkpoint_group system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142848560"> replica_checkpoint_period system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142811440"> replica_compressed_protocol system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142772464"> replica_exec_mode system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142728560"> replica_load_tmpdir system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142694464"> replica_max_allowed_packet system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142651600"> replica_net_timeout system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262295344"> Replica_open_temp_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045142604400"> replica_parallel_type system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142552048"> replica_parallel_workers system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142496272"> replica_pending_jobs_size_max system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142457072"> replica_preserve_commit_order, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141405024"> replica_skip_errors system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142396160"> replica_sql_verify_checksum system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142368000"> replica_transaction_retries system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142321424"> replica_type_conversions system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045094486976"> REPORT command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045335348768"> reporting </dt> <dd> <dl> <dt> bugs, <a class="indexterm" href="introduction.html"> General Information </a> , <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> errors, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> problems, <a class="indexterm" href="introduction.html"> General Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045142225808"> report_host system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142200128"> report_password system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142172704"> report_port system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142140176"> report_user system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045327903792"> REPRODUCIBLE_BUILD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045221200192"> Requesting binlog dump </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045174842320"> REQUIRE option </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-tls"> ALTER USER SSL/TLS Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-tls"> CREATE USER SSL/TLS Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045304094608"> require-row-format option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045118033184"> RequireCertificate </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> </dl> </dd> <dt id="ientry-idm46045116567904"> RequireEncryptedBackup, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045109297376"> RequireLinkTls, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045120082176"> RequireTls </dt> <dd> <dl> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> management nodes, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045270677120"> require_row_format system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270649712"> require_secure_transport system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045249447568"> reserved user accounts, <a class="indexterm" href="reserved-accounts.html"> Reserved Accounts </a> </dt> <dt id="ientry-idm46045219566000"> reserved words, <a class="indexterm" href="keywords.html"> Keywords and Reserved Words </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-reserved-words.html"> Replication and Reserved Words </a> </dt> </dl> </dd> <dt id="ientry-idm46045119283648"> ReservedConcurrentIndexOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119263008"> ReservedConcurrentOperations, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119242480"> ReservedConcurrentScans, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119221952"> ReservedConcurrentTransactions, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119201488"> ReservedFiredTriggers, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119180944"> ReservedLocalScans, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119160432"> ReservedTransactionBufferMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045177855152"> RESET BINARY LOGS AND GTIDS, <a class="indexterm" href="reset-binary-logs-and-gtids.html"> RESET BINARY LOGS AND GTIDS Statement </a> </dt> <dt id="ientry-idm46045168375264"> RESET BINARY LOGS AND GTIDS statement, <a class="indexterm" href="reset.html"> RESET Statement </a> </dt> <dt id="ientry-idm46045266642176"> RESET PERSIST statement, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> , <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="reset-persist.html"> RESET PERSIST Statement </a> </dt> <dt id="ientry-idm46045177145376"> RESET REPLICA, <a class="indexterm" href="reset-replica.html"> RESET REPLICA Statement </a> </dt> <dt id="ientry-idm46045177144304"> RESET REPLICA ALL, <a class="indexterm" href="reset-replica.html"> RESET REPLICA Statement </a> </dt> <dt id="ientry-idm46045168374176"> RESET REPLICA statement, <a class="indexterm" href="reset.html"> RESET Statement </a> </dt> <dt id="ientry-idm46045221834080"> Reset stmt </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045085822416"> reset-replica.pl </dt> <dd> <dl> <dt> NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-auto-sync.html"> NDB Cluster Replication: Automating Synchronization of the Replica to the Source Binary Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045317713808"> resetconnection command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045248615248"> resetting expired password, <a class="indexterm" href="password-management.html#password-expiration-policy"> Password Expiration Policy </a> </dt> <dt id="ientry-idm46045175817936"> RESIGNAL, <a class="indexterm" href="resignal.html"> RESIGNAL Statement </a> </dt> <dt id="ientry-idm46045219888480"> resource group names </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> </dl> </dd> <dt id="ientry-idm46045260278160"> resource groups, <a class="indexterm" href="resource-groups.html"> Resource Groups </a> </dt> <dd> <dl> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045272986576"> resource limits </dt> <dd> <dl> <dt> user accounts, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> , <a class="indexterm" href="alter-user.html#alter-user-resource-limits"> ALTER USER Resource-Limit Options </a> , <a class="indexterm" href="create-user.html#create-user-resource-limits"> CREATE USER Resource-Limit Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045088199376"> resources </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-resources.html"> The ndbinfo resources Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045079001616"> RESOURCE_GROUPS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-resource-groups-table.html"> The INFORMATION_SCHEMA RESOURCE_GROUPS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259797472"> resource_groups table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> , <a class="indexterm" href="resource-group-statements.html"> Resource Group Management Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045251069488"> RESOURCE_GROUP_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045262287008"> Resource_group_supported status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045251063728"> RESOURCE_GROUP_USER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045094464160"> RESTART command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045168295136"> RESTART statement, <a class="indexterm" href="restart.html"> RESTART Statement </a> </dt> <dt id="ientry-idm46045326721520"> restarting </dt> <dd> <dl> <dt> the server, <a class="indexterm" href="testing-server.html"> Testing the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045117990464"> RestartOnErrorInsert, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117215456"> RestartSubscriberConnectTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045088145008"> restart_info </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-restart-info.html"> The ndbinfo restart_info Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045031086448"> restore, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045098423408"> restore-data option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098410608"> restore-epoch option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098395840"> restore-meta option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098371936"> restore-privilege-tables option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045099813808"> restoring backups </dt> <dd> <dl> <dt> in NDB Cluster, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045085933024"> restoring from backup </dt> <dd> <dl> <dt> in NDB Cluster replication, <a class="indexterm" href="mysql-cluster-replication-backups.html"> NDB Cluster Backups With NDB Cluster Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045260171488"> restrictions </dt> <dd> <dl> <dt> character sets, <a class="indexterm" href="charset-restrictions.html"> Restrictions on Character Sets </a> </dt> <dt> events, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-restrictions-limitations.html"> InnoDB Restrictions and Limitations </a> </dt> <dt> performance_schema database, <a class="indexterm" href="performance-schema-restrictions.html"> Restrictions on Performance Schema </a> </dt> <dt> pluggable authentication, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-restrictions"> Restrictions on Pluggable Authentication </a> </dt> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-restrictions"> Resource Group Restrictions </a> </dt> <dt> server-side cursors, <a class="indexterm" href="cursor-restrictions.html"> Restrictions on Server-Side Cursors </a> </dt> <dt> signals, <a class="indexterm" href="condition-handling-restrictions.html"> Restrictions on Condition Handling </a> </dt> <dt> stored routines, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> <dt> subqueries, <a class="indexterm" href="subquery-restrictions.html"> Restrictions on Subqueries </a> </dt> <dt> triggers, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> <dt> views, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> window functions, <a class="indexterm" href="window-function-restrictions.html"> Window Function Restrictions </a> </dt> <dt> XA transactions, <a class="indexterm" href="xa-restrictions.html"> Restrictions on XA Transactions </a> </dt> </dl> </dd> <dt id="ientry-idm46045270614032"> restrict_fk_on_non_standard_key system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045312786576"> result-file option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045270572272"> resultset_metadata system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045101990128"> resume option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045103916224"> retries option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045325302272"> retrieving </dt> <dd> <dl> <dt> data from tables, <a class="indexterm" href="retrieving-data.html"> Retrieving Information from a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045176197840"> RETURN, <a class="indexterm" href="return.html"> RETURN Statement </a> </dt> <dt id="ientry-idm46045220552576"> return (\r), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045303123776"> reverse option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045203036048"> REVERSE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045249584720"> REVOKE statement, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> , <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> <dt id="ientry-idm46045173156448"> revoking </dt> <dd> <dl> <dt> privileges, <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045173153472"> revoking roles, <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> <dt id="ientry-idm46045098358432"> rewrite-database option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045304065312"> rewrite-db option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045256367360"> Rewriter functions </dt> <dd> <dl> <dt> flush_rewrite_rules(), <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-routines"> Rewriter Query Rewrite Plugin Procedures and Functions </a> </dt> <dt> load_rewrite_rules(), <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-routines"> Rewriter Query Rewrite Plugin Procedures and Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045256648128"> Rewriter query rewrite plugin, <a class="indexterm" href="rewriter-query-rewrite-plugin.html"> The Rewriter Query Rewrite Plugin </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="rewriter-query-rewrite-plugin-installation.html"> Installing or Uninstalling the Rewriter Query Rewrite Plugin </a> </dt> <dt> uninstalling, <a class="indexterm" href="rewriter-query-rewrite-plugin-installation.html"> Installing or Uninstalling the Rewriter Query Rewrite Plugin </a> </dt> </dl> </dd> <dt id="ientry-idm46045256343936"> rewriter_enabled system variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt id="ientry-idm46045256317392"> rewriter_enabled_for_threads_without_privilege_checks, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt id="ientry-idm46045256261680"> Rewriter_number_loaded_rules status variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt id="ientry-idm46045256254576"> Rewriter_number_reloads status variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt id="ientry-idm46045256247488"> Rewriter_number_rewritten_queries status variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt id="ientry-idm46045256241200"> Rewriter_reload_error status variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt id="ientry-idm46045256286016"> rewriter_verbose system variable, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt id="ientry-idm46045229439696"> RIGHT JOIN, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045180529584"> RIGHT OUTER JOIN, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045203022816"> RIGHT(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045202431904"> RLIKE, <a class="indexterm" href="regexp.html#regexp-operator-descriptions"> Regular Expression Function and Operator Descriptions </a> </dt> <dt id="ientry-idm46045249894160"> role names, <a class="indexterm" href="role-names.html"> Specifying Role Names </a> </dt> <dt id="ientry-idm46045249426528"> roles, <a class="indexterm" href="roles.html"> Using Roles </a> </dt> <dd> <dl> <dt> assigning, <a class="indexterm" href="set-role.html"> SET ROLE Statement </a> </dt> <dt> creating, <a class="indexterm" href="create-role.html"> CREATE ROLE Statement </a> </dt> <dt> default, <a class="indexterm" href="set-default-role.html"> SET DEFAULT ROLE Statement </a> </dt> <dt> dropping, <a class="indexterm" href="drop-role.html"> DROP ROLE Statement </a> </dt> <dt> granting, <a class="indexterm" href="grant.html"> GRANT Statement </a> </dt> <dt> revoking, <a class="indexterm" href="revoke.html"> REVOKE Statement </a> </dt> <dt> stored programs, <a class="indexterm" href="roles.html#roles-activating"> Activating Roles </a> </dt> <dt> views, <a class="indexterm" href="roles.html#roles-activating"> Activating Roles </a> </dt> </dl> </dd> <dt id="ientry-idm46045198511552"> ROLES_GRAPHML(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045251055792"> ROLE_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045078982256"> ROLE_COLUMN_GRANTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-role-column-grants-table.html"> The INFORMATION_SCHEMA ROLE_COLUMN_GRANTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259658192"> role_edges table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045078953232"> ROLE_ROUTINE_GRANTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-role-routine-grants-table.html"> The INFORMATION_SCHEMA ROLE_ROUTINE_GRANTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045078919696"> ROLE_TABLE_GRANTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-role-table-grants-table.html"> The INFORMATION_SCHEMA ROLE_TABLE_GRANTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045178887456"> ROLLBACK, <a class="indexterm" href="commit.html"> START TRANSACTION, COMMIT, and ROLLBACK Statements </a> </dt> <dd> <dl> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045031076736"> rollback, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045165287824"> rollback segment, <a class="indexterm" href="innodb-undo-tablespaces.html"> Undo Tablespaces </a> , <a class="indexterm" href="innodb-undo-tablespaces.html#truncate-undo-tablespace"> Truncating Undo Tablespaces </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045178626720"> ROLLBACK TO SAVEPOINT, <a class="indexterm" href="savepoint.html"> SAVEPOINT, ROLLBACK TO SAVEPOINT, and RELEASE SAVEPOINT Statements </a> </dt> <dt id="ientry-idm46045221519360"> Rolling back </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045092600256"> rolling restart (NDB Cluster), <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> <dt id="ientry-idm46045192774672"> ROLLUP, <a class="indexterm" href="group-by-modifiers.html"> GROUP BY Modifiers </a> </dt> <dt id="ientry-idm46045326689520"> root password, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt id="ientry-idm46045252946096"> root user, <a class="indexterm" href="security-guidelines.html"> Security Guidelines </a> </dt> <dd> <dl> <dt> password resetting, <a class="indexterm" href="resetting-permissions.html"> How to Reset the Root Password </a> </dt> </dl> </dd> <dt id="ientry-idm46045096089552"> rotate-CA option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045205749680"> ROUND(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045190529232"> rounding, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt id="ientry-idm46045214290672"> rounding errors, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045082637120"> routines </dt> <dd> <dl> <dt> stored, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> , <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> </dl> </dd> <dt id="ientry-idm46045078892720"> ROUTINES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-routines-table.html"> The INFORMATION_SCHEMA ROUTINES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045312504112"> routines option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045259792272"> routines table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045179917632"> ROW, <a class="indexterm" href="row-subqueries.html"> Row Subqueries </a> </dt> <dt id="ientry-idm46045031061520"> row, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045228469632"> row constructors, <a class="indexterm" href="row-subqueries.html"> Row Subqueries </a> </dt> <dd> <dl> <dt> optimizations, <a class="indexterm" href="row-constructor-optimization.html"> Row Constructor Expression Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045031051360"> row format, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045031031824"> row lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045226375616"> row size </dt> <dd> <dl> <dt> maximum, <a class="indexterm" href="column-count-limit.html#row-size-limits"> Row Size Limits </a> </dt> </dl> </dd> <dt id="ientry-idm46045179918704"> row subqueries, <a class="indexterm" href="row-subqueries.html"> Row Subqueries </a> </dt> <dt id="ientry-idm46045138421008"> row-based replication, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> advantages, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> <dt> disadvantages, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045222915328"> row-level locking, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045101978384"> rowbatch option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045101955328"> rowbytes option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045097532672"> rowid option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045100260064"> rowid-file option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045325266400"> rows </dt> <dd> <dl> <dt> counting, <a class="indexterm" href="counting-rows.html"> Counting Rows </a> </dt> <dt> deleting, <a class="indexterm" href="deleting-from-related-tables.html"> Deleting Rows from Related Tables </a> </dt> <dt> matching problems, <a class="indexterm" href="no-matching-rows.html"> Solving Problems with No Matching Rows </a> </dt> <dt> selecting, <a class="indexterm" href="selecting-rows.html"> Selecting Particular Rows </a> </dt> <dt> sorting, <a class="indexterm" href="sorting-rows.html"> Sorting Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045104920656"> rows option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045198499008"> ROW_COUNT(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045161722144"> ROW_FORMAT </dt> <dd> <dl> <dt> COMPACT, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compact"> COMPACT Row Format </a> </dt> <dt> COMPRESSED, <a class="indexterm" href="innodb-compression-usage.html"> Creating Compressed Tables </a> , <a class="indexterm" href="innodb-row-format.html#innodb-row-format-compressed"> COMPRESSED Row Format </a> </dt> <dt> DYNAMIC, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-dynamic"> DYNAMIC Row Format </a> </dt> <dt> REDUNDANT, <a class="indexterm" href="innodb-row-format.html#innodb-row-format-redundant"> REDUNDANT Row Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045192039680"> ROW_NUMBER(), <a class="indexterm" href="window-function-descriptions.html"> Window Function Descriptions </a> </dt> <dt id="ientry-idm46045203009232"> RPAD(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045142111312"> rpl_read_size system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262279968"> Rpl_semi_sync_master_clients status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144317824"> rpl_semi_sync_master_enabled system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262272560"> Rpl_semi_sync_master_net_avg_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262258928"> Rpl_semi_sync_master_net_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262265712"> Rpl_semi_sync_master_net_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262251616"> Rpl_semi_sync_master_no_times status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262244800"> Rpl_semi_sync_master_no_tx status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262238048"> Rpl_semi_sync_master_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262231168"> Rpl_semi_sync_master_timefunc_failures status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144290880"> rpl_semi_sync_master_timeout system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045144257008"> rpl_semi_sync_master_trace_level system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262224256"> Rpl_semi_sync_master_tx_avg_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262210688"> Rpl_semi_sync_master_tx_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262217408"> Rpl_semi_sync_master_tx_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144225136"> rpl_semi_sync_master_wait_for_slave_count system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045144193056"> rpl_semi_sync_master_wait_no_slave system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045144166112"> rpl_semi_sync_master_wait_point system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262203792"> Rpl_semi_sync_master_wait_pos_backtraverse status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262196768"> Rpl_semi_sync_master_wait_sessions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262190048"> Rpl_semi_sync_master_yes_tx status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045142073536"> rpl_semi_sync_replica_enabled system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262073856"> Rpl_semi_sync_replica_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045142043728"> rpl_semi_sync_replica_trace_level system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045142009968"> rpl_semi_sync_slave_enabled system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262064864"> Rpl_semi_sync_slave_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045141982960"> rpl_semi_sync_slave_trace_level system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262183296"> Rpl_semi_sync_source_clients status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144135344"> rpl_semi_sync_source_enabled system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262175696"> Rpl_semi_sync_source_net_avg_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262159200"> Rpl_semi_sync_source_net_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262167408"> Rpl_semi_sync_source_net_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262151696"> Rpl_semi_sync_source_no_times status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262144192"> Rpl_semi_sync_source_no_tx status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262136736"> Rpl_semi_sync_source_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262127488"> Rpl_semi_sync_source_timefunc_failures status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144102960"> rpl_semi_sync_source_timeout system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045144065616"> rpl_semi_sync_source_trace_level system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262119200"> Rpl_semi_sync_source_tx_avg_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262104192"> Rpl_semi_sync_source_tx_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262111632"> Rpl_semi_sync_source_tx_wait_time status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045144026592"> rpl_semi_sync_source_wait_for_replica_count system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045143983856"> rpl_semi_sync_source_wait_no_replica system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045143942704"> rpl_semi_sync_source_wait_point system variable, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt id="ientry-idm46045262096624"> Rpl_semi_sync_source_wait_pos_backtraverse status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262088720"> Rpl_semi_sync_source_wait_sessions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262081360"> Rpl_semi_sync_source_yes_tx status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045141949632"> rpl_stop_replica_timeout system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141907120"> rpl_stop_slave_timeout system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045331416128"> RPM file, <a class="indexterm" href="linux-installation-yum-repo.html"> Installing MySQL on Linux Using the MySQL Yum Repository </a> , <a class="indexterm" href="linux-installation-rpm.html"> Installing MySQL on Linux Using RPM Packages from Oracle </a> </dt> <dt id="ientry-idm46045330805792"> RPM Package Manager, <a class="indexterm" href="linux-installation-rpm.html"> Installing MySQL on Linux Using RPM Packages from Oracle </a> </dt> <dt id="ientry-idm46045262058128"> Rsa_public_key status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045202992496"> RTRIM(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045031000048"> Ruby, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060297376"> Ruby API, <a class="indexterm" href="apis-ruby.html"> MySQL Ruby APIs </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333550128"> running </dt> <dd> <dl> <dt> ANSI mode, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> <dt> batch mode, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> </dt> <dt> multiple servers, <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> </dt> <dt> queries, <a class="indexterm" href="entering-queries.html"> Entering Queries </a> </dt> </dl> </dd> <dt id="ientry-idm46045329513008"> running CMake after prior invocation, <a class="indexterm" href="installing-source-distribution.html#installing-source-distribution-configure-distribution"> Configure the Distribution </a> , <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt id="ientry-idm46045030990208"> rw-lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045073489472"> rwlock_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-rwlock-instances-table.html"> The rwlock_instances Table </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_S"> </a> S </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045138305952"> safe statement (replication) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="replication-rbr-safe-unsafe.html"> Determination of Safe and Unsafe Statements in Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045306951296"> safe-recover option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045317217136"> safe-updates mode, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> </dt> <dt id="ientry-idm46045318387136"> safe-updates option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> </dt> </dl> </dd> <dt id="ientry-idm46045279341632"> safe-user-create option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045240540736"> SafeNet KeySecure Applicance </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-keysecure"> Configuring keyring_okv for Gemalto SafeNet KeySecure Appliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045335063120"> Sakila, <a class="indexterm" href="history.html"> History of MySQL </a> </dt> <dt id="ientry-idm46045085476432"> same value wins (conflict resolution), <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-resolution-functions"> Conflict Resolution Functions </a> </dt> <dt id="ientry-idm46045068854976"> sampling </dt> <dd> <dl> <dt> statement, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045248281472"> sandbox mode </dt> <dd> <dl> <dt> for expired-password accounts, <a class="indexterm" href="expired-password-handling.html"> Server Handling of Expired Passwords </a> </dt> </dl> </dd> <dt id="ientry-idm46045245386064"> SASL </dt> <dd> <dl> <dt> authentication, <a class="indexterm" href="ldap-pluggable-authentication.html"> LDAP Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045178627760"> SAVEPOINT, <a class="indexterm" href="savepoint.html"> SAVEPOINT, ROLLBACK TO SAVEPOINT, and RELEASE SAVEPOINT Statements </a> </dt> <dt id="ientry-idm46045030949024"> savepoint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221514464"> Saving state </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045030944048"> scalability, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045108505376"> Scalable Coherent Interface (NDB Cluster) (OBSOLETE), <a class="indexterm" href="mysql-cluster-interconnects.html"> Using High-Speed Interconnects with NDB Cluster </a> </dt> <dt id="ientry-idm46045211386336"> scalar </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045214480400"> scale </dt> <dd> <dl> <dt> arithmetic, <a class="indexterm" href="precision-math.html"> Precision Math </a> </dt> <dt> numeric, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045030937264"> scale out, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030932544"> scale up, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045096076816"> schedule option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045257157440"> scheduler component, <a class="indexterm" href="scheduler-component.html"> Scheduler Component </a> </dt> <dt id="ientry-idm46045116391344"> SchedulerExecutionTimer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116369904"> SchedulerResponsiveness, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045116348544"> SchedulerSpinTimer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045190063616"> schema, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> altering, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> </dt> <dt> creating, <a class="indexterm" href="create-database.html"> CREATE DATABASE Statement </a> </dt> <dt> deleting, <a class="indexterm" href="drop-database.html"> DROP DATABASE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045092965152"> SCHEMA Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045198446608"> SCHEMA(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045078775792"> SCHEMATA </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-schemata-table.html"> The INFORMATION_SCHEMA SCHEMATA Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259787680"> schemata table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045190005888"> SCHEMATA_EXTENSIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="alter-database.html"> ALTER DATABASE Statement </a> , <a class="indexterm" href="information-schema-schemata-extensions-table.html"> The INFORMATION_SCHEMA SCHEMATA_EXTENSIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045062588640"> schema_auto_increment_columns view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-auto-increment-columns.html"> The schema_auto_increment_columns View </a> </dt> </dl> </dd> <dt id="ientry-idm46045270509200"> schema_definition_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045062554000"> schema_index_statistics view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-index-statistics.html"> The schema_index_statistics and x$schema_index_statistics Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062521680"> schema_object_overview view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-object-overview.html"> The schema_object_overview View </a> </dt> </dl> </dd> <dt id="ientry-idm46045078715120"> SCHEMA_PRIVILEGES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-schema-privileges-table.html"> The INFORMATION_SCHEMA SCHEMA_PRIVILEGES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045062502672"> schema_redundant_indexes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-redundant-indexes.html"> The schema_redundant_indexes and x$schema_flattened_keys Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062286656"> schema_tables_with_full_table_scans view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-tables-with-full-table-scans.html"> The schema_tables_with_full_table_scans and x$schema_tables_with_full_table_scans Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062455408"> schema_table_lock_waits view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-lock-waits.html"> The schema_table_lock_waits and x$schema_table_lock_waits Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062404224"> schema_table_statistics view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-statistics.html"> The schema_table_statistics and x$schema_table_statistics Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062354896"> schema_table_statistics_with_buffer view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-statistics-with-buffer.html"> The schema_table_statistics_with_buffer and x$schema_table_statistics_with_buffer Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062267712"> schema_unused_indexes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-unused-indexes.html"> The schema_unused_indexes View </a> </dt> </dl> </dd> <dt id="ientry-idm46045108504272"> SCI (NDB Cluster) (OBSOLETE), <a class="indexterm" href="mysql-cluster-interconnects.html"> Using High-Speed Interconnects with NDB Cluster </a> </dt> <dt id="ientry-idm46045324796096"> script files, <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> </dt> <dt id="ientry-idm46045321997840"> scripts, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> , <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dd> <dl> <dt> SQL, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045308544640"> SDI, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> , <a class="indexterm" href="import-table.html"> IMPORT TABLE Statement </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030907392"> search index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333720480"> searching </dt> <dd> <dl> <dt> and case sensitivity, <a class="indexterm" href="case-sensitivity.html"> Case Sensitivity in String Searches </a> </dt> <dt> full-text, <a class="indexterm" href="fulltext-search.html"> Full-Text Search Functions </a> </dt> <dt> MySQL Web pages, <a class="indexterm" href="bug-reports.html"> How to Report Bugs or Problems </a> </dt> <dt> two keys, <a class="indexterm" href="searching-on-two-keys.html"> Searching on Two Keys </a> </dt> </dl> </dd> <dt id="ientry-idm46045221507248"> Searching rows for update </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045204495792"> SECOND(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045165866208"> secondary index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> InnoDB, <a class="indexterm" href="innodb-index-types.html"> Clustered and Secondary Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045248441712"> secondary passwords, <a class="indexterm" href="password-management.html#dual-passwords"> Dual Password Support </a> </dt> <dt id="ientry-idm46045270538608"> secondary_engine_cost_threshold system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045262045792"> Secondary_engine_execution_count status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045323280656"> secure connections, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> <dd> <dl> <dt> command options, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> </dl> </dd> <dt id="ientry-idm46045270474960"> secure_file_priv system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045086912880"> securing an NDB Cluster, <a class="indexterm" href="mysql-cluster-security-mysql-security-procedures.html"> NDB Cluster and MySQL Security Procedures </a> </dt> <dt id="ientry-idm46045252801568"> security </dt> <dd> <dl> <dt> against attackers, <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> </dt> <dt> and malicious SQL statements, <a class="indexterm" href="mysql-cluster-security-mysql-privileges.html"> NDB Cluster and MySQL Privileges </a> </dt> <dt> and NDB utilities, <a class="indexterm" href="mysql-cluster-security-mysql-security-procedures.html"> NDB Cluster and MySQL Security Procedures </a> </dt> <dt> components, <a class="indexterm" href="security-plugins.html"> Security Components and Plugins </a> </dt> <dt> plugins, <a class="indexterm" href="security-plugins.html"> Security Components and Plugins </a> </dt> </dl> </dd> <dt id="ientry-idm46045252334128"> security system, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045204481936"> SEC_TO_TIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045030887584"> segment, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045225609856"> SELECT </dt> <dd> <dl> <dt> INTO, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> <dt> LIMIT, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt> optimizing, <a class="indexterm" href="using-explain.html"> Optimizing Queries with EXPLAIN </a> , <a class="indexterm" href="explain.html"> EXPLAIN Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045333276016"> SELECT INTO TABLE, <a class="indexterm" href="ansi-diff-select-into-table.html"> SELECT INTO TABLE Differences </a> </dt> <dt id="ientry-idm46045251583040"> SELECT privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045318360864"> select-limit option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045325483680"> selecting </dt> <dd> <dl> <dt> databases, <a class="indexterm" href="creating-database.html"> Creating and Selecting a Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045030875888"> selectivity, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045262039088"> Select_full_join status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262033456"> Select_full_range_join status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045270407472"> select_into_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270362800"> select_into_disk_sync, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270329488"> select_into_disk_sync_delay, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045262028032"> Select_range status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262022368"> Select_range_check status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045262016912"> Select_scan status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045245232496"> SELinux, <a class="indexterm" href="selinux.html"> SELinux </a> </dt> <dd> <dl> <dt> Document Store TCP port context, <a class="indexterm" href="selinux-context-mysql-feature-ports.html#selinux-context-document-store-ports"> Setting the TCP Port Context for Document Store </a> </dt> <dt> error log file context, <a class="indexterm" href="selinux-file-context.html#selinux-context-error-log"> Setting the MySQL Error Log File Context </a> </dt> <dt> file context, <a class="indexterm" href="selinux-file-context.html"> SELinux File Context </a> </dt> <dt> Group Replication TCP port context, <a class="indexterm" href="selinux-context-mysql-feature-ports.html#selinux-context-group-replication-port"> Setting the TCP Port Context for Group Replication </a> </dt> <dt> LDAP authentication, <a class="indexterm" href="ldap-pluggable-authentication.html#ldap-pluggable-authentication-installation"> Installing LDAP Pluggable Authentication </a> </dt> <dt> mode, <a class="indexterm" href="selinux-mode.html"> Changing the SELinux Mode </a> </dt> <dt> MySQL data directory context, <a class="indexterm" href="selinux-file-context.html#selinux-context-data-dir"> Setting the MySQL Data Directory Context </a> </dt> <dt> MySQL feature TCP port context, <a class="indexterm" href="selinux-context-mysql-feature-ports.html"> Setting the TCP Port Context for MySQL Features </a> </dt> <dt> MySQL Router TCP port context, <a class="indexterm" href="selinux-context-mysql-feature-ports.html#selinux-context-router-ports"> Setting the TCP Port Context for MySQL Router </a> </dt> <dt> MySQL Server policies, <a class="indexterm" href="selinux-policies.html"> MySQL Server SELinux Policies </a> </dt> <dt> mysqld TCP port context, <a class="indexterm" href="selinux-context-mysqld-tcp-port.html"> Setting the TCP Port Context for mysqld </a> </dt> <dt> PID file context, <a class="indexterm" href="selinux-file-context.html#selinux-context-pid-file"> Setting the PID File Context </a> </dt> <dt> secure_file_priv directory context, <a class="indexterm" href="selinux-file-context.html#selinux-context-secure-file-priv"> Setting the secure_file_priv Directory Context </a> </dt> <dt> status, <a class="indexterm" href="selinux-checking.html"> Check if SELinux is Enabled </a> </dt> <dt> TCP port context, <a class="indexterm" href="selinux-context-tcp-port.html"> SELinux TCP Port Context </a> </dt> <dt> troubleshooting, <a class="indexterm" href="selinux-troubleshooting.html"> Troubleshooting SELinux </a> </dt> <dt> Unix domain file context, <a class="indexterm" href="selinux-file-context.html#selinux-context-unix-domain-socket"> Setting the Unix Domain Socket Context </a> </dt> </dl> </dd> <dt id="ientry-idm46045030870096"> semi-consistent read, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045228378128"> semijoins, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> <dt id="ientry-idm46045136272896"> semisynchronous replication, <a class="indexterm" href="replication-semisync.html"> Semisynchronous Replication </a> </dt> <dd> <dl> <dt> configuration, <a class="indexterm" href="replication-semisync-installation.html"> Installing Semisynchronous Replication </a> </dt> <dt> configuring, <a class="indexterm" href="replication-semisync-interface.html"> Configuring Semisynchronous Replication </a> </dt> <dt> installation, <a class="indexterm" href="replication-semisync-installation.html"> Installing Semisynchronous Replication </a> </dt> <dt> monitoring, <a class="indexterm" href="replication-semisync-monitoring.html"> Semisynchronous Replication Monitoring </a> </dt> </dl> </dd> <dt id="ientry-idm46045109274704"> SendBufferMemory, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045221275536"> Sending binlog event to replica </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221279632"> Sending binlog event to slave </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221498288"> Sending to client </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045109251344"> SendSignalId, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> , <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045211259856"> sensible JSON values, <a class="indexterm" href="json.html#json-normalization"> Normalization, Merging, and Autowrapping of JSON Values </a> </dt> <dt id="ientry-idm46045251045024"> SENSITIVE_VARIABLES_OBSERVER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045324591136"> SEQUENCE, <a class="indexterm" href="example-auto-increment.html"> Using AUTO_INCREMENT </a> </dt> <dt id="ientry-idm46045198548288"> sequence emulation, <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045324590064"> sequences, <a class="indexterm" href="example-auto-increment.html"> Using AUTO_INCREMENT </a> </dt> <dt id="ientry-idm46045214420560"> SERIAL, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045210868416"> SERIAL DEFAULT VALUE, <a class="indexterm" href="data-type-defaults.html"> Data Type Default Values </a> </dt> <dt id="ientry-idm46045164281296"> SERIALIZABLE, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> transaction isolation level, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> </dl> </dd> <dt id="ientry-idm46045030910496"> serialized dictionary information (see <a href="#ientry-idm46045308544640"> SDI </a> ) </dt> <dt id="ientry-idm46045030850448"> serialized dictionary information (SDI), <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045327072464"> server, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> connecting, <a class="indexterm" href="connecting-disconnecting.html"> Connecting to and Disconnecting from the Server </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> </dt> <dt> debugging, <a class="indexterm" href="debugging-server.html"> Debugging a MySQL Server </a> </dt> <dt> disconnecting, <a class="indexterm" href="connecting-disconnecting.html"> Connecting to and Disconnecting from the Server </a> </dt> <dt> logs, <a class="indexterm" href="server-logs.html"> MySQL Server Logs </a> </dt> <dt> restart, <a class="indexterm" href="testing-server.html"> Testing the Server </a> </dt> <dt> shutdown, <a class="indexterm" href="testing-server.html"> Testing the Server </a> </dt> <dt> signal handling, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> </dt> <dt> starting, <a class="indexterm" href="data-directory-initialization.html#data-directory-initialization-overview"> Data Directory Initialization Overview </a> </dt> <dt> starting and stopping, <a class="indexterm" href="automatic-start.html"> Starting and Stopping MySQL Automatically </a> </dt> <dt> starting problems, <a class="indexterm" href="starting-server-troubleshooting.html"> Troubleshooting Problems Starting the MySQL Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045317093744"> server administration, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045302467040"> server configuration, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dt id="ientry-idm46045323566208"> server connections </dt> <dd> <dl> <dt> command options, <a class="indexterm" href="connection-options.html"> Command Options for Connecting to the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045257132400"> server plugins, <a class="indexterm" href="server-plugins.html"> MySQL Server Plugins </a> </dt> <dt id="ientry-idm46045278723568"> server variables, <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> (see <a href="#ientry-idm46045302454752"> system variables </a> ) </dt> <dd> <dl> <dt> Group Replication, <a class="indexterm" href="group-replication-options.html"> Group Replication Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045304034112"> server-id option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045304013376"> server-id-bits option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045323196160"> server-public-key-path option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045176106128"> server-side cursors </dt> <dd> <dl> <dt> restrictions, <a class="indexterm" href="cursor-restrictions.html"> Restrictions on Server-Side Cursors </a> </dt> </dl> </dd> <dt id="ientry-idm46045030834704"> server-side prepared statement, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045119877504"> ServerPort, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045254131344"> servers </dt> <dd> <dl> <dt> multiple, <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> </dt> </dl> </dd> <dt id="ientry-idm46045259464224"> servers table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045223326544"> server_cost </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045259506400"> server_cost table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045145086784"> server_id system variable, <a class="indexterm" href="replication-options.html"> Replication and Binary Logging Options and Variables </a> </dt> <dt id="ientry-idm46045111057840"> server_id_bits system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045088016256"> server_locks </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-server-locks.html"> The ndbinfo server_locks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087944208"> server_operations </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-server-operations.html"> The ndbinfo server_operations Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087849552"> server_transactions </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-server-transactions.html"> The ndbinfo server_transactions Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045145048624"> server_uuid system variable </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options.html"> Replication and Binary Logging Options and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045030827376"> service principal name, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030824832"> service ticket, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045321245696"> service-startup-timeout option </dt> <dd> <dl> <dt> mysql.server, <a class="indexterm" href="mysql-server.html"> mysql.server — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045254521136"> services </dt> <dd> <dl> <dt> for plugins, <a class="indexterm" href="plugin-services.html"> MySQL Plugin Services </a> </dt> </dl> </dd> <dt id="ientry-idm46045251032576"> SERVICE_CONNECTION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045254352000"> service_get_read_locks() function </dt> <dd> <dl> <dt> locking service, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045254344096"> service_get_write_locks() function </dt> <dd> <dl> <dt> locking service, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045254337440"> service_release_locks() function </dt> <dd> <dl> <dt> locking service, <a class="indexterm" href="locking-service.html#locking-service-function-reference"> Locking Service Interface Function Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045030822624"> servlet, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045171558640"> SESSION </dt> <dd> <dl> <dt> SET statement, <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> </dt> </dl> </dd> <dt id="ientry-idm46045249081872"> session categories, <a class="indexterm" href="account-categories.html#system-user-sessions"> System and Regular Sessions </a> </dt> <dt id="ientry-idm46045260091472"> session state </dt> <dd> <dl> <dt> change tracking, <a class="indexterm" href="session-state-tracking.html"> Server Tracking of Client Session State </a> </dt> </dl> </dd> <dt id="ientry-idm46045270288864"> session state information, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045030820064"> session temporary tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045270287776"> session track gtids, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045260025040"> session trackers </dt> <dd> <dl> <dt> SESSION_TRACK_GTIDS, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt> SESSION_TRACK_SCHEMA, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt> SESSION_TRACK_STATE_CHANGE, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt> SESSION_TRACK_SYSTEM_VARIABLES, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt> SESSION_TRACK_TRANSACTION_CHARACTERISTICS, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt> SESSION_TRACK_TRANSACTION_STATE, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045134845152"> session variables </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-variables.html"> Replication and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045062254448"> session view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-session.html"> The session and x$session Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045071847472"> session_account_connect_attrs table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-session-account-connect-attrs-table.html"> The session_account_connect_attrs Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045071821424"> session_connect_attrs table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-session-connect-attrs-table.html"> The session_connect_attrs Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045062243536"> session_ssl_status view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-session-ssl-status.html"> The session_ssl_status View </a> </dt> </dl> </dd> <dt id="ientry-idm46045260018352"> SESSION_TRACK_GTIDS session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045270291392"> session_track_gtids system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt id="ientry-idm46045260023536"> SESSION_TRACK_SCHEMA session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045270246336"> session_track_schema system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt id="ientry-idm46045260020960"> SESSION_TRACK_STATE_CHANGE session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045270217808"> session_track_state_change system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt id="ientry-idm46045260026144"> SESSION_TRACK_SYSTEM_VARIABLES session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045270176064"> session_track_system_variables system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt id="ientry-idm46045260015776"> SESSION_TRACK_TRANSACTION_CHARACTERISTICS session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045270133664"> session_track_transaction_info system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045260013136"> SESSION_TRACK_TRANSACTION_STATE session tracker, <a class="indexterm" href="session-state-tracking.html#session-state-tracking-test-suite-support"> Test Suite Session State Tracker Support </a> </dt> <dt id="ientry-idm46045198437904"> SESSION_USER(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045251026288"> SESSION_VARIABLES_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045217500720"> SET </dt> <dd> <dl> <dt> CHARACTER SET, <a class="indexterm" href="charset-connection.html"> Connection Character Sets and Collations </a> </dt> <dt> NAMES, <a class="indexterm" href="charset-connection.html"> Connection Character Sets and Collations </a> </dt> <dt> size, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045171364240"> SET CHARACTER SET statement, <a class="indexterm" href="set-character-set.html"> SET CHARACTER SET Statement </a> </dt> <dt id="ientry-idm46045171363184"> SET CHARSET statement, <a class="indexterm" href="set-character-set.html"> SET CHARACTER SET Statement </a> </dt> <dt id="ientry-idm46045212776848"> SET data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="set.html"> The SET Type </a> </dt> <dt id="ientry-idm46045173040928"> SET DEFAULT ROLE statement, <a class="indexterm" href="set-default-role.html"> SET DEFAULT ROLE Statement </a> </dt> <dt id="ientry-idm46045138609520"> SET GLOBAL sql_replica_skip_counter, <a class="indexterm" href="replication-administration-skip.html#set-global-replica-sql-skip-counter"> Skipping Transactions With SET GLOBAL sql_replica_skip_counter </a> </dt> <dt id="ientry-idm46045266646480"> SET GLOBAL statement, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> </dt> <dt id="ientry-idm46045217278528"> SET NAMES, <a class="indexterm" href="charset-applications.html"> Configuring Application Character Set and Collation </a> </dt> <dt id="ientry-idm46045171340096"> SET NAMES statement, <a class="indexterm" href="set-names.html"> SET NAMES Statement </a> </dt> <dt id="ientry-idm46045180321968"> set operations </dt> <dd> <dl> <dt> SQL, <a class="indexterm" href="set-operations.html"> Set Operations with UNION, INTERSECT, and EXCEPT </a> </dt> </dl> </dd> <dt id="ientry-idm46045221829184"> Set option </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045172989584"> SET PASSWORD statement, <a class="indexterm" href="set-password.html"> SET PASSWORD Statement </a> </dt> <dt id="ientry-idm46045266645408"> SET PERSIST statement, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> </dt> <dt id="ientry-idm46045266644336"> SET PERSIST_ONLY statement, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> </dt> <dt id="ientry-idm46045172741456"> SET RESOURCE GROUP statement, <a class="indexterm" href="set-resource-group.html"> SET RESOURCE GROUP Statement </a> </dt> <dt id="ientry-idm46045172894256"> SET ROLE statement, <a class="indexterm" href="set-role.html"> SET ROLE Statement </a> </dt> <dt id="ientry-idm46045266643248"> SET SESSION statement, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> </dt> <dt id="ientry-idm46045177793296"> SET sql_log_bin, <a class="indexterm" href="set-sql-log-bin.html"> SET sql_log_bin Statement </a> </dt> <dt id="ientry-idm46045263903936"> SET statement </dt> <dd> <dl> <dt> assignment operator, <a class="indexterm" href="assignment-operators.html"> Assignment Operators </a> </dt> <dt> CHARACTER SET, <a class="indexterm" href="set-character-set.html"> SET CHARACTER SET Statement </a> </dt> <dt> CHARSET, <a class="indexterm" href="set-character-set.html"> SET CHARACTER SET Statement </a> </dt> <dt> NAMES, <a class="indexterm" href="set-names.html"> SET NAMES Statement </a> </dt> <dt> variable assignment, <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> , <a class="indexterm" href="set-variable.html"> SET Syntax for Variable Assignment </a> </dt> </dl> </dd> <dt id="ientry-idm46045178291808"> SET TRANSACTION, <a class="indexterm" href="set-transaction.html"> SET TRANSACTION Statement </a> </dt> <dt id="ientry-idm46045306834096"> set-auto-increment[ option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045313340336"> set-charset option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045306930352"> set-collation option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045313041424"> set-gtid-purged option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045248739616"> setting </dt> <dd> <dl> <dt> passwords, <a class="indexterm" href="assigning-passwords.html"> Assigning Account Passwords </a> </dt> </dl> </dd> <dt id="ientry-idm46045172987024"> setting passwords, <a class="indexterm" href="set-password.html"> SET PASSWORD Statement </a> </dt> <dt id="ientry-idm46045323674384"> setting program variables, <a class="indexterm" href="program-variables.html"> Using Options to Set Program Variables </a> </dt> <dt id="ientry-idm46045327111840"> setup </dt> <dd> <dl> <dt> postinstallation, <a class="indexterm" href="postinstallation.html"> Postinstallation Setup and Testing </a> </dt> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045073949840"> setup_actors table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-actors-table.html"> The setup_actors Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073894336"> setup_consumers table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-consumers-table.html"> The setup_consumers Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073867264"> setup_instruments table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-instruments-table.html"> The setup_instruments Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045067844320"> setup_meters table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-meters-table.html"> The setup_meters Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045067825760"> setup_metrics table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-metrics-table.html"> The setup_metrics Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073748448"> setup_objects table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-objects-table.html"> The setup_objects Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045073675696"> setup_threads table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-setup-threads-table.html"> The setup_threads Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045251006880"> SET_ANY_DEFINER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dd> <dl> <dt> stored object creation, <a class="indexterm" href="stored-objects-security.html#stored-objects-security-orphan-objects"> Orphan Stored Objects </a> </dt> </dl> </dd> <dt id="ientry-idm46045233777136"> set_firewall_group_mode() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045233728576"> set_firewall_mode() MySQL Enterprise Firewall function, <a class="indexterm" href="firewall-reference.html#firewall-functions"> MySQL Enterprise Firewall Administrative Functions </a> </dt> <dt id="ientry-idm46045270089440"> set_operations_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045223567536"> SET_VAR optimizer hint, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-set-var"> Variable-Setting Hint Syntax </a> </dt> <dt id="ientry-idm46045248029776"> SFA (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045199300880"> SHA(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045199301952"> SHA1(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045199282464"> SHA2(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045246106400"> sha256_password authentication plugin, <a class="indexterm" href="sha256-pluggable-authentication.html"> SHA-256 Pluggable Authentication </a> </dt> <dt id="ientry-idm46045270054144"> sha256_password_auto_generate_rsa_keys system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045270016928"> sha256_password_private_key_path system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269985456"> sha256_password_proxy_users system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt id="ientry-idm46045269954928"> sha256_password_public_key_path system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045246135040"> sha2_cache_cleaner audit plugin, <a class="indexterm" href="caching-sha2-pluggable-authentication.html#caching-sha2-pluggable-authentication-cache-operation"> Cache Operation for SHA-2 Pluggable Authentication </a> </dt> <dt id="ientry-idm46045164585312"> shared lock, <a class="indexterm" href="innodb-locking.html"> InnoDB Locking </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045109103072"> shared memory transporter (see <a href="#ientry-idm46045221007520"> NDB Cluster </a> ) </dt> <dt id="ientry-idm46045030808448"> shared tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045323318592"> shared-memory-base-name option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045115260304"> SharedGlobalMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045269924032"> shared_memory system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269896288"> shared_memory_base_name system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045030803200"> sharp checkpoint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045335254704"> shell syntax, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt id="ientry-idm46045108805888"> ShmKey, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045108783312"> ShmSize, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045108761392"> ShmSpinTime, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045303941120"> short-form option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045121953184"> SHOW </dt> <dd> <dl> <dt> in NDB Cluster management client, <a class="indexterm" href="mysql-cluster-quick.html"> Quick Test Setup of NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045171309968"> SHOW BINARY LOG STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-binary-log-status.html"> SHOW BINARY LOG STATUS Statement </a> </dt> <dt id="ientry-idm46045171308880"> SHOW BINARY LOGS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-binary-logs.html"> SHOW BINARY LOGS Statement </a> </dt> <dt id="ientry-idm46045171307792"> SHOW BINLOG EVENTS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-binlog-events.html"> SHOW BINLOG EVENTS Statement </a> </dt> <dt id="ientry-idm46045171306704"> SHOW CHARACTER SET statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-character-set.html"> SHOW CHARACTER SET Statement </a> </dt> <dt id="ientry-idm46045171305616"> SHOW COLLATION statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-collation.html"> SHOW COLLATION Statement </a> </dt> <dt id="ientry-idm46045171304528"> SHOW COLUMNS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-columns.html"> SHOW COLUMNS Statement </a> </dt> <dt id="ientry-idm46045094444352"> SHOW command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045171303456"> SHOW CREATE DATABASE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-database.html"> SHOW CREATE DATABASE Statement </a> </dt> <dt id="ientry-idm46045171302368"> SHOW CREATE EVENT statement, <a class="indexterm" href="show.html"> SHOW Statements </a> </dt> <dt id="ientry-idm46045171301280"> SHOW CREATE FUNCTION statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-function.html"> SHOW CREATE FUNCTION Statement </a> </dt> <dt id="ientry-idm46045171300192"> SHOW CREATE PROCEDURE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-procedure.html"> SHOW CREATE PROCEDURE Statement </a> </dt> <dt id="ientry-idm46045171299104"> SHOW CREATE SCHEMA statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-database.html"> SHOW CREATE DATABASE Statement </a> </dt> <dt id="ientry-idm46045171298016"> SHOW CREATE TABLE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-table.html"> SHOW CREATE TABLE Statement </a> </dt> <dt id="ientry-idm46045171296928"> SHOW CREATE TRIGGER statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-trigger.html"> SHOW CREATE TRIGGER Statement </a> </dt> <dt id="ientry-idm46045170799968"> SHOW CREATE USER statement, <a class="indexterm" href="show-create-user.html"> SHOW CREATE USER Statement </a> </dt> <dt id="ientry-idm46045171295840"> SHOW CREATE VIEW statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-create-view.html"> SHOW CREATE VIEW Statement </a> </dt> <dt id="ientry-idm46045251560096"> SHOW DATABASES privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045171294752"> SHOW DATABASES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-databases.html"> SHOW DATABASES Statement </a> </dt> <dt id="ientry-idm46045087252928"> SHOW ENGINE </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045170703248"> SHOW ENGINE INNODB STATUS statement, <a class="indexterm" href="show-engine.html"> SHOW ENGINE Statement </a> </dt> <dt id="ientry-idm46045087251440"> SHOW ENGINE NDB STATUS, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> <dt id="ientry-idm46045087250368"> SHOW ENGINE NDBCLUSTER STATUS, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> <dt id="ientry-idm46045171293664"> SHOW ENGINE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-engine.html"> SHOW ENGINE Statement </a> </dt> <dt id="ientry-idm46045087243728"> SHOW ENGINES </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045171292592"> SHOW ENGINES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-engines.html"> SHOW ENGINES Statement </a> </dt> <dt id="ientry-idm46045171291520"> SHOW ERRORS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-errors.html"> SHOW ERRORS Statement </a> </dt> <dt id="ientry-idm46045171290448"> SHOW EVENTS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-events.html"> SHOW EVENTS Statement </a> </dt> <dt id="ientry-idm46045075919456"> SHOW extensions, <a class="indexterm" href="extended-show.html"> Extensions to SHOW Statements </a> </dt> <dt id="ientry-idm46045171289376"> SHOW FIELDS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-columns.html"> SHOW COLUMNS Statement </a> </dt> <dt id="ientry-idm46045171288304"> SHOW FUNCTION CODE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-function-code.html"> SHOW FUNCTION CODE Statement </a> </dt> <dt id="ientry-idm46045171287216"> SHOW FUNCTION STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-function-status.html"> SHOW FUNCTION STATUS Statement </a> </dt> <dt id="ientry-idm46045171286128"> SHOW GRANTS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-grants.html"> SHOW GRANTS Statement </a> </dt> <dt id="ientry-idm46045171285056"> SHOW INDEX statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> </dt> <dt id="ientry-idm46045171283984"> SHOW KEYS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-index.html"> SHOW INDEX Statement </a> </dt> <dt id="ientry-idm46045170105008"> SHOW MASTER STATUS statement (no longer supported) (see SHOW BINARY LOG STATUS) </dt> <dt id="ientry-idm46045171281824"> SHOW OPEN TABLES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-open-tables.html"> SHOW OPEN TABLES Statement </a> </dt> <dt id="ientry-idm46045302891168"> show option </dt> <dd> <dl> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045327531584"> SHOW PARSE_TREE </dt> <dd> <dl> <dt> CMake WITH_SHOW_PARSE_TREE option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045170065744"> SHOW PARSE_TREE statement, <a class="indexterm" href="show-parse-tree.html"> SHOW PARSE_TREE Statement </a> </dt> <dt id="ientry-idm46045171280736"> SHOW PLUGINS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-plugins.html"> SHOW PLUGINS Statement </a> </dt> <dt id="ientry-idm46045171279664"> SHOW PRIVILEGES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-privileges.html"> SHOW PRIVILEGES Statement </a> </dt> <dt id="ientry-idm46045171278576"> SHOW PROCEDURE CODE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-procedure-code.html"> SHOW PROCEDURE CODE Statement </a> </dt> <dt id="ientry-idm46045171277488"> SHOW PROCEDURE STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-procedure-status.html"> SHOW PROCEDURE STATUS Statement </a> </dt> <dt id="ientry-idm46045171276400"> SHOW PROCESSLIST statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> </dt> <dt id="ientry-idm46045171275312"> SHOW PROFILE statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-profile.html"> SHOW PROFILE Statement </a> </dt> <dt id="ientry-idm46045171274240"> SHOW PROFILES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-profile.html"> SHOW PROFILE Statement </a> , <a class="indexterm" href="show-profiles.html"> SHOW PROFILES Statement </a> </dt> <dt id="ientry-idm46045171273168"> SHOW RELAYLOG EVENTS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-relaylog-events.html"> SHOW RELAYLOG EVENTS Statement </a> </dt> <dt id="ientry-idm46045171271008"> SHOW REPLICA STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-replica-status.html"> SHOW REPLICA STATUS Statement </a> </dt> <dt id="ientry-idm46045171272080"> SHOW REPLICAS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-replicas.html"> SHOW REPLICAS Statement </a> </dt> <dt id="ientry-idm46045082036384"> SHOW SCHEDULER STATUS, <a class="indexterm" href="events-status-info.html"> Event Scheduler Status </a> </dt> <dt id="ientry-idm46045170733056"> SHOW SCHEMAS statement, <a class="indexterm" href="show-databases.html"> SHOW DATABASES Statement </a> </dt> <dt id="ientry-idm46045087168704"> SHOW STATUS </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045171269920"> SHOW STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-status.html"> SHOW STATUS Statement </a> </dt> <dt id="ientry-idm46045170529376"> SHOW STORAGE ENGINES statement, <a class="indexterm" href="show-engines.html"> SHOW ENGINES Statement </a> </dt> <dt id="ientry-idm46045171267776"> SHOW TABLE STATUS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-table-status.html"> SHOW TABLE STATUS Statement </a> </dt> <dt id="ientry-idm46045171268848"> SHOW TABLES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-tables.html"> SHOW TABLES Statement </a> </dt> <dt id="ientry-idm46045171266688"> SHOW TRIGGERS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-triggers.html"> SHOW TRIGGERS Statement </a> </dt> <dt id="ientry-idm46045087218688"> SHOW VARIABLES </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045171265616"> SHOW VARIABLES statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> </dt> <dt id="ientry-idm46045251548432"> SHOW VIEW privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045171264528"> SHOW WARNINGS statement, <a class="indexterm" href="show.html"> SHOW Statements </a> , <a class="indexterm" href="show-warnings.html"> SHOW WARNINGS Statement </a> </dt> <dt id="ientry-idm46045081054736"> SHOW with WHERE, <a class="indexterm" href="information-schema.html"> INFORMATION_SCHEMA Tables </a> , <a class="indexterm" href="extended-show.html"> Extensions to SHOW Statements </a> </dt> <dt id="ientry-idm46045312772912"> show-create-skip-secondary-engine option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045100244304"> show-ignored-rows option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045144567664"> show-replica-auth-info option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-source.html#replication-optvars-masters"> Startup Options for Replication Source Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045144547824"> show-slave-auth-info option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-source.html#replication-optvars-masters"> Startup Options for Replication Source Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045310135008"> show-table-type option </dt> <dd> <dl> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045096794496"> show-temp-status option </dt> <dd> <dl> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045318308416"> show-warnings option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045310845792"> showing </dt> <dd> <dl> <dt> database information, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045269865776"> show_create_table_skip_secondary_engine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269829120"> show_create_table_verbosity system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269799312"> show_gipk_in_create_table_and_information_schema system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045250990592"> SHOW_ROUTINE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045328035472"> SHOW_SUPPRESSED_COMPILER_WARNINGS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045259983360"> shutdown, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> server, <a class="indexterm" href="server-shutdown.html"> The Server Shutdown Process </a> </dt> </dl> </dd> <dt id="ientry-idm46045221824240"> Shutdown </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045094425616"> SHUTDOWN command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045251540496"> SHUTDOWN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045168232752"> SHUTDOWN statement, <a class="indexterm" href="shutdown.html"> SHUTDOWN Statement </a> </dt> <dt id="ientry-idm46045316175616"> shutdown-timeout option </dt> <dd> <dl> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045326730752"> shutting down </dt> <dd> <dl> <dt> the server, <a class="indexterm" href="testing-server.html"> Testing the Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045220985632"> Shutting down </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045302546112"> SIGHUP signal </dt> <dd> <dl> <dt> log maintenance, <a class="indexterm" href="log-file-maintenance.html"> Server Log Maintenance </a> </dt> <dt> server response, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> , <a class="indexterm" href="flush.html"> FLUSH Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045318292512"> SIGINT signal </dt> <dd> <dl> <dt> client response, <a class="indexterm" href="unix-signal-response.html#client-signal-response"> Client Response to Signals </a> </dt> <dt> mysql client, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> server response, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> , <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> </dl> </dd> <dt id="ientry-idm46045318297168"> sigint-ignore option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045096047600"> sign option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045205694016"> SIGN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045175667120"> SIGNAL, <a class="indexterm" href="signal.html"> SIGNAL Statement </a> </dt> <dt id="ientry-idm46045302561808"> signal handling, <a class="indexterm" href="unix-signal-response.html"> Unix Signal Handling in MySQL </a> </dt> <dt id="ientry-idm46045302552032"> signals </dt> <dd> <dl> <dt> client response, <a class="indexterm" href="unix-signal-response.html#client-signal-response"> Client Response to Signals </a> </dt> <dt> restrictions, <a class="indexterm" href="condition-handling-restrictions.html"> Restrictions on Condition Handling </a> </dt> <dt> server response, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> </dt> </dl> </dd> <dt id="ientry-idm46045108741024"> SigNum, <a class="indexterm" href="mysql-cluster-shm-definition.html"> NDB Cluster Shared-Memory Connections </a> </dt> <dt id="ientry-idm46045302516400"> SIGPIPE signal </dt> <dd> <dl> <dt> client response, <a class="indexterm" href="unix-signal-response.html#client-signal-response"> Client Response to Signals </a> </dt> </dl> </dd> <dt id="ientry-idm46045302549088"> SIGTERM signal </dt> <dd> <dl> <dt> server response, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> , <a class="indexterm" href="shutdown.html"> SHUTDOWN Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045302544624"> SIGUSR1 signal </dt> <dd> <dl> <dt> log maintenance, <a class="indexterm" href="log-file-maintenance.html"> Server Log Maintenance </a> </dt> <dt> server response, <a class="indexterm" href="unix-signal-response.html#server-signal-response"> Server Response to Signals </a> , <a class="indexterm" href="flush.html"> FLUSH Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045184842560"> silent column changes, <a class="indexterm" href="silent-column-changes.html"> Silent Column Specification Changes </a> </dt> <dt id="ientry-idm46045320993616"> silent option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> perror, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045205678080"> SIN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045220573584"> single quote (\'), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045099804832"> single user mode (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> , <a class="indexterm" href="mysql-cluster-single-user-mode.html"> NDB Cluster Single User Mode </a> </dt> <dd> <dl> <dt> and ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045248028256"> single-factor authentication (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045312074000"> single-transaction option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045095155136"> single-user option </dt> <dd> <dl> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045092851344"> SINGLEUSER Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045226456128"> size of tables, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> <dt id="ientry-idm46045214483600"> sizes </dt> <dd> <dl> <dt> display, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045180813216"> SKIP LOCKED, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045323714240"> --skip option prefix, <a class="indexterm" href="option-modifiers.html"> Program Option Modifiers </a> </dt> <dt id="ientry-idm46045098325696"> skip-broken-objects option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045318265216"> skip-column-names option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045313445216"> skip-comments option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045106510656"> skip-config-file option </dt> <dd> <dl> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> </dl> </dd> <dt id="ientry-idm46045308433744"> skip-data option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045314982832"> skip-database option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045312483584"> skip-generated-invisible-primary-key option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045279316752"> skip-grant-tables option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045303925184"> skip-gtids option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045321556784"> skip-kill-mysqld option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045318250944"> skip-line-numbers option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045112874464"> skip-ndbcluster option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-program-options-mysqld"> MySQL Server Options for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045279263568"> skip-new option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045103078848"> skip-nodegroup option </dt> <dd> <dl> <dt> ndb_error_reporter, <a class="indexterm" href="mysql-cluster-programs-ndb-error-reporter.html"> ndb_error_reporter — NDB Error-Reporting Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045312221312"> skip-opt option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045143400032"> skip-replica-start option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045279242320"> skip-show-database option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045096032912"> skip-sign option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045143369664"> skip-slave-start option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045279213152"> skip-stack-trace option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045279066032"> skip-symbolic-links option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045321517328"> skip-syslog option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045318237632"> skip-system-command option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045098310880"> skip-table-check option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045098284528"> skip-unknown-objects option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045269767312"> skip_external_locking system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269732896"> skip_name_resolve system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269688784"> skip_networking system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045250966544"> SKIP_QUERY_REWRITE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045141872800"> skip_replica_start system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045223753328"> SKIP_SCAN, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-index-level"> Index-Level Optimizer Hints </a> </dt> <dt id="ientry-idm46045269658096"> skip_show_database system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045141839824"> skip_slave_start system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045221100112"> Slave has read all relay log; waiting for more updates </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045143339968"> slave-skip-errors option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045143305376"> slave-sql-verify-checksum option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-replica.html#replication-optvars-slaves"> Startup Options for Replica Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045086058896"> slave_allow_batching, <a class="indexterm" href="mysql-cluster-replication-starting.html"> Starting NDB Cluster Replication (Single Replication Channel) </a> </dt> <dt id="ientry-idm46045111008320"> slave_allow_batching system variable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045141809744"> slave_checkpoint_group system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141773056"> slave_checkpoint_period system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141738736"> slave_compressed_protocol system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141709872"> slave_exec_mode system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141677520"> slave_load_tmpdir system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045259532432"> slave_master_info table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045141648672"> slave_max_allowed_packet system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141609680"> slave_net_timeout system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045262011408"> Slave_open_temp_tables status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045141573872"> slave_parallel_type system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141541184"> slave_parallel_workers system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141505984"> slave_pending_jobs_size_max system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141467072"> slave_preserve_commit_order, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045259529456"> slave_relay_log_info table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045262004544"> Slave_rows_last_search_algorithm_used status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045141439536"> slave_skip_errors system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141373424"> slave_sql_verify_checksum system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141344480"> slave_transaction_retries system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141308160"> slave_type_conversions system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045259526496"> slave_worker_info table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045221819344"> Sleep </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045316151904"> sleep option </dt> <dd> <dl> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045190693776"> SLEEP(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045095626816"> sleep-time option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045098270320"> slice-id option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045316964720"> slow queries, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045257590816"> slow query log, <a class="indexterm" href="slow-query-log.html"> The Slow Query Log </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030779184"> slow shutdown, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045279199712"> slow-start-timeout option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045261997872"> Slow_launch_threads status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045269617456"> slow_launch_time system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259606432"> slow_log table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-log-tables"> Log System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045261991232"> Slow_queries status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045269583680"> slow_query_log system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269551744"> slow_query_log_file system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045214345248"> SMALLINT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045030771120"> snapshot, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045092029040"> SNAPSHOTEND (START BACKUP command), <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt id="ientry-idm46045092031616"> SNAPSHOTSTART (START BACKUP command), <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt id="ientry-idm46045323303712"> socket option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045269524448"> socket system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045073445136"> socket_instances table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-socket-instances-table.html"> The socket_instances Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068254128"> socket_summary_by_event_name table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-socket-summary-tables.html"> Socket Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045068251120"> socket_summary_by_instance table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-socket-summary-tables.html"> Socket Summary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045329794880"> Solaris </dt> <dd> <dl> <dt> installation, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> </dl> </dd> <dt id="ientry-idm46045329790480"> Solaris installation problems, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> <dt id="ientry-idm46045327175440"> Solaris troubleshooting, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt id="ientry-idm46045226023152"> Solaris x86_64 issues, <a class="indexterm" href="optimizing-innodb-diskio.html"> Optimizing InnoDB Disk I/O </a> </dt> <dt id="ientry-idm46045180019408"> SOME, <a class="indexterm" href="any-in-some-subqueries.html"> Subqueries with ANY, IN, or SOME </a> </dt> <dt id="ientry-idm46045030764064"> sort buffer, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045303110928"> sort option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045306819760"> sort-index option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045306805504"> sort-records option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-other-options.html"> Other myisamchk Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045306918736"> sort-recover option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045325212800"> sorting </dt> <dd> <dl> <dt> data, <a class="indexterm" href="sorting-rows.html"> Sorting Rows </a> </dt> <dt> grant tables, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> , <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> table rows, <a class="indexterm" href="sorting-rows.html"> Sorting Rows </a> </dt> </dl> </dd> <dt id="ientry-idm46045221487280"> Sorting for group </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221481680"> Sorting for order </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221476080"> Sorting index </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221470400"> Sorting result </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045307337504"> sort_buffer_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045269493552"> sort_buffer_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045307335312"> sort_key_blocks myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045261983632"> Sort_merge_passes status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261976880"> Sort_range status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261971504"> Sort_rows status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261966080"> Sort_scan status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045202979616"> SOUNDEX(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045202956560"> SOUNDS LIKE, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045030759872"> source, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324751984"> source (mysql client command), <a class="indexterm" href="batch-mode.html"> Using mysql in Batch Mode </a> , <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> </dt> <dt id="ientry-idm46045317698528"> source command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045329721136"> source distribution </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="source-installation.html"> Installing MySQL from Source </a> </dt> </dl> </dd> <dt id="ientry-idm46045221284896"> Source has sent all binlog to replica; waiting for more updates </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045313076560"> source-data option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045305421680"> source-keyring option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045305397984"> source-keyring-configuration-dir option </dt> <dd> <dl> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045193426192"> SOURCE_POS_WAIT(), <a class="indexterm" href="replication-functions-synchronization.html"> Position-Based Synchronization Functions </a> </dt> <dt id="ientry-idm46045139335984"> source_verify_checksum system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045030755200"> space ID, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045202946544"> SPACE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045030739680"> sparse file, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045212155136"> spatial data type </dt> <dd> <dl> <dt> SRID attribute, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045212236240"> spatial data types, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-gis"> Spatial Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045212235168"> spatial extensions in MySQL, <a class="indexterm" href="spatial-types.html"> Spatial Data Types </a> </dt> <dt id="ientry-idm46045198362752"> spatial functions, <a class="indexterm" href="spatial-function-reference.html"> Spatial Function Reference </a> </dt> <dt id="ientry-idm46045164422608"> SPATIAL index </dt> <dd> <dl> <dt> InnoDB predicate locks, <a class="indexterm" href="innodb-locking.html#innodb-predicate-locks"> Predicate Locks for Spatial Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045227503488"> SPATIAL indexes </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="spatial-index-optimization.html"> SPATIAL Index Optimization </a> </dt> </dl> </dd> <dt id="ientry-idm46045227382064"> spatial queries </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="column-indexes.html#column-indexes-spatial"> Spatial Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045211670336"> spatial values </dt> <dd> <dl> <dt> syntactically well-formed, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045196077616"> spatial window functions, <a class="indexterm" href="spatial-aggregate-functions.html"> Spatial Aggregate Functions </a> </dt> <dt id="ientry-idm46045230366304"> speed </dt> <dd> <dl> <dt> increasing with replication, <a class="indexterm" href="replication.html"> Replication </a> </dt> <dt> inserting, <a class="indexterm" href="insert-optimization.html"> Optimizing INSERT Statements </a> </dt> <dt> of queries, <a class="indexterm" href="select-optimization.html"> Optimizing SELECT Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045030734208"> spin, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045162606960"> spin lock polling, <a class="indexterm" href="innodb-performance-spin_lock_polling.html"> Configuring Spin Lock Polling </a> </dt> <dt id="ientry-idm46045116325984"> SpinMethod, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045140703120"> sporadic-binlog-dump-fail option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="replication-options-binary-log.html#replication-optvars-binlog"> Startup Options Used with Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045030727168"> Spring, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045233977712"> sp_firewall_group_delist() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233965568"> sp_firewall_group_enlist() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233846832"> sp_migrate_firewall_user_to_group() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233953744"> sp_reload_firewall_group_rules() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233893728"> sp_reload_firewall_rules() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233937152"> sp_set_firewall_group_mode() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233919584"> sp_set_firewall_group_mode_and_user() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045233874624"> sp_set_firewall_mode() MySQL Enterprise Firewall stored procedure, <a class="indexterm" href="firewall-reference.html#firewall-stored-routines"> MySQL Enterprise Firewall Stored Procedures </a> </dt> <dt id="ientry-idm46045335223888"> SQL, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="what-is-mysql.html"> What is MySQL? </a> </dt> </dl> </dd> <dt id="ientry-idm46045252397904"> SQL injection, <a class="indexterm" href="secure-client-programming.html#client-external-data-handling"> Handle External Data Properly </a> , <a class="indexterm" href="firewall.html"> MySQL Enterprise Firewall </a> , <a class="indexterm" href="xml-functions.html"> XML Functions </a> , <a class="indexterm" href="sql-prepared-statements.html"> Prepared Statements </a> </dt> <dt id="ientry-idm46045261679616"> SQL mode, <a class="indexterm" href="sql-mode.html"> Server SQL Modes </a> </dt> <dd> <dl> <dt> ALLOW_INVALID_DATES, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> and partitioning, <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> , <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-sql-mode.html"> Replication and Server SQL Mode </a> </dt> <dt> ANSI, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-combo"> Combination SQL Modes </a> </dt> <dt> ANSI_QUOTES, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> ERROR_FOR_DIVISION_BY_ZERO, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> HIGH_NOT_PRECEDENCE, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> IGNORE_SPACE, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_AUTO_VALUE_ON_ZERO, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_BACKSLASH_ESCAPES, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_DIR_IN_CREATE, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_ENGINE_SUBSTITUTION, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_UNSIGNED_SUBTRACTION, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_ZERO_DATE, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> NO_ZERO_IN_DATE, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> ONLY_FULL_GROUP_BY, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> , <a class="indexterm" href="group-by-handling.html"> MySQL Handling of GROUP BY </a> </dt> <dt> PAD_CHAR_TO_FULL_LENGTH, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> PIPES_AS_CONCAT, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> REAL_AS_FLOAT, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> strict, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> </dt> <dt> STRICT_ALL_TABLES, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> STRICT_TRANS_TABLES, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> TIME_TRUNCATE_FRACTIONAL, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt> TRADITIONAL, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-combo"> Combination SQL Modes </a> </dt> </dl> </dd> <dt id="ientry-idm46045124336096"> SQL node (NDB Cluster) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="mysql-cluster-basics.html"> NDB Cluster Core Concepts </a> </dt> </dl> </dd> <dt id="ientry-idm46045091807808"> SQL nodes (NDB Cluster), <a class="indexterm" href="mysql-cluster-mysqld.html"> MySQL Server Usage for NDB Cluster </a> </dt> <dt id="ientry-idm46045320184880"> SQL scripts, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> </dt> <dt id="ientry-idm46045081660784"> SQL SECURITY </dt> <dd> <dl> <dt> effect on privileges, <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> </dl> </dd> <dt id="ientry-idm46045177915248"> SQL statements </dt> <dd> <dl> <dt> replicas, <a class="indexterm" href="replication-statements-replica.html"> SQL Statements for Controlling Replica Servers </a> </dt> <dt> replication server, <a class="indexterm" href="replication-statements-group.html"> SQL Statements for Controlling Group Replication </a> </dt> <dt> replication sources, <a class="indexterm" href="replication-statements-source.html"> SQL Statements for Controlling Source Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045087254912"> SQL statements relating to NDB Cluster, <a class="indexterm" href="mysql-cluster-sql-statements.html"> Quick Reference: NDB Cluster SQL Statements </a> </dt> <dt id="ientry-idm46045333574352"> SQL-92 </dt> <dd> <dl> <dt> extensions to, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> </dl> </dd> <dt id="ientry-idm46045308687632"> sql-mode option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045030714480"> SQLState, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045269440704"> sql_auto_is_null system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045180719888"> SQL_BIG_RESULT </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045269400256"> sql_big_selects system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045180712656"> SQL_BUFFER_RESULT </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045269366688"> sql_buffer_result system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045180697792"> SQL_CACHE </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045228642368"> SQL_CALC_FOUND_ROWS, <a class="indexterm" href="limit-optimization.html"> LIMIT Query Optimization </a> </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045269340096"> sql_generate_invisible_primary_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045139307648"> sql_log_bin system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045269309136"> sql_log_off system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269277104"> sql_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045269229184"> sql_notes system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045180696304"> SQL_NO_CACHE </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045269201120"> sql_quote_show_create system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045138608432"> sql_replica_skip_counter, <a class="indexterm" href="replication-administration-skip.html#set-global-replica-sql-skip-counter"> Skipping Transactions With SET GLOBAL sql_replica_skip_counter </a> </dt> <dt id="ientry-idm46045141273760"> sql_replica_skip_counter system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045269173776"> sql_require_primary_key system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045317212032"> sql_safe_updates system variable, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045317209456"> sql_select_limit system variable, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045141230144"> sql_slave_skip_counter system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045180718400"> SQL_SMALL_RESULT </dt> <dd> <dl> <dt> SELECT modifier, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045269047008"> sql_warnings system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045205664464"> SQRT(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045214463504"> square brackets, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt id="ientry-idm46045212153648"> SRID attribute </dt> <dd> <dl> <dt> spatial data type, <a class="indexterm" href="spatial-type-overview.html"> Spatial Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045198057408"> SRID values </dt> <dd> <dl> <dt> handling by spatial functions, <a class="indexterm" href="spatial-function-argument-handling.html"> Argument Handling by Spatial Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045161768608"> SSD, <a class="indexterm" href="innodb-compression.html"> InnoDB Table and Page Compression </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045252799008"> SSH, <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> , <a class="indexterm" href="windows-and-ssh.html"> Connecting to MySQL Remotely from Windows with SSH </a> </dt> <dt id="ientry-idm46045323277712"> SSL, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> command options, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt> establishing connections, <a class="indexterm" href="using-encrypted-connections.html"> Configuring MySQL to Use Encrypted Connections </a> </dt> <dt> X.509 Basics, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> </dl> </dd> <dt id="ientry-idm46045329404896"> SSL library </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="source-ssl-library-configuration.html"> Configuring SSL Library Support </a> </dt> </dl> </dd> <dt id="ientry-idm46045320342192"> SSL options </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045174843808"> SSL related options </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-tls"> ALTER USER SSL/TLS Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-tls"> CREATE USER SSL/TLS Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045246476928"> ssl session cache </dt> <dd> <dl> <dt> enable session reuse, <a class="indexterm" href="reusing-ssl-sessions.html"> Reusing SSL Sessions </a> </dt> </dl> </dd> <dt id="ientry-idm46045246475440"> ssl session data </dt> <dd> <dl> <dt> enable session reuse, <a class="indexterm" href="reusing-ssl-sessions.html"> Reusing SSL Sessions </a> </dt> </dl> </dd> <dt id="ientry-idm46045323175872"> ssl-ca option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323157200"> ssl-capath option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323138640"> ssl-cert option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323125216"> ssl-cipher option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323107392"> ssl-crl option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323091536"> ssl-crlpath option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323066704"> ssl-fips-mode option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045323038672"> ssl-key option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045323015440"> ssl-mode option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045322953488"> ssl-session-data option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045322933360"> ssl-session-data-continue-on-failed-reuse option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt id="ientry-idm46045261955104"> Ssl_accepts status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261960512"> Ssl_accept_renegotiates status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045269021200"> ssl_ca system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261949552"> Ssl_callback_cache_hits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268992656"> ssl_capath system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268964384"> ssl_cert system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261944176"> Ssl_cipher status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268933360"> ssl_cipher system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261938704"> Ssl_cipher_list status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261932384"> Ssl_client_connects status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261926928"> Ssl_connect_renegotiates status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268879328"> ssl_crl system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268851120"> ssl_crlpath system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261921280"> Ssl_ctx_verify_depth status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261915792"> Ssl_ctx_verify_mode status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261910368"> Ssl_default_timeout status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261904944"> Ssl_finished_accepts status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261899424"> Ssl_finished_connects status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268822880"> ssl_fips_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268774000"> ssl_key system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261893936"> Ssl_server_not_after status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261886368"> Ssl_server_not_before status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261838208"> Ssl_sessions_reused status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261880848"> Ssl_session_cache_hits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261875376"> Ssl_session_cache_misses status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261869792"> Ssl_session_cache_mode status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268744736"> ssl_session_cache_mode system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261860336"> Ssl_session_cache_overflows status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261854816"> Ssl_session_cache_size status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261849360"> Ssl_session_cache_timeout status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268700512"> ssl_session_cache_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261843792"> Ssl_session_cache_timeouts status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045317690320"> ssl_session_data_print command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045261831504"> Ssl_used_session_cache_entries status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261825984"> Ssl_verify_depth status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261820640"> Ssl_verify_mode status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261811168"> Ssl_version status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045100790480"> staging-tries option </dt> <dd> <dl> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045279103504"> standalone option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045149438016"> Standard Monitor, <a class="indexterm" href="innodb-monitor-types.html"> InnoDB Monitor Types </a> , <a class="indexterm" href="innodb-standard-monitor.html"> InnoDB Standard Monitor and Lock Monitor Output </a> , <a class="indexterm" href="innodb-standard-monitor.html#innodb-standard-monitor-output-sections"> Standard Monitor Output Sections </a> </dt> <dt id="ientry-idm46045333572864"> Standard SQL </dt> <dd> <dl> <dt> differences from, <a class="indexterm" href="differences-from-ansi.html"> MySQL Differences from Standard SQL </a> , <a class="indexterm" href="grant.html#grant-mysql-vs-standard-sql"> MySQL and Standard SQL Versions of GRANT </a> </dt> <dt> extensions to, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> , <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045333576912"> standards compatibility, <a class="indexterm" href="compatibility.html"> MySQL Standards Compliance </a> </dt> <dt id="ientry-idm46045178109280"> START </dt> <dd> <dl> <dt> XA transactions, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045092118144"> START BACKUP </dt> <dd> <dl> <dt> NOWAIT, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt> SNAPSHOTEND, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt> SNAPSHOTSTART, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt> syntax, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt> WAIT COMPLETED, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt> WAIT STARTED, <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045094416480"> START command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045176853024"> START GROUP_REPLICATION, <a class="indexterm" href="start-group-replication.html"> START GROUP_REPLICATION Statement </a> </dt> <dt id="ientry-idm46045177066176"> START REPLICA, <a class="indexterm" href="start-replica.html"> START REPLICA Statement </a> </dt> <dt id="ientry-idm46045178890640"> START TRANSACTION, <a class="indexterm" href="commit.html"> START TRANSACTION, COMMIT, and ROLLBACK Statements </a> </dt> <dt id="ientry-idm46045303846496"> start-datetime option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045308166320"> start-page option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045303825360"> start-position option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045114105728"> StartConnectBackoffMaxTime, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045114836176"> StartFailRetryDelay, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117829504"> StartFailureTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045333174496"> starting </dt> <dd> <dl> <dt> comments, <a class="indexterm" href="ansi-diff-comments.html"> '--' as the Start of a Comment </a> </dt> <dt> mysqld, <a class="indexterm" href="changing-mysql-user.html"> How to Run MySQL as a Normal User </a> </dt> <dt> the server, <a class="indexterm" href="data-directory-initialization.html#data-directory-initialization-overview"> Data Directory Initialization Overview </a> </dt> <dt> the server automatically, <a class="indexterm" href="automatic-start.html"> Starting and Stopping MySQL Automatically </a> </dt> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045254133488"> Starting many servers, <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> </dt> <dt id="ientry-idm46045117807616"> StartNoNodeGroupTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117875392"> StartPartialTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117853664"> StartPartitionedTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045030699456"> startup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045093258656"> STARTUP Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045324167920"> startup options </dt> <dd> <dl> <dt> default, <a class="indexterm" href="option-files.html"> Using Option Files </a> </dt> <dt> replication channel, <a class="indexterm" href="channels-startup-options.html"> Startup Options and Replication Channels </a> </dt> </dl> </dd> <dt id="ientry-idm46045320147568"> startup parameters, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045116842448"> StartupStatusReportFrequency, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045101918464"> state-dir option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045030695280"> statement interceptor, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045068856048"> statement sampling, <a class="indexterm" href="performance-schema-statement-summary-tables.html"> Statement Summary Tables </a> </dt> <dt id="ientry-idm46045320160000"> statement termination </dt> <dd> <dl> <dt> Control+C, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="with.html#common-table-expressions-recursion-limits"> Limiting Common Table Expression Recursion </a> </dt> </dl> </dd> <dt id="ientry-idm46045138510672"> statement-based replication, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> advantages, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> <dt> disadvantages, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> <dt> unsafe statements, <a class="indexterm" href="replication-sbr-rbr.html"> Advantages and Disadvantages of Statement-Based and Row-Based Replication </a> </dt> </dl> </dd> <dt id="ientry-idm46045249591328"> statements </dt> <dd> <dl> <dt> compound, <a class="indexterm" href="sql-compound-statements.html"> Compound Statement Syntax </a> </dt> <dt> CREATE USER, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> DROP USER, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> GRANT, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> replicas, <a class="indexterm" href="replication-statements-replica.html"> SQL Statements for Controlling Replica Servers </a> </dt> <dt> replication server, <a class="indexterm" href="replication-statements-group.html"> SQL Statements for Controlling Group Replication </a> </dt> <dt> replication sources, <a class="indexterm" href="replication-statements-source.html"> SQL Statements for Controlling Source Servers </a> </dt> <dt> REVOKE, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> </dl> </dd> <dt id="ientry-idm46045062166208"> statements_with_errors_or_warnings view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-errors-or-warnings.html"> The statements_with_errors_or_warnings and x$statements_with_errors_or_warnings Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062134736"> statements_with_full_table_scans view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-full-table-scans.html"> The statements_with_full_table_scans and x$statements_with_full_table_scans Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062095344"> statements_with_runtimes_in_95th_percentile view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-runtimes-in-95th-percentile.html"> The statements_with_runtimes_in_95th_percentile and x$statements_with_runtimes_in_95th_percentile Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062050016"> statements_with_sorting view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-sorting.html"> The statements_with_sorting and x$statements_with_sorting Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062012784"> statements_with_temp_tables view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-temp-tables.html"> The statements_with_temp_tables and x$statements_with_temp_tables Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062229072"> statement_analysis view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statement-analysis.html"> The statement_analysis and x$statement_analysis Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045199264224"> STATEMENT_DIGEST(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045199245984"> STATEMENT_DIGEST_TEXT(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045268660528"> statement_id system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045061216480"> statement_performance_analyzer() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statement-performance-analyzer.html"> The statement_performance_analyzer() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045250808432"> static privileges, <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> </dt> <dt id="ientry-idm46045221814416"> Statistics </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045221458624"> statistics, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045078684800"> STATISTICS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-statistics-table.html"> The INFORMATION_SCHEMA STATISTICS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045093024240"> STATISTICS Events (NDB Cluster), <a class="indexterm" href="mysql-cluster-log-events.html"> NDB Cluster Log Events </a> </dt> <dt id="ientry-idm46045307766544"> stats option </dt> <dd> <dl> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045307334224"> stats_method myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045169283952"> status </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="show-table-status.html"> SHOW TABLE STATUS Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045317681120"> status command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> <dt> results, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045094406832"> STATUS command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045310059040"> status option </dt> <dd> <dl> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045263592848"> status variable </dt> <dd> <dl> <dt> Aborted_clients, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Aborted_connects, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Acl_cache_items_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Audit_log_current_size, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_direct_writes, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_events, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_events_filtered, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_events_lost, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_events_written, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_event_max_drop_size, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_total_size, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Audit_log_write_waits, <a class="indexterm" href="audit-log-reference.html#audit-log-status-variables"> Audit Log Status Variables </a> </dt> <dt> Authentication_ldap_sasl_supported_methods, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Binlog_cache_disk_use, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Binlog_cache_use, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Binlog_stmt_cache_disk_use, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Binlog_stmt_cache_use, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Bytes_received, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Bytes_sent, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Caching_sha2_password_rsa_public_key, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Compression, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Compression_algorithm, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Compression_level, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connections, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_control_delay_generated, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-status-variables"> Connection-Control Status Variables </a> </dt> <dt> Connection_errors_accept, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_errors_internal, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_errors_max_connections, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_errors_peer_address, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_errors_select, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Connection_errors_tcpwrap, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Created_tmp_disk_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Created_tmp_files, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Created_tmp_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_ca, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_capath, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_cert, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_cipher, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_ciphersuites, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_crl, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_crlpath, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_key, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Current_tls_version, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Delayed_errors, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Delayed_insert_threads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Delayed_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Deprecated_use_i_s_processlist_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Deprecated_use_i_s_processlist_last_timestamp, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> dragnet.Status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Error_log_buffered_bytes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Error_log_buffered_events, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Error_log_expired_events, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Error_log_latest_write, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Firewall_access_denied, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt> Firewall_access_granted, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt> Firewall_access_suspicious, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt> Firewall_cached_entries, <a class="indexterm" href="firewall-reference.html#firewall-status-variables"> MySQL Enterprise Firewall Status Variables </a> </dt> <dt> Flush_commands, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Global_connection_memory, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Gr_all_consensus_proposals_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_all_consensus_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_certification_garbage_collector_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_certification_garbage_collector_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_consensus_bytes_received_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_consensus_bytes_sent_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_control_messages_sent_bytes_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_control_messages_sent_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_control_messages_sent_roundtrip_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_data_messages_sent_bytes_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_data_messages_sent_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_data_messages_sent_roundtrip_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_empty_consensus_proposals_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_extended_consensus_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_last_consensus_end_timestamp, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_total_messages_sent_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_after_sync_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_after_sync_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_after_termination_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_after_termination_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_before_begin_count, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Gr_transactions_consistency_before_begin_time_sum, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> Handler_commit, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_delete, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_discover, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Handler_external_lock, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_mrr_init, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_prepare, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_first, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_key, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_last, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_next, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_prev, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_rnd, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_read_rnd_next, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_rollback, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_savepoint, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_savepoint_rollback, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_update, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Handler_write, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_bytes_data, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_bytes_dirty, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_dump_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_load_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_data, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_dirty, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_flushed, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_free, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_latched, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_misc, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_pages_total, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_reads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_read_ahead, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_read_ahead_evicted, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_read_ahead_rnd, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_read_requests, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_resize_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_resize_status_code, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_resize_status_progress, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_wait_free, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_buffer_pool_write_requests, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_fsyncs, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_pending_fsyncs, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_pending_reads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_pending_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_read, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_reads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_data_written, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_dblwr_pages_written, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_dblwr_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_have_atomic_builtins, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_log_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_log_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_log_write_requests, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_num_open_files, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_os_log_fsyncs, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_os_log_pending_fsyncs, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_os_log_pending_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_os_log_written, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_pages_created, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_pages_read, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_pages_written, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_page_size, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_capacity_resized, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_checkpoint_lsn, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_current_lsn, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_enabled, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_flushed_to_disk_lsn, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_logical_size, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_physical_size, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_read_only, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_resize_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_redo_log_uuid, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_rows_deleted, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_rows_inserted, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_rows_read, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_rows_updated, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_row_lock_current_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_row_lock_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_row_lock_time_avg, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_row_lock_time_max, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_row_lock_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_system_rows_deleted, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_system_rows_inserted, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_system_rows_read, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_system_rows_updated, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_truncated_status_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_undo_tablespaces_active, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_undo_tablespaces_explicit, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_undo_tablespaces_implicit, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Innodb_undo_tablespaces_total, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_blocks_not_flushed, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_blocks_unused, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_blocks_used, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_reads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_read_requests, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_writes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Key_write_requests, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Last_query_cost, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Last_query_partial_plans, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Locked_connects, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Max_execution_time_exceeded, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Max_execution_time_set, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Max_execution_time_set_failed, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Max_used_connections, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Max_used_connections_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> mecab_charset, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_deferred_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_deferred_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_deferred_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_deferred_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_forced_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_forced_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_forced_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_forced_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_unforced_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_unforced_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_unforced_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_adaptive_send_unforced_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_received_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_received_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_received_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_received_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_sent_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_sent_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_sent_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_bytes_sent_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_bytes_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_bytes_count_injector, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_data_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_data_count_injector, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_nondata_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_event_nondata_count_injector, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pk_op_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pk_op_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pk_op_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pk_op_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pruned_scan_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pruned_scan_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pruned_scan_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_pruned_scan_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_range_scan_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_range_scan_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_range_scan_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_range_scan_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_read_row_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_read_row_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_read_row_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_read_row_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_scan_batch_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_scan_batch_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_scan_batch_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_scan_batch_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_table_scan_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_table_scan_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_table_scan_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_table_scan_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_abort_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_abort_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_abort_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_abort_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_close_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_close_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_close_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_close_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_commit_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_commit_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_commit_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_commit_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_local_read_row_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_local_read_row_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_local_read_row_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_local_read_row_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_start_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_start_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_start_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_trans_start_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_uk_op_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_uk_op_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_uk_op_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_uk_op_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_exec_complete_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_exec_complete_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_exec_complete_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_exec_complete_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_meta_request_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_meta_request_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_meta_request_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_meta_request_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_nanos_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_nanos_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_nanos_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_nanos_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_scan_result_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_scan_result_count_replica, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_scan_result_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_api_wait_scan_result_count_slave, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_cluster_node_id, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_config_from_host, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_config_from_port, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_config_generation, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_epoch, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_epoch2, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_epoch2_trans, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_epoch_trans, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_max, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_max_del_win, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_max_del_win_ins, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_max_ins, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_fn_old, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_last_conflict_epoch, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_last_stable_epoch, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_reflected_op_discard_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_reflected_op_prepare_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_refresh_op_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_trans_conflict_commit_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_trans_detect_iter_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_trans_reject_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_trans_row_conflict_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_conflict_trans_row_reject_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_epoch_delete_delete_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_execute_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_last_commit_epoch_server, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_last_commit_epoch_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_metadata_detected_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_metadata_excluded_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_metadata_synced_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_number_of_data_nodes, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_pruned_scan_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_pushed_queries_defined, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_pushed_queries_dropped, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_pushed_queries_executed, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_pushed_reads, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_replica_max_replicated_epoch, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_scan_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_slave_max_replicated_epoch, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_system_name, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Ndb_trans_hint_count_session, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> Not_flushed_delayed_rows, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ongoing_anonymous_gtid_violating_transaction_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ongoing_anonymous_transaction_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ongoing_automatic_gtid_violating_transaction_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Opened_files, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Opened_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Opened_table_definitions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Open_files, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Open_streams, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Open_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Open_table_definitions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Performance_schema_accounts_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_cond_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_cond_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_digest_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_file_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_file_handles_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_file_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_hosts_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_index_stat_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_locker_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_memory_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_metadata_lock_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_meter_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_metric_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_mutex_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_mutex_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_nested_statement_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_prepared_statements_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_program_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_rwlock_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_rwlock_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_session_connect_attrs_longest_seen, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_session_connect_attrs_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_socket_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_socket_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_stage_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_statement_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_table_handles_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_table_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_table_lock_stat_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_thread_classes_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_thread_instances_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Performance_schema_users_lost, <a class="indexterm" href="performance-schema-status-variables.html"> Performance Schema Status Variables </a> </dt> <dt> Prepared_stmt_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Queries, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Questions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Replica_open_temp_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Resource_group_supported, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rewriter_number_loaded_rules, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt> Rewriter_number_reloads, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt> Rewriter_number_rewritten_queries, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt> Rewriter_reload_error, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-status-variables"> Rewriter Query Rewrite Plugin Status Variables </a> </dt> <dt> Rpl_semi_sync_master_clients, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_net_avg_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_net_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_net_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_no_times, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_no_tx, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_timefunc_failures, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_tx_avg_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_tx_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_tx_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_wait_pos_backtraverse, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_wait_sessions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_master_yes_tx, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_replica_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_slave_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_clients, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_net_avg_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_net_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_net_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_no_times, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_no_tx, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_timefunc_failures, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_tx_avg_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_tx_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_tx_wait_time, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_wait_pos_backtraverse, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_wait_sessions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rpl_semi_sync_source_yes_tx, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Rsa_public_key, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Secondary_engine_execution_count, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Select_full_join, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Select_full_range_join, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Select_range, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Select_range_check, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Select_scan, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Slave_open_temp_tables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Slave_rows_last_search_algorithm_used, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Slow_launch_threads, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Slow_queries, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Sort_merge_passes, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Sort_range, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Sort_rows, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Sort_scan, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_accepts, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_accept_renegotiates, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_callback_cache_hits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_cipher, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_cipher_list, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_client_connects, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_connect_renegotiates, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_ctx_verify_depth, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_ctx_verify_mode, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_default_timeout, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_finished_accepts, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_finished_connects, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_server_not_after, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_server_not_before, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_sessions_reused, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_hits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_misses, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_mode, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_overflows, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_size, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_timeout, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_session_cache_timeouts, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_used_session_cache_entries, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_verify_depth, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_verify_mode, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Ssl_version, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Table_locks_immediate, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Table_locks_waited, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Table_open_cache_hits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Table_open_cache_misses, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Table_open_cache_overflows, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Tc_log_max_pages_used, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Tc_log_page_siz, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Tc_log_page_waits, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> telemetry.live_sessions, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Telemetry_metrics_supported, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Telemetry_traces_supported, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Threads_cached, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Threads_connected, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Threads_created, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Threads_running, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Tls_library_version, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Tls_sni_server_name, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Uptime, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> Uptime_since_flush_status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt> validate_password.dictionary_file_last_parsed, <a class="indexterm" href="validate-password-options-variables.html#validate-password-status-variables"> Password Validation Component Status Variables </a> </dt> <dt> validate_password.dictionary_file_words_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-status-variables"> Password Validation Component Status Variables </a> </dt> <dt> validate_password_dictionary_file_last_parsed, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-status-variables"> Password Validation Plugin Status Variables </a> </dt> <dt> validate_password_dictionary_file_words_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-status-variables"> Password Validation Plugin Status Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045263608544"> status variables, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> , <a class="indexterm" href="show-status.html"> SHOW STATUS Statement </a> </dt> <dd> <dl> <dt> Group Replication, <a class="indexterm" href="group-replication-status-variables.html"> Group Replication Status Variables </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-status-variables"> NDB Cluster Status Variables </a> </dt> <dt> NDB Cluster replication conflict detection, <a class="indexterm" href="mysql-cluster-replication-conflict-resolution.html#conflict-detection-statvars"> Conflict Detection Status Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045192913088"> STD(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192896016"> STDDEV(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192876368"> STDDEV_POP(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192858064"> STDDEV_SAMP(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045096021728"> stdio option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045030649968"> stemming, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045094394752"> STOP command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045176807312"> STOP GROUP_REPLICATION, <a class="indexterm" href="stop-group-replication.html"> STOP GROUP_REPLICATION Statement </a> </dt> <dt id="ientry-idm46045176922928"> STOP REPLICA, <a class="indexterm" href="stop-replica.html"> STOP REPLICA Statement </a> </dt> <dt id="ientry-idm46045303808544"> stop-datetime option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045303789760"> stop-never option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045303756352"> stop-never-slave-server-id option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045303740560"> stop-position option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045117969504"> StopOnError, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045326591968"> stopping </dt> <dd> <dl> <dt> the server, <a class="indexterm" href="automatic-start.html"> Starting and Stopping MySQL Automatically </a> </dt> </dl> </dd> <dt id="ientry-idm46045030643856"> stopword, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045201549024"> stopword list </dt> <dd> <dl> <dt> user-defined, <a class="indexterm" href="fulltext-stopwords.html#fulltext-stopwords-stopwords-for-myisam-search-indexes"> Stopwords for MyISAM Search Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045201599184"> stopwords, <a class="indexterm" href="fulltext-stopwords.html"> Full-Text Stopwords </a> </dt> <dt id="ientry-idm46045167491728"> storage engine, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> ARCHIVE, <a class="indexterm" href="archive-storage-engine.html"> The ARCHIVE Storage Engine </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> </dt> <dt> PERFORMANCE_SCHEMA, <a class="indexterm" href="performance-schema.html"> MySQL Performance Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045148722000"> storage engines </dt> <dd> <dl> <dt> and application feature requirements, <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> <dt> applications supported, <a class="indexterm" href="mysql-cluster-ndb-innodb-workloads.html"> NDB and InnoDB Workloads </a> </dt> <dt> availability, <a class="indexterm" href="mysql-cluster-compared.html"> MySQL Server Using InnoDB Compared with NDB Cluster </a> </dt> <dt> choosing, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> </dt> <dt> differences between NDB and InnoDB, <a class="indexterm" href="mysql-cluster-ndb-innodb-engines.html"> Differences Between the NDB and InnoDB Storage Engines </a> </dt> <dt> usage scenarios, <a class="indexterm" href="mysql-cluster-ndb-innodb-usage.html"> NDB and InnoDB Feature Usage Summary </a> </dt> </dl> </dd> <dt id="ientry-idm46045108432000"> storage nodes - see data nodes, ndbd (see <a href="#ientry-idm46045116448400"> data nodes, ndbd </a> ) </dt> <dt id="ientry-idm46045107289248"> storage nodes - see data nodes, ndbd, ndbmtd (see <a href="#ientry-idm46045116448400"> data nodes, ndbd, ndbmtd </a> ) </dt> <dt id="ientry-idm46045210772800"> storage requirements </dt> <dd> <dl> <dt> data types, <a class="indexterm" href="storage-requirements.html"> Data Type Storage Requirements </a> </dt> <dt> date data types, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-date-time"> Date and Time Type Storage Requirements </a> </dt> <dt> InnoDB tables, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-innodb"> InnoDB Table Storage Requirements </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-ndb"> NDB Table Storage Requirements </a> </dt> <dt> numeric data types, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-numeric"> Numeric Type Storage Requirements </a> </dt> <dt> spatial data types, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-gis"> Spatial Type Storage Requirements </a> </dt> <dt> string data types, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> <dt> time data types, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-date-time"> Date and Time Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045226856192"> storage space </dt> <dd> <dl> <dt> minimizing, <a class="indexterm" href="data-size.html"> Optimizing Data Size </a> </dt> </dl> </dd> <dt id="ientry-idm46045082561088"> stored functions, <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> <dt id="ientry-idm46045030626128"> stored generated column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030621136"> stored object, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045081661872"> stored object privileges, <a class="indexterm" href="stored-objects-security.html"> Stored Object Access Control </a> </dt> <dt id="ientry-idm46045082643312"> stored objects, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> </dt> <dd> <dl> <dt> orphan, <a class="indexterm" href="stored-objects-security.html#stored-objects-security-orphan-objects"> Orphan Stored Objects </a> </dt> </dl> </dd> <dt id="ientry-idm46045082563648"> stored procedures, <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> <dt id="ientry-idm46045030619040"> stored program, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045249267344"> stored programs, <a class="indexterm" href="sql-compound-statements.html"> Compound Statement Syntax </a> , <a class="indexterm" href="stored-objects.html"> Stored Objects </a> </dt> <dd> <dl> <dt> reparsing, <a class="indexterm" href="statement-caching.html"> Caching of Prepared Statements and Stored Programs </a> </dt> <dt> roles, <a class="indexterm" href="roles.html#roles-activating"> Activating Roles </a> </dt> </dl> </dd> <dt id="ientry-idm46045030616944"> stored routine, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045135492080"> stored routines, <a class="indexterm" href="stored-objects.html"> Stored Objects </a> , <a class="indexterm" href="stored-routines.html"> Using Stored Routines </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> </dt> <dt> LAST_INSERT_ID(), <a class="indexterm" href="stored-routines-last-insert-id.html"> Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() </a> </dt> <dt> metadata, <a class="indexterm" href="stored-routines-metadata.html"> Stored Routine Metadata </a> </dt> <dt> restrictions, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> </dl> </dd> <dt id="ientry-idm46045268636800"> stored_program_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268602480"> stored_program_definition_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045229392944"> STRAIGHT_JOIN, <a class="indexterm" href="outer-join-optimization.html"> Outer Join Optimization </a> , <a class="indexterm" href="using-explain.html"> Optimizing Queries with EXPLAIN </a> , <a class="indexterm" href="explain-output.html#explain-output-interpretation"> EXPLAIN Output Interpretation </a> , <a class="indexterm" href="join.html"> JOIN Clause </a> , <a class="indexterm" href="explain.html#explain-execution-plan"> Obtaining Execution Plan Information </a> </dt> <dd> <dl> <dt> join type, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> <dt> SELECT modifier, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045202515664"> STRCMP(), <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045030614832"> strict mode, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045261602224"> strict SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> </dt> <dt id="ientry-idm46045308343696"> strict-check option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045261324496"> STRICT_ALL_TABLES SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045261619280"> STRICT_TRANS_TABLES SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045211383360"> string </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045215313328"> string collating, <a class="indexterm" href="string-collating.html"> String Collating Support for Complex Character Sets </a> </dt> <dt id="ientry-idm46045202653600"> string comparison functions, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045202651072"> string comparison operators, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045202630624"> string comparisons </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="string-comparison-functions.html"> String Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045220626448"> string concatenation, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045213097792"> string data types, <a class="indexterm" href="string-types.html"> String Data Types </a> </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045203861616"> string functions, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045220608656"> string literal introducer, <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="charset-literal.html"> Character String Literal Character Set and Collation </a> </dt> <dt id="ientry-idm46045220636320"> string literals, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045203859088"> string operators, <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045213098864"> string types, <a class="indexterm" href="string-types.html"> String Data Types </a> </dt> <dt id="ientry-idm46045119581248"> StringMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045220635248"> strings </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt> escape sequences, <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt> nondelimited, <a class="indexterm" href="date-and-time-literals.html#date-and-time-string-numeric-literals"> String and Numeric Literals in Date and Time Context </a> </dt> <dt> repertoire, <a class="indexterm" href="charset-repertoire.html"> Character Set Repertoire </a> </dt> </dl> </dd> <dt id="ientry-idm46045222511184"> striping </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="disk-issues.html"> Optimizing Disk I/O </a> </dt> </dl> </dd> <dt id="ientry-idm46045204465248"> STR_TO_DATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045197144208"> ST_Area(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045197620176"> ST_AsBinary(), <a class="indexterm" href="gis-format-conversion-functions.html"> Geometry Format Conversion Functions </a> </dt> <dt id="ientry-idm46045196155456"> ST_AsGeoJSON(), <a class="indexterm" href="spatial-geojson-functions.html"> Spatial GeoJSON Functions </a> </dt> <dt id="ientry-idm46045197600720"> ST_AsText(), <a class="indexterm" href="gis-format-conversion-functions.html"> Geometry Format Conversion Functions </a> </dt> <dt id="ientry-idm46045196949904"> ST_Buffer(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196875776"> ST_Buffer_Strategy(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045197105808"> ST_Centroid(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045196062240"> ST_Collect(), <a class="indexterm" href="spatial-aggregate-functions.html"> Spatial Aggregate Functions </a> </dt> <dt id="ientry-idm46045196594192"> ST_Contains(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196843216"> ST_ConvexHull(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196583088"> ST_Crosses(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196826352"> ST_Difference(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045197547632"> ST_Dimension(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045196559312"> ST_Disjoint(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196549056"> ST_Distance(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045195989344"> ST_Distance_Sphere(), <a class="indexterm" href="spatial-convenience-functions.html"> Spatial Convenience Functions </a> </dt> <dt id="ientry-idm46045197305024"> ST_EndPoint(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045197535264"> ST_Envelope(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045196516064"> ST_Equals(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045197082512"> ST_ExteriorRing(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045196501184"> ST_FrechetDistance(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196225648"> ST_GeoHash(), <a class="indexterm" href="spatial-geohash-functions.html"> Spatial Geohash Functions </a> </dt> <dt id="ientry-idm46045197995056"> ST_GeomCollFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197856352"> ST_GeomCollFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197993984"> ST_GeometryCollectionFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197855280"> ST_GeometryCollectionFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197977520"> ST_GeometryFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197842640"> ST_GeometryFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197021200"> ST_GeometryN(), <a class="indexterm" href="gis-geometrycollection-property-functions.html"> GeometryCollection Property Functions </a> </dt> <dt id="ientry-idm46045197515872"> ST_GeometryType(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045078574096"> ST_GEOMETRY_COLUMNS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-st-geometry-columns-table.html"> The INFORMATION_SCHEMA ST_GEOMETRY_COLUMNS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045196122832"> ST_GeomFromGeoJSON(), <a class="indexterm" href="spatial-geojson-functions.html"> Spatial GeoJSON Functions </a> </dt> <dt id="ientry-idm46045197978592"> ST_GeomFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197843712"> ST_GeomFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045196473024"> ST_HausdorffDistance(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045197067584"> ST_InteriorRingN(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045196812576"> ST_Intersection(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196436032"> ST_Intersects(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045197291424"> ST_IsClosed(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045197503600"> ST_IsEmpty(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045197493008"> ST_IsSimple(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045195946416"> ST_IsValid(), <a class="indexterm" href="spatial-convenience-functions.html"> Spatial Convenience Functions </a> </dt> <dt id="ientry-idm46045196209888"> ST_LatFromGeoHash(), <a class="indexterm" href="spatial-geohash-functions.html"> Spatial Geohash Functions </a> </dt> <dt id="ientry-idm46045197401856"> ST_Latitude(), <a class="indexterm" href="gis-point-property-functions.html"> Point Property Functions </a> </dt> <dt id="ientry-idm46045197256848"> ST_Length(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045197966544"> ST_LineFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197831776"> ST_LineFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045196798016"> ST_LineInterpolatePoint(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196769456"> ST_LineInterpolatePoints(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045197965472"> ST_LineStringFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197830704"> ST_LineStringFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045196195872"> ST_LongFromGeoHash(), <a class="indexterm" href="spatial-geohash-functions.html"> Spatial Geohash Functions </a> </dt> <dt id="ientry-idm46045197380784"> ST_Longitude(), <a class="indexterm" href="gis-point-property-functions.html"> Point Property Functions </a> </dt> <dt id="ientry-idm46045195921680"> ST_MakeEnvelope(), <a class="indexterm" href="spatial-convenience-functions.html"> Spatial Convenience Functions </a> </dt> <dt id="ientry-idm46045197953904"> ST_MLineFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197819024"> ST_MLineFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197941104"> ST_MPointFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197806224"> ST_MPointFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197928400"> ST_MPolyFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197793552"> ST_MPolyFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197952832"> ST_MultiLineStringFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197817952"> ST_MultiLineStringFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197940032"> ST_MultiPointFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197805152"> ST_MultiPointFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197927328"> ST_MultiPolygonFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197792480"> ST_MultiPolygonFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197007696"> ST_NumGeometries(), <a class="indexterm" href="gis-geometrycollection-property-functions.html"> GeometryCollection Property Functions </a> </dt> <dt id="ientry-idm46045197049808"> ST_NumInteriorRing(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045197050880"> ST_NumInteriorRings(), <a class="indexterm" href="gis-polygon-property-functions.html"> Polygon and MultiPolygon Property Functions </a> </dt> <dt id="ientry-idm46045197202464"> ST_NumPoints(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045196426192"> ST_Overlaps(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196180592"> ST_PointFromGeoHash(), <a class="indexterm" href="spatial-geohash-functions.html"> Spatial Geohash Functions </a> </dt> <dt id="ientry-idm46045197918176"> ST_PointFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197783440"> ST_PointFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197188512"> ST_PointN(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045197905312"> ST_PolyFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197770720"> ST_PolyFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045197904240"> ST_PolygonFromText(), <a class="indexterm" href="gis-wkt-functions.html"> Functions That Create Geometry Values from WKT Values </a> </dt> <dt id="ientry-idm46045197769648"> ST_PolygonFromWKB(), <a class="indexterm" href="gis-wkb-functions.html"> Functions That Create Geometry Values from WKB Values </a> </dt> <dt id="ientry-idm46045195886192"> ST_Simplify(), <a class="indexterm" href="spatial-convenience-functions.html"> Spatial Convenience Functions </a> </dt> <dt id="ientry-idm46045078544016"> ST_SPATIAL_REFERENCE_SYSTEMS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-st-spatial-reference-systems-table.html"> The INFORMATION_SCHEMA ST_SPATIAL_REFERENCE_SYSTEMS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259783120"> st_spatial_reference_systems table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045197473632"> ST_SRID(), <a class="indexterm" href="gis-general-property-functions.html"> General Geometry Property Functions </a> </dt> <dt id="ientry-idm46045197174480"> ST_StartPoint(), <a class="indexterm" href="gis-linestring-property-functions.html"> LineString and MultiLineString Property Functions </a> </dt> <dt id="ientry-idm46045197583600"> ST_SwapXY(), <a class="indexterm" href="gis-format-conversion-functions.html"> Geometry Format Conversion Functions </a> </dt> <dt id="ientry-idm46045196710256"> ST_SymDifference(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196414432"> ST_Touches(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045196688256"> ST_Transform(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045196645616"> ST_Union(), <a class="indexterm" href="spatial-operator-functions.html"> Spatial Operator Functions </a> </dt> <dt id="ientry-idm46045078486048"> ST_UNITS_OF_MEASURE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-st-units-of-measure-table.html"> The INFORMATION_SCHEMA ST_UNITS_OF_MEASURE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045195865536"> ST_Validate(), <a class="indexterm" href="spatial-convenience-functions.html"> Spatial Convenience Functions </a> </dt> <dt id="ientry-idm46045196401248"> ST_Within(), <a class="indexterm" href="spatial-relation-functions-object-shapes.html"> Spatial Relation Functions That Use Object Shapes </a> </dt> <dt id="ientry-idm46045197359648"> ST_X(), <a class="indexterm" href="gis-point-property-functions.html"> Point Property Functions </a> </dt> <dt id="ientry-idm46045197340112"> ST_Y(), <a class="indexterm" href="gis-point-property-functions.html"> Point Property Functions </a> </dt> <dt id="ientry-idm46045204401376"> SUBDATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045030604880"> sublist, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045082901904"> SUBPARTITION BY KEY </dt> <dd> <dl> <dt> known issues, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> </dl> </dd> <dt id="ientry-idm46045084165296"> subpartitioning, <a class="indexterm" href="partitioning-subpartitions.html"> Subpartitioning </a> </dt> <dt id="ientry-idm46045084166368"> subpartitions, <a class="indexterm" href="partitioning-subpartitions.html"> Subpartitioning </a> </dt> <dd> <dl> <dt> known issues, <a class="indexterm" href="partitioning-limitations.html"> Restrictions and Limitations on Partitioning </a> </dt> </dl> </dd> <dt id="ientry-idm46045228413680"> subqueries, <a class="indexterm" href="subqueries.html"> Subqueries </a> </dt> <dd> <dl> <dt> correlated, <a class="indexterm" href="correlated-subqueries.html"> Correlated Subqueries </a> </dt> <dt> errors, <a class="indexterm" href="subquery-errors.html"> Subquery Errors </a> </dt> <dt> in FROM clause (see <a href="#ientry-idm46045228410736"> derived tables </a> ) </dt> <dt> optimization, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> , <a class="indexterm" href="subquery-optimization-with-exists.html"> Optimizing Subqueries with the EXISTS Strategy </a> </dt> <dt> restrictions, <a class="indexterm" href="subquery-restrictions.html"> Restrictions on Subqueries </a> </dt> <dt> with ALL, <a class="indexterm" href="all-subqueries.html"> Subqueries with ALL </a> </dt> <dt> with ANY, IN, SOME, <a class="indexterm" href="any-in-some-subqueries.html"> Subqueries with ANY, IN, or SOME </a> </dt> <dt> with EXISTS, <a class="indexterm" href="exists-and-not-exists-subqueries.html"> Subqueries with EXISTS or NOT EXISTS </a> </dt> <dt> with NOT EXISTS, <a class="indexterm" href="exists-and-not-exists-subqueries.html"> Subqueries with EXISTS or NOT EXISTS </a> </dt> <dt> with row constructors, <a class="indexterm" href="row-subqueries.html"> Row Subqueries </a> </dt> </dl> </dd> <dt id="ientry-idm46045180114816"> subquery (see <a href="#ientry-idm46045228413680"> subqueries </a> ) </dt> <dt id="ientry-idm46045228220464"> subquery materialization, <a class="indexterm" href="subquery-materialization.html"> Optimizing Subqueries with Materialization </a> </dt> <dt id="ientry-idm46045180116960"> subselects, <a class="indexterm" href="subqueries.html"> Subqueries </a> </dt> <dt id="ientry-idm46045202926912"> SUBSTR(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045202909328"> SUBSTRING(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045202883312"> SUBSTRING_INDEX(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045204379680"> SUBTIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045206379584"> subtraction (-), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045071898832"> SUDO_USER environment variable, <a class="indexterm" href="performance-schema-connection-attribute-tables.html"> Performance Schema Connection Attribute Tables </a> </dt> <dt id="ientry-idm46045192841600"> SUM(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192840528"> SUM(DISTINCT), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045251530192"> SUPER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045279090352"> super-large-pages option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045326688448"> superuser, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt id="ientry-idm46045268563840"> super_read_only system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045333008192"> support </dt> <dd> <dl> <dt> for operating systems, <a class="indexterm" href="platform-support.html"> Supported Platforms </a> , <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt> for platforms, <a class="indexterm" href="platform-support.html"> Supported Platforms </a> </dt> </dl> </dd> <dt id="ientry-idm46045030599056"> supremum record, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030593040"> surrogate key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045222487280"> symbolic links, <a class="indexterm" href="symbolic-links.html"> Using Symbolic Links </a> , <a class="indexterm" href="windows-symbolic-links.html"> Using Symbolic Links for Databases on Windows </a> </dt> <dd> <dl> <dt> databases, <a class="indexterm" href="symbolic-links-to-databases.html"> Using Symbolic Links for Databases on Unix </a> </dt> <dt> tables, <a class="indexterm" href="symbolic-links-to-tables.html"> Using Symbolic Links for MyISAM Tables on Unix </a> </dt> <dt> Windows, <a class="indexterm" href="windows-symbolic-links.html"> Using Symbolic Links for Databases on Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045279068976"> symbolic-links option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045085827456"> synchronization of source and replica </dt> <dd> <dl> <dt> in NDB Cluster Replication, <a class="indexterm" href="mysql-cluster-replication-auto-sync.html"> NDB Cluster Replication: Automating Synchronization of the Replica to the Source Binary Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045220981200"> Syncing ndb table schema operation and binlog </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045139274816"> sync_binlog system variable, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt id="ientry-idm46045141198928"> sync_master_info system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141165328"> sync_relay_log system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141130144"> sync_relay_log_info system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045141092336"> sync_source_info system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045211682272"> syntactically well-formed </dt> <dd> <dl> <dt> GIS values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> <dt> spatial values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045202488304"> syntax </dt> <dd> <dl> <dt> regular expression, <a class="indexterm" href="regexp.html"> Regular Expressions </a> </dt> </dl> </dd> <dt id="ientry-idm46045335322032"> syntax conventions, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt id="ientry-idm46045030589712"> synthetic key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045075836256"> sys schema, <a class="indexterm" href="performance-schema.html"> MySQL Performance Schema </a> </dt> <dd> <dl> <dt> create_synonym_db() procedure, <a class="indexterm" href="sys-create-synonym-db.html"> The create_synonym_db() Procedure </a> </dt> <dt> diagnostics() procedure, <a class="indexterm" href="sys-diagnostics.html"> The diagnostics() Procedure </a> </dt> <dt> execute_prepared_stmt() procedure, <a class="indexterm" href="sys-execute-prepared-stmt.html"> The execute_prepared_stmt() Procedure </a> </dt> <dt> extract_schema_from_file_name() function, <a class="indexterm" href="sys-extract-schema-from-file-name.html"> The extract_schema_from_file_name() Function </a> </dt> <dt> extract_table_from_file_name() function, <a class="indexterm" href="sys-extract-table-from-file-name.html"> The extract_table_from_file_name() Function </a> </dt> <dt> format_bytes() function, <a class="indexterm" href="sys-format-bytes.html"> The format_bytes() Function </a> </dt> <dt> format_path() function, <a class="indexterm" href="sys-format-path.html"> The format_path() Function </a> </dt> <dt> format_statement() function, <a class="indexterm" href="sys-format-statement.html"> The format_statement() Function </a> </dt> <dt> format_time() function, <a class="indexterm" href="sys-format-time.html"> The format_time() Function </a> </dt> <dt> host_summary view, <a class="indexterm" href="sys-host-summary.html"> The host_summary and x$host_summary Views </a> </dt> <dt> host_summary_by_file_io view, <a class="indexterm" href="sys-host-summary-by-file-io.html"> The host_summary_by_file_io and x$host_summary_by_file_io Views </a> </dt> <dt> host_summary_by_file_io_type view, <a class="indexterm" href="sys-host-summary-by-file-io-type.html"> The host_summary_by_file_io_type and x$host_summary_by_file_io_type Views </a> </dt> <dt> host_summary_by_stages view, <a class="indexterm" href="sys-host-summary-by-stages.html"> The host_summary_by_stages and x$host_summary_by_stages Views </a> </dt> <dt> host_summary_by_statement_latency view, <a class="indexterm" href="sys-host-summary-by-statement-latency.html"> The host_summary_by_statement_latency and x$host_summary_by_statement_latency Views </a> </dt> <dt> host_summary_by_statement_type view, <a class="indexterm" href="sys-host-summary-by-statement-type.html"> The host_summary_by_statement_type and x$host_summary_by_statement_type Views </a> </dt> <dt> innodb_buffer_stats_by_schema view, <a class="indexterm" href="sys-innodb-buffer-stats-by-schema.html"> The innodb_buffer_stats_by_schema and x$innodb_buffer_stats_by_schema Views </a> </dt> <dt> innodb_buffer_stats_by_table view, <a class="indexterm" href="sys-innodb-buffer-stats-by-table.html"> The innodb_buffer_stats_by_table and x$innodb_buffer_stats_by_table Views </a> </dt> <dt> innodb_lock_waits view, <a class="indexterm" href="sys-innodb-lock-waits.html"> The innodb_lock_waits and x$innodb_lock_waits Views </a> </dt> <dt> io_by_thread_by_latency view, <a class="indexterm" href="sys-io-by-thread-by-latency.html"> The io_by_thread_by_latency and x$io_by_thread_by_latency Views </a> </dt> <dt> io_global_by_file_by_bytes view, <a class="indexterm" href="sys-io-global-by-file-by-bytes.html"> The io_global_by_file_by_bytes and x$io_global_by_file_by_bytes Views </a> </dt> <dt> io_global_by_file_by_latency view, <a class="indexterm" href="sys-io-global-by-file-by-latency.html"> The io_global_by_file_by_latency and x$io_global_by_file_by_latency Views </a> </dt> <dt> io_global_by_wait_by_bytes view, <a class="indexterm" href="sys-io-global-by-wait-by-bytes.html"> The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Views </a> </dt> <dt> io_global_by_wait_by_latency view, <a class="indexterm" href="sys-io-global-by-wait-by-latency.html"> The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Views </a> </dt> <dt> latest_file_io view, <a class="indexterm" href="sys-latest-file-io.html"> The latest_file_io and x$latest_file_io Views </a> </dt> <dt> list_add() function, <a class="indexterm" href="sys-list-add.html"> The list_add() Function </a> </dt> <dt> list_drop() function, <a class="indexterm" href="sys-list-drop.html"> The list_drop() Function </a> </dt> <dt> memory_by_host_by_current_bytes view, <a class="indexterm" href="sys-memory-by-host-by-current-bytes.html"> The memory_by_host_by_current_bytes and x$memory_by_host_by_current_bytes Views </a> </dt> <dt> memory_by_thread_by_current_bytes view, <a class="indexterm" href="sys-memory-by-thread-by-current-bytes.html"> The memory_by_thread_by_current_bytes and x$memory_by_thread_by_current_bytes Views </a> </dt> <dt> memory_by_user_by_current_bytes view, <a class="indexterm" href="sys-memory-by-user-by-current-bytes.html"> The memory_by_user_by_current_bytes and x$memory_by_user_by_current_bytes Views </a> </dt> <dt> memory_global_by_current_bytes view, <a class="indexterm" href="sys-memory-global-by-current-bytes.html"> The memory_global_by_current_bytes and x$memory_global_by_current_bytes Views </a> </dt> <dt> memory_global_total view, <a class="indexterm" href="sys-memory-global-total.html"> The memory_global_total and x$memory_global_total Views </a> </dt> <dt> metrics view, <a class="indexterm" href="sys-metrics.html"> The metrics View </a> </dt> <dt> object ownership, <a class="indexterm" href="sys-schema.html"> MySQL sys Schema </a> </dt> <dt> processlist view, <a class="indexterm" href="sys-processlist.html"> The processlist and x$processlist Views </a> </dt> <dt> ps_check_lost_instrumentation view, <a class="indexterm" href="sys-ps-check-lost-instrumentation.html"> The ps_check_lost_instrumentation View </a> </dt> <dt> ps_is_account_enabled() function, <a class="indexterm" href="sys-ps-is-account-enabled.html"> The ps_is_account_enabled() Function </a> </dt> <dt> ps_is_consumer_enabled() function, <a class="indexterm" href="sys-ps-is-consumer-enabled.html"> The ps_is_consumer_enabled() Function </a> </dt> <dt> ps_is_instrument_default_enabled() function, <a class="indexterm" href="sys-ps-is-instrument-default-enabled.html"> The ps_is_instrument_default_enabled() Function </a> </dt> <dt> ps_is_instrument_default_timed() function, <a class="indexterm" href="sys-ps-is-instrument-default-timed.html"> The ps_is_instrument_default_timed() Function </a> </dt> <dt> ps_is_thread_instrumented() function, <a class="indexterm" href="sys-ps-is-thread-instrumented.html"> The ps_is_thread_instrumented() Function </a> </dt> <dt> ps_setup_disable_background_threads() procedure, <a class="indexterm" href="sys-ps-setup-disable-background-threads.html"> The ps_setup_disable_background_threads() Procedure </a> </dt> <dt> ps_setup_disable_consumer() procedure, <a class="indexterm" href="sys-ps-setup-disable-consumer.html"> The ps_setup_disable_consumer() Procedure </a> </dt> <dt> ps_setup_disable_instrument() procedure, <a class="indexterm" href="sys-ps-setup-disable-instrument.html"> The ps_setup_disable_instrument() Procedure </a> </dt> <dt> ps_setup_disable_thread() procedure, <a class="indexterm" href="sys-ps-setup-disable-thread.html"> The ps_setup_disable_thread() Procedure </a> </dt> <dt> ps_setup_enable_background_threads() procedure, <a class="indexterm" href="sys-ps-setup-enable-background-threads.html"> The ps_setup_enable_background_threads() Procedure </a> </dt> <dt> ps_setup_enable_consumer() procedure, <a class="indexterm" href="sys-ps-setup-enable-consumer.html"> The ps_setup_enable_consumer() Procedure </a> </dt> <dt> ps_setup_enable_instrument() procedure, <a class="indexterm" href="sys-ps-setup-enable-instrument.html"> The ps_setup_enable_instrument() Procedure </a> </dt> <dt> ps_setup_enable_thread() procedure, <a class="indexterm" href="sys-ps-setup-enable-thread.html"> The ps_setup_enable_thread() Procedure </a> </dt> <dt> ps_setup_reload_saved() procedure, <a class="indexterm" href="sys-ps-setup-reload-saved.html"> The ps_setup_reload_saved() Procedure </a> </dt> <dt> ps_setup_reset_to_default() procedure, <a class="indexterm" href="sys-ps-setup-reset-to-default.html"> The ps_setup_reset_to_default() Procedure </a> </dt> <dt> ps_setup_save() procedure, <a class="indexterm" href="sys-ps-setup-save.html"> The ps_setup_save() Procedure </a> </dt> <dt> ps_setup_show_disabled() procedure, <a class="indexterm" href="sys-ps-setup-show-disabled.html"> The ps_setup_show_disabled() Procedure </a> </dt> <dt> ps_setup_show_disabled_consumers() procedure, <a class="indexterm" href="sys-ps-setup-show-disabled-consumers.html"> The ps_setup_show_disabled_consumers() Procedure </a> </dt> <dt> ps_setup_show_disabled_instruments() procedure, <a class="indexterm" href="sys-ps-setup-show-disabled-instruments.html"> The ps_setup_show_disabled_instruments() Procedure </a> </dt> <dt> ps_setup_show_enabled() procedure, <a class="indexterm" href="sys-ps-setup-show-enabled.html"> The ps_setup_show_enabled() Procedure </a> </dt> <dt> ps_setup_show_enabled_consumers() procedure, <a class="indexterm" href="sys-ps-setup-show-enabled-consumers.html"> The ps_setup_show_enabled_consumers() Procedure </a> </dt> <dt> ps_setup_show_enabled_instruments() procedure, <a class="indexterm" href="sys-ps-setup-show-enabled-instruments.html"> The ps_setup_show_enabled_instruments() Procedure </a> </dt> <dt> ps_statement_avg_latency_histogram() procedure, <a class="indexterm" href="sys-ps-statement-avg-latency-histogram.html"> The ps_statement_avg_latency_histogram() Procedure </a> </dt> <dt> ps_thread_account() function, <a class="indexterm" href="sys-ps-thread-account.html"> The ps_thread_account() Function </a> </dt> <dt> ps_thread_id() function, <a class="indexterm" href="sys-ps-thread-id.html"> The ps_thread_id() Function </a> </dt> <dt> ps_thread_stack() function, <a class="indexterm" href="sys-ps-thread-stack.html"> The ps_thread_stack() Function </a> </dt> <dt> ps_thread_trx_info() function, <a class="indexterm" href="sys-ps-thread-trx-info.html"> The ps_thread_trx_info() Function </a> </dt> <dt> ps_trace_statement_digest() procedure, <a class="indexterm" href="sys-ps-trace-statement-digest.html"> The ps_trace_statement_digest() Procedure </a> </dt> <dt> ps_trace_thread() procedure, <a class="indexterm" href="sys-ps-trace-thread.html"> The ps_trace_thread() Procedure </a> </dt> <dt> ps_truncate_all_tables() procedure, <a class="indexterm" href="sys-ps-truncate-all-tables.html"> The ps_truncate_all_tables() Procedure </a> </dt> <dt> quote_identifier() function, <a class="indexterm" href="sys-quote-identifier.html"> The quote_identifier() Function </a> </dt> <dt> schema_auto_increment_columns view, <a class="indexterm" href="sys-schema-auto-increment-columns.html"> The schema_auto_increment_columns View </a> </dt> <dt> schema_index_statistics view, <a class="indexterm" href="sys-schema-index-statistics.html"> The schema_index_statistics and x$schema_index_statistics Views </a> </dt> <dt> schema_object_overview view, <a class="indexterm" href="sys-schema-object-overview.html"> The schema_object_overview View </a> </dt> <dt> schema_redundant_indexes view, <a class="indexterm" href="sys-schema-redundant-indexes.html"> The schema_redundant_indexes and x$schema_flattened_keys Views </a> </dt> <dt> schema_tables_with_full_table_scans view, <a class="indexterm" href="sys-schema-tables-with-full-table-scans.html"> The schema_tables_with_full_table_scans and x$schema_tables_with_full_table_scans Views </a> </dt> <dt> schema_table_lock_waits view, <a class="indexterm" href="sys-schema-table-lock-waits.html"> The schema_table_lock_waits and x$schema_table_lock_waits Views </a> </dt> <dt> schema_table_statistics view, <a class="indexterm" href="sys-schema-table-statistics.html"> The schema_table_statistics and x$schema_table_statistics Views </a> </dt> <dt> schema_table_statistics_with_buffer view, <a class="indexterm" href="sys-schema-table-statistics-with-buffer.html"> The schema_table_statistics_with_buffer and x$schema_table_statistics_with_buffer Views </a> </dt> <dt> schema_unused_indexes view, <a class="indexterm" href="sys-schema-unused-indexes.html"> The schema_unused_indexes View </a> </dt> <dt> session view, <a class="indexterm" href="sys-session.html"> The session and x$session Views </a> </dt> <dt> session_ssl_status view, <a class="indexterm" href="sys-session-ssl-status.html"> The session_ssl_status View </a> </dt> <dt> statements_with_errors_or_warnings view, <a class="indexterm" href="sys-statements-with-errors-or-warnings.html"> The statements_with_errors_or_warnings and x$statements_with_errors_or_warnings Views </a> </dt> <dt> statements_with_full_table_scans view, <a class="indexterm" href="sys-statements-with-full-table-scans.html"> The statements_with_full_table_scans and x$statements_with_full_table_scans Views </a> </dt> <dt> statements_with_runtimes_in_95th_percentile view, <a class="indexterm" href="sys-statements-with-runtimes-in-95th-percentile.html"> The statements_with_runtimes_in_95th_percentile and x$statements_with_runtimes_in_95th_percentile Views </a> </dt> <dt> statements_with_sorting view, <a class="indexterm" href="sys-statements-with-sorting.html"> The statements_with_sorting and x$statements_with_sorting Views </a> </dt> <dt> statements_with_temp_tables view, <a class="indexterm" href="sys-statements-with-temp-tables.html"> The statements_with_temp_tables and x$statements_with_temp_tables Views </a> </dt> <dt> statement_analysis view, <a class="indexterm" href="sys-statement-analysis.html"> The statement_analysis and x$statement_analysis Views </a> </dt> <dt> statement_performance_analyzer() procedure, <a class="indexterm" href="sys-statement-performance-analyzer.html"> The statement_performance_analyzer() Procedure </a> </dt> <dt> sys_config table, <a class="indexterm" href="sys-sys-config.html"> The sys_config Table </a> </dt> <dt> sys_get_config() function, <a class="indexterm" href="sys-sys-get-config.html"> The sys_get_config() Function </a> </dt> <dt> table_exists() procedure, <a class="indexterm" href="sys-table-exists.html"> The table_exists() Procedure </a> </dt> <dt> user_summary view, <a class="indexterm" href="sys-user-summary.html"> The user_summary and x$user_summary Views </a> </dt> <dt> user_summary_by_file_io view, <a class="indexterm" href="sys-user-summary-by-file-io.html"> The user_summary_by_file_io and x$user_summary_by_file_io Views </a> </dt> <dt> user_summary_by_file_io_type view, <a class="indexterm" href="sys-user-summary-by-file-io-type.html"> The user_summary_by_file_io_type and x$user_summary_by_file_io_type Views </a> </dt> <dt> user_summary_by_stages view, <a class="indexterm" href="sys-user-summary-by-stages.html"> The user_summary_by_stages and x$user_summary_by_stages Views </a> </dt> <dt> user_summary_by_statement_latency view, <a class="indexterm" href="sys-user-summary-by-statement-latency.html"> The user_summary_by_statement_latency and x$user_summary_by_statement_latency Views </a> </dt> <dt> user_summary_by_statement_type view, <a class="indexterm" href="sys-user-summary-by-statement-type.html"> The user_summary_by_statement_type and x$user_summary_by_statement_type Views </a> </dt> <dt> version view, <a class="indexterm" href="sys-version.html"> The version View </a> </dt> <dt> version_major() function, <a class="indexterm" href="sys-version-major.html"> The version_major() Function </a> </dt> <dt> version_minor() function, <a class="indexterm" href="sys-version-minor.html"> The version_minor() Function </a> </dt> <dt> version_patch() function, <a class="indexterm" href="sys-version-patch.html"> The version_patch() Function </a> </dt> <dt> waits_by_host_by_latency view, <a class="indexterm" href="sys-waits-by-host-by-latency.html"> The waits_by_host_by_latency and x$waits_by_host_by_latency Views </a> </dt> <dt> waits_by_user_by_latency view, <a class="indexterm" href="sys-waits-by-user-by-latency.html"> The waits_by_user_by_latency and x$waits_by_user_by_latency Views </a> </dt> <dt> waits_global_by_latency view, <a class="indexterm" href="sys-waits-global-by-latency.html"> The waits_global_by_latency and x$waits_global_by_latency Views </a> </dt> <dt> wait_classes_global_by_avg_latency view, <a class="indexterm" href="sys-wait-classes-global-by-avg-latency.html"> The wait_classes_global_by_avg_latency and x$wait_classes_global_by_avg_latency Views </a> </dt> <dt> wait_classes_global_by_latency view, <a class="indexterm" href="sys-wait-classes-global-by-latency.html"> The wait_classes_global_by_latency and x$wait_classes_global_by_latency Views </a> </dt> <dt> x$ views, <a class="indexterm" href="sys-schema-views.html"> sys Schema Views </a> </dt> <dt> x$host_summary view, <a class="indexterm" href="sys-host-summary.html"> The host_summary and x$host_summary Views </a> </dt> <dt> x$host_summary_by_file_io view, <a class="indexterm" href="sys-host-summary-by-file-io.html"> The host_summary_by_file_io and x$host_summary_by_file_io Views </a> </dt> <dt> x$host_summary_by_file_io_type view, <a class="indexterm" href="sys-host-summary-by-file-io-type.html"> The host_summary_by_file_io_type and x$host_summary_by_file_io_type Views </a> </dt> <dt> x$host_summary_by_stages view, <a class="indexterm" href="sys-host-summary-by-stages.html"> The host_summary_by_stages and x$host_summary_by_stages Views </a> </dt> <dt> x$host_summary_by_statement_latency view, <a class="indexterm" href="sys-host-summary-by-statement-latency.html"> The host_summary_by_statement_latency and x$host_summary_by_statement_latency Views </a> </dt> <dt> x$host_summary_by_statement_type view, <a class="indexterm" href="sys-host-summary-by-statement-type.html"> The host_summary_by_statement_type and x$host_summary_by_statement_type Views </a> </dt> <dt> x$innodb_buffer_stats_by_schema view, <a class="indexterm" href="sys-innodb-buffer-stats-by-schema.html"> The innodb_buffer_stats_by_schema and x$innodb_buffer_stats_by_schema Views </a> </dt> <dt> x$innodb_buffer_stats_by_table view, <a class="indexterm" href="sys-innodb-buffer-stats-by-table.html"> The innodb_buffer_stats_by_table and x$innodb_buffer_stats_by_table Views </a> </dt> <dt> x$innodb_lock_waits view, <a class="indexterm" href="sys-innodb-lock-waits.html"> The innodb_lock_waits and x$innodb_lock_waits Views </a> </dt> <dt> x$io_by_thread_by_latency view, <a class="indexterm" href="sys-io-by-thread-by-latency.html"> The io_by_thread_by_latency and x$io_by_thread_by_latency Views </a> </dt> <dt> x$io_global_by_file_by_bytes view, <a class="indexterm" href="sys-io-global-by-file-by-bytes.html"> The io_global_by_file_by_bytes and x$io_global_by_file_by_bytes Views </a> </dt> <dt> x$io_global_by_file_by_latency view, <a class="indexterm" href="sys-io-global-by-file-by-latency.html"> The io_global_by_file_by_latency and x$io_global_by_file_by_latency Views </a> </dt> <dt> x$io_global_by_wait_by_bytes view, <a class="indexterm" href="sys-io-global-by-wait-by-bytes.html"> The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Views </a> </dt> <dt> x$io_global_by_wait_by_latency view, <a class="indexterm" href="sys-io-global-by-wait-by-latency.html"> The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Views </a> </dt> <dt> x$latest_file_io view, <a class="indexterm" href="sys-latest-file-io.html"> The latest_file_io and x$latest_file_io Views </a> </dt> <dt> x$memory_by_host_by_current_bytes view, <a class="indexterm" href="sys-memory-by-host-by-current-bytes.html"> The memory_by_host_by_current_bytes and x$memory_by_host_by_current_bytes Views </a> </dt> <dt> x$memory_by_thread_by_current_bytes view, <a class="indexterm" href="sys-memory-by-thread-by-current-bytes.html"> The memory_by_thread_by_current_bytes and x$memory_by_thread_by_current_bytes Views </a> </dt> <dt> x$memory_by_user_by_current_bytes view, <a class="indexterm" href="sys-memory-by-user-by-current-bytes.html"> The memory_by_user_by_current_bytes and x$memory_by_user_by_current_bytes Views </a> </dt> <dt> x$memory_global_by_current_bytes view, <a class="indexterm" href="sys-memory-global-by-current-bytes.html"> The memory_global_by_current_bytes and x$memory_global_by_current_bytes Views </a> </dt> <dt> x$memory_global_total view, <a class="indexterm" href="sys-memory-global-total.html"> The memory_global_total and x$memory_global_total Views </a> </dt> <dt> x$processlist view, <a class="indexterm" href="sys-processlist.html"> The processlist and x$processlist Views </a> </dt> <dt> x$schema_flattened_keys view, <a class="indexterm" href="sys-schema-redundant-indexes.html"> The schema_redundant_indexes and x$schema_flattened_keys Views </a> </dt> <dt> x$schema_index_statistics view, <a class="indexterm" href="sys-schema-index-statistics.html"> The schema_index_statistics and x$schema_index_statistics Views </a> </dt> <dt> x$schema_tables_with_full_table_scans view, <a class="indexterm" href="sys-schema-tables-with-full-table-scans.html"> The schema_tables_with_full_table_scans and x$schema_tables_with_full_table_scans Views </a> </dt> <dt> x$schema_table_lock_waits view, <a class="indexterm" href="sys-schema-table-lock-waits.html"> The schema_table_lock_waits and x$schema_table_lock_waits Views </a> </dt> <dt> x$schema_table_statistics view, <a class="indexterm" href="sys-schema-table-statistics.html"> The schema_table_statistics and x$schema_table_statistics Views </a> </dt> <dt> x$schema_table_statistics_with_buffer view, <a class="indexterm" href="sys-schema-table-statistics-with-buffer.html"> The schema_table_statistics_with_buffer and x$schema_table_statistics_with_buffer Views </a> </dt> <dt> x$session view, <a class="indexterm" href="sys-session.html"> The session and x$session Views </a> </dt> <dt> x$statements_with_errors_or_warnings view, <a class="indexterm" href="sys-statements-with-errors-or-warnings.html"> The statements_with_errors_or_warnings and x$statements_with_errors_or_warnings Views </a> </dt> <dt> x$statements_with_full_table_scans view, <a class="indexterm" href="sys-statements-with-full-table-scans.html"> The statements_with_full_table_scans and x$statements_with_full_table_scans Views </a> </dt> <dt> x$statements_with_runtimes_in_95th_percentile view, <a class="indexterm" href="sys-statements-with-runtimes-in-95th-percentile.html"> The statements_with_runtimes_in_95th_percentile and x$statements_with_runtimes_in_95th_percentile Views </a> </dt> <dt> x$statements_with_sorting view, <a class="indexterm" href="sys-statements-with-sorting.html"> The statements_with_sorting and x$statements_with_sorting Views </a> </dt> <dt> x$statements_with_temp_tables view, <a class="indexterm" href="sys-statements-with-temp-tables.html"> The statements_with_temp_tables and x$statements_with_temp_tables Views </a> </dt> <dt> x$statement_analysis view, <a class="indexterm" href="sys-statement-analysis.html"> The statement_analysis and x$statement_analysis Views </a> </dt> <dt> x$user_summary view, <a class="indexterm" href="sys-user-summary.html"> The user_summary and x$user_summary Views </a> </dt> <dt> x$user_summary_by_file_io view, <a class="indexterm" href="sys-user-summary-by-file-io.html"> The user_summary_by_file_io and x$user_summary_by_file_io Views </a> </dt> <dt> x$user_summary_by_file_io_type view, <a class="indexterm" href="sys-user-summary-by-file-io-type.html"> The user_summary_by_file_io_type and x$user_summary_by_file_io_type Views </a> </dt> <dt> x$user_summary_by_stages view, <a class="indexterm" href="sys-user-summary-by-stages.html"> The user_summary_by_stages and x$user_summary_by_stages Views </a> </dt> <dt> x$user_summary_by_statement_latency view, <a class="indexterm" href="sys-user-summary-by-statement-latency.html"> The user_summary_by_statement_latency and x$user_summary_by_statement_latency Views </a> </dt> <dt> x$user_summary_by_statement_type view, <a class="indexterm" href="sys-user-summary-by-statement-type.html"> The user_summary_by_statement_type and x$user_summary_by_statement_type Views </a> </dt> <dt> x$waits_by_host_by_latency view, <a class="indexterm" href="sys-waits-by-host-by-latency.html"> The waits_by_host_by_latency and x$waits_by_host_by_latency Views </a> </dt> <dt> x$waits_by_user_by_latency view, <a class="indexterm" href="sys-waits-by-user-by-latency.html"> The waits_by_user_by_latency and x$waits_by_user_by_latency Views </a> </dt> <dt> x$waits_global_by_latency view, <a class="indexterm" href="sys-waits-global-by-latency.html"> The waits_global_by_latency and x$waits_global_by_latency Views </a> </dt> <dt> x$wait_classes_global_by_avg_latency view, <a class="indexterm" href="sys-wait-classes-global-by-avg-latency.html"> The wait_classes_global_by_avg_latency and x$wait_classes_global_by_avg_latency Views </a> </dt> <dt> x$wait_classes_global_by_latency view, <a class="indexterm" href="sys-wait-classes-global-by-latency.html"> The wait_classes_global_by_latency and x$wait_classes_global_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045101302240"> sys-check option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101336528"> sys-create option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101325088"> sys-create-if-not-exist option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101313616"> sys-create-if-not-valid option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101348320"> sys-drop option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101279248"> sys-skip-events option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045101290976"> sys-skip-tables option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045328380384"> SYSCONFDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045204360528"> SYSDATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045279040064"> sysdate-is-now option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045268512432"> syseventlog.facility system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268482816"> syseventlog.include_pid system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268454640"> syseventlog.tag system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045321527792"> syslog option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045321494368"> syslog-tag option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045252952800"> system </dt> <dd> <dl> <dt> privilege, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt> security, <a class="indexterm" href="general-security-issues.html"> General Security Issues </a> </dt> </dl> </dd> <dt id="ientry-idm46045249170624"> system account </dt> <dd> <dl> <dt> account categories, <a class="indexterm" href="account-categories.html"> Account Categories </a> </dt> </dl> </dd> <dt id="ientry-idm46045317672480"> system command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045221450992"> System lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045104902656"> system option </dt> <dd> <dl> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045249084816"> system session </dt> <dd> <dl> <dt> session categories, <a class="indexterm" href="account-categories.html#system-user-sessions"> System and Regular Sessions </a> </dt> </dl> </dd> <dt id="ientry-idm46045225239824"> system table </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> , <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045326675888"> system tables </dt> <dd> <dl> <dt> audit_log_filter table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> audit_log_user table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> columns_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> column_statistics table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> , <a class="indexterm" href="optimizer-statistics.html"> Optimizer Statistics </a> </dt> <dt> component table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> </dt> <dt> db table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> default_roles table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> engine_cost, <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> <dt> engine_cost table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> </dt> <dt> firewall_groups table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> firewall_group_allowlist table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> firewall_membership table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> firewall_users table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> firewall_whitelist table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> func table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> , <a class="indexterm" href="obtaining-loadable-function-information.html"> Obtaining Information About Loadable Functions </a> </dt> <dt> general_log table, <a class="indexterm" href="system-schema.html#system-schema-log-tables"> Log System Tables </a> </dt> <dt> global_grants table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="privileges-provided.html#static-dynamic-privileges"> Static Versus Dynamic Privileges </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> gtid_executed table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> , <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table"> mysql.gtid_executed Table </a> </dt> <dt> help tables, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> <dt> help_category table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> <dt> help_keyword table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> <dt> help_relation table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> <dt> help_topic table, <a class="indexterm" href="system-schema.html#system-schema-help-tables"> Server-Side Help System Tables </a> </dt> <dt> innodb_dynamic_metadata table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> innodb_index_stats table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> , <a class="indexterm" href="innodb-persistent-stats.html"> Configuring Persistent Optimizer Statistics Parameters </a> </dt> <dt> innodb_table_stats table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> , <a class="indexterm" href="innodb-persistent-stats.html"> Configuring Persistent Optimizer Statistics Parameters </a> </dt> <dt> ndb_binlog_index table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> <dt> password_history table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> plugin table, <a class="indexterm" href="system-schema.html#system-schema-object-tables"> Object Information System Tables </a> </dt> <dt> procs_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> proxies_priv table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> role_edges table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> servers table, <a class="indexterm" href="system-schema.html#system-schema-miscellaneous-tables"> Miscellaneous System Tables </a> </dt> <dt> server_cost, <a class="indexterm" href="cost-model.html#cost-model-database"> The Cost Model Database </a> </dt> <dt> server_cost table, <a class="indexterm" href="system-schema.html#system-schema-optimizer-tables"> Optimizer System Tables </a> </dt> <dt> slave_master_info table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> <dt> slave_relay_log_info table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> <dt> slave_worker_info table, <a class="indexterm" href="system-schema.html#system-schema-replication-tables"> Replication System Tables </a> </dt> <dt> slow_log table, <a class="indexterm" href="system-schema.html#system-schema-log-tables"> Log System Tables </a> </dt> <dt> tables_priv table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> <dt> time zone tables, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> time_zone table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> time_zone_leap_second table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> time_zone_name table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> time_zone_transition table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> time_zone_transition_type table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> <dt> user table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045030580144"> system tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045317213520"> system variable </dt> <dd> <dl> <dt> activate_all_roles_on_login, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_address, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_port, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_ca, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_capath, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_cert, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_cipher, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_crl, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_crlpath, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_ssl_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_tls_ciphersuites, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> admin_tls_version, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> audit_log_buffer_size, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_compression, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_connection_policy, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_current_session, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_database, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_disable, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_encryption, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_exclude_accounts, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_file, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_filter_id, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_flush, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_flush_interval_seconds, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_format, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_format_unix_timestamp, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_include_accounts, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_max_size, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_password_history_keep_days, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_policy, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_prune_seconds, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_read_buffer_size, <a class="indexterm" href="audit-log-file-reading.html"> Reading Audit Log Files </a> , <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_rotate_on_size, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_statement_policy, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> audit_log_strategy, <a class="indexterm" href="audit-log-reference.html#audit-log-options-variables"> Audit Log Options and Variables </a> </dt> <dt> authentication_kerberos_service_key_tab, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_kerberos_service_principal, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_auth_method_name, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_bind_base_dn, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_bind_root_dn, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_bind_root_pwd, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_ca_path, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_connect_timeout, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_group_search_attr, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_group_search_filter, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_init_pool_size, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_log_status, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_max_pool_size, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_referral, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_response_timeout, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_server_host, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_server_port, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_tls, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_sasl_user_search_attr, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_auth_method_name, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_bind_base_dn, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_bind_root_dn, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_bind_root_pwd, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_ca_path, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_connect_timeout, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_group_search_attr, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_group_search_filter, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_init_pool_size, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_log_status, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_max_pool_size, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_referral, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_response_timeout, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_server_host, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_server_port, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_tls, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_ldap_simple_user_search_attr, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_policy, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> <dt> authentication_webauthn_rp_id, <a class="indexterm" href="pluggable-authentication-system-variables.html"> Pluggable Authentication System Variables </a> </dt> <dt> authentication_windows_log_level, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> authentication_windows_use_principal_name, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> autocommit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> automatic_sp_privileges, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> auto_generate_certs, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> auto_increment_increment, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> auto_increment_offset, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> back_log, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> basedir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> big_tables, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> bind_address, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> binlog_cache_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_checksum, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_direct_non_transactional_updates, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_encryption, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_error_action, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_expire_logs_auto_purge, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_expire_logs_seconds, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_format, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_group_commit_sync_delay, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_group_commit_sync_no_delay_count, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_gtid_simple_recovery, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> binlog_max_flush_queue_time, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_order_commits, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_rotate_encryption_master_key_at_startup, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_rows_query_log_events, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_row_event_max_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_row_image, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_row_metadata, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_row_value_options, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_stmt_cache_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_transaction_compression, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_transaction_compression_level_zstd, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> binlog_transaction_dependency_history_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> block_encryption_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> build_id, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> bulk_insert_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt> caching_sha2_password_auto_generate_rsa_keys, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> caching_sha2_password_digest_rounds, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> caching_sha2_password_private_key_path, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> caching_sha2_password_public_key_path, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_sets_dir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_client, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_connection, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_database, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_filesystem, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_results, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_server, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> character_set_system, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> check_proxy_users, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt> clone_autotune_concurrency, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_block_ddl, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_buffer_size, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_ddl_timeout, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_delay_after_data_drop, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_donor_timeout_after_network_failure, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_enable_compression, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_max_concurrency, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_max_data_bandwidth, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_max_network_bandwidth, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_ssl_ca, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_ssl_cert, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_ssl_key, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> clone_valid_donor_list, <a class="indexterm" href="clone-plugin-options-variables.html"> Clone System Variables </a> </dt> <dt> collation_connection, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> collation_database, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> collation_server, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> completion_type, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> component_masking.dictionaries_flush_interval_seconds, <a class="indexterm" href="data-masking-component-variables.html"> MySQL Enterprise Data Masking and De-Identification Component Variables </a> </dt> <dt> component_masking.masking_database, <a class="indexterm" href="data-masking-component-variables.html"> MySQL Enterprise Data Masking and De-Identification Component Variables </a> </dt> <dt> component_scheduler.enabled, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> concurrent_insert, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> connection_control_failed_connections_threshold, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt> connection_control_max_connection_delay, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt> connection_control_min_connection_delay, <a class="indexterm" href="connection-control-variables.html#connection-control-plugin-system-variables"> Connection-Control System Variables </a> </dt> <dt> connection_memory_chunk_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> connection_memory_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> connect_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> core_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> create_admin_listener_thread, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> cte_max_recursion_depth, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> datadir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> debug, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> debug_sync, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_authentication_plugin, <a class="indexterm" href="pluggable-authentication.html#pluggable-authentication-default-plugin"> The Default Authentication Plugin </a> </dt> <dt> default_collation_for_utf8mb4, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_password_lifetime, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_storage_engine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_table_encryption, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_tmp_storage_engine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> default_week_format, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> delayed_insert_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> delayed_insert_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> delayed_queue_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> delay_key_write, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt> disabled_storage_engines, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> disconnect_on_expired_password, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> div_precision_increment, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> dragnet.log_error_filter_rules, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> end_markers_in_json, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> enterprise_encryption.maximum_rsa_key_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> enterprise_encryption.rsa_support_legacy_padding, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> error_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> event_scheduler, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> explain_format, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> explain_json_format_version, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> explicit_defaults_for_timestamp, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> external_user, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> flush, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> flush_time, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> foreign_key_checks, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ft_boolean_syntax, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ft_max_word_len, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ft_min_word_len, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ft_query_expansion_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ft_stopword_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> general_log, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> general_log_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> generated_random_password_length, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> global_connection_memory_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> global_connection_memory_tracking, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> group_concat_max_len, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> group_replication_advertise_recovery_endpoints, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_allow_local_lower_version_join, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_autorejoin_tries, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_auto_increment_increment, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_bootstrap_group, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_clone_threshold, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_communication_debug_options, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_communication_max_message_size, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_communication_stack, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_components_stop_timeout, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_compression_threshold, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_consistency, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_enforce_update_everywhere_checks, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_exit_state_action, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_applier_threshold, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_certifier_threshold, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_hold_percent, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_max_quota, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_member_quota_percent, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_min_quota, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_min_recovery_quota, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_mode, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_period, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_flow_control_release_percent, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_force_members, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_group_name, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_group_seeds, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_gtid_assignment_block_size, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_ip_allowlist, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_local_address, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_member_expel_timeout, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_member_weight, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_message_cache_size, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_paxos_single_leader, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_poll_spin_loops, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_preemptive_garbage_collection, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_preemptive_garbage_collection_rows_threshold, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_compression_algorithms, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_get_public_key, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_public_key_path, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_reconnect_interval, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_retry_count, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_ca, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_capath, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_cert, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_cipher, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_crl, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_crlpath, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_key, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_ssl_verify_server_cert, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_tls_ciphersuites, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_tls_version, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_use_ssl, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_recovery_zstd_compression_level, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_single_primary_mode, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_ssl_mode, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_start_on_boot, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_tls_source, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_transaction_size_limit, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_unreachable_majority_timeout, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> group_replication_view_change_uuid, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> gtid_executed, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> gtid_executed_compression_period, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> gtid_purged, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> have_compress, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_dynamic_loading, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_geometry, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_profiling, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_query_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_rtree_keys, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_statement_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> have_symlink, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> histogram_generation_max_mem_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> hostname, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> identity, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> immediate_server_version, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> information_schema_stats_expiry, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> init_connect, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> init_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> init_replica, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> init_slave, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> innodb_adaptive_flushing, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_adaptive_flushing_lwm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_adaptive_hash_index, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_adaptive_hash_index_parts, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_adaptive_max_sleep_delay, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_autoextend_increment, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_autoinc_lock_mode, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_background_drop_list_empty, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_chunk_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_dump_at_shutdown, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_dump_now, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_dump_pct, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_filename, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_instances, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_in_core_file, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_load_abort, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_load_at_startup, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_load_now, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_buffer_pool_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_change_buffering, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_change_buffering_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_change_buffer_max_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_checkpoint_disabled, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_checksum_algorithm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_cmp_per_index_enabled, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_commit_concurrency, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_compression_failure_threshold_pct, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_compression_level, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_compression_pad_pct_max, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_compress_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_concurrency_tickets, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_data_file_path, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_data_home_dir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ddl_buffer_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ddl_log_crash_reset_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ddl_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_deadlock_detect, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_default_row_format, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_directories, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_disable_sort_file_cache, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_doublewrite, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_doublewrite_batch_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_doublewrite_dir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_doublewrite_files, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_doublewrite_pages, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_extend_and_initialize, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_fast_shutdown, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_file_per_table, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_fill_factor, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_fil_make_page_dirty_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flushing_avg_loops, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flush_log_at_timeout, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flush_log_at_trx_commit, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flush_method, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flush_neighbors, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_flush_sync, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_force_load_corrupted, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_force_recovery, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_fsync_threshold, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_aux_table, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_cache_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_enable_diag_print, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_enable_stopword, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_max_token_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_min_token_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_num_word_optimize, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_result_cache_limit, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_server_stopword_table, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_sort_pll_degree, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_total_cache_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_ft_user_stopword_table, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_idle_flush_pct, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_io_capacity, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_io_capacity_max, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_limit_optimistic_insert_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_lock_wait_timeout, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_buffer_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_checkpoint_fuzzy_now, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_checkpoint_now, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_checksums, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_compressed_pages, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_files_in_group, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_file_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_group_home_dir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_spin_cpu_abs_lwm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_spin_cpu_pct_hwm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_wait_for_flush_spin_hwm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_writer_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_log_write_ahead_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_lru_scan_depth, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_max_dirty_pages_pct, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_max_dirty_pages_pct_lwm, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_max_purge_lag, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_max_purge_lag_delay, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_max_undo_log_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_merge_threshold_set_all_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_monitor_disable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_monitor_enable, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_monitor_reset, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_monitor_reset_all, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_numa_interleave, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_old_blocks_pct, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_old_blocks_time, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_online_alter_log_max_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_open_files, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_optimize_fulltext_only, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_page_cleaners, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_page_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_parallel_read_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_print_ddl_logs, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_purge_batch_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_purge_rseg_truncate_frequency, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_purge_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_random_read_ahead, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_read_ahead_threshold, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_read_io_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_read_only, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_redo_log_archive_dirs, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_redo_log_capacity, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_redo_log_encrypt, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_replication_delay, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_rollback_on_timeout, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_rollback_segments, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_saved_page_number_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_segment_reserve_factor, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_sort_buffer_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_spin_wait_delay, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_spin_wait_pause_multiplier, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_auto_recalc, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_include_delete_marked, <a class="indexterm" href="innodb-persistent-stats.html#innodb-persistent-stats-delete-marked"> Including Delete-marked Records in Persistent Statistics Calculations </a> , <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_method, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_on_metadata, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_persistent_sample_pages, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_stats_transient_sample_pages, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_status_output, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_status_output_locks, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_strict_mode, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_sync_array_size, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_sync_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_sync_spin_loops, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_table_locks, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_temp_data_file_path, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_temp_tablespaces_dir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_thread_concurrency, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_thread_sleep_delay, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_tmpdir, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_trx_purge_view_update_only_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_trx_rseg_n_slots_debug, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_undo_directory, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_undo_log_encrypt, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_undo_log_truncate, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_undo_tablespaces, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_use_fdatasync, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_use_native_aio, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_validate_tablespace_paths, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_version, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> innodb_write_io_threads, <a class="indexterm" href="innodb-parameters.html"> InnoDB Startup Options and System Variables </a> </dt> <dt> insert_id, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> interactive_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> internal_tmp_mem_storage_engine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> join_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> keep_files_on_create, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> keyring_aws_cmk_id, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_aws_conf_file, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_aws_data_file, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_aws_region, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_auth_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_caching, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_ca_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_auth_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_caching, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_ca_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_role_id, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_server_url, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_commit_store_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_role_id, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_secret_id, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_server_url, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_hashicorp_store_path, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_okv_conf_dir, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> keyring_operations, <a class="indexterm" href="keyring-system-variables.html"> Keyring System Variables </a> </dt> <dt> key_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> key_cache_age_threshold, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> key_cache_block_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> key_cache_division_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> large_files_support, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> large_pages, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> large_page_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> last_insert_id, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lc_messages, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lc_messages_dir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lc_time_names, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> license, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> local_infile, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="load-data-local-security.html#load-data-local-configuration"> Enabling or Disabling Local Data Loading Capability </a> </dt> <dt> locked_in_memory, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lock_order, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_debug_loop, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_debug_missing_arc, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_debug_missing_key, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_debug_missing_unlock, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_dependencies, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_extra_dependencies, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_output_directory, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_print_txt, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_trace_loop, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_trace_missing_arc, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_trace_missing_key, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_order_trace_missing_unlock, <a class="indexterm" href="lock-order-tool.html"> The LOCK_ORDER Tool </a> </dt> <dt> lock_wait_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_bin, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_bin_basename, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_bin_index, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_bin_trust_function_creators, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_error, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_error_services, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_error_suppression_list, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_error_verbosity, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_output, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_queries_not_using_indexes, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_raw, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_replica_updates, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_slave_updates, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_slow_extra, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_slow_replica_statements, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> log_slow_slave_statements, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> log_statements_unsafe_for_binlog, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> log_throttle_queries_not_using_indexes, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> log_timestamps, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> long_query_time, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lower_case_file_system, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> lower_case_table_names, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> low_priority_updates, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> mandatory_roles, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> master_verify_checksum, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> max_allowed_packet, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_binlog_cache_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> max_binlog_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> max_binlog_stmt_cache_size, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> max_connections, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_connect_errors, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_delayed_threads, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_digest_length, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_error_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_execution_time, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_heap_table_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_insert_delayed_threads, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_join_size, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_length_for_sort_data, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_points_in_geometry, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_prepared_stmt_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_relay_log_size, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> max_seeks_for_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_sort_length, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_sp_recursion_depth, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_user_connections, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> max_write_lock_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> mecab_rc_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> min_examined_row_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> myisam_data_pointer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> myisam_max_sort_file_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt> myisam_mmap_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> myisam_recover_options, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt> myisam_sort_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="myisam-start.html"> MyISAM Startup Options </a> </dt> <dt> myisam_stats_method, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> myisam_use_mmap, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> mysqlx_bind_address, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_compression_algorithms, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_connect_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_deflate_default_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_deflate_max_client_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_document_id_unique_prefix, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_enable_hello_notice, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_idle_worker_thread_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_interactive_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_lz4_default_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_lz4_max_client_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_max_allowed_packet, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_max_connections, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_min_worker_threads, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_port, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_port_open_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_read_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_socket, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_ca, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_capath, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_cert, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_cipher, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_crl, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_crlpath, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_ssl_key, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_wait_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_write_timeout, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_zstd_default_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysqlx_zstd_max_client_compression_level, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> <dt> mysql_firewall_database, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt> mysql_firewall_mode, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt> mysql_firewall_reload_interval_seconds, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt> mysql_firewall_trace, <a class="indexterm" href="firewall-reference.html#firewall-system-variables"> MySQL Enterprise Firewall System Variables </a> </dt> <dt> mysql_native_password_proxy_users, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt> named_pipe, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> named_pipe_full_access_group, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ndbinfo_database, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_max_bytes, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_max_rows, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_offline, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_show_hidden, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_table_prefix, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndbinfo_version, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_autoincrement_prefetch_sz, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_clear_apply_status, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_conflict_role, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_data_node_neighbour, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_dbg_check_shares, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_default_column_format, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_deferred_constraints, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_distribution, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_eventbuffer_free_percent, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_eventbuffer_max_alloc, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_extra_logging, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_force_send, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_fully_replicated, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_index_stat_enable, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_index_stat_option, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_join_pushdown, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_apply_status, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_bin, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_binlog_index, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_cache_size, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_empty_epochs, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_empty_update, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_exclusive_reads, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_orig, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_transaction_compression, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_transaction_compression_level_zstd, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_log_transaction_id, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_metadata_check, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_metadata_check_interval, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_metadata_sync, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_optimized_node_selection, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_read_backup, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_recv_thread_activation_threshold, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_recv_thread_cpu_mask, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_replica_batch_size, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_replica_blob_write_batch_bytes, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_report_thresh_binlog_epoch_slip, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_report_thresh_binlog_mem_usage, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_row_checksum, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_schema_dist_lock_wait_timeout, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_schema_dist_timeout, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_schema_dist_upgrade_allowed, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_show_foreign_key_mock_tables, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_slave_conflict_role, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_table_no_logging, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_table_temporary, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_use_copying_alter_table, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_use_exact_count, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_use_transactions, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_version, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> ndb_version_string, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> net_buffer_length, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> net_read_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> net_retry_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> net_write_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ngram_token_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> offline_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> old_alter_table, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> open_files_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_prune_level, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_search_depth, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_switch, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_trace, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_trace_features, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_trace_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_trace_max_mem_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> optimizer_trace_offset, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> original_commit_timestamp, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> original_server_version, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> parser_max_mem_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> partial_revokes, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> password_history, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> password_require_current, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> password_reuse_interval, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> performance_schema, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_accounts_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_digests_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_error_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_stages_history_long_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_stages_history_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_statements_history_long_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_statements_history_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_transactions_history_long_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_transactions_history_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_waits_history_long_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_events_waits_history_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_hosts_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_cond_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_cond_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_digest_length, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_digest_sample_age, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_file_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_file_handles, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_file_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_index_stat, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_memory_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_metadata_locks, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_meter_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_metric_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_mutex_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_mutex_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_prepared_statements_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_program_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_rwlock_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_rwlock_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_socket_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_socket_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_sql_text_length, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_stage_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_statement_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_statement_stack, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_table_handles, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_table_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_table_lock_stat, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_thread_classes, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_max_thread_instances, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_session_connect_attrs_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_setup_actors_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_setup_objects_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_show_processlist, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> performance_schema_users_size, <a class="indexterm" href="performance-schema-system-variables.html"> Performance Schema System Variables </a> </dt> <dt> persisted_globals_load, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="persisted-system-variables.html"> Persisted System Variables </a> </dt> <dt> persist_only_admin_x509_subject, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> persist_sensitive_variables_in_plaintext, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> pid_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> plugin_dir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> port, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> preload_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> print_identified_with_as_hex, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> profiling, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> profiling_history_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> protocol_compression_algorithms, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> protocol_version, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> proxy_user, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> pseudo_slave_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> pseudo_thread_id, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> query_alloc_block_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> query_prealloc_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> rand_seed1, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> rand_seed2, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> range_alloc_block_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> range_optimizer_max_mem_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> rbr_exec_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> read_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> read_only, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> read_rnd_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> regexp_stack_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> regexp_time_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> relay_log, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> relay_log_basename, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> relay_log_index, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> relay_log_purge, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> relay_log_recovery, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> relay_log_space_limit, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replication_optimize_for_static_plugin_config, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replication_sender_observe_commit_only, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_allow_batching, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> replica_checkpoint_group, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_checkpoint_period, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_compressed_protocol, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_exec_mode, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_load_tmpdir, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_max_allowed_packet, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_net_timeout, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_parallel_type, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_parallel_workers, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_pending_jobs_size_max, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_preserve_commit_order, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_skip_errors, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_sql_verify_checksum, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_transaction_retries, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> replica_type_conversions, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> report_host, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> report_password, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> report_port, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> report_user, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> require_row_format, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> require_secure_transport, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> restrict_fk_on_non_standard_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> resultset_metadata, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> rewriter_enabled, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt> rewriter_enabled_for_threads_without_privilege_checks, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt> rewriter_verbose, <a class="indexterm" href="rewriter-query-rewrite-plugin-reference.html#rewriter-query-rewrite-plugin-system-variables"> Rewriter Query Rewrite Plugin System Variables </a> </dt> <dt> rpl_read_size, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_semi_sync_master_enabled, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_master_timeout, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_master_trace_level, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_master_wait_for_slave_count, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_master_wait_no_slave, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_master_wait_point, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_replica_enabled, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_semi_sync_replica_trace_level, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_semi_sync_slave_enabled, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_semi_sync_slave_trace_level, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_semi_sync_source_enabled, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_source_timeout, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_source_trace_level, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_source_wait_for_replica_count, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_source_wait_no_replica, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_semi_sync_source_wait_point, <a class="indexterm" href="replication-options-source.html#replication-sysvars-masters"> System Variables Used on Replication Source Servers </a> </dt> <dt> rpl_stop_replica_timeout, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> rpl_stop_slave_timeout, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> schema_definition_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> secondary_engine_cost_threshold, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> secure_file_priv, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> select_into_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> select_into_disk_sync, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> select_into_disk_sync_delay, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> server_id, <a class="indexterm" href="replication-options.html"> Replication and Binary Logging Options and Variables </a> </dt> <dt> server_id_bits, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> session_track_gtids, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt> session_track_schema, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt> session_track_state_change, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt> session_track_system_variables, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="session-state-tracking.html#session-state-tracking-notifications"> Available Session State Trackers </a> </dt> <dt> session_track_transaction_info, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> set_operations_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sha256_password_auto_generate_rsa_keys, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sha256_password_private_key_path, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sha256_password_proxy_users, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="proxy-users.html#proxy-users-server-user-mapping"> Server Support for Proxy User Mapping </a> </dt> <dt> sha256_password_public_key_path, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> shared_memory, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> shared_memory_base_name, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> show_create_table_skip_secondary_engine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> show_create_table_verbosity, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> show_gipk_in_create_table_and_information_schema, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> skip_external_locking, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> skip_name_resolve, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> skip_networking, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> skip_replica_start, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> skip_show_database, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> skip_slave_start, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_allow_batching, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> slave_checkpoint_group, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_checkpoint_period, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_compressed_protocol, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_exec_mode, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_load_tmpdir, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_max_allowed_packet, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_net_timeout, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_parallel_type, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_parallel_workers, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_pending_jobs_size_max, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_preserve_commit_order, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_skip_errors, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_sql_verify_checksum, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_transaction_retries, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slave_type_conversions, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> slow_launch_time, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> slow_query_log, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> slow_query_log_file, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> socket, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sort_buffer_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> source_verify_checksum, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> sql_auto_is_null, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_big_selects, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_buffer_result, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_generate_invisible_primary_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_log_bin, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> sql_log_off, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_notes, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_quote_show_create, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_replica_skip_counter, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> sql_require_primary_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_safe_updates, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_select_limit, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> , <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sql_slave_skip_counter, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> sql_warnings, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_ca, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_capath, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_cert, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_cipher, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_crl, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_crlpath, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_fips_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_key, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_session_cache_mode, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> ssl_session_cache_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> statement_id, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> stored_program_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> stored_program_definition_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> super_read_only, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> sync_binlog, <a class="indexterm" href="replication-options-binary-log.html#replication-sysvars-binlog"> System Variables Used with Binary Logging </a> </dt> <dt> sync_master_info, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> sync_relay_log, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> sync_relay_log_info, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> sync_source_info, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> syseventlog.facility, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> syseventlog.include_pid, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> syseventlog.tag, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> system_time_zone, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> <dt> tablespace_definition_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_definition_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_encryption_privilege_check, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_open_cache, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> table_open_cache_instances, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> telemetry.metrics_reader_frequency_1, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.metrics_reader_frequency_2, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.metrics_reader_frequency_3, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_bsp_max_export_batch_size, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_bsp_max_queue_size, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_bsp_schedule_delay, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_certificates, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_cipher, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_cipher_suite, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_client_certificates, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_client_key, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_compression, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_endpoint, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_headers, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_max_tls, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_min_tls, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_protocol, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_metrics_timeout, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_certificates, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_cipher, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_cipher_suite, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_client_certificates, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_client_key, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_compression, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_endpoint, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_headers, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_max_tls, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_min_tls, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_protocol, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_exporter_otlp_traces_timeout, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_log_level, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.otel_resource_attributes, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.query_text_enabled, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> telemetry.trace_enabled, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt> temptable_max_mmap, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> temptable_max_ram, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> temptable_use_mmap, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> terminology_use_previous, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt> thread_cache_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_handling, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_algorithm, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_dedicated_listeners, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_high_priority_connection, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_longrun_trx_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_max_active_query_threads, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_max_transactions_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_max_unused_threads, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_prio_kickup_timer, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_query_threads_per_group, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_stall_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_pool_transaction_delay, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> thread_stack, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> timestamp, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> time_zone, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> <dt> tls_certificates_enforced_validation, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> tls_ciphersuites, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> tls_version, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> tmpdir, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> tmp_table_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> transaction_alloc_block_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> transaction_allow_batching, <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt> transaction_isolation, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> transaction_prealloc_size, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> transaction_read_only, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> unique_checks, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> updatable_views_with_limit, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> use_secondary_engine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> validate_password.changed_characters_percentage, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.check_user_name, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.dictionary_file, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.length, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.mixed_case_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.number_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.policy, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password.special_char_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> validate_password_check_user_name, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_dictionary_file, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_length, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_mixed_case_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_number_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_policy, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> validate_password_special_char_count, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> version, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> version_comment, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> version_compile_machine, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> version_compile_os, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> version_compile_zlib, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> version_tokens_session, <a class="indexterm" href="version-tokens-reference.html#version-tokens-system-variables"> Version Tokens System Variables </a> </dt> <dt> version_tokens_session_number, <a class="indexterm" href="version-tokens-reference.html#version-tokens-system-variables"> Version Tokens System Variables </a> </dt> <dt> wait_timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> warning_count, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> windowing_use_high_precision, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt> xa_detach_on_prepare, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045302454752"> system variables, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="using-system-variables.html"> Using System Variables </a> , <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-variables.html"> Replication and Variables </a> </dt> <dt> enforce_gtid_consistency, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> Group Replication, <a class="indexterm" href="group-replication-system-variables.html"> Group Replication System Variables </a> </dt> <dt> gtid_mode, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> gtid_next, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> gtid_owned, <a class="indexterm" href="replication-options-gtids.html"> Global Transaction ID System Variables </a> </dt> <dt> hintable, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-set-var"> Variable-Setting Hint Syntax </a> </dt> <dt> mysqld, <a class="indexterm" href="server-configuration.html"> Configuring the Server </a> </dt> <dt> nonpersistible, <a class="indexterm" href="nonpersistible-system-variables.html"> Nonpersistible and Persist-Restricted System Variables </a> </dt> <dt> persist-restricted, <a class="indexterm" href="nonpersistible-system-variables.html"> Nonpersistible and Persist-Restricted System Variables </a> </dt> <dt> privileges required, <a class="indexterm" href="system-variable-privileges.html"> System Variable Privileges </a> </dt> <dt> SET_VAR optimizer hint, <a class="indexterm" href="optimizer-hints.html#optimizer-hints-set-var"> Variable-Setting Hint Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045318135488"> system-command option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045330029040"> systemd </dt> <dd> <dl> <dt> CMake SYSTEMD_PID_DIR option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> CMake SYSTEMD_SERVICE_NAME option, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> <dt> CMake WITH_SYSTEMD option, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> <dt> managing mysqld, <a class="indexterm" href="using-systemd.html"> Managing MySQL Server with systemd </a> </dt> <dt> mysqld daemonize option, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqld exit codes, <a class="indexterm" href="server-shutdown.html"> The Server Shutdown Process </a> </dt> </dl> </dd> <dt id="ientry-idm46045328371360"> SYSTEMD_PID_DIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328360672"> SYSTEMD_SERVICE_NAME option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045268421008"> system_time_zone system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> <dt id="ientry-idm46045250957536"> SYSTEM_USER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045249165088"> SYSTEM_USER privileges, <a class="indexterm" href="account-categories.html"> Account Categories </a> </dt> <dt id="ientry-idm46045198421520"> SYSTEM_USER(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045250926528"> SYSTEM_VARIABLES_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045063503696"> sys_config table </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-sys-config.html"> The sys_config Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045060696528"> sys_get_config() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-sys-get-config.html"> The sys_get_config() Function </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_T"> </a> T </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045220547184"> tab (\t), <a class="indexterm" href="string-literals.html"> String Literals </a> , <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> , <a class="indexterm" href="load-data.html#load-data-field-line-handling"> Field and Line Handling </a> </dt> <dt id="ientry-idm46045312752624"> tab option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045325860784"> table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> changing, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> , <a class="indexterm" href="alter-table-problems.html"> Problems with ALTER TABLE </a> </dt> <dt> deleting, <a class="indexterm" href="drop-table.html"> DROP TABLE Statement </a> </dt> <dt> rebuilding, <a class="indexterm" href="rebuilding-tables.html"> Rebuilding or Repairing Tables or Indexes </a> </dt> <dt> repair, <a class="indexterm" href="rebuilding-tables.html"> Rebuilding or Repairing Tables or Indexes </a> </dt> <dt> row size, <a class="indexterm" href="storage-requirements.html"> Data Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045179562896"> TABLE, <a class="indexterm" href="table.html"> TABLE Statement </a> </dt> <dt id="ientry-idm46045180917040"> table aliases, <a class="indexterm" href="select.html"> SELECT Statement </a> </dt> <dt id="ientry-idm46045226719024"> table cache, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt id="ientry-idm46045184381504"> table comment options (NDB), <a class="indexterm" href="create-table-ndb-comment-options.html"> Setting NDB Comment Options </a> </dt> <dt id="ientry-idm46045306792704"> table description </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-table-info.html"> Obtaining Table Information with myisamchk </a> </dt> </dl> </dd> <dt id="ientry-idm46045277849808"> table is full, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="full-table.html"> The table is full </a> </dt> <dt id="ientry-idm46045030510320"> table lock, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333516592"> table names </dt> <dd> <dl> <dt> case sensitivity, <a class="indexterm" href="extensions-to-ansi.html"> MySQL Extensions to Standard SQL </a> , <a class="indexterm" href="identifier-case-sensitivity.html"> Identifier Case Sensitivity </a> </dt> </dl> </dd> <dt id="ientry-idm46045318120368"> table option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045228292784"> table pullout </dt> <dd> <dl> <dt> semijoin strategy, <a class="indexterm" href="semijoins-antijoins.html"> Optimizing IN and EXISTS Subquery Predicates with Semijoin and Antijoin Transformations </a> </dt> </dl> </dd> <dt id="ientry-idm46045080907328"> table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-table-reference.html"> INFORMATION_SCHEMA Table Reference </a> </dt> <dt> Performance Schema, <a class="indexterm" href="performance-schema-table-reference.html"> Performance Schema Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045163147056"> table scan, <a class="indexterm" href="innodb-performance-midpoint_insertion.html"> Making the Buffer Pool Scan Resistant </a> </dt> <dt id="ientry-idm46045180647776"> TABLE statement </dt> <dd> <dl> <dt> with INTO, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045148720512"> table type, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> choosing, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> </dt> </dl> </dd> <dt id="ientry-idm46045179560368"> table value constructors </dt> <dd> <dl> <dt> TABLE, <a class="indexterm" href="table.html"> TABLE Statement </a> </dt> <dt> VALUES statement, <a class="indexterm" href="values.html"> VALUES Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045100233152"> table-id option </dt> <dd> <dl> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> </dl> </dd> <dt id="ientry-idm46045222914256"> table-level locking, <a class="indexterm" href="internal-locking.html"> Internal Locking Methods </a> </dt> <dt id="ientry-idm46045325452832"> tables </dt> <dd> <dl> <dt> BLACKHOLE, <a class="indexterm" href="blackhole-storage-engine.html"> The BLACKHOLE Storage Engine </a> </dt> <dt> checking, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> <dt> cloning, <a class="indexterm" href="create-table-like.html"> CREATE TABLE ... LIKE Statement </a> </dt> <dt> closing, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt> compressed, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> compressed format, <a class="indexterm" href="compressed-format.html"> Compressed Table Characteristics </a> </dt> <dt> const, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> constant, <a class="indexterm" href="where-optimization.html"> WHERE Clause Optimization </a> </dt> <dt> copying, <a class="indexterm" href="create-table-select.html"> CREATE TABLE ... SELECT Statement </a> </dt> <dt> counting rows, <a class="indexterm" href="counting-rows.html"> Counting Rows </a> </dt> <dt> creating, <a class="indexterm" href="creating-tables.html"> Creating a Table </a> </dt> <dt> CSV, <a class="indexterm" href="csv-storage-engine.html"> The CSV Storage Engine </a> </dt> <dt> defragment, <a class="indexterm" href="dynamic-format.html"> Dynamic Table Characteristics </a> </dt> <dt> defragmenting, <a class="indexterm" href="myisam-maintenance-schedule.html"> Setting Up a MyISAM Table Maintenance Schedule </a> , <a class="indexterm" href="optimize-table.html"> OPTIMIZE TABLE Statement </a> </dt> <dt> deleting rows, <a class="indexterm" href="deleting-from-related-tables.html"> Deleting Rows from Related Tables </a> </dt> <dt> displaying, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> displaying status, <a class="indexterm" href="show-table-status.html"> SHOW TABLE STATUS Statement </a> </dt> <dt> dumping, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> dynamic, <a class="indexterm" href="dynamic-format.html"> Dynamic Table Characteristics </a> </dt> <dt> error checking, <a class="indexterm" href="myisam-check.html"> How to Check MyISAM Tables for Errors </a> </dt> <dt> EXAMPLE, <a class="indexterm" href="example-storage-engine.html"> The EXAMPLE Storage Engine </a> </dt> <dt> FEDERATED, <a class="indexterm" href="federated-storage-engine.html"> The FEDERATED Storage Engine </a> </dt> <dt> flush, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> fragmentation, <a class="indexterm" href="optimize-table.html"> OPTIMIZE TABLE Statement </a> </dt> <dt> HEAP, <a class="indexterm" href="memory-storage-engine.html"> The MEMORY Storage Engine </a> </dt> <dt> importing, <a class="indexterm" href="innodb-table-import.html"> Importing InnoDB Tables </a> </dt> <dt> improving performance, <a class="indexterm" href="data-size.html"> Optimizing Data Size </a> </dt> <dt> information, <a class="indexterm" href="myisamchk-table-info.html"> Obtaining Table Information with myisamchk </a> </dt> <dt> information about, <a class="indexterm" href="getting-information.html"> Getting Information About Databases and Tables </a> </dt> <dt> InnoDB, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> </dt> <dt> loading data, <a class="indexterm" href="loading-tables.html"> Loading Data into a Table </a> </dt> <dt> maintenance, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> maintenance schedule, <a class="indexterm" href="myisam-maintenance-schedule.html"> Setting Up a MyISAM Table Maintenance Schedule </a> </dt> <dt> maximum size, <a class="indexterm" href="table-size-limit.html"> Limits on Table Size </a> </dt> <dt> MEMORY, <a class="indexterm" href="memory-storage-engine.html"> The MEMORY Storage Engine </a> </dt> <dt> MERGE, <a class="indexterm" href="merge-storage-engine.html"> The MERGE Storage Engine </a> </dt> <dt> merging, <a class="indexterm" href="merge-storage-engine.html"> The MERGE Storage Engine </a> </dt> <dt> multiple, <a class="indexterm" href="multiple-tables.html"> Using More Than one Table </a> </dt> <dt> MyISAM, <a class="indexterm" href="myisam-storage-engine.html"> The MyISAM Storage Engine </a> </dt> <dt> names, <a class="indexterm" href="identifiers.html"> Schema Object Names </a> </dt> <dt> open, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt> opening, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt> optimizing, <a class="indexterm" href="myisam-optimization.html"> MyISAM Table Optimization </a> </dt> <dt> partitioning, <a class="indexterm" href="merge-storage-engine.html"> The MERGE Storage Engine </a> </dt> <dt> repair, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> repairing, <a class="indexterm" href="myisam-repair.html"> How to Repair MyISAM Tables </a> </dt> <dt> retrieving data, <a class="indexterm" href="retrieving-data.html"> Retrieving Information from a Table </a> </dt> <dt> selecting columns, <a class="indexterm" href="selecting-columns.html"> Selecting Particular Columns </a> </dt> <dt> selecting rows, <a class="indexterm" href="selecting-rows.html"> Selecting Particular Rows </a> </dt> <dt> sorting rows, <a class="indexterm" href="sorting-rows.html"> Sorting Rows </a> </dt> <dt> symbolic links, <a class="indexterm" href="symbolic-links-to-tables.html"> Using Symbolic Links for MyISAM Tables on Unix </a> </dt> <dt> system, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> <dt> TEMPORARY, <a class="indexterm" href="create-temporary-table.html"> CREATE TEMPORARY TABLE Statement </a> </dt> <dt> too many, <a class="indexterm" href="creating-many-tables.html"> Disadvantages of Creating Many Tables in the Same Database </a> </dt> </dl> </dd> <dt id="ientry-idm46045078469936"> TABLES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tables-table.html"> The INFORMATION_SCHEMA TABLES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045314908528"> tables option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045259763712"> tables table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045165501664"> tablespace, <a class="indexterm" href="innodb-file-per-table-tablespaces.html"> File-Per-Table Tablespaces </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045159187872"> tablespace encryption </dt> <dd> <dl> <dt> monitoring, <a class="indexterm" href="innodb-data-encryption.html#innodb-data-encryption-progress-monitoring"> Monitoring Encryption Progress </a> </dt> </dl> </dd> <dt id="ientry-idm46045259754688"> tablespaces table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045078278304"> TABLESPACES_EXTENSIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tablespaces-extensions-table.html"> The INFORMATION_SCHEMA TABLESPACES_EXTENSIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045268215808"> tablespace_definition_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045259759200"> tablespace_files table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045078297552"> TABLES_EXTENSIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tables-extensions-table.html"> The INFORMATION_SCHEMA TABLES_EXTENSIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259691568"> tables_priv table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045078265552"> TABLE_CONSTRAINTS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-table-constraints-table.html"> The INFORMATION_SCHEMA TABLE_CONSTRAINTS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045078231216"> TABLE_CONSTRAINTS_EXTENSIONS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-table-constraints-extensions-table.html"> The INFORMATION_SCHEMA TABLE_CONSTRAINTS_EXTENSIONS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045268385280"> table_definition_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045087785536"> table_distribution_status </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-table-distribution-status.html"> The ndbinfo table_distribution_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045250905040"> TABLE_ENCRYPTION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045268335536"> table_encryption_privilege_check variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045061087728"> table_exists() procedure </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-table-exists.html"> The table_exists() Procedure </a> </dt> </dl> </dd> <dt id="ientry-idm46045087730832"> table_fragments </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-table-fragments.html"> The ndbinfo table_fragments Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045070241664"> table_handles table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-table-handles-table.html"> The table_handles Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087694832"> table_info </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-table-info.html"> The ndbinfo table_info Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068382800"> table_io_waits_summary_by_index_usage table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-io-waits-summary-by-index-usage-table"> The table_io_waits_summary_by_index_usage Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045068446176"> table_io_waits_summary_by_table table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-io-waits-summary-by-table-table"> The table_io_waits_summary_by_table Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045261805584"> Table_locks_immediate status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261800032"> Table_locks_waited status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045068357440"> table_lock_waits_summary_by_table table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-table-wait-summary-tables.html#performance-schema-table-lock-waits-summary-by-table-table"> The table_lock_waits_summary_by_table Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045226728992"> table_open_cache, <a class="indexterm" href="table-cache.html"> How MySQL Opens and Closes Tables </a> </dt> <dt id="ientry-idm46045268297296"> table_open_cache system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261794272"> Table_open_cache_hits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268252816"> table_open_cache_instances system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261788768"> Table_open_cache_misses status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261783296"> Table_open_cache_overflows status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045259774016"> table_partitions table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259778560"> table_partition_values table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045078210704"> TABLE_PRIVILEGES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-table-privileges-table.html"> The INFORMATION_SCHEMA TABLE_PRIVILEGES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087665184"> table_replicas </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-table-replicas.html"> The ndbinfo table_replicas Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259768224"> table_stats table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045205650512"> TAN(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045329793424"> tar </dt> <dd> <dl> <dt> problems on Solaris, <a class="indexterm" href="solaris-installation.html"> Installing MySQL on Solaris </a> </dt> </dl> </dd> <dt id="ientry-idm46045279015616"> tc-heuristic-recover option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045030469184"> Tcl, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060283504"> Tcl API, <a class="indexterm" href="apis-tcl.html"> MySQL Tcl API </a> </dt> <dt id="ientry-idm46045109426896"> TCP parameters (NDB) </dt> <dd> <dl> <dt> NodeIdServer, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt> Proxy, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> </dl> </dd> <dt id="ientry-idm46045320977936"> tcp-ip option </dt> <dd> <dl> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> </dl> </dd> <dt id="ientry-idm46045332098752"> TCP/IP, <a class="indexterm" href="windows-select-server.html"> Selecting a MySQL Server Type </a> , <a class="indexterm" href="windows-testing.html"> Testing The MySQL Installation </a> , <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> , <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> , <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> , <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> , <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> , <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> , <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="server-options.html"> Server Command Options </a> , <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> , <a class="indexterm" href="multiple-servers.html"> Running Multiple MySQL Instances on One Machine </a> , <a class="indexterm" href="security-against-attack.html"> Making MySQL Secure Against Attackers </a> , <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> , <a class="indexterm" href="performance-schema-socket-instances-table.html"> The socket_instances Table </a> , <a class="indexterm" href="can-not-connect-to-server.html"> Can't connect to [local] MySQL server </a> </dt> <dt id="ientry-idm46045109223312"> TcpSpinTime, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045109202864"> TCP_MAXSEG_SIZE, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045109182352"> TCP_RCV_BUF_SIZE, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045109161760"> TCP_SND_BUF_SIZE, <a class="indexterm" href="mysql-cluster-tcp-definition.html"> NDB Cluster TCP/IP Connections </a> </dt> <dt id="ientry-idm46045261775024"> Tc_log_max_pages_used status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261763328"> Tc_log_page_size status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261755696"> Tc_log_page_waits status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045087627024"> tc_time_track_stats </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-tc-time-track-stats.html"> The ndbinfo tc_time_track_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045317663728"> tee command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045318106848"> tee option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045261742160"> telemetry.live_sessions status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045058550288"> telemetry.metrics_reader_frequency_1 system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058523760"> telemetry.metrics_reader_frequency_2 system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058495664"> telemetry.metrics_reader_frequency_3 system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059383664"> telemetry.otel_bsp_max_export_batch_size system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059406928"> telemetry.otel_bsp_max_queue_size system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059432416"> telemetry.otel_bsp_schedule_delay system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058800384"> telemetry.otel_exporter_otlp_metrics_certificates system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058673552"> telemetry.otel_exporter_otlp_metrics_cipher system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058650000"> telemetry.otel_exporter_otlp_metrics_cipher_suite system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058753488"> telemetry.otel_exporter_otlp_metrics_client_certificates system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058776896"> telemetry.otel_exporter_otlp_metrics_client_key system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058603120"> telemetry.otel_exporter_otlp_metrics_compression system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058824016"> telemetry.otel_exporter_otlp_metrics_endpoint system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058626576"> telemetry.otel_exporter_otlp_metrics_headers system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058701728"> telemetry.otel_exporter_otlp_metrics_max_tls system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058729952"> telemetry.otel_exporter_otlp_metrics_min_tls system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058852816"> telemetry.otel_exporter_otlp_metrics_protocol system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045058575840"> telemetry.otel_exporter_otlp_metrics_timeout system variable, <a class="indexterm" href="telemetry-metrics-configuration.html#telemetry-metrics-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059578640"> telemetry.otel_exporter_otlp_traces_certificates system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059304352"> telemetry.otel_exporter_otlp_traces_cipher system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059281088"> telemetry.otel_exporter_otlp_traces_cipher_suite system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059531888"> telemetry.otel_exporter_otlp_traces_client_certificates system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059555344"> telemetry.otel_exporter_otlp_traces_client_key system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059485184"> telemetry.otel_exporter_otlp_traces_compression system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059602144"> telemetry.otel_exporter_otlp_traces_endpoint system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059508560"> telemetry.otel_exporter_otlp_traces_headers system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059332320"> telemetry.otel_exporter_otlp_traces_max_tls system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059360320"> telemetry.otel_exporter_otlp_traces_min_tls system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059629408"> telemetry.otel_exporter_otlp_traces_protocol system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059457968"> telemetry.otel_exporter_otlp_traces_timeout system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059682880"> telemetry.otel_log_level system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059652800"> telemetry.otel_resource_attributes system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059706112"> telemetry.query_text_enabled system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045059729280"> telemetry.trace_enabled system variable, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-server"> Server Configuration </a> </dt> <dt id="ientry-idm46045317938848"> telemetry_client </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045059188784"> telemetry_client.otel-help </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059204448"> telemetry_client.otel-trace </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045058968960"> telemetry_client.otel_bsp_max_export_batch_size </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045058984784"> telemetry_client.otel_bsp_max_queue_size </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059000640"> telemetry_client.otel_bsp_schedule_delay </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059099328"> telemetry_client.otel_exporter_otlp_traces_certificates </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059067680"> telemetry_client.otel_exporter_otlp_traces_client_certificates </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059083520"> telemetry_client.otel_exporter_otlp_traces_client_key </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059036112"> telemetry_client.otel_exporter_otlp_traces_compression </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059115200"> telemetry_client.otel_exporter_otlp_traces_endpoint </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059051840"> telemetry_client.otel_exporter_otlp_traces_headers </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059134832"> telemetry_client.otel_exporter_otlp_traces_protocol </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059016464"> telemetry_client.otel_exporter_otlp_traces_timeout </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059173024"> telemetry_client.otel_log_level </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045059150576"> telemetry_client.otel_resource_attributes </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="telemetry-trace-configuration.html#telemetry-trace-configuration-client"> Client Configuration </a> </dt> </dl> </dd> <dt id="ientry-idm46045250897472"> TELEMETRY_LOG_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045261748720"> Telemetry_metrics_supported status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261734928"> Telemetry_traces_supported status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045101879968"> tempdelay option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045101856960"> temperrors option </dt> <dd> <dl> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045218513424"> temporal interval syntax, <a class="indexterm" href="expressions.html#temporal-intervals"> Temporal Intervals </a> </dt> <dt id="ientry-idm46045211380384"> temporal values </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045053828176"> temporary files, <a class="indexterm" href="temporary-files.html"> Where MySQL Stores Temporary Files </a> </dt> <dt id="ientry-idm46045030463056"> temporary table, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045251806160"> TEMPORARY table privileges, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> , <a class="indexterm" href="create-temporary-table.html"> CREATE TEMPORARY TABLE Statement </a> , <a class="indexterm" href="grant.html#grant-table-privileges"> Table Privileges </a> </dt> <dt id="ientry-idm46045226660704"> temporary tables </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-temptables.html"> Replication and Temporary Tables </a> </dt> <dt> internal, <a class="indexterm" href="internal-temporary-tables.html"> Internal Temporary Table Use in MySQL </a> </dt> <dt> problems, <a class="indexterm" href="temporary-table-problems.html"> TEMPORARY Table Problems </a> </dt> </dl> </dd> <dt id="ientry-idm46045185392176"> TEMPORARY tables, <a class="indexterm" href="create-temporary-table.html"> CREATE TEMPORARY TABLE Statement </a> </dt> <dd> <dl> <dt> renaming, <a class="indexterm" href="rename-table.html"> RENAME TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045030458576"> temporary tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045268181360"> temptable_max_mmap system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268146608"> temptable_max_ram system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268111840"> temptable_use_mmap system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045325706464"> terminal monitor </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="tutorial.html"> Tutorial </a> </dt> </dl> </dd> <dt id="ientry-idm46045141057392"> terminology_use_previous system variable, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> </dt> <dt id="ientry-idm46045306345904"> test option </dt> <dd> <dl> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045106044720"> test-tls option </dt> <dd> <dl> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> </dl> </dd> <dt id="ientry-idm46045327113328"> testing </dt> <dd> <dl> <dt> connection to the server, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> </dt> <dt> installation, <a class="indexterm" href="data-directory-initialization.html#data-directory-initialization-overview"> Data Directory Initialization Overview </a> </dt> <dt> postinstallation, <a class="indexterm" href="postinstallation.html"> Postinstallation Setup and Testing </a> </dt> </dl> </dd> <dt id="ientry-idm46045243849488"> test_plugin_server authentication plugin, <a class="indexterm" href="test-pluggable-authentication.html"> Test Pluggable Authentication </a> </dt> <dt id="ientry-idm46045210495632"> TEXT </dt> <dd> <dl> <dt> size, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045030452512"> text collection, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045227448944"> TEXT columns </dt> <dd> <dl> <dt> default values, <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt> indexes, <a class="indexterm" href="create-index.html#create-index-column-prefixes"> Column Prefix Key Parts </a> </dt> <dt> indexing, <a class="indexterm" href="column-indexes.html#column-indexes-prefix"> Index Prefixes </a> , <a class="indexterm" href="create-table.html"> CREATE TABLE Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045212856096"> TEXT data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="blob.html"> The BLOB and TEXT Types </a> </dt> <dt id="ientry-idm46045317344176"> text files </dt> <dd> <dl> <dt> importing, <a class="indexterm" href="mysql-batch-commands.html"> Executing SQL Statements from a Text File </a> , <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> , <a class="indexterm" href="load-data.html"> LOAD DATA Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045095582608"> text option </dt> <dd> <dl> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045030449120"> TGS, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030445104"> thread, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045261015424"> thread cache, <a class="indexterm" href="connection-interfaces.html"> Connection Interfaces </a> </dt> <dt id="ientry-idm46045221950192"> thread command </dt> <dd> <dl> <dt> Binlog Dump, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Change user, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Close stmt, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Connect, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Connect Out, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Create DB, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Daemon, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Debug, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Delayed insert, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Drop DB, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Error, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Execute, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Fetch, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Field List, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Init DB, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Kill, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Long Data, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Ping, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Prepare, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Processlist, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Query, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Quit, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Refresh, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Register Slave, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Reset stmt, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Set option, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Shutdown, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Sleep, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Statistics, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt> Time, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045221954704"> thread commands, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> <dt id="ientry-idm46045073766400"> thread observability </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="performance-schema-setup-instruments-table.html"> The setup_instruments Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045260166960"> thread pool plugin </dt> <dd> <dl> <dt> resource groups, <a class="indexterm" href="resource-groups.html#resource-group-restrictions"> Resource Group Restrictions </a> </dt> </dl> </dd> <dt id="ientry-idm46045076079968"> thread pool table reference </dt> <dd> <dl> <dt> INFORMATION_SCHEMA, <a class="indexterm" href="information-schema-thread-pool-table-reference.html"> INFORMATION_SCHEMA Thread Pool Table Reference </a> </dt> </dl> </dd> <dt id="ientry-idm46045221798640"> thread state </dt> <dd> <dl> <dt> After create, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> altering table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Analyzing, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Changing master, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Changing replication source, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Checking master version, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> checking permissions, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Checking source version, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Checking table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> cleaning up, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Clearing, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> closing tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> committing alter table to storage engine, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Committing events to binlog, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Connecting to master, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Connecting to source, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> converting HEAP to ondisk, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> copy to tmp table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Copying to group table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Copying to tmp table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Copying to tmp table on disk, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Creating index, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Creating sort index, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> creating table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Creating tmp table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> deleting from main table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> deleting from reference tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> discard_or_import_tablespace, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> end, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> executing, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Execution of init_command, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Finished reading one binlog; switching to next binlog, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> freeing items, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> FULLTEXT initialization, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> init, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Initialized, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> Killed, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Killing slave, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Locking system tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> logging slow query, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> login, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Making temporary file (append) before replaying LOAD DATA INFILE, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Making temporary file (create) before replaying LOAD DATA INFILE, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> manage keys, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Master has sent all binlog to slave; waiting for more updates, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> Opening master dump table, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Opening mysql.ndb_apply_status, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Opening system tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Opening tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> optimizing, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> preparing, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> preparing for alter table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Processing events, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Processing events from schema table, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Purging old relay logs, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> query end, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Queueing master event to the relay log, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Queueing source event to the relay log, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Reading event from the relay log, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Reading master dump table data, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Rebuilding the index on master dump table, <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> Receiving from client, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Reconnecting after a failed binlog dump request, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Reconnecting after a failed master event read, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Reconnecting after a failed source event read, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Registering replica on source, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Registering slave on master, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Removing duplicates, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> removing tmp table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> rename, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> rename result table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Reopen tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Repair by sorting, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Repair done, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Repair with keycache, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Replica has read all relay log; waiting for more updates, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Requesting binlog dump, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Rolling back, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Saving state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Searching rows for update, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Sending binlog event to replica, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> Sending binlog event to slave, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> Sending to client, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> setup, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Shutting down, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Slave has read all relay log; waiting for more updates, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Sorting for group, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Sorting for order, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Sorting index, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Sorting result, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Source has sent all binlog to replica; waiting for more updates, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> starting, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> statistics, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Syncing ndb table schema operation and binlog, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> System lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> update, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Updating, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> updating main table, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> updating reference tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> User lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> User sleep, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for allowed to take ndbcluster global schema lock, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for an event from Coordinator, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for commit lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for event from ndbcluster, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for first event from ndbcluster, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for global read lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> waiting for handler commit, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for its turn to commit, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for master to send event, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for master update, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for ndbcluster binlog update to reach current position, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for ndbcluster global schema lock, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for ndbcluster to start, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for next activation, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> Waiting for replica mutex on exit, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for Replica Workers to free pending events, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for scheduler to stop, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> Waiting for schema epoch, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> Waiting for schema metadata lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for slave mutex on exit, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for Slave Workers to free pending events, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for source to send event, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for source update, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for stored function metadata lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for stored procedure metadata lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for table flush, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for table level lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for table metadata lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for tables, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting for the next event in relay log, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Waiting for the replica SQL thread to free enough relay log space, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for the slave SQL thread to free enough relay log space, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting for trigger metadata lock, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting on cond, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> Waiting on empty queue, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> Waiting to finalize termination, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> <dt> Waiting to reconnect after a failed binlog dump request, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting to reconnect after a failed master event read, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting to reconnect after a failed source event read, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> <dt> Waiting until SOURCE_DELAY seconds after source executed event, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> <dt> Writing to net, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045222050928"> thread states, <a class="indexterm" href="thread-information.html"> Examining Server Thread (Process) Information </a> </dt> <dd> <dl> <dt> event scheduler, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> <dt> general, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> <dt> replication, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> , <a class="indexterm" href="replica-connection-thread-states.html"> Replication Connection Thread States </a> </dt> <dt> replication source, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045067244240"> thread table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-threads-table.html"> The threads Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045146307904"> thread/sql/compress_gtid_table, <a class="indexterm" href="replication-gtids-concepts.html#replication-gtids-gtid-executed-table-compression"> mysql.gtid_executed Table Compression </a> </dt> <dt id="ientry-idm46045087578352"> threadblocks </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-threadblocks.html"> The ndbinfo threadblocks Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045115631744"> ThreadConfig, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045115228944"> ThreadPool (see <a href="#ientry-idm46045115230016"> DiskIOThreadPool </a> ) </dt> <dt id="ientry-idm46045316971440"> threads, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> , <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> </dt> <dd> <dl> <dt> display, <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> </dt> <dt> monitoring, <a class="indexterm" href="thread-information.html"> Examining Server Thread (Process) Information </a> , <a class="indexterm" href="show-processlist.html"> SHOW PROCESSLIST Statement </a> , <a class="indexterm" href="information-schema-processlist-table.html"> The INFORMATION_SCHEMA PROCESSLIST Table </a> , <a class="indexterm" href="performance-schema-threads-table.html"> The threads Table </a> </dt> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-threads.html"> The ndbinfo threads Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087533696"> threadstat </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-threadstat.html"> The ndbinfo threadstat Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045261728480"> Threads_cached status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261722992"> Threads_connected status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261717600"> Threads_created status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261707184"> Threads_running status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045268079904"> thread_cache_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268041376"> thread_handling system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045268007024"> thread_pool_algorithm system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267971792"> thread_pool_dedicated_listeners system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267937936"> thread_pool_high_priority_connection system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267906032"> thread_pool_longrun_trx_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267866384"> thread_pool_max_active_query_threads system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267834416"> thread_pool_max_transactions_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267792560"> thread_pool_max_unused_threads system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267757072"> thread_pool_prio_kickup_timer system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267722960"> thread_pool_query_threads_per_group system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267682656"> thread_pool_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267650336"> thread_pool_stall_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267616016"> thread_pool_transaction_delay system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267581360"> thread_stack system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045248022176"> three-factor authentication (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045030439296"> ticket-granting server, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030435472"> ticket-granting ticket, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045221809504"> Time </dt> <dd> <dl> <dt> thread command, <a class="indexterm" href="thread-commands.html"> Thread Command Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045213683376"> TIME data type, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="time.html"> The TIME Type </a> </dt> <dt id="ientry-idm46045210630336"> time data types </dt> <dd> <dl> <dt> storage requirements, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-date-time"> Date and Time Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045220416176"> time literals, <a class="indexterm" href="date-and-time-literals.html"> Date and Time Literals </a> </dt> <dt id="ientry-idm46045082082752"> time representation </dt> <dd> <dl> <dt> Event Scheduler, <a class="indexterm" href="events-metadata.html"> Event Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045053748576"> time zone problems, <a class="indexterm" href="timezone-problems.html"> Time Zone Problems </a> </dt> <dt id="ientry-idm46045320219872"> time zone tables, <a class="indexterm" href="mysql-tzinfo-to-sql.html"> mysql_tzinfo_to_sql — Load the Time Zone Tables </a> </dt> <dd> <dl> <dt> system tables, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045260470800"> time zones </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-timezone.html"> Replication and Time Zones </a> </dt> <dt> leap seconds, <a class="indexterm" href="time-zone-support.html#time-zone-leap-seconds"> Time Zone Leap Second Support </a> </dt> <dt> support, <a class="indexterm" href="time-zone-support.html"> MySQL Server Time Zone Support </a> </dt> <dt> upgrading, <a class="indexterm" href="time-zone-support.html#time-zone-upgrades"> Staying Current with Time Zone Changes </a> </dt> </dl> </dd> <dt id="ientry-idm46045204328848"> TIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045117564368"> TimeBetweenEpochs, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117541648"> TimeBetweenEpochsTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117609488"> TimeBetweenGlobalCheckpoints, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117584960"> TimeBetweenGlobalCheckpointsTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117473440"> TimeBetweenInactiveTransactionAbortCheck, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117633984"> TimeBetweenLocalCheckpoints, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117921600"> TimeBetweenWatchDogCheck, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117899104"> TimeBetweenWatchDogCheckInitial, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045204312512"> TIMEDIFF(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045277007888"> timeout, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="locking-functions.html"> Locking Functions </a> </dt> <dt id="ientry-idm46045095161072"> timeout option </dt> <dd> <dl> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045135076832"> timeouts (replication), <a class="indexterm" href="replication-features-timeout.html"> Replication Retries and Timeouts </a> </dt> <dt id="ientry-idm46045226921808"> TIMESTAMP </dt> <dd> <dl> <dt> and NULL values, <a class="indexterm" href="problems-with-null.html"> Problems with NULL Values </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-auto-increment.html"> Replication and AUTO_INCREMENT </a> </dt> <dt> indexes, <a class="indexterm" href="timestamp-lookups.html"> Indexed Lookups from TIMESTAMP Columns </a> </dt> <dt> initialization and updating, <a class="indexterm" href="timestamp-initialization.html"> Automatic Initialization and Updating for TIMESTAMP and DATETIME </a> </dt> </dl> </dd> <dt id="ientry-idm46045213728176"> TIMESTAMP data type, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="datetime.html"> The DATE, DATETIME, and TIMESTAMP Types </a> </dt> <dt id="ientry-idm46045267509248"> timestamp system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045204286000"> TIMESTAMP(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045098231680"> timestamp-printouts option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045204269760"> TIMESTAMPADD(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204238368"> TIMESTAMPDIFF(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045321469296"> timezone option </dt> <dd> <dl> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045204216336"> TIME_FORMAT(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204196016"> TIME_TO_SEC(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045261311920"> TIME_TRUNCATE_FRACTIONAL SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-full"> Full List of SQL Modes </a> </dt> <dt id="ientry-idm46045267543104"> time_zone system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> <dt id="ientry-idm46045259570416"> time_zone table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259565888"> time_zone_leap_second table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259561408"> time_zone_name table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259556896"> time_zone_transition table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045259553888"> time_zone_transition_type table </dt> <dd> <dl> <dt> system table, <a class="indexterm" href="system-schema.html#system-schema-time-zone-tables"> Time Zone System Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045212889856"> TINYBLOB data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045214383392"> TINYINT data type, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> </dt> <dt id="ientry-idm46045212879984"> TINYTEXT data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045227601504"> tips </dt> <dd> <dl> <dt> optimization, <a class="indexterm" href="miscellaneous-optimization-tips.html"> Other Optimization Tips </a> </dt> </dl> </dd> <dt id="ientry-idm46045323279168"> TLS, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> <dd> <dl> <dt> command options, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dt> establishing connections, <a class="indexterm" href="using-encrypted-connections.html"> Configuring MySQL to Use Encrypted Connections </a> </dt> </dl> </dd> <dt id="ientry-idm46045094376832"> TLS INFO command (NDB Cluster), <a class="indexterm" href="mysql-cluster-mgm-client-commands.html"> Commands in the NDB Cluster Management Client </a> </dt> <dt id="ientry-idm46045091203536"> TLS link encryption </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-tls.html"> TLS Link Encryption for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045174845264"> TLS related options </dt> <dd> <dl> <dt> ALTER USER, <a class="indexterm" href="alter-user.html#alter-user-tls"> ALTER USER SSL/TLS Options </a> </dt> <dt> CREATE USER statement, <a class="indexterm" href="create-user.html#create-user-tls"> CREATE USER SSL/TLS Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045322914096"> tls-ciphersuites option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045320275120"> tls-sni-servername option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045322892736"> tls-version option, <a class="indexterm" href="connection-options.html#encrypted-connection-options"> Command Options for Encrypted Connections </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045267459104"> tls_certificates_enforced_validation, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045067007200"> tls_channel_status table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-tls-channel-status-table.html"> The tls_channel_status Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045267426992"> tls_ciphersuites system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045261701632"> Tls_library_version status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261696080"> Tls_sni_server_name status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045267391088"> tls_version system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045324321792"> TMPDIR environment variable, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="temporary-files.html"> Where MySQL Stores Temporary Files </a> </dt> <dt id="ientry-idm46045328349328"> TMPDIR option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-installation-layout-options"> Installation Layout Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045306903408"> tmpdir option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045267306112"> tmpdir system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267357792"> tmp_table_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045096009200"> to-dir option </dt> <dd> <dl> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045303674960"> to-last-log option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045030432768"> Tomcat, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045054192400"> too many open files, <a class="indexterm" href="not-enough-file-handles.html"> File Not Found and Similar Errors </a> </dt> <dt id="ientry-idm46045321999200"> tools </dt> <dd> <dl> <dt> command-line, <a class="indexterm" href="mysql.html"> mysql — The MySQL Command-Line Client </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> </dl> </dd> <dt id="ientry-idm46045303089424"> top option </dt> <dd> <dl> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045160708288"> torn page, <a class="indexterm" href="innodb-disk-io.html#innodb-disk-io-doublewrite"> Doublewrite Buffer </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045120061120"> TotalSendBufferMemory </dt> <dd> <dl> <dt> API and SQL nodes, <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt> data nodes, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt> management nodes, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> </dt> </dl> </dd> <dt id="ientry-idm46045240484544"> Townsend Alliance Key Manager </dt> <dd> <dl> <dt> keyring_okv keyring plugin, <a class="indexterm" href="keyring-okv-plugin.html#keyring-okv-alliance"> Configuring keyring_okv for Townsend Alliance Key Manager </a> </dt> </dl> </dd> <dt id="ientry-idm46045202865168"> TO_BASE64(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045204182768"> TO_DAYS(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204152432"> TO_SECONDS(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045030422816"> TPS, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045069903232"> tp_connections table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-tp-connections-table.html"> The tp_connections Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045250891152"> TP_CONNECTION_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045076060800"> TP_THREAD_GROUP_STATE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tp-thread-group-state-table.html"> The INFORMATION_SCHEMA TP_THREAD_GROUP_STATE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045069839648"> tp_thread_group_state table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-tp-thread-group-state-table.html"> The tp_thread_group_state Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076047872"> TP_THREAD_GROUP_STATS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tp-thread-group-stats-table.html"> The INFORMATION_SCHEMA TP_THREAD_GROUP_STATS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045069768928"> tp_thread_group_stats table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-tp-thread-group-stats-table.html"> The tp_thread_group_stats Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045076035008"> TP_THREAD_STATE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-tp-thread-state-table.html"> The INFORMATION_SCHEMA TP_THREAD_STATE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045069696864"> tp_thread_state table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-tp-thread-state-table.html"> The tp_thread_state Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045253691904"> trace DBI method, <a class="indexterm" href="using-gdb-on-mysqld.html"> Debugging mysqld under gdb </a> </dt> <dt id="ientry-idm46045107240112"> trace files </dt> <dd> <dl> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbmtd.html"> ndbmtd — The NDB Cluster Data Node Daemon (Multi-Threaded) </a> </dt> </dl> </dd> <dt id="ientry-idm46045107718128"> trace files (NDB Cluster), <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt id="ientry-idm46045261613888"> TRADITIONAL SQL mode, <a class="indexterm" href="sql-mode.html#sql-mode-important"> The Most Important SQL Modes </a> , <a class="indexterm" href="sql-mode.html#sql-mode-combo"> Combination SQL Modes </a> </dt> <dt id="ientry-idm46045212979968"> trailing spaces </dt> <dd> <dl> <dt> CHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt> ENUM, <a class="indexterm" href="enum.html#enum-literals"> Handling of Enumeration Literals </a> </dt> <dt> in comparisons, <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> <dt> SET, <a class="indexterm" href="set.html"> The SET Type </a> </dt> <dt> VARCHAR, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="char.html"> The CHAR and VARCHAR Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045216963040"> trailing spaces in comparisons, <a class="indexterm" href="charset-binary-collations.html#charset-binary-collations-trailing-space-comparisons"> Trailing Space Handling in Comparisons </a> </dt> <dt id="ientry-idm46045030417872"> transaction, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045178292880"> transaction access mode, <a class="indexterm" href="set-transaction.html"> SET TRANSACTION Statement </a> </dt> <dt id="ientry-idm46045133384768"> transaction consistency guarantees </dt> <dd> <dl> <dt> understanding, <a class="indexterm" href="group-replication-understanding-consistency-guarantees.html"> Understanding Transaction Consistency Guarantees </a> </dt> </dl> </dd> <dt id="ientry-idm46045030409600"> transaction ID, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045178293936"> transaction isolation level, <a class="indexterm" href="set-transaction.html"> SET TRANSACTION Statement </a> </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-transactions.html"> Limits Relating to Transaction Handling in NDB Cluster </a> </dt> <dt> READ COMMITTED, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> <dt> READ UNCOMMITTED, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> <dt> REPEATABLE READ, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> <dt> SERIALIZABLE, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> </dl> </dd> <dt id="ientry-idm46045087270560"> transaction memory usage </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-ps-tables.html#mysql-cluster-trx-batch-memory"> Transaction Memory Usage </a> </dt> </dl> </dd> <dt id="ientry-idm46045260090016"> transaction state </dt> <dd> <dl> <dt> change tracking, <a class="indexterm" href="session-state-tracking.html"> Server Tracking of Client Session State </a> </dt> </dl> </dd> <dt id="ientry-idm46045278991328"> transaction-isolation option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045278949504"> transaction-read-only option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045167485120"> transaction-safe tables, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> </dt> <dt id="ientry-idm46045104395536"> transactional option </dt> <dd> <dl> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045119326784"> TransactionBufferMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117429792"> TransactionDeadlockDetectionTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117452032"> TransactionInactiveTimeout, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045119137712"> TransactionMemory, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045222707280"> transactions, <a class="indexterm" href="innodb-locking-transaction-model.html"> InnoDB Locking and Transaction Model </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-timeout.html"> Replication Retries and Timeouts </a> , <a class="indexterm" href="replication-features-transactions.html"> Replication and Transactions </a> </dt> <dt> isolation levels, <a class="indexterm" href="innodb-transaction-isolation-levels.html"> Transaction Isolation Levels </a> </dt> <dt> metadata locking, <a class="indexterm" href="metadata-locking.html"> Metadata Locking </a> </dt> <dt> support, <a class="indexterm" href="innodb-introduction.html"> Introduction to InnoDB </a> </dt> </dl> </dd> <dt id="ientry-idm46045267273408"> transaction_alloc_block_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045110979504"> transaction_allow_batching session variable (NDB Cluster), <a class="indexterm" href="mysql-cluster-options-variables.html#mysql-cluster-system-variables"> NDB Cluster System Variables </a> </dt> <dt id="ientry-idm46045250878560"> TRANSACTION_GTID_TAG privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045267236384"> transaction_isolation system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267158944"> transaction_prealloc_size system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045267113824"> transaction_read_only system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045159420080"> transparent data encryption, <a class="indexterm" href="innodb-data-encryption.html"> InnoDB Data-at-Rest Encryption </a> </dt> <dt id="ientry-idm46045030400688"> transparent page compression, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030391520"> transportable tablespace, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045166724256"> Transportable Tablespaces, <a class="indexterm" href="innodb-table-import.html"> Importing InnoDB Tables </a> </dt> <dt id="ientry-idm46045087429456"> transporters </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-transporters.html"> The ndbinfo transporters Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045087483584"> transporter_details </dt> <dd> <dl> <dt> ndbinfo table, <a class="indexterm" href="mysql-cluster-ndbinfo-transporter-details.html"> The ndbinfo transporter_details Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045251435760"> TRIGGER privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045183823472"> triggers, <a class="indexterm" href="create-trigger.html"> CREATE TRIGGER Statement </a> , <a class="indexterm" href="drop-trigger.html"> DROP TRIGGER Statement </a> , <a class="indexterm" href="show-triggers.html"> SHOW TRIGGERS Statement </a> , <a class="indexterm" href="stored-objects.html"> Stored Objects </a> , <a class="indexterm" href="triggers.html"> Using Triggers </a> </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-invoked.html"> Replication of Invoked Features </a> , <a class="indexterm" href="replication-features-triggers.html"> Replication and Triggers </a> </dt> <dt> LAST_INSERT_ID(), <a class="indexterm" href="stored-routines-last-insert-id.html"> Stored Procedures, Functions, Triggers, and LAST_INSERT_ID() </a> </dt> <dt> metadata, <a class="indexterm" href="trigger-metadata.html"> Trigger Metadata </a> </dt> <dt> restrictions, <a class="indexterm" href="stored-program-restrictions.html"> Restrictions on Stored Programs </a> </dt> </dl> </dd> <dt id="ientry-idm46045078178480"> TRIGGERS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-triggers-table.html"> The INFORMATION_SCHEMA TRIGGERS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045312455344"> triggers option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045259750192"> triggers table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045202839296"> TRIM(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045327226080"> troubleshooting, <a class="indexterm" href="error-interfaces.html"> Error Information Interfaces </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> ALTER TABLE problems, <a class="indexterm" href="alter-table-problems.html"> Problems with ALTER TABLE </a> </dt> <dt> compiling MySQL server, <a class="indexterm" href="compilation-problems.html"> Dealing with Problems Compiling MySQL </a> </dt> <dt> connection problems, <a class="indexterm" href="problems-connecting.html"> Troubleshooting Problems Connecting to MySQL </a> </dt> <dt> InnoDB deadlocks, <a class="indexterm" href="innodb-deadlocks.html"> Deadlocks in InnoDB </a> , <a class="indexterm" href="innodb-deadlock-detection.html"> Deadlock Detection </a> </dt> <dt> InnoDB errors, <a class="indexterm" href="innodb-error-handling.html"> InnoDB Error Handling </a> </dt> <dt> InnoDB recovery problems, <a class="indexterm" href="forcing-innodb-recovery.html"> Forcing InnoDB Recovery </a> </dt> <dt> InnoDB table fragmentation, <a class="indexterm" href="innodb-file-defragmenting.html"> Defragmenting a Table </a> </dt> <dt> replication, <a class="indexterm" href="replication-problems.html"> Troubleshooting Replication </a> </dt> <dt> startup problems, <a class="indexterm" href="starting-server-troubleshooting.html"> Troubleshooting Problems Starting the MySQL Server </a> </dt> <dt> with MySQL Enterprise Monitor, <a class="indexterm" href="mysql-enterprise-monitor.html"> MySQL Enterprise Monitor Overview </a> </dt> <dt> with MySQL Performance Schema, <a class="indexterm" href="performance-schema-examples.html"> Using the Performance Schema to Diagnose Problems </a> </dt> </dl> </dd> <dt id="ientry-idm46045220457776"> TRUE, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> , <a class="indexterm" href="boolean-literals.html"> Boolean Literals </a> </dt> <dd> <dl> <dt> testing for, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045211392288"> true literal </dt> <dd> <dl> <dt> JSON, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> </dl> </dd> <dt id="ientry-idm46045030367232"> truncate, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045183132608"> TRUNCATE TABLE, <a class="indexterm" href="truncate-table.html"> TRUNCATE TABLE Statement </a> </dt> <dd> <dl> <dt> and NDB Cluster, <a class="indexterm" href="mysql-cluster-limitations-limits.html"> Limits and Differences of NDB Cluster from Standard MySQL Limits </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-truncate.html"> Replication and TRUNCATE TABLE </a> </dt> <dt> performance_schema database, <a class="indexterm" href="performance-schema-table-characteristics.html"> Performance Schema General Table Characteristics </a> , <a class="indexterm" href="performance-schema-restrictions.html"> Restrictions on Performance Schema </a> </dt> </dl> </dd> <dt id="ientry-idm46045205636528"> TRUNCATE(), <a class="indexterm" href="mathematical-functions.html"> Mathematical Functions </a> </dt> <dt id="ientry-idm46045030355472"> truststore, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045230416512"> tuning, <a class="indexterm" href="optimization.html"> Optimization </a> </dt> <dd> <dl> <dt> InnoDB compressed tables, <a class="indexterm" href="innodb-compression-tuning.html"> Tuning Compression for InnoDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045030352992"> tuple, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045104388832"> tupscan option </dt> <dd> <dl> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045325707536"> tutorial, <a class="indexterm" href="tutorial.html"> Tutorial </a> </dt> <dt id="ientry-idm46045099832736"> twiddle option </dt> <dd> <dl> <dt> ndb_redo_log_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-redo-log-reader.html"> ndb_redo_log_reader — Check and Print Content of Cluster Redo Log </a> </dt> </dl> </dd> <dt id="ientry-idm46045248025216"> two-factor authentication (see <a href="#ientry-idm46045248035376"> multifactor authentication </a> ) </dt> <dt id="ientry-idm46045263164832"> two-phase commit, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045116263440"> TwoPassInitialNodeRestartCopy, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045207934368"> type conversions, <a class="indexterm" href="type-conversion.html"> Type Conversion in Expression Evaluation </a> , <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> <dt id="ientry-idm46045308387760"> type option </dt> <dd> <dl> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045214497552"> types </dt> <dd> <dl> <dt> columns, <a class="indexterm" href="data-types.html"> Data Types </a> , <a class="indexterm" href="choosing-types.html"> Choosing the Right Type for a Column </a> </dt> <dt> data, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> <dt> date and time, <a class="indexterm" href="date-and-time-types.html"> Date and Time Data Types </a> </dt> <dt> numeric, <a class="indexterm" href="numeric-types.html"> Numeric Data Types </a> </dt> <dt> of tables, <a class="indexterm" href="storage-engines.html"> Alternative Storage Engines </a> </dt> <dt> portability, <a class="indexterm" href="other-vendor-data-types.html"> Using Data Types from Other Database Engines </a> </dt> <dt> string, <a class="indexterm" href="string-types.html"> String Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045335325824"> typographical conventions, <a class="indexterm" href="manual-info.html#manual-conventions"> Typographical and Syntax Conventions </a> </dt> <dt id="ientry-idm46045329907552"> TZ environment variable, <a class="indexterm" href="using-systemd.html#systemd-mysql-configuration"> Configuring systemd for MySQL </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> , <a class="indexterm" href="timezone-problems.html"> Time Zone Problems </a> </dt> <dt id="ientry-idm46045312722160"> tz-utc option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_U"> </a> U </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045202820608"> UCASE(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045218188736"> UCS-2, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> </dt> <dt id="ientry-idm46045217445920"> ucs2 character set, <a class="indexterm" href="charset-unicode-ucs2.html"> The ucs2 Character Set (UCS-2 Unicode Encoding) </a> </dt> <dd> <dl> <dt> as client character set, <a class="indexterm" href="charset-connection.html#charset-connection-impermissible-client-charset"> Impermissible Client Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045254241936"> UDFs (see <a href="#ientry-idm46045254244496"> loadable functions </a> ) </dt> <dt id="ientry-idm46045054172912"> ulimit, <a class="indexterm" href="not-enough-file-handles.html"> File Not Found and Similar Errors </a> </dt> <dt id="ientry-idm46045302728208"> UMASK environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt id="ientry-idm46045302730784"> UMASK_DIR environment variable, <a class="indexterm" href="environment-variables.html"> Environment Variables </a> , <a class="indexterm" href="file-permissions.html"> Problems with File Permissions </a> </dt> <dt id="ientry-idm46045206367360"> unary minus (-), <a class="indexterm" href="arithmetic-functions.html"> Arithmetic Operators </a> </dt> <dt id="ientry-idm46045260791408"> unblocking blocked hosts, <a class="indexterm" href="host-cache.html#blocked-host"> Dealing with Blocked Hosts </a> </dt> <dt id="ientry-idm46045318043168"> unbuffered option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045199236288"> UNCOMPRESS(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045199219760"> UNCOMPRESSED_LENGTH(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045030342176"> undo, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045165288832"> undo log, <a class="indexterm" href="innodb-undo-tablespaces.html"> Undo Tablespaces </a> , <a class="indexterm" href="innodb-undo-tablespaces.html#truncate-undo-tablespace"> Truncating Undo Tablespaces </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030318528"> undo log segment, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045165194384"> undo tablespace, <a class="indexterm" href="innodb-undo-tablespaces.html#truncate-undo-tablespace"> Truncating Undo Tablespaces </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045165289840"> undo tablespaces, <a class="indexterm" href="innodb-undo-tablespaces.html"> Undo Tablespaces </a> </dt> <dt id="ientry-idm46045117141872"> UndoDataBuffer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045117165168"> UndoIndexBuffer, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045142971776"> unexpected halt </dt> <dd> <dl> <dt> replication, <a class="indexterm" href="replication-options-replica.html#replication-sysvars-slaves"> System Variables Used on Replica Servers </a> , <a class="indexterm" href="replication-solutions-unexpected-replica-halt.html"> Handling an Unexpected Halt of a Replica </a> </dt> </dl> </dd> <dt id="ientry-idm46045202808416"> UNHEX(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045218190880"> Unicode, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> , <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045194817792"> Unicode character (\U), <a class="indexterm" href="json-modification-functions.html"> Functions That Modify JSON Values </a> </dt> <dt id="ientry-idm46045216336032"> Unicode Collation Algorithm, <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-uca"> Unicode Collation Algorithm (UCA) Versions </a> </dt> <dt id="ientry-idm46045171675808"> UNINSTALL COMPONENT statement, <a class="indexterm" href="uninstall-component.html"> UNINSTALL COMPONENT Statement </a> </dt> <dt id="ientry-idm46045171651328"> UNINSTALL PLUGIN statement, <a class="indexterm" href="uninstall-plugin.html"> UNINSTALL PLUGIN Statement </a> </dt> <dt id="ientry-idm46045257335552"> uninstalling components, <a class="indexterm" href="component-loading.html"> Installing and Uninstalling Components </a> , <a class="indexterm" href="uninstall-component.html"> UNINSTALL COMPONENT Statement </a> </dt> <dt id="ientry-idm46045254210816"> uninstalling loadable functions, <a class="indexterm" href="function-loading.html"> Installing and Uninstalling Loadable Functions </a> </dt> <dt id="ientry-idm46045257093632"> uninstalling plugins, <a class="indexterm" href="plugin-loading.html"> Installing and Uninstalling Plugins </a> , <a class="indexterm" href="uninstall-plugin.html"> UNINSTALL PLUGIN Statement </a> </dt> <dt id="ientry-idm46045324623248"> UNION, <a class="indexterm" href="searching-on-two-keys.html"> Searching on Two Keys </a> , <a class="indexterm" href="union.html"> UNION Clause </a> </dt> <dd> <dl> <dt> parenthesized query expressions, <a class="indexterm" href="parenthesized-query-expressions.html"> Parenthesized Query Expressions </a> </dt> <dt> set operations, <a class="indexterm" href="set-operations.html"> Set Operations with UNION, INTERSECT, and EXCEPT </a> </dt> </dl> </dd> <dt id="ientry-idm46045189015968"> UNIQUE, <a class="indexterm" href="alter-table.html"> ALTER TABLE Statement </a> </dt> <dt id="ientry-idm46045030293808"> unique constraint, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030287776"> unique index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045333147984"> unique key, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dd> <dl> <dt> constraint, <a class="indexterm" href="constraint-primary-key.html"> PRIMARY KEY and UNIQUE Index Constraints </a> </dt> </dl> </dd> <dt id="ientry-idm46045082849840"> unique keys </dt> <dd> <dl> <dt> and partitioning keys, <a class="indexterm" href="partitioning-limitations-partitioning-keys-unique-keys.html"> Partitioning Keys, Primary Keys, and Unique Keys </a> </dt> </dl> </dd> <dt id="ientry-idm46045267043552"> unique_checks system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045225142048"> unique_subquery join type </dt> <dd> <dl> <dt> optimizer, <a class="indexterm" href="explain-output.html#explain-join-types"> EXPLAIN Join Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045302560768"> Unix signal handling, <a class="indexterm" href="unix-signal-response.html"> Unix Signal Handling in MySQL </a> </dt> <dt id="ientry-idm46045204120832"> UNIX_TIMESTAMP(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045207138928"> UNKNOWN </dt> <dd> <dl> <dt> testing for, <a class="indexterm" href="comparison-operators.html"> Comparison Functions and Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045180351760"> Unknown column ... in 'on clause', <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> <dt id="ientry-idm46045260387536"> Unknown or incorrect time zone </dt> <dd> <dl> <dt> error, <a class="indexterm" href="time-zone-support.html#time-zone-variables"> Time Zone Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045325300784"> unloading </dt> <dd> <dl> <dt> tables, <a class="indexterm" href="retrieving-data.html"> Retrieving Information from a Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045178593104"> UNLOCK INSTANCE, <a class="indexterm" href="lock-instance-for-backup.html"> LOCK INSTANCE FOR BACKUP and UNLOCK INSTANCE Statements </a> </dt> <dt id="ientry-idm46045178556064"> UNLOCK TABLES, <a class="indexterm" href="lock-tables.html"> LOCK TABLES and UNLOCK TABLES Statements </a> </dt> <dt id="ientry-idm46045179765664"> unnamed views, <a class="indexterm" href="derived-tables.html"> Derived Tables </a> </dt> <dt id="ientry-idm46045306887296"> unpack option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-repair-options.html"> myisamchk Repair Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045103903616"> unqualified option </dt> <dd> <dl> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045138304448"> unsafe statement (replication) </dt> <dd> <dl> <dt> defined, <a class="indexterm" href="replication-rbr-safe-unsafe.html"> Determination of Safe and Unsafe Statements in Binary Logging </a> </dt> </dl> </dd> <dt id="ientry-idm46045138284880"> unsafe statements (replication), <a class="indexterm" href="replication-rbr-safe-unsafe.html"> Determination of Safe and Unsafe Statements in Binary Logging </a> </dt> <dt id="ientry-idm46045214421632"> UNSIGNED, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="numeric-type-attributes.html"> Numeric Type Attributes </a> </dt> <dt id="ientry-idm46045176223264"> UNTIL, <a class="indexterm" href="repeat.html"> REPEAT Statement </a> </dt> <dt id="ientry-idm46045081825936"> updatable views, <a class="indexterm" href="view-updatability.html"> Updatable and Insertable Views </a> </dt> <dt id="ientry-idm46045267017536"> updatable_views_with_limit system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045333263616"> UPDATE, <a class="indexterm" href="ansi-diff-update.html"> UPDATE Differences </a> , <a class="indexterm" href="update.html"> UPDATE Statement </a> </dt> <dt id="ientry-idm46045221435888"> update </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045101267712"> update option </dt> <dd> <dl> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045251424608"> UPDATE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045307120608"> update-state option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-check-options.html"> myisamchk Check Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045200230304"> UpdateXML(), <a class="indexterm" href="xml-functions.html"> XML Functions </a> </dt> <dt id="ientry-idm46045221430976"> Updating </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221426048"> updating main table </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221420960"> updating reference tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045326315808"> Upgrade Best Practices </dt> <dd> <dl> <dt> Best Practices, <a class="indexterm" href="upgrade-best-practices.html"> Upgrade Best Practices </a> </dt> </dl> </dd> <dt id="ientry-idm46045278886224"> upgrade option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045122050384"> upgrades </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-upgrade-downgrade.html"> Upgrading and Downgrading NDB Cluster </a> , <a class="indexterm" href="mysql-cluster-rolling-restart.html"> Performing a Rolling Restart of an NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045122051872"> upgrades and downgrades </dt> <dd> <dl> <dt> NDB Cluster, <a class="indexterm" href="mysql-cluster-upgrade-downgrade.html"> Upgrading and Downgrading NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045326421536"> upgrading, <a class="indexterm" href="upgrading.html"> Upgrading MySQL </a> </dt> <dd> <dl> <dt> a Docker installation of MySQL, <a class="indexterm" href="upgrade-docker-mysql.html"> Upgrading a Docker Installation of MySQL </a> </dt> <dt> different architecture, <a class="indexterm" href="copying-databases.html"> Copying MySQL Databases to Another Machine </a> </dt> <dt> MySQL APT Repository, <a class="indexterm" href="updating-apt-repo.html"> Upgrading MySQL with the MySQL APT Repository </a> </dt> <dt> with MySQL SLES Repository, <a class="indexterm" href="updating-sles-repo.html"> Upgrading MySQL with the MySQL SLES Repository </a> </dt> <dt> with MySQL Yum Repository, <a class="indexterm" href="updating-yum-repo.html"> Upgrading MySQL with the MySQL Yum Repository </a> </dt> </dl> </dd> <dt id="ientry-idm46045202757776"> UPPER(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045316975024"> uptime, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt id="ientry-idm46045261690384"> Uptime status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045261684880"> Uptime_since_flush_status status variable, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> </dt> <dt id="ientry-idm46045322671072"> URI-like connection string, <a class="indexterm" href="connecting-using-uri-or-key-value-pairs.html"> Connecting to the Server Using URI-Like Strings or Key-Value Pairs </a> </dt> <dt id="ientry-idm46045332945680"> URLs for downloading MySQL, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> <dt id="ientry-idm46045107774624"> usage option </dt> <dd> <dl> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045251419168"> USAGE privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-static"> Static Privilege Descriptions </a> </dt> <dt id="ientry-idm46045167844592"> USE, <a class="indexterm" href="use.html"> USE Statement </a> </dt> <dt id="ientry-idm46045317650160"> use command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045223455648"> USE INDEX, <a class="indexterm" href="index-hints.html"> Index Hints </a> </dt> <dt id="ientry-idm46045223454576"> USE KEY, <a class="indexterm" href="index-hints.html"> Index Hints </a> </dt> <dt id="ientry-idm46045320238416"> use-default option </dt> <dd> <dl> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> </dl> </dd> <dt id="ientry-idm46045314844560"> use-frm option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045310903392"> use-threads option </dt> <dd> <dl> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045097507456"> useHexFormat option </dt> <dd> <dl> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045326683328"> user </dt> <dd> <dl> <dt> root, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> </dl> </dd> <dt id="ientry-idm46045272985088"> user accounts </dt> <dd> <dl> <dt> altering, <a class="indexterm" href="alter-user.html"> ALTER USER Statement </a> </dt> <dt> creating, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> , <a class="indexterm" href="create-user.html"> CREATE USER Statement </a> </dt> <dt> dual passwords, <a class="indexterm" href="password-management.html#dual-passwords"> Dual Password Support </a> </dt> <dt> renaming, <a class="indexterm" href="rename-user.html"> RENAME USER Statement </a> </dt> <dt> reserved, <a class="indexterm" href="reserved-accounts.html"> Reserved Accounts </a> </dt> <dt> resource limits, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="user-resources.html"> Setting Account Resource Limits </a> , <a class="indexterm" href="alter-user.html#alter-user-resource-limits"> ALTER USER Resource-Limit Options </a> , <a class="indexterm" href="create-user.html#create-user-resource-limits"> CREATE USER Resource-Limit Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045322688656"> USER environment variable, <a class="indexterm" href="connecting.html"> Connecting to the MySQL Server Using Command Options </a> , <a class="indexterm" href="environment-variables.html"> Environment Variables </a> </dt> <dt id="ientry-idm46045221415920"> User lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045252338832"> user management, <a class="indexterm" href="access-control.html"> Access Control and Account Management </a> </dt> <dt id="ientry-idm46045134851648"> user name length </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-user-names.html"> Replication and User Name Length </a> </dt> </dl> </dd> <dt id="ientry-idm46045326680352"> user names </dt> <dd> <dl> <dt> and passwords, <a class="indexterm" href="user-names.html"> Account User Names and Passwords </a> </dt> <dt> in account names, <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> in default account, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> </dt> <dt> in role names, <a class="indexterm" href="role-names.html"> Specifying Role Names </a> </dt> </dl> </dd> <dt id="ientry-idm46045323286112"> user option, <a class="indexterm" href="connection-options.html#connection-establishment-options"> Command Options for Connection Establishment </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqld_safe, <a class="indexterm" href="mysqld-safe.html"> mysqld_safe — MySQL Server Startup Script </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> mysql_secure_installation, <a class="indexterm" href="mysql-secure-installation.html"> mysql_secure_installation — Improve MySQL Installation Security </a> </dt> <dt> ndb_top, <a class="indexterm" href="mysql-cluster-programs-ndb-top.html"> ndb_top — View CPU usage information for NDB threads </a> </dt> </dl> </dd> <dt id="ientry-idm46045030272912"> user principal name, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045249576208"> user privileges </dt> <dd> <dl> <dt> adding, <a class="indexterm" href="creating-accounts.html"> Adding Accounts, Assigning Privileges, and Dropping Accounts </a> </dt> <dt> checking, <a class="indexterm" href="creating-accounts.html#checking-account-privileges"> Checking Account Privileges and Properties </a> </dt> <dt> deleting, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt> dropping, <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> <dt> revoking, <a class="indexterm" href="creating-accounts.html#revoking-account-privileges"> Revoking Account Privileges </a> </dt> </dl> </dd> <dt id="ientry-idm46045221408400"> User sleep </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045326677376"> user table </dt> <dd> <dl> <dt> account_locked column, <a class="indexterm" href="grant-tables.html#grant-tables-user-db"> The user and db Grant Tables </a> </dt> <dt> sorting, <a class="indexterm" href="connection-access.html"> Access Control, Stage 1: Connection Verification </a> </dt> <dt> system table, <a class="indexterm" href="default-privileges.html"> Securing the Initial MySQL Account </a> , <a class="indexterm" href="system-schema.html#system-schema-grant-tables"> Grant System Tables </a> , <a class="indexterm" href="grant-tables.html#grant-tables-overview"> Grant Table Overview </a> </dt> </dl> </dd> <dt id="ientry-idm46045134842176"> user variables </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-variables.html"> Replication and Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045198400992"> USER(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045254243424"> user-defined functions (see <a href="#ientry-idm46045254244496"> loadable functions </a> ) </dt> <dt id="ientry-idm46045218691168"> user-defined variables, <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> </dt> <dt id="ientry-idm46045249453200"> users </dt> <dd> <dl> <dt> deleting, <a class="indexterm" href="creating-accounts.html#dropping-accounts"> Dropping Accounts </a> , <a class="indexterm" href="drop-user.html"> DROP USER Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045072041376"> users table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-users-table.html"> The users Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045078103008"> USER_ATTRIBUTES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-user-attributes-table.html"> The INFORMATION_SCHEMA USER_ATTRIBUTES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045254151552"> user_defined_functions table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="obtaining-loadable-function-information.html"> Obtaining Information About Loadable Functions </a> , <a class="indexterm" href="performance-schema-user-defined-functions-table.html"> The user_defined_functions Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045078052832"> USER_PRIVILEGES </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-user-privileges-table.html"> The INFORMATION_SCHEMA USER_PRIVILEGES Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045061979328"> user_summary view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary.html"> The user_summary and x$user_summary Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061942672"> user_summary_by_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-file-io.html"> The user_summary_by_file_io and x$user_summary_by_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061923408"> user_summary_by_file_io_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-file-io-type.html"> The user_summary_by_file_io_type and x$user_summary_by_file_io_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061900112"> user_summary_by_stages view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-stages.html"> The user_summary_by_stages and x$user_summary_by_stages Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061876800"> user_summary_by_statement_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-statement-latency.html"> The user_summary_by_statement_latency and x$user_summary_by_statement_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061843680"> user_summary_by_statement_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-statement-type.html"> The user_summary_by_statement_type and x$user_summary_by_statement_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045071795376"> user_variables_by_thread table </dt> <dd> <dl> <dt> performance_schema, <a class="indexterm" href="performance-schema-user-variable-tables.html"> Performance Schema User-Defined Variable Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045117945104"> UseShm, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045226998256"> use_invisible_indexes flag </dt> <dd> <dl> <dt> optimizer_switch system variable, <a class="indexterm" href="invisible-indexes.html"> Invisible Indexes </a> </dt> </dl> </dd> <dt id="ientry-idm46045266980928"> use_secondary_engine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045187614880"> USING HASH </dt> <dd> <dl> <dt> with NDB tables, <a class="indexterm" href="create-index.html#create-index-options"> Index Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045222399744"> using multiple disks to start data, <a class="indexterm" href="windows-symbolic-links.html"> Using Symbolic Links for Databases on Windows </a> </dt> <dt id="ientry-idm46045108488544"> using NDB Cluster programs, <a class="indexterm" href="mysql-cluster-programs.html"> NDB Cluster Programs </a> </dt> <dt id="ientry-idm46045180375520"> USING versus ON </dt> <dd> <dl> <dt> joins, <a class="indexterm" href="join.html"> JOIN Clause </a> </dt> </dl> </dd> <dt id="ientry-idm46045204061840"> UTC_DATE(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204048768"> UTC_TIME(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045204035360"> UTC_TIMESTAMP(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045218189808"> UTF-8, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> </dt> <dd> <dl> <dt> database object metadata, <a class="indexterm" href="charset-metadata.html"> UTF-8 for Metadata </a> </dt> </dl> </dd> <dt id="ientry-idm46045217444432"> utf16 character set, <a class="indexterm" href="charset-unicode-utf16.html"> The utf16 Character Set (UTF-16 Unicode Encoding) </a> </dt> <dd> <dl> <dt> as client character set, <a class="indexterm" href="charset-connection.html#charset-connection-impermissible-client-charset"> Impermissible Client Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045217442944"> utf16le character set, <a class="indexterm" href="charset-unicode-utf16le.html"> The utf16le Character Set (UTF-16LE Unicode Encoding) </a> </dt> <dd> <dl> <dt> as client character set, <a class="indexterm" href="charset-connection.html#charset-connection-impermissible-client-charset"> Impermissible Client Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045216043008"> utf16_bin collation, <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-collating-weights"> Character Collating Weights </a> </dt> <dt id="ientry-idm46045217441456"> utf32 character set, <a class="indexterm" href="charset-unicode-utf32.html"> The utf32 Character Set (UTF-32 Unicode Encoding) </a> </dt> <dd> <dl> <dt> as client character set, <a class="indexterm" href="charset-connection.html#charset-connection-impermissible-client-charset"> Impermissible Client Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045216662400"> utf8 character set, <a class="indexterm" href="charset-unicode-utf8.html"> The utf8 Character Set (Deprecated alias for utf8mb3) </a> </dt> <dd> <dl> <dt> alias for utf8mb3, <a class="indexterm" href="charset-unicode-utf8mb3.html"> The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding) </a> , <a class="indexterm" href="charset-unicode-utf8.html"> The utf8 Character Set (Deprecated alias for utf8mb3) </a> </dt> </dl> </dd> <dt id="ientry-idm46045216663440"> utf8mb3 character set, <a class="indexterm" href="charset-unicode-utf8mb3.html"> The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding) </a> </dt> <dd> <dl> <dt> utf8 alias, <a class="indexterm" href="charset-unicode-utf8mb3.html"> The utf8mb3 Character Set (3-Byte UTF-8 Unicode Encoding) </a> , <a class="indexterm" href="charset-unicode-utf8.html"> The utf8 Character Set (Deprecated alias for utf8mb3) </a> </dt> </dl> </dd> <dt id="ientry-idm46045216686416"> utf8mb4 character set, <a class="indexterm" href="charset-unicode-utf8mb4.html"> The utf8mb4 Character Set (4-Byte UTF-8 Unicode Encoding) </a> </dt> <dt id="ientry-idm46045216286608"> utf8mb4 collations, <a class="indexterm" href="charset-unicode-sets.html#charset-unicode-sets-language-specific-collations"> Language-Specific Collations </a> </dt> <dt id="ientry-idm46045216353840"> utf8mb4_0900_bin </dt> <dd> <dl> <dt> versus utf8mb4_bin, <a class="indexterm" href="charset-unicode-sets.html"> Unicode Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045216355328"> utf8mb4_bin </dt> <dd> <dl> <dt> versus utf8mb4_0900_bin, <a class="indexterm" href="charset-unicode-sets.html"> Unicode Character Sets </a> </dt> </dl> </dd> <dt id="ientry-idm46045218187664"> utfmb4, <a class="indexterm" href="charset.html"> Character Sets, Collations, Unicode </a> </dt> <dt id="ientry-idm46045324348768"> utilities </dt> <dd> <dl> <dt> program-development, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> </dl> </dd> <dt id="ientry-idm46045324396752"> utility programs, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt id="ientry-idm46045190661728"> UUID(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190631424"> UUID_SHORT(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045190601936"> UUID_TO_BIN(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_V"> </a> V </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045211673312"> valid </dt> <dd> <dl> <dt> GIS values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> <dt> spatial values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045211365232"> valid JSON values, <a class="indexterm" href="json.html#json-values"> Creating JSON Values </a> </dt> <dt id="ientry-idm46045220462480"> valid numbers </dt> <dd> <dl> <dt> examples, <a class="indexterm" href="number-literals.html"> Numeric Literals </a> </dt> </dl> </dd> <dt id="ientry-idm46045278777920"> validate-config option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045241360672"> validate-password option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-options"> Password Validation Plugin Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045278759856"> validate-user-plugins option </dt> <dd> <dl> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045241832688"> validate_password component, <a class="indexterm" href="validate-password.html"> The Password Validation Component </a> </dt> <dd> <dl> <dt> installing, <a class="indexterm" href="validate-password-installation.html"> Password Validation Component Installation and Uninstallation </a> </dt> <dt> status variables, <a class="indexterm" href="validate-password-options-variables.html#validate-password-status-variables"> Password Validation Component Status Variables </a> </dt> <dt> system variables, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt> uninstalling, <a class="indexterm" href="validate-password-installation.html"> Password Validation Component Installation and Uninstallation </a> </dt> </dl> </dd> <dt id="ientry-idm46045241831632"> validate_password plugin, <a class="indexterm" href="validate-password.html"> The Password Validation Component </a> </dt> <dd> <dl> <dt> configuring, <a class="indexterm" href="validate-password-options-variables.html"> Password Validation Options and Variables </a> </dt> <dt> options, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-options"> Password Validation Plugin Options </a> </dt> <dt> status variables, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-status-variables"> Password Validation Plugin Status Variables </a> </dt> <dt> system variables, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt> transitioning to validate_password component, <a class="indexterm" href="validate-password-transitioning.html"> Transitioning to the Password Validation Component </a> </dt> </dl> </dd> <dt id="ientry-idm46045241707296"> validate_password.changed_characters_percentage system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241665232"> validate_password.check_user_name system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241611536"> validate_password.dictionary_file system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241383520"> validate_password.dictionary_file_last_parsed status variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-status-variables"> Password Validation Component Status Variables </a> </dt> <dt id="ientry-idm46045241377120"> validate_password.dictionary_file_words_count status variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-status-variables"> Password Validation Component Status Variables </a> </dt> <dt id="ientry-idm46045241576496"> validate_password.length system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241541216"> validate_password.mixed_case_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241508880"> validate_password.number_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241478432"> validate_password.policy system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241420960"> validate_password.special_char_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-system-variables"> Password Validation Component System Variables </a> </dt> <dt id="ientry-idm46045241324592"> validate_password_check_user_name system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241295856"> validate_password_dictionary_file system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241103456"> validate_password_dictionary_file_last_parsed status variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-status-variables"> Password Validation Plugin Status Variables </a> </dt> <dt id="ientry-idm46045241094880"> validate_password_dictionary_file_words_count status variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-status-variables"> Password Validation Plugin Status Variables </a> </dt> <dt id="ientry-idm46045241269664"> validate_password_length system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241238608"> validate_password_mixed_case_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241207600"> validate_password_number_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241176656"> validate_password_policy system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045241143280"> validate_password_special_char_count system variable, <a class="indexterm" href="validate-password-options-variables.html#validate-password-plugin-system-variables"> Password Validation Plugin System Variables </a> </dt> <dt id="ientry-idm46045199207680"> VALIDATE_PASSWORD_STRENGTH(), <a class="indexterm" href="encryption-functions.html"> Encryption and Compression Functions </a> </dt> <dt id="ientry-idm46045180636272"> VALUES statement, <a class="indexterm" href="values.html"> VALUES Statement </a> </dt> <dd> <dl> <dt> with INTO, <a class="indexterm" href="select-into.html"> SELECT ... INTO Statement </a> </dt> </dl> </dd> <dt id="ientry-idm46045190553200"> VALUES(), <a class="indexterm" href="miscellaneous-functions.html"> Miscellaneous Functions </a> </dt> <dt id="ientry-idm46045212900064"> VARBINARY data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> , <a class="indexterm" href="binary-varbinary.html"> The BINARY and VARBINARY Types </a> </dt> <dt id="ientry-idm46045210494144"> VARCHAR </dt> <dd> <dl> <dt> size, <a class="indexterm" href="storage-requirements.html#data-types-storage-reqs-strings"> String Type Storage Requirements </a> </dt> </dl> </dd> <dt id="ientry-idm46045213095648"> VARCHAR data type, <a class="indexterm" href="string-types.html"> String Data Types </a> , <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045212950512"> VARCHARACTER data type, <a class="indexterm" href="string-type-syntax.html"> String Data Type Syntax </a> </dt> <dt id="ientry-idm46045302999728"> variable option </dt> <dd> <dl> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> </dl> </dd> <dt id="ientry-idm46045030269648"> variable-length type, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045324331568"> variables </dt> <dd> <dl> <dt> and replication, <a class="indexterm" href="replication-features-variables.html"> Replication and Variables </a> </dt> <dt> environment, <a class="indexterm" href="programs-overview.html"> Overview of MySQL Programs </a> </dt> <dt> server, <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> </dt> <dt> status, <a class="indexterm" href="server-status-variables.html"> Server Status Variables </a> , <a class="indexterm" href="show-status.html"> SHOW STATUS Statement </a> </dt> <dt> system, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> , <a class="indexterm" href="using-system-variables.html"> Using System Variables </a> , <a class="indexterm" href="show-variables.html"> SHOW VARIABLES Statement </a> </dt> <dt> user defined, <a class="indexterm" href="user-variables.html"> User-Defined Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045192790128"> VARIANCE(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192820608"> VAR_POP(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045192804656"> VAR_SAMP(), <a class="indexterm" href="aggregate-functions.html"> Aggregate Function Descriptions </a> </dt> <dt id="ientry-idm46045320943168"> verbose option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> myisam_ftdump, <a class="indexterm" href="myisam-ftdump.html"> myisam_ftdump — Display Full-Text Index information </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqldumpslow, <a class="indexterm" href="mysqldumpslow.html"> mysqldumpslow — Summarize Slow Query Log Files </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config_editor, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbmtd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> perror, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045303628192"> verify-binlog-checksum option </dt> <dd> <dl> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> </dl> </dd> <dt id="ientry-idm46045332992992"> version </dt> <dd> <dl> <dt> choosing, <a class="indexterm" href="which-version.html"> Which MySQL Version and Distribution to Install </a> </dt> <dt> latest, <a class="indexterm" href="getting-mysql.html"> How to Get MySQL </a> </dt> </dl> </dd> <dt id="ientry-idm46045320927440"> version option </dt> <dd> <dl> <dt> comp_err, <a class="indexterm" href="comp-err.html"> comp_err — Compile MySQL Error Message File </a> </dt> <dt> ibd2sdi, <a class="indexterm" href="ibd2sdi.html"> ibd2sdi — InnoDB Tablespace SDI Extraction Utility </a> </dt> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqld, <a class="indexterm" href="server-options.html"> Server Command Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqld_multi, <a class="indexterm" href="mysqld-multi.html"> mysqld_multi — Manage Multiple MySQL Servers </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> <dt> mysql_config, <a class="indexterm" href="mysql-config.html"> mysql_config — Display Options for Compiling Clients </a> </dt> <dt> mysql_config_editor, <a class="indexterm" href="mysql-config-editor.html"> mysql_config_editor — MySQL Configuration Utility </a> </dt> <dt> mysql_migrate_keyring, <a class="indexterm" href="mysql-migrate-keyring.html"> mysql_migrate_keyring — Keyring Key Migration Utility </a> </dt> <dt> my_print_defaults, <a class="indexterm" href="my-print-defaults.html"> my_print_defaults — Display Options from Option Files </a> </dt> <dt> ndbd, <a class="indexterm" href="mysql-cluster-programs-ndbd.html"> ndbd — The NDB Cluster Data Node Daemon </a> </dt> <dt> ndbinfo_select_all, <a class="indexterm" href="mysql-cluster-programs-ndbinfo-select-all.html"> ndbinfo_select_all — Select From ndbinfo Tables </a> </dt> <dt> ndbxfrm, <a class="indexterm" href="mysql-cluster-programs-ndbxfrm.html"> ndbxfrm — Compress, Decompress, Encrypt, and Decrypt Files Created by NDB Cluster </a> </dt> <dt> ndb_blob_tool, <a class="indexterm" href="mysql-cluster-programs-ndb-blob-tool.html"> ndb_blob_tool — Check and Repair BLOB and TEXT columns of NDB Cluster Tables </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> <dt> ndb_delete_all, <a class="indexterm" href="mysql-cluster-programs-ndb-delete-all.html"> ndb_delete_all — Delete All Rows from an NDB Table </a> </dt> <dt> ndb_desc, <a class="indexterm" href="mysql-cluster-programs-ndb-desc.html"> ndb_desc — Describe NDB Tables </a> </dt> <dt> ndb_drop_index, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-index.html"> ndb_drop_index — Drop Index from an NDB Table </a> </dt> <dt> ndb_drop_table, <a class="indexterm" href="mysql-cluster-programs-ndb-drop-table.html"> ndb_drop_table — Drop an NDB Table </a> </dt> <dt> ndb_import, <a class="indexterm" href="mysql-cluster-programs-ndb-import.html"> ndb_import — Import CSV Data Into NDB </a> </dt> <dt> ndb_index_stat, <a class="indexterm" href="mysql-cluster-programs-ndb-index-stat.html"> ndb_index_stat — NDB Index Statistics Utility </a> </dt> <dt> ndb_mgm, <a class="indexterm" href="mysql-cluster-programs-ndb-mgm.html"> ndb_mgm — The NDB Cluster Management Client </a> </dt> <dt> ndb_mgmd, <a class="indexterm" href="mysql-cluster-programs-ndb-mgmd.html"> ndb_mgmd — The NDB Cluster Management Server Daemon </a> </dt> <dt> ndb_move_data, <a class="indexterm" href="mysql-cluster-programs-ndb-move-data.html"> ndb_move_data — NDB Data Copy Utility </a> </dt> <dt> ndb_perror, <a class="indexterm" href="mysql-cluster-programs-ndb-perror.html"> ndb_perror — Obtain NDB Error Message Information </a> </dt> <dt> ndb_print_backup_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-backup-file.html"> ndb_print_backup_file — Print NDB Backup File Contents </a> </dt> <dt> ndb_print_file, <a class="indexterm" href="mysql-cluster-programs-ndb-print-file.html"> ndb_print_file — Print NDB Disk Data File Contents </a> </dt> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> <dt> ndb_secretsfile_reader, <a class="indexterm" href="mysql-cluster-programs-ndb-secretsfile-reader.html"> ndb_secretsfile_reader — Obtain Key Information from an Encrypted NDB Data File </a> </dt> <dt> ndb_select_all, <a class="indexterm" href="mysql-cluster-programs-ndb-select-all.html"> ndb_select_all — Print Rows from an NDB Table </a> </dt> <dt> ndb_select_count, <a class="indexterm" href="mysql-cluster-programs-ndb-select-count.html"> ndb_select_count — Print Row Counts for NDB Tables </a> </dt> <dt> ndb_show_tables, <a class="indexterm" href="mysql-cluster-programs-ndb-show-tables.html"> ndb_show_tables — Display List of NDB Tables </a> </dt> <dt> ndb_sign_keys, <a class="indexterm" href="mysql-cluster-programs-ndb-sign-keys.html"> ndb_sign_keys — Create, Sign, and Manage TLS Keys and Certificates for NDB Cluster </a> </dt> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> <dt> perror, <a class="indexterm" href="perror.html"> perror — Display MySQL Error Message Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045266946752"> version system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045256131136"> Version Tokens, <a class="indexterm" href="version-tokens.html"> Version Tokens </a> </dt> <dt id="ientry-idm46045255918544"> Version Tokens functions </dt> <dd> <dl> <dt> version_tokens_delete(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_edit(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_lock_exclusive(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_lock_shared(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_set(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_show(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt> version_tokens_unlock(), <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> </dl> </dd> <dt id="ientry-idm46045256123648"> Version Tokens plugin </dt> <dd> <dl> <dt> elements, <a class="indexterm" href="version-tokens-elements.html"> Version Tokens Elements </a> </dt> <dt> installing, <a class="indexterm" href="version-tokens-installation.html"> Installing or Uninstalling Version Tokens </a> </dt> <dt> reference, <a class="indexterm" href="version-tokens-reference.html"> Version Tokens Reference </a> </dt> <dt> uninstalling, <a class="indexterm" href="version-tokens-installation.html"> Installing or Uninstalling Version Tokens </a> </dt> <dt> using, <a class="indexterm" href="version-tokens-usage.html"> Using Version Tokens </a> </dt> </dl> </dd> <dt id="ientry-idm46045061808560"> version view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-version.html"> The version View </a> </dt> </dl> </dd> <dt id="ientry-idm46045198383408"> VERSION(), <a class="indexterm" href="information-functions.html"> Information Functions </a> </dt> <dt id="ientry-idm46045266940784"> version_comment system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045266918176"> version_compile_machine system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045266897424"> version_compile_os system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045266876704"> version_compile_zlib system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045060655504"> version_major() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-version-major.html"> The version_major() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060643616"> version_minor() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-version-minor.html"> The version_minor() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045060631712"> version_patch() function </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-version-patch.html"> The version_patch() Function </a> </dt> </dl> </dd> <dt id="ientry-idm46045255919648"> version_tokens_delete() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255902768"> version_tokens_edit() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255868704"> version_tokens_lock_exclusive() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255859696"> version_tokens_lock_shared() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255830208"> version_tokens_session system variable, <a class="indexterm" href="version-tokens-reference.html#version-tokens-system-variables"> Version Tokens System Variables </a> </dt> <dt id="ientry-idm46045255768672"> version_tokens_session_number system variable, <a class="indexterm" href="version-tokens-reference.html#version-tokens-system-variables"> Version Tokens System Variables </a> </dt> <dt id="ientry-idm46045255890256"> version_tokens_set() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255879552"> version_tokens_show() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045255851984"> version_tokens_unlock() Version Tokens function, <a class="indexterm" href="version-tokens-reference.html#version-tokens-routines"> Version Tokens Functions </a> </dt> <dt id="ientry-idm46045250857216"> VERSION_TOKEN_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045317993968"> vertical option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045030258080"> victim, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045055594080"> Vietnamese, <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045030248416"> view, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045249264368"> views, <a class="indexterm" href="create-view.html"> CREATE VIEW Statement </a> , <a class="indexterm" href="stored-objects.html"> Stored Objects </a> , <a class="indexterm" href="views.html"> Using Views </a> </dt> <dd> <dl> <dt> algorithms, <a class="indexterm" href="view-algorithms.html"> View Processing Algorithms </a> </dt> <dt> and replication, <a class="indexterm" href="replication-features-views.html"> Replication and Views </a> </dt> <dt> limitations, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> materialization prevention, <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> metadata, <a class="indexterm" href="view-metadata.html"> View Metadata </a> </dt> <dt> optimization, <a class="indexterm" href="subquery-optimization.html"> Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions </a> , <a class="indexterm" href="derived-table-optimization.html"> Optimizing Derived Tables, View References, and Common Table Expressions with Merging or Materialization </a> </dt> <dt> privileges, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> problems, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> restrictions, <a class="indexterm" href="view-restrictions.html"> Restrictions on Views </a> </dt> <dt> roles, <a class="indexterm" href="roles.html#roles-activating"> Activating Roles </a> </dt> <dt> updatable, <a class="indexterm" href="create-view.html"> CREATE VIEW Statement </a> , <a class="indexterm" href="view-updatability.html"> Updatable and Insertable Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045078024464"> VIEWS </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-views-table.html"> The INFORMATION_SCHEMA VIEWS Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045077951552"> VIEW_ROUTINE_USAGE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-view-routine-usage-table.html"> The INFORMATION_SCHEMA VIEW_ROUTINE_USAGE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259745632"> view_routine_usage table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045077931056"> VIEW_TABLE_USAGE </dt> <dd> <dl> <dt> INFORMATION_SCHEMA table, <a class="indexterm" href="information-schema-view-table-usage-table.html"> The INFORMATION_SCHEMA VIEW_TABLE_USAGE Table </a> </dt> </dl> </dd> <dt id="ientry-idm46045259741056"> view_table_usage table </dt> <dd> <dl> <dt> data dictionary table, <a class="indexterm" href="system-schema.html#system-schema-data-dictionary-tables"> Data Dictionary Tables </a> </dt> </dl> </dd> <dt id="ientry-idm46045030244928"> virtual generated column, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030238384"> virtual index, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030232352"> Visual Studio, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_W"> </a> W </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045030225072"> wait, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045092036784"> WAIT COMPLETED (START BACKUP command), <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt id="ientry-idm46045317981616"> wait option </dt> <dd> <dl> <dt> myisamchk, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt> myisampack, <a class="indexterm" href="myisampack.html"> myisampack — Generate Compressed, Read-Only MyISAM Tables </a> </dt> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045092042880"> WAIT STARTED (START BACKUP command), <a class="indexterm" href="mysql-cluster-backup-using-management-client.html"> Using The NDB Cluster Management Client to Create a Backup </a> </dt> <dt id="ientry-idm46045095090976"> wait-nodes option </dt> <dd> <dl> <dt> ndb_waiter, <a class="indexterm" href="mysql-cluster-programs-ndb-waiter.html"> ndb_waiter — Wait for NDB Cluster to Reach a Given Status </a> </dt> </dl> </dd> <dt id="ientry-idm46045220976144"> Waiting for allowed to take ndbcluster global schema lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221090784"> Waiting for an event from Coordinator </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221402112"> Waiting for commit lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220971072"> Waiting for event from ndbcluster </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221361440"> Waiting for event metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221359936"> Waiting for event read lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220966048"> Waiting for first event from ndbcluster </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221395984"> waiting for handler commit </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221195072"> Waiting for its turn to commit </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221188768"> Waiting for master to send event </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221178112"> Waiting for master update </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220961568"> Waiting for ndbcluster binlog update to reach current position </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220956976"> Waiting for ndbcluster global schema lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220951920"> Waiting for ndbcluster to start </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220927280"> Waiting for next activation </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221163600"> Waiting for replica mutex on exit </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221071216"> Waiting for Replica Workers to free pending events </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220922288"> Waiting for scheduler to stop </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220947440"> Waiting for schema epoch </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="mysql-cluster-thread-states.html"> NDB Cluster Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221356928"> Waiting for schema metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221167696"> Waiting for slave mutex on exit </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> , <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221075376"> Waiting for Slave Workers to free pending events </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221184672"> Waiting for source to send event </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221174064"> Waiting for source update </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221353920"> Waiting for stored function metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221350880"> Waiting for stored procedure metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221376864"> Waiting for table flush </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221347840"> Waiting for table level lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221344832"> Waiting for table metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221390976"> Waiting for tables </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221063392"> Waiting for the next event in relay log </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221154432"> Waiting for the replica SQL thread to free enough relay log space </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221158640"> Waiting for the slave SQL thread to free enough relay log space </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221341824"> Waiting for trigger metadata lock </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221318032"> Waiting on cond </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045220916576"> Waiting on empty queue </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="event-scheduler-thread-states.html"> Event Scheduler Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221269984"> Waiting to finalize termination </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="source-thread-states.html"> Replication Source Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221147760"> Waiting to reconnect after a failed binlog dump request </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221141312"> Waiting to reconnect after a failed master event read </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221137152"> Waiting to reconnect after a failed source event read </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-io-thread-states.html"> Replication I/O (Receiver) Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045221057728"> Waiting until SOURCE_DELAY seconds after source executed event </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="replica-sql-thread-states.html"> Replication SQL Thread States </a> </dt> </dl> </dd> <dt id="ientry-idm46045061743104"> waits_by_host_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-by-host-by-latency.html"> The waits_by_host_by_latency and x$waits_by_host_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061720176"> waits_by_user_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-by-user-by-latency.html"> The waits_by_user_by_latency and x$waits_by_user_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061697200"> waits_global_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-global-by-latency.html"> The waits_global_by_latency and x$waits_global_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061793232"> wait_classes_global_by_avg_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-wait-classes-global-by-avg-latency.html"> The wait_classes_global_by_avg_latency and x$wait_classes_global_by_avg_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061768112"> wait_classes_global_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-wait-classes-global-by-latency.html"> The wait_classes_global_by_latency and x$wait_classes_global_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045193620704"> WAIT_FOR_EXECUTED_GTID_SET(), <a class="indexterm" href="gtid-functions.html"> Functions Used with Global Transaction Identifiers (GTIDs) </a> </dt> <dt id="ientry-idm46045266855392"> wait_timeout system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045120149520"> Wan, <a class="indexterm" href="mysql-cluster-mgm-definition.html"> Defining an NDB Cluster Management Server </a> , <a class="indexterm" href="mysql-cluster-api-definition.html"> Defining SQL and Other API Nodes in an NDB Cluster </a> </dt> <dt id="ientry-idm46045030211152"> warm backup, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045030205872"> warm up, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045317643520"> warnings command </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-commands.html"> mysql Client Commands </a> </dt> </dl> </dd> <dt id="ientry-idm46045266812912"> warning_count system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045116785984"> WatchdogImmediateKill, <a class="indexterm" href="mysql-cluster-ndbd-definition.html"> Defining NDB Cluster Data Nodes </a> </dt> <dt id="ientry-idm46045244063952"> WebAuthn </dt> <dd> <dl> <dt> authentication, <a class="indexterm" href="webauthn-pluggable-authentication.html"> WebAuthn Pluggable Authentication </a> </dt> </dl> </dd> <dt id="ientry-idm46045204021984"> WEEK(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045203931616"> WEEKDAY(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045203916288"> WEEKOFYEAR(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045202735056"> WEIGHT_STRING(), <a class="indexterm" href="string-functions.html"> String Functions and Operators </a> </dt> <dt id="ientry-idm46045211679264"> well-formed </dt> <dd> <dl> <dt> GIS values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> <dt> spatial values, <a class="indexterm" href="geometry-well-formedness-validity.html"> Geometry Well-Formedness and Validity </a> </dt> </dl> </dd> <dt id="ientry-idm46045211754880"> Well-Known Binary format </dt> <dd> <dl> <dt> geometry values, <a class="indexterm" href="gis-data-formats.html#gis-wkb-format"> Well-Known Binary (WKB) Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045211803232"> Well-Known Text format </dt> <dd> <dl> <dt> geometry values, <a class="indexterm" href="gis-data-formats.html#gis-wkt-format"> Well-Known Text (WKT) Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045230318512"> WHERE, <a class="indexterm" href="where-optimization.html"> WHERE Clause Optimization </a> </dt> <dd> <dl> <dt> with SHOW, <a class="indexterm" href="information-schema.html"> INFORMATION_SCHEMA Tables </a> , <a class="indexterm" href="extended-show.html"> Extensions to SHOW Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045312436512"> where option </dt> <dd> <dl> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045176473424"> WHILE, <a class="indexterm" href="while.html"> WHILE Statement </a> </dt> <dd> <dl> <dt> labels, <a class="indexterm" href="statement-labels.html"> Statement Labels </a> </dt> </dl> </dd> <dt id="ientry-idm46045214486160"> widths </dt> <dd> <dl> <dt> display, <a class="indexterm" href="data-types.html"> Data Types </a> </dt> </dl> </dd> <dt id="ientry-idm46045220533168"> Wildcard character (%), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045220528000"> Wildcard character (_), <a class="indexterm" href="string-literals.html"> String Literals </a> </dt> <dt id="ientry-idm46045249940032"> wildcards </dt> <dd> <dl> <dt> and LIKE, <a class="indexterm" href="index-btree-hash.html#btree-index-characteristics"> B-Tree Index Characteristics </a> </dt> <dt> in account names (deprecated), <a class="indexterm" href="account-names.html"> Specifying Account Names </a> </dt> <dt> in mysql.columns_priv table, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> in mysql.db table, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> in mysql.procs_priv table, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> <dt> in mysql.tables_priv table, <a class="indexterm" href="request-access.html"> Access Control, Stage 2: Request Verification </a> </dt> </dl> </dd> <dt id="ientry-idm46045192019920"> window </dt> <dd> <dl> <dt> window functions, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045324691760"> window functions, <a class="indexterm" href="example-maximum-column-group-row.html"> The Rows Holding the Group-wise Maximum of a Certain Column </a> , <a class="indexterm" href="window-functions.html"> Window Functions </a> </dt> <dd> <dl> <dt> EXPLAIN, <a class="indexterm" href="window-function-optimization.html"> Window Function Optimization </a> </dt> <dt> named windows, <a class="indexterm" href="window-functions-named-windows.html"> Named Windows </a> </dt> <dt> optimization, <a class="indexterm" href="window-function-optimization.html"> Window Function Optimization </a> </dt> <dt> restrictions, <a class="indexterm" href="window-function-restrictions.html"> Window Function Restrictions </a> </dt> <dt> spatial, <a class="indexterm" href="spatial-aggregate-functions.html"> Spatial Aggregate Functions </a> </dt> <dt> syntax, <a class="indexterm" href="window-functions-usage.html"> Window Function Concepts and Syntax </a> </dt> </dl> </dd> <dt id="ientry-idm46045266806672"> windowing_use_high_precision system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045331758656"> Windows </dt> <dd> <dl> <dt> interactive history, <a class="indexterm" href="mysql-tips.html"> mysql Client Tips </a> </dt> <dt> MySQL restrictions, <a class="indexterm" href="windows-restrictions.html"> Windows Platform Restrictions </a> </dt> <dt> path name separators, <a class="indexterm" href="option-files.html#option-file-syntax"> Option File Syntax </a> </dt> <dt> pluggable authentication, <a class="indexterm" href="windows-pluggable-authentication.html"> Windows Pluggable Authentication </a> </dt> <dt> upgrading, <a class="indexterm" href="windows-upgrading.html"> Upgrading MySQL on Windows </a> </dt> </dl> </dd> <dt id="ientry-idm46045327883424"> WIN_DEBUG_NO_INLINE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045192775744"> WITH ROLLUP, <a class="indexterm" href="group-by-modifiers.html"> GROUP BY Modifiers </a> </dt> <dt id="ientry-idm46045098170544"> with-apply-status option </dt> <dd> <dl> <dt> ndb_restore, <a class="indexterm" href="mysql-cluster-programs-ndb-restore.html"> ndb_restore — Restore an NDB Cluster Backup </a> </dt> </dl> </dd> <dt id="ientry-idm46045328094688"> WITHOUT_SERVER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327876816"> WITH_ANT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327866752"> WITH_ASAN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327860112"> WITH_ASAN_SCOPE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327852304"> WITH_AUTHENTICATION_CLIENT_PLUGINS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327845440"> WITH_AUTHENTICATION_LDAP option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327834768"> WITH_AUTHENTICATION_PAM option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327827808"> WITH_AWS_SDK option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045328634240"> WITH_BUILD_ID option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-general-options"> General Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327321296"> WITH_CLASSPATH option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327821808"> WITH_CLIENT_PROTOCOL_TRACING option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327813184"> WITH_CURL option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327800496"> WITH_DEBUG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327370512"> WITH_DEFAULT_COMPILER_OPTIONS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-compiler-flags"> Compiler Flags </a> </dt> </dl> </dd> <dt id="ientry-idm46045327977072"> WITH_DEVELOPER_ENTITLEMENTS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327778784"> WITH_EDITLINE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327314592"> WITH_ERROR_INSERT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327769568"> WITH_ICU option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327752944"> WITH_INNODB_EXTRA_DEBUG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327744768"> WITH_JEMALLOC option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327896016"> WITH_LD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327721232"> WITH_LIBEVENT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327709728"> WITH_LIBWRAP option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327703152"> WITH_LOCK_ORDER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327693728"> WITH_LSAN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327687152"> WITH_LTO option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327679568"> WITH_LZ4 option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327667040"> WITH_MECAB option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327657072"> WITH_MSAN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327650464"> WITH_MSCRT_DEBUG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327637264"> WITH_MYSQLX option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327307008"> WITH_NDB option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327301296"> WITH_NDBAPI_EXAMPLES option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327286064"> WITH_NDBCLUSTER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327294016"> WITH_NDBCLUSTER_STORAGE_ENGINE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327276480"> WITH_NDBMTD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327268736"> WITH_NDB_DEBUG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327262432"> WITH_NDB_JAVA option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327253120"> WITH_NDB_PORT option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327245536"> WITH_NDB_TEST option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327238864"> WITH_NDB_TLS_SEARCH_PATH option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-mysql-cluster-options"> CMake Options for Compiling NDB Cluster </a> </dt> </dl> </dd> <dt id="ientry-idm46045327629904"> WITH_NUMA option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327615248"> WITH_PACKAGE_FLAGS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327608464"> WITH_PROTOBUF option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327596400"> WITH_RAPID option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327586624"> WITH_RAPIDJSON option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327576720"> WITH_ROUTER option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327570288"> WITH_SASL option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327533088"> WITH_SHOW_PARSE_TREE option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327563984"> WITH_SSL option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327524320"> WITH_SYSTEMD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327486560"> WITH_SYSTEMD_DEBUG option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327504976"> WITH_SYSTEM_LIBS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327478384"> WITH_TCMALLOC option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327463328"> WITH_TEST_TRACE_PLUGIN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327449648"> WITH_TSAN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327443728"> WITH_UBSAN option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327438064"> WITH_UNIT_TESTS option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327431376"> WITH_UNIXODBC option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327425520"> WITH_VALGRIND option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327732480"> WITH_WIN_JEMALLOC option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327415696"> WITH_ZLIB option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045327399120"> WITH_ZSTD option </dt> <dd> <dl> <dt> CMake, <a class="indexterm" href="source-configuration-options.html#cmake-feature-options"> Feature Options </a> </dt> </dl> </dd> <dt id="ientry-idm46045211756336"> WKB format </dt> <dd> <dl> <dt> geometry values, <a class="indexterm" href="gis-data-formats.html#gis-wkb-format"> Well-Known Binary (WKB) Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045211804688"> WKT format </dt> <dd> <dl> <dt> geometry values, <a class="indexterm" href="gis-data-formats.html#gis-wkt-format"> Well-Known Text (WKT) Format </a> </dt> </dl> </dd> <dt id="ientry-idm46045030196400"> workload, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045060277424"> wrappers </dt> <dd> <dl> <dt> Eiffel, <a class="indexterm" href="apis-eiffel.html"> MySQL Eiffel Wrapper </a> </dt> </dl> </dd> <dt id="ientry-idm46045030190608"> write combining, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045308003328"> write option </dt> <dd> <dl> <dt> innochecksum, <a class="indexterm" href="innochecksum.html"> innochecksum — Offline InnoDB File Checksum Utility </a> </dt> </dl> </dd> <dt id="ientry-idm46045314794592"> write-binlog option </dt> <dd> <dl> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> </dl> </dd> <dt id="ientry-idm46045307333136"> write_buffer_size myisamchk variable, <a class="indexterm" href="myisamchk-general-options.html"> myisamchk General Options </a> </dt> <dt id="ientry-idm46045221313024"> Writing to net </dt> <dd> <dl> <dt> thread state, <a class="indexterm" href="general-thread-states.html"> General Thread States </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_X"> </a> X </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045126714656"> X Plugin, <a class="indexterm" href="x-plugin.html"> X Plugin </a> </dt> <dt id="ientry-idm46045125787712"> X Plugin option </dt> <dd> <dl> <dt> mysqlx, <a class="indexterm" href="x-plugin-options-system-variables.html"> X Plugin Options and System Variables </a> </dt> </dl> </dd> <dt id="ientry-idm46045063392496"> x$ views </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-views.html"> sys Schema Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063363760"> x$host_summary view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary.html"> The host_summary and x$host_summary Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063327184"> x$host_summary_by_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-file-io.html"> The host_summary_by_file_io and x$host_summary_by_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063307840"> x$host_summary_by_file_io_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-file-io-type.html"> The host_summary_by_file_io_type and x$host_summary_by_file_io_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063284448"> x$host_summary_by_stages view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-stages.html"> The host_summary_by_stages and x$host_summary_by_stages Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063261152"> x$host_summary_by_statement_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-statement-latency.html"> The host_summary_by_statement_latency and x$host_summary_by_statement_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063228000"> x$host_summary_by_statement_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-host-summary-by-statement-type.html"> The host_summary_by_statement_type and x$host_summary_by_statement_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063192640"> x$innodb_buffer_stats_by_schema view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-buffer-stats-by-schema.html"> The innodb_buffer_stats_by_schema and x$innodb_buffer_stats_by_schema Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063161776"> x$innodb_buffer_stats_by_table view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-buffer-stats-by-table.html"> The innodb_buffer_stats_by_table and x$innodb_buffer_stats_by_table Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063129184"> x$innodb_lock_waits view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-innodb-lock-waits.html"> The innodb_lock_waits and x$innodb_lock_waits Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063052672"> x$io_by_thread_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-by-thread-by-latency.html"> The io_by_thread_by_latency and x$io_by_thread_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045063025040"> x$io_global_by_file_by_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-file-by-bytes.html"> The io_global_by_file_by_bytes and x$io_global_by_file_by_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062996304"> x$io_global_by_file_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-file-by-latency.html"> The io_global_by_file_by_latency and x$io_global_by_file_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062967552"> x$io_global_by_wait_by_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-wait-by-bytes.html"> The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062930272"> x$io_global_by_wait_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-io-global-by-wait-by-latency.html"> The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062891056"> x$latest_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-latest-file-io.html"> The latest_file_io and x$latest_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062870208"> x$memory_by_host_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-host-by-current-bytes.html"> The memory_by_host_by_current_bytes and x$memory_by_host_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062844848"> x$memory_by_thread_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-thread-by-current-bytes.html"> The memory_by_thread_by_current_bytes and x$memory_by_thread_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062819888"> x$memory_by_user_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-by-user-by-current-bytes.html"> The memory_by_user_by_current_bytes and x$memory_by_user_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062794576"> x$memory_global_by_current_bytes view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-global-by-current-bytes.html"> The memory_global_by_current_bytes and x$memory_global_by_current_bytes Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062769568"> x$memory_global_total view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-memory-global-total.html"> The memory_global_total and x$memory_global_total Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062684000"> x$processlist view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-processlist.html"> The processlist and x$processlist Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062499712"> x$schema_flattened_keys view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-redundant-indexes.html"> The schema_redundant_indexes and x$schema_flattened_keys Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062551040"> x$schema_index_statistics view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-index-statistics.html"> The schema_index_statistics and x$schema_index_statistics Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062283616"> x$schema_tables_with_full_table_scans view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-tables-with-full-table-scans.html"> The schema_tables_with_full_table_scans and x$schema_tables_with_full_table_scans Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062452448"> x$schema_table_lock_waits view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-lock-waits.html"> The schema_table_lock_waits and x$schema_table_lock_waits Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062401264"> x$schema_table_statistics view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-statistics.html"> The schema_table_statistics and x$schema_table_statistics Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062351856"> x$schema_table_statistics_with_buffer view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-schema-table-statistics-with-buffer.html"> The schema_table_statistics_with_buffer and x$schema_table_statistics_with_buffer Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062251504"> x$session view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-session.html"> The session and x$session Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062163248"> x$statements_with_errors_or_warnings view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-errors-or-warnings.html"> The statements_with_errors_or_warnings and x$statements_with_errors_or_warnings Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062131776"> x$statements_with_full_table_scans view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-full-table-scans.html"> The statements_with_full_table_scans and x$statements_with_full_table_scans Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062092368"> x$statements_with_runtimes_in_95th_percentile view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-runtimes-in-95th-percentile.html"> The statements_with_runtimes_in_95th_percentile and x$statements_with_runtimes_in_95th_percentile Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062047056"> x$statements_with_sorting view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-sorting.html"> The statements_with_sorting and x$statements_with_sorting Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062009824"> x$statements_with_temp_tables view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statements-with-temp-tables.html"> The statements_with_temp_tables and x$statements_with_temp_tables Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045062226128"> x$statement_analysis view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-statement-analysis.html"> The statement_analysis and x$statement_analysis Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061976384"> x$user_summary view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary.html"> The user_summary and x$user_summary Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061939712"> x$user_summary_by_file_io view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-file-io.html"> The user_summary_by_file_io and x$user_summary_by_file_io Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061920448"> x$user_summary_by_file_io_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-file-io-type.html"> The user_summary_by_file_io_type and x$user_summary_by_file_io_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061897152"> x$user_summary_by_stages view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-stages.html"> The user_summary_by_stages and x$user_summary_by_stages Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061873840"> x$user_summary_by_statement_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-statement-latency.html"> The user_summary_by_statement_latency and x$user_summary_by_statement_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061840720"> x$user_summary_by_statement_type view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-user-summary-by-statement-type.html"> The user_summary_by_statement_type and x$user_summary_by_statement_type Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061740144"> x$waits_by_host_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-by-host-by-latency.html"> The waits_by_host_by_latency and x$waits_by_host_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061717216"> x$waits_by_user_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-by-user-by-latency.html"> The waits_by_user_by_latency and x$waits_by_user_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061694240"> x$waits_global_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-waits-global-by-latency.html"> The waits_global_by_latency and x$waits_global_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061790272"> x$wait_classes_global_by_avg_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-wait-classes-global-by-avg-latency.html"> The wait_classes_global_by_avg_latency and x$wait_classes_global_by_avg_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045061765152"> x$wait_classes_global_by_latency view </dt> <dd> <dl> <dt> sys schema, <a class="indexterm" href="sys-wait-classes-global-by-latency.html"> The wait_classes_global_by_latency and x$wait_classes_global_by_latency Views </a> </dt> </dl> </dd> <dt id="ientry-idm46045247200288"> X.509/Certificate, <a class="indexterm" href="encrypted-connections.html"> Using Encrypted Connections </a> </dt> <dt id="ientry-idm46045030183280"> XA, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045178107792"> XA BEGIN, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178102672"> XA COMMIT, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178105232"> XA PREPARE, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178097552"> XA RECOVER, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178100112"> XA ROLLBACK, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178110320"> XA START, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> <dt id="ientry-idm46045178138944"> XA transactions, <a class="indexterm" href="xa.html"> XA Transactions </a> </dt> <dd> <dl> <dt> restrictions, <a class="indexterm" href="xa-restrictions.html"> Restrictions on XA Transactions </a> </dt> <dt> transaction identifiers, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045266779984"> xa_detach_on_prepare system variable, <a class="indexterm" href="server-system-variables.html"> Server System Variables </a> </dt> <dt id="ientry-idm46045250850368"> XA_RECOVER_ADMIN privilege, <a class="indexterm" href="privileges-provided.html#privileges-provided-dynamic"> Dynamic Privilege Descriptions </a> </dt> <dt id="ientry-idm46045178094992"> xid </dt> <dd> <dl> <dt> XA transaction identifier, <a class="indexterm" href="xa-statements.html"> XA Transaction SQL Statements </a> </dt> </dl> </dd> <dt id="ientry-idm46045317970064"> xml option </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> ndb_config, <a class="indexterm" href="mysql-cluster-programs-ndb-config.html"> ndb_config — Extract NDB Cluster Configuration Information </a> </dt> </dl> </dd> <dt id="ientry-idm46045206890832"> XOR </dt> <dd> <dl> <dt> bitwise, <a class="indexterm" href="bit-functions.html"> Bit Functions and Operators </a> </dt> <dt> logical, <a class="indexterm" href="logical-operators.html"> Logical Operators </a> </dt> </dl> </dd> <dt id="ientry-idm46045200043072"> XPath code injection, <a class="indexterm" href="xml-functions.html"> XML Functions </a> </dt> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_Y"> </a> Y </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045213669584"> YEAR data type, <a class="indexterm" href="date-and-time-type-syntax.html"> Date and Time Data Type Syntax </a> , <a class="indexterm" href="year.html"> The YEAR Type </a> </dt> <dt id="ientry-idm46045203899472"> YEAR(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045203882336"> YEARWEEK(), <a class="indexterm" href="date-and-time-functions.html"> Date and Time Functions </a> </dt> <dt id="ientry-idm46045055632016"> Yen sign (Japanese), <a class="indexterm" href="faqs-cjk.html"> MySQL 8.4 FAQ: MySQL Chinese, Japanese, and Korean Character Sets </a> </dt> <dt id="ientry-idm46045030175280"> young, <a class="indexterm" href="glossary.html"> MySQL Glossary </a> </dt> <dt id="ientry-idm46045241802240"> Your password does not satisfy the current policy requirements </dt> <dd> <dl> <dt> password error, <a class="indexterm" href="validate-password.html"> The Password Validation Component </a> </dt> </dl> </dd> </dl> </div> <div class="indexdiv"> <h3> <a name="manual_index0_Z"> </a> Z </h3> [ <a href="ix01.html"> index top </a> ] <dl> <dt id="ientry-idm46045214422672"> ZEROFILL, <a class="indexterm" href="numeric-type-syntax.html"> Numeric Data Type Syntax </a> , <a class="indexterm" href="numeric-type-attributes.html"> Numeric Type Attributes </a> </dt> <dt id="ientry-idm46045322809936"> zstd-compression-level option, <a class="indexterm" href="connection-options.html#connection-compression-options"> Command Options for Connection Compression </a> </dt> <dd> <dl> <dt> mysql, <a class="indexterm" href="mysql-command-options.html"> mysql Client Options </a> </dt> <dt> mysqladmin, <a class="indexterm" href="mysqladmin.html"> mysqladmin — A MySQL Server Administration Program </a> </dt> <dt> mysqlbinlog, <a class="indexterm" href="mysqlbinlog.html"> mysqlbinlog — Utility for Processing Binary Log Files </a> </dt> <dt> mysqlcheck, <a class="indexterm" href="mysqlcheck.html"> mysqlcheck — A Table Maintenance Program </a> </dt> <dt> mysqldump, <a class="indexterm" href="mysqldump.html"> mysqldump — A Database Backup Program </a> </dt> <dt> mysqlimport, <a class="indexterm" href="mysqlimport.html"> mysqlimport — A Data Import Program </a> </dt> <dt> mysqlshow, <a class="indexterm" href="mysqlshow.html"> mysqlshow — Display Database, Table, and Column Information </a> </dt> <dt> mysqlslap, <a class="indexterm" href="mysqlslap.html"> mysqlslap — A Load Emulation Client </a> </dt> </dl> </dd> </dl> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-schema-partitions-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="information-schema-partitions-table"> </a> 28.3.21 The INFORMATION_SCHEMA PARTITIONS Table </h3> </div> </div> </div> <a class="indexterm" name="idm46045079385264"> </a> <p> The <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> table provides information about table partitions. Each row in this table corresponds to an individual partition or subpartition of a partitioned table. For more information about partitioning tables, see <a class="xref" href="partitioning.html" title="Chapter 26 Partitioning"> Chapter 26, <i> Partitioning </i> </a> . </p> <p> The <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> TABLE_CATALOG </code> </p> <p> The name of the catalog to which the table belongs. This value is always <code class="literal"> def </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_SCHEMA </code> </p> <p> The name of the schema (database) to which the table belongs. </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_NAME </code> </p> <p> The name of the table containing the partition. </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_NAME </code> </p> <p> The name of the partition. </p> </li> <li class="listitem"> <p> <code class="literal"> SUBPARTITION_NAME </code> </p> <p> If the <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> table row represents a subpartition, the name of subpartition; otherwise <code class="literal"> NULL </code> . </p> <p> For <code class="literal"> NDB </code> : This value is always <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_ORDINAL_POSITION </code> </p> <p> All partitions are indexed in the same order as they are defined, with <code class="literal"> 1 </code> being the number assigned to the first partition. The indexing can change as partitions are added, dropped, and reorganized; the number shown is this column reflects the current order, taking into account any indexing changes. </p> </li> <li class="listitem"> <p> <code class="literal"> SUBPARTITION_ORDINAL_POSITION </code> </p> <p> Subpartitions within a given partition are also indexed and reindexed in the same manner as partitions are indexed within a table. </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_METHOD </code> </p> <p> One of the values <code class="literal"> RANGE </code> , <code class="literal"> LIST </code> , <code class="literal"> HASH </code> , <code class="literal"> LINEAR HASH </code> , <code class="literal"> KEY </code> , or <code class="literal"> LINEAR KEY </code> ; that is, one of the available partitioning types as discussed in <a class="xref" href="partitioning-types.html" title="26.2 Partitioning Types"> Section 26.2, “Partitioning Types” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> SUBPARTITION_METHOD </code> </p> <p> One of the values <code class="literal"> HASH </code> , <code class="literal"> LINEAR HASH </code> , <code class="literal"> KEY </code> , or <code class="literal"> LINEAR KEY </code> ; that is, one of the available subpartitioning types as discussed in <a class="xref" href="partitioning-subpartitions.html" title="26.2.6 Subpartitioning"> Section 26.2.6, “Subpartitioning” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_EXPRESSION </code> </p> <p> The expression for the partitioning function used in the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement that created the table's current partitioning scheme. </p> <p> For example, consider a partitioned table created in the <code class="literal"> test </code> database using this statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa10309431"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> tp <span class="token punctuation">(</span> c1 <span class="token datatype">INT</span><span class="token punctuation">,</span> c2 <span class="token datatype">INT</span><span class="token punctuation">,</span> c3 <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">25</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">PARTITION</span> <span class="token keyword">BY</span> <span class="token keyword">HASH</span><span class="token punctuation">(</span>c1 <span class="token operator">+</span> c2<span class="token punctuation">)</span> <span class="token keyword">PARTITIONS</span> <span class="token number">4</span><span class="token punctuation">;</span></code></pre> </div> <p> The <code class="literal"> PARTITION_EXPRESSION </code> column in a <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> table row for a partition from this table displays <code class="literal"> c1 + c2 </code> , as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa93355282"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">DISTINCT</span> PARTITION_EXPRESSION <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span><span class="token keyword">PARTITIONS</span> <span class="token keyword">WHERE</span> <span class="token keyword">TABLE_NAME</span><span class="token operator">=</span><span class="token string">'tp'</span> <span class="token operator">AND</span> TABLE_SCHEMA<span class="token operator">=</span><span class="token string">'test'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> PARTITION_EXPRESSION <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> c1 <span class="token punctuation">+</span> c2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For a table that is not explicitly partitioned, this column is always <code class="literal"> NULL </code> , regardless of storage engine. </p> </li> <li class="listitem"> <p> <code class="literal"> SUBPARTITION_EXPRESSION </code> </p> <p> This works in the same fashion for the subpartitioning expression that defines the subpartitioning for a table as <code class="literal"> PARTITION_EXPRESSION </code> does for the partitioning expression used to define a table's partitioning. </p> <p> If the table has no subpartitions, this column is <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_DESCRIPTION </code> </p> <p> This column is used for RANGE and LIST partitions. For a <code class="literal"> RANGE </code> partition, it contains the value set in the partition's <code class="literal"> VALUES LESS THAN </code> clause, which can be either an integer or <code class="literal"> MAXVALUE </code> . For a <code class="literal"> LIST </code> partition, this column contains the values defined in the partition's <code class="literal"> VALUES IN </code> clause, which is a list of comma-separated integer values. </p> <p> For partitions whose <code class="literal"> PARTITION_METHOD </code> is other than <code class="literal"> RANGE </code> or <code class="literal"> LIST </code> , this column is always <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_ROWS </code> </p> <p> The number of table rows in the partition. </p> <p> For partitioned <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> tables, the row count given in the <code class="literal"> TABLE_ROWS </code> column is only an estimated value used in SQL optimization, and may not always be exact. </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, you can also obtain this information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> AVG_ROW_LENGTH </code> </p> <p> The average length of the rows stored in this partition or subpartition, in bytes. This is the same as <code class="literal"> DATA_LENGTH </code> divided by <code class="literal"> TABLE_ROWS </code> . </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, you can also obtain this information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> DATA_LENGTH </code> </p> <p> The total length of all rows stored in this partition or subpartition, in bytes; that is, the total number of bytes stored in the partition or subpartition. </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, you can also obtain this information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> MAX_DATA_LENGTH </code> </p> <p> The maximum number of bytes that can be stored in this partition or subpartition. </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, you can also obtain this information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> INDEX_LENGTH </code> </p> <p> The length of the index file for this partition or subpartition, in bytes. </p> <p> For partitions of <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, whether the tables use implicit or explicit partitioning, the <code class="literal"> INDEX_LENGTH </code> column value is always 0. However, you can obtain equivalent information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> DATA_FREE </code> </p> <p> The number of bytes allocated to the partition or subpartition but not used. </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, you can also obtain this information using the <a class="link" href="mysql-cluster-programs-ndb-desc.html" title="25.5.9 ndb_desc — Describe NDB Tables"> <span class="command"> <strong> ndb_desc </strong> </span> </a> utility. </p> </li> <li class="listitem"> <p> <code class="literal"> CREATE_TIME </code> </p> <p> The time that the partition or subpartition was created. </p> </li> <li class="listitem"> <p> <code class="literal"> UPDATE_TIME </code> </p> <p> The time that the partition or subpartition was last modified. </p> </li> <li class="listitem"> <p> <code class="literal"> CHECK_TIME </code> </p> <p> The last time that the table to which this partition or subpartition belongs was checked. </p> <p> For partitioned <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> tables, the value is always <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> CHECKSUM </code> </p> <p> The checksum value, if any; otherwise <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> PARTITION_COMMENT </code> </p> <p> The text of the comment, if the partition has one. If not, this value is empty. </p> <p> The maximum length for a partition comment is defined as 1024 characters, and the display width of the <code class="literal"> PARTITION_COMMENT </code> column is also 1024, characters to match this limit. </p> </li> <li class="listitem"> <p> <code class="literal"> NODEGROUP </code> </p> <p> This is the nodegroup to which the partition belongs. For NDB Cluster tables, this is always <code class="literal"> default </code> . For partitioned tables using storage engines other than <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> , the value is also <code class="literal"> default </code> . Otherwise, this column is empty. </p> </li> <li class="listitem"> <p> <code class="literal"> TABLESPACE_NAME </code> </p> <p> The name of the tablespace to which the partition belongs. The value is always <code class="literal"> DEFAULT </code> , unless the table uses the <code class="literal"> NDB </code> storage engine (see the <em class="citetitle"> Notes </em> at the end of this section). </p> </li> </ul> </div> <h4> <a name="idm46045079263216"> </a> Notes </h4> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> is a nonstandard <code class="literal"> INFORMATION_SCHEMA </code> table. </p> </li> <li class="listitem"> <p> A table using any storage engine other than <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> and which is not partitioned has one row in the <a class="link" href="information-schema-partitions-table.html" title="28.3.21 The INFORMATION_SCHEMA PARTITIONS Table"> <code class="literal"> PARTITIONS </code> </a> table. However, the values of the <code class="literal"> PARTITION_NAME </code> , <code class="literal"> SUBPARTITION_NAME </code> , <code class="literal"> PARTITION_ORDINAL_POSITION </code> , <code class="literal"> SUBPARTITION_ORDINAL_POSITION </code> , <code class="literal"> PARTITION_METHOD </code> , <code class="literal"> SUBPARTITION_METHOD </code> , <code class="literal"> PARTITION_EXPRESSION </code> , <code class="literal"> SUBPARTITION_EXPRESSION </code> , and <code class="literal"> PARTITION_DESCRIPTION </code> columns are all <code class="literal"> NULL </code> . Also, the <code class="literal"> PARTITION_COMMENT </code> column in this case is blank. </p> </li> <li class="listitem"> <p> An <code class="literal"> NDB </code> table which is not explicitly partitioned has one row in the <code class="literal"> PARTITIONS </code> table for each data node in the NDB cluster. For each such row: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The <code class="literal"> SUBPARTITION_NAME </code> , <code class="literal"> SUBPARTITION_ORDINAL_POSITION </code> , <code class="literal"> SUBPARTITION_METHOD </code> , <code class="literal"> PARTITION_EXPRESSION </code> , <code class="literal"> SUBPARTITION_EXPRESSION </code> , <code class="literal"> CREATE_TIME </code> , <code class="literal"> UPDATE_TIME </code> , <code class="literal"> CHECK_TIME </code> , <code class="literal"> CHECKSUM </code> , and <code class="literal"> TABLESPACE_NAME </code> columns are all <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> The <code class="literal"> PARTITION_METHOD </code> is always <code class="literal"> AUTO </code> . </p> </li> <li class="listitem"> <p> The <code class="literal"> NODEGROUP </code> column is <code class="literal"> default </code> . </p> </li> <li class="listitem"> <p> The <code class="literal"> PARTITION_COMMENT </code> column is empty. </p> </li> </ul> </div> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/while.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="while"> </a> 15.6.5.8 WHILE Statement </h4> </div> </div> </div> <a class="indexterm" name="idm46045176185760"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa49666477"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token punctuation">[</span><em class="replaceable">begin_label</em>:<span class="token punctuation">]</span> <span class="token keyword">WHILE</span> <em class="replaceable">search_condition</em> <span class="token keyword">DO</span> <em class="replaceable">statement_list</em> <span class="token keyword">END</span> <span class="token keyword">WHILE</span> <span class="token punctuation">[</span><em class="replaceable">end_label</em><span class="token punctuation">]</span></code></pre> </div> <p> The statement list within a <a class="link" href="while.html" title="15.6.5.8 WHILE Statement"> <code class="literal"> WHILE </code> </a> statement is repeated as long as the <em class="replaceable"> <code> search_condition </code> </em> expression is true. <em class="replaceable"> <code> statement_list </code> </em> consists of one or more SQL statements, each terminated by a semicolon ( <code class="literal"> ; </code> ) statement delimiter. </p> <p> A <a class="link" href="while.html" title="15.6.5.8 WHILE Statement"> <code class="literal"> WHILE </code> </a> statement can be labeled. For the rules regarding label use, see <a class="xref" href="statement-labels.html" title="15.6.2 Statement Labels"> Section 15.6.2, “Statement Labels” </a> . </p> <p> Example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa8920080"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">PROCEDURE</span> dowhile<span class="token punctuation">(</span><span class="token punctuation">)</span> <span class="token keyword">BEGIN</span> <span class="token keyword">DECLARE</span> v1 <span class="token datatype">INT</span> <span class="token keyword">DEFAULT</span> <span class="token number">5</span><span class="token punctuation">;</span> <span class="token keyword">WHILE</span> v1 <span class="token operator">&gt;</span> <span class="token number">0</span> <span class="token keyword">DO</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token keyword">SET</span> v1 <span class="token operator">=</span> v1 <span class="token operator">-</span> <span class="token number">1</span><span class="token punctuation">;</span> <span class="token keyword">END</span> <span class="token keyword">WHILE</span><span class="token punctuation">;</span> <span class="token keyword">END</span><span class="token punctuation">;</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-enterprise.html
<div id="docs-body"> <div class="chapter"> <div class="titlepage"> <div> <div> <h1 class="title"> <a name="mysql-enterprise"> </a> Chapter 32 MySQL Enterprise Edition </h1> </div> </div> </div> <div class="toc"> <p> <b> Table of Contents </b> </p> <dl class="toc"> <dt> <span class="section"> <a href="mysql-enterprise-backup.html"> 32.1 MySQL Enterprise Backup Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-security.html"> 32.2 MySQL Enterprise Security Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-encryption.html"> 32.3 MySQL Enterprise Encryption Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-audit.html"> 32.4 MySQL Enterprise Audit Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-firewall.html"> 32.5 MySQL Enterprise Firewall Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-thread-pool.html"> 32.6 MySQL Enterprise Thread Pool Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-data-masking.html"> 32.7 MySQL Enterprise Data Masking and De-Identification Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-monitor.html"> 32.8 MySQL Enterprise Monitor Overview </a> </span> </dt> <dt> <span class="section"> <a href="mysql-enterprise-telemetry.html"> 32.9 MySQL Telemetry </a> </span> </dt> </dl> </div> <p> MySQL Enterprise Edition is a commercial product. Like MySQL Community Edition, MySQL Enterprise Edition includes MySQL Server, a fully integrated transaction-safe, ACID-compliant database with full commit, rollback, crash-recovery, and row-level locking capabilities. In addition, MySQL Enterprise Edition includes the following components designed to provide monitoring and online backup, as well as improved security and scalability: </p> <p> The following sections briefly discuss each of these components and indicate where to find more detailed information. To learn more about commercial products, see <a class="ulink" href="https://www.mysql.com/products/" target="_blank"> https://www.mysql.com/products/ </a> . </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-backup.html" title="32.1 MySQL Enterprise Backup Overview"> MySQL Enterprise Backup </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-security.html" title="32.2 MySQL Enterprise Security Overview"> MySQL Enterprise Security </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-encryption.html" title="32.3 MySQL Enterprise Encryption Overview"> MySQL Enterprise Encryption </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-audit.html" title="32.4 MySQL Enterprise Audit Overview"> MySQL Enterprise Audit </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-firewall.html" title="32.5 MySQL Enterprise Firewall Overview"> MySQL Enterprise Firewall </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-thread-pool.html" title="32.6 MySQL Enterprise Thread Pool Overview"> MySQL Enterprise Thread Pool </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-data-masking.html" title="32.7 MySQL Enterprise Data Masking and De-Identification Overview"> MySQL Enterprise Data Masking and De-Identification </a> </p> </li> <li class="listitem"> <p> <a class="link" href="mysql-enterprise-monitor.html" title="32.8 MySQL Enterprise Monitor Overview"> MySQL Enterprise Monitor </a> </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/sys-session-ssl-status.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="sys-session-ssl-status"> </a> 30.4.3.34 The session_ssl_status View </h4> </div> </div> </div> <a class="indexterm" name="idm46045062243536"> </a> <a class="indexterm" name="idm46045062242080"> </a> <p> For each connection, this view displays the SSL version, cipher, and count of reused SSL sessions. </p> <p> The <a class="link" href="sys-session-ssl-status.html" title="30.4.3.34 The session_ssl_status View"> <code class="literal"> session_ssl_status </code> </a> view has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> thread_id </code> </p> <p> The thread ID for the connection. </p> </li> <li class="listitem"> <p> <code class="literal"> ssl_version </code> </p> <p> The version of SSL used for the connection. </p> </li> <li class="listitem"> <p> <code class="literal"> ssl_cipher </code> </p> <p> The SSL cipher used for the connection. </p> </li> <li class="listitem"> <p> <code class="literal"> ssl_sessions_reused </code> </p> <p> The number of reused SSL sessions for the connection. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-socket-instances-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-socket-instances-table"> </a> 29.12.3.5 The socket_instances Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073446624"> </a> <a class="indexterm" name="idm46045073445136"> </a> <a class="indexterm" name="idm46045073443648"> </a> <a class="indexterm" name="idm46045073442576"> </a> <p> The <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> table provides a real-time snapshot of the active connections to the MySQL server. The table contains one row per TCP/IP or Unix socket file connection. Information available in this table provides a real-time snapshot of the active connections to the server. (Additional information is available in socket summary tables, including network activity such as socket operations and number of bytes transmitted and received; see <a class="xref" href="performance-schema-socket-summary-tables.html" title="29.12.20.9 Socket Summary Tables"> Section 29.12.20.9, “Socket Summary Tables” </a> ). </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa78887612"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> performance_schema<span class="token punctuation">.</span>socket_instances\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> EVENT_NAME<span class="token punctuation">:</span> wait/io/socket/sql/server_unix_socket OBJECT_INSTANCE_BEGIN<span class="token punctuation">:</span> 4316619408 THREAD_ID<span class="token punctuation">:</span> 1 SOCKET_ID<span class="token punctuation">:</span> 16 IP<span class="token punctuation">:</span> PORT<span class="token punctuation">:</span> 0 STATE<span class="token punctuation">:</span> ACTIVE <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 2. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> EVENT_NAME<span class="token punctuation">:</span> wait/io/socket/sql/client_connection OBJECT_INSTANCE_BEGIN<span class="token punctuation">:</span> 4316644608 THREAD_ID<span class="token punctuation">:</span> 21 SOCKET_ID<span class="token punctuation">:</span> 39 IP<span class="token punctuation">:</span> 127.0.0.1 PORT<span class="token punctuation">:</span> 55233 STATE<span class="token punctuation">:</span> ACTIVE <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 3. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> EVENT_NAME<span class="token punctuation">:</span> wait/io/socket/sql/server_tcpip_socket OBJECT_INSTANCE_BEGIN<span class="token punctuation">:</span> 4316699040 THREAD_ID<span class="token punctuation">:</span> 1 SOCKET_ID<span class="token punctuation">:</span> 14 IP<span class="token punctuation">:</span> 0.0.0.0 PORT<span class="token punctuation">:</span> 50603 STATE<span class="token punctuation">:</span> ACTIVE</span></code></pre> </div> <p> Socket instruments have names of the form <code class="literal"> wait/io/socket/sql/ <em class="replaceable"> <code> socket_type </code> </em> </code> and are used like this: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> The server has a listening socket for each network protocol that it supports. The instruments associated with listening sockets for TCP/IP or Unix socket file connections have a <em class="replaceable"> <code> socket_type </code> </em> value of <code class="literal"> server_tcpip_socket </code> or <code class="literal"> server_unix_socket </code> , respectively. </p> </li> <li class="listitem"> <p> When a listening socket detects a connection, the server transfers the connection to a new socket managed by a separate thread. The instrument for the new connection thread has a <em class="replaceable"> <code> socket_type </code> </em> value of <code class="literal"> client_connection </code> . </p> </li> <li class="listitem"> <p> When a connection terminates, the row in <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> corresponding to it is deleted. </p> </li> </ol> </div> <p> The <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> EVENT_NAME </code> </p> <p> The name of the <code class="literal"> wait/io/socket/* </code> instrument that produced the event. This is a <code class="literal"> NAME </code> value from the <a class="link" href="performance-schema-setup-instruments-table.html" title="29.12.2.3 The setup_instruments Table"> <code class="literal"> setup_instruments </code> </a> table. Instrument names may have multiple parts and form a hierarchy, as discussed in <a class="xref" href="performance-schema-instrument-naming.html" title="29.6 Performance Schema Instrument Naming Conventions"> Section 29.6, “Performance Schema Instrument Naming Conventions” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> OBJECT_INSTANCE_BEGIN </code> </p> <p> This column uniquely identifies the socket. The value is the address of an object in memory. </p> </li> <li class="listitem"> <p> <code class="literal"> THREAD_ID </code> </p> <p> The internal thread identifier assigned by the server. Each socket is managed by a single thread, so each socket can be mapped to a thread which can be mapped to a server process. </p> </li> <li class="listitem"> <p> <code class="literal"> SOCKET_ID </code> </p> <p> The internal file handle assigned to the socket. </p> </li> <li class="listitem"> <p> <code class="literal"> IP </code> </p> <p> The client IP address. The value may be either an IPv4 or IPv6 address, or blank to indicate a Unix socket file connection. </p> </li> <li class="listitem"> <p> <code class="literal"> PORT </code> </p> <p> The TCP/IP port number, in the range from 0 to 65535. </p> </li> <li class="listitem"> <p> <code class="literal"> STATE </code> </p> <p> The socket status, either <code class="literal"> IDLE </code> or <code class="literal"> ACTIVE </code> . Wait times for active sockets are tracked using the corresponding socket instrument. Wait times for idle sockets are tracked using the <code class="literal"> idle </code> instrument. </p> <p> A socket is idle if it is waiting for a request from the client. When a socket becomes idle, the event row in <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> that is tracking the socket switches from a status of <code class="literal"> ACTIVE </code> to <code class="literal"> IDLE </code> . The <code class="literal"> EVENT_NAME </code> value remains <code class="literal"> wait/io/socket/* </code> , but timing for the instrument is suspended. Instead, an event is generated in the <a class="link" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> <code class="literal"> events_waits_current </code> </a> table with an <code class="literal"> EVENT_NAME </code> value of <code class="literal"> idle </code> . </p> <p> When the next request is received, the <code class="literal"> idle </code> event terminates, the socket instance switches from <code class="literal"> IDLE </code> to <code class="literal"> ACTIVE </code> , and timing of the socket instrument resumes. </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> OBJECT_INSTANCE_BEGIN </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> THREAD_ID </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> SOCKET_ID </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> IP </code> , <code class="literal"> PORT </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is not permitted for the <a class="link" href="performance-schema-socket-instances-table.html" title="29.12.3.5 The socket_instances Table"> <code class="literal"> socket_instances </code> </a> table. </p> <p> The <code class="literal"> IP:PORT </code> column combination value identifies the connection. This combination value is used in the <code class="literal"> OBJECT_NAME </code> column of the <code class="literal"> events_waits_ <em class="replaceable"> <code> xxx </code> </em> </code> tables, to identify the connection from which socket events come: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> For the Unix domain listener socket ( <code class="literal"> server_unix_socket </code> ), the port is 0, and the IP is <code class="literal"> '' </code> . </p> </li> <li class="listitem"> <p> For client connections via the Unix domain listener ( <code class="literal"> client_connection </code> ), the port is 0, and the IP is <code class="literal"> '' </code> . </p> </li> <li class="listitem"> <p> For the TCP/IP server listener socket ( <code class="literal"> server_tcpip_socket </code> ), the port is always the master port (for example, 3306), and the IP is always <code class="literal"> 0.0.0.0 </code> . </p> </li> <li class="listitem"> <p> For client connections via the TCP/IP listener ( <code class="literal"> client_connection </code> ), the port is whatever the server assigns, but never 0. The IP is the IP of the originating host ( <code class="literal"> 127.0.0.1 </code> or <code class="literal"> ::1 </code> for the local host) </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/password-security.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="password-security"> </a> 8.1.2 Keeping Passwords Secure </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="password-security-user.html"> 8.1.2.1 End-User Guidelines for Password Security </a> </span> </dt> <dt> <span class="section"> <a href="password-security-admin.html"> 8.1.2.2 Administrator Guidelines for Password Security </a> </span> </dt> <dt> <span class="section"> <a href="password-logging.html"> 8.1.2.3 Passwords and Logging </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045252904032"> </a> <p> Passwords occur in several contexts within MySQL. The following sections provide guidelines that enable end users and administrators to keep these passwords secure and avoid exposing them. In addition, the <code class="literal"> validate_password </code> plugin can be used to enforce a policy on acceptable password. See <a class="xref" href="validate-password.html" title="8.4.3 The Password Validation Component"> Section 8.4.3, “The Password Validation Component” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/pattern-matching.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="pattern-matching"> </a> 5.3.4.7 Pattern Matching </h4> </div> </div> </div> <a class="indexterm" name="idm46045325069984"> </a> <a class="indexterm" name="idm46045325068912"> </a> <a class="indexterm" name="idm46045325067424"> </a> <p> MySQL provides standard SQL pattern matching as well as a form of pattern matching based on extended regular expressions similar to those used by Unix utilities such as <span class="command"> <strong> vi </strong> </span> , <span class="command"> <strong> grep </strong> </span> , and <span class="command"> <strong> sed </strong> </span> . </p> <p> SQL pattern matching enables you to use <code class="literal"> _ </code> to match any single character and <code class="literal"> % </code> to match an arbitrary number of characters (including zero characters). In MySQL, SQL patterns are case-insensitive by default. Some examples are shown here. Do not use <code class="literal"> = </code> or <code class="literal"> &lt;&gt; </code> when you use SQL patterns. Use the <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> or <a class="link" href="string-comparison-functions.html#operator_not-like"> <code class="literal"> NOT LIKE </code> </a> comparison operators instead. </p> <p> To find names beginning with <code class="literal"> b </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa93402257"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token keyword">name</span> <span class="token operator">LIKE</span> <span class="token string">'b%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> Diane <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span> 1995<span class="token punctuation">-</span>07<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> To find names ending with <code class="literal"> fy </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa49797931"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token keyword">name</span> <span class="token operator">LIKE</span> <span class="token string">'%fy'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Fluffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1993<span class="token punctuation">-</span>02<span class="token punctuation">-</span>04 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> To find names containing a <code class="literal"> w </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa26267503"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token keyword">name</span> <span class="token operator">LIKE</span> <span class="token string">'%w%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> Diane <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span> 1995<span class="token punctuation">-</span>07<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Whistler <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> bird <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 1997<span class="token punctuation">-</span>12<span class="token punctuation">-</span>09 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> To find names containing exactly five characters, use five instances of the <code class="literal"> _ </code> pattern character: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa85809087"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token keyword">name</span> <span class="token operator">LIKE</span> <span class="token string">'_____'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The other type of pattern matching provided by MySQL uses extended regular expressions. When you test for a match for this type of pattern, use the <a class="link" href="regexp.html#function_regexp-like"> <code class="literal"> REGEXP_LIKE() </code> </a> function (or the <a class="link" href="regexp.html#operator_regexp"> <code class="literal"> REGEXP </code> </a> or <a class="link" href="regexp.html#operator_regexp"> <code class="literal"> RLIKE </code> </a> operators, which are synonyms for <a class="link" href="regexp.html#function_regexp-like"> <code class="literal"> REGEXP_LIKE() </code> </a> ). </p> <p> The following list describes some characteristics of extended regular expressions: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> . </code> matches any single character. </p> </li> <li class="listitem"> <p> A character class <code class="literal"> [...] </code> matches any character within the brackets. For example, <code class="literal"> [abc] </code> matches <code class="literal"> a </code> , <code class="literal"> b </code> , or <code class="literal"> c </code> . To name a range of characters, use a dash. <code class="literal"> [a-z] </code> matches any letter, whereas <code class="literal"> [0-9] </code> matches any digit. </p> </li> <li class="listitem"> <p> <code class="literal"> * </code> matches zero or more instances of the thing preceding it. For example, <code class="literal"> x* </code> matches any number of <code class="literal"> x </code> characters, <code class="literal"> [0-9]* </code> matches any number of digits, and <code class="literal"> .* </code> matches any number of anything. </p> </li> <li class="listitem"> <p> A regular expression pattern match succeeds if the pattern matches anywhere in the value being tested. (This differs from a <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> pattern match, which succeeds only if the pattern matches the entire value.) </p> </li> <li class="listitem"> <p> To anchor a pattern so that it must match the beginning or end of the value being tested, use <code class="literal"> ^ </code> at the beginning or <code class="literal"> $ </code> at the end of the pattern. </p> </li> </ul> </div> <p> To demonstrate how extended regular expressions work, the <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> queries shown previously are rewritten here to use <a class="link" href="regexp.html#function_regexp-like"> <code class="literal"> REGEXP_LIKE() </code> </a> . </p> <p> To find names beginning with <code class="literal"> b </code> , use <code class="literal"> ^ </code> to match the beginning of the name: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa53329970"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'^b'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> Diane <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1979<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span> 1995<span class="token punctuation">-</span>07<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> To force a regular expression comparison to be case-sensitive, use a case-sensitive collation, or use the <a class="link" href="cast-functions.html#operator_binary"> <code class="literal"> BINARY </code> </a> keyword to make one of the strings a binary string, or specify the <code class="literal"> c </code> match-control character. Each of these queries matches only lowercase <code class="literal"> b </code> at the beginning of a name: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25438513"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'^b'</span> <span class="token keyword">COLLATE</span> utf8mb4_0900_as_cs<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token datatype">BINARY</span> <span class="token string">'^b'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'^b'</span><span class="token punctuation">,</span> <span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> To find names ending with <code class="literal"> fy </code> , use <code class="literal"> $ </code> to match the end of the name: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa71528465"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'fy$'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Fluffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1993<span class="token punctuation">-</span>02<span class="token punctuation">-</span>04 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> To find names containing a <code class="literal"> w </code> , use this query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa76943031"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'w'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> Diane <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span> 1995<span class="token punctuation">-</span>07<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Whistler <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> bird <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 1997<span class="token punctuation">-</span>12<span class="token punctuation">-</span>09 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Because a regular expression pattern matches if it occurs anywhere in the value, it is not necessary in the previous query to put a wildcard on either side of the pattern to get it to match the entire value as would be true with an SQL pattern. </p> <p> To find names containing exactly five characters, use <code class="literal"> ^ </code> and <code class="literal"> $ </code> to match the beginning and end of the name, and five instances of <code class="literal"> . </code> in between: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25493887"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'^.....$'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> You could also write the previous query using the <code class="literal"> { <em class="replaceable"> <code> n </code> </em> } </code> ( <span class="quote"> “ <span class="quote"> repeat- <em class="replaceable"> <code> n </code> </em> -times </span> ” </span> ) operator: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa78008691"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> pet <span class="token keyword">WHERE</span> <span class="token function">REGEXP_LIKE</span><span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">,</span> <span class="token string">'^.{5}$'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> owner <span class="token punctuation">|</span> species <span class="token punctuation">|</span> sex <span class="token punctuation">|</span> birth <span class="token punctuation">|</span> death <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> Gwen <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> m <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> Harold <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> f <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For more information about the syntax for regular expressions, see <a class="xref" href="regexp.html" title="14.8.2 Regular Expressions"> Section 14.8.2, “Regular Expressions” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/set-resource-group.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="set-resource-group"> </a> 15.7.2.4 SET RESOURCE GROUP Statement </h4> </div> </div> </div> <a class="indexterm" name="idm46045172741456"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa45607152"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SET</span> <span class="token keyword">RESOURCE</span> <span class="token keyword">GROUP</span> <em class="replaceable">group_name</em> <span class="token punctuation">[</span><span class="token keyword">FOR</span> <em class="replaceable">thread_id</em> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">thread_id</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">]</span></code></pre> </div> <p> <a class="link" href="set-resource-group.html" title="15.7.2.4 SET RESOURCE GROUP Statement"> <code class="literal"> SET RESOURCE GROUP </code> </a> is used for resource group management (see <a class="xref" href="resource-groups.html" title="7.1.16 Resource Groups"> Section 7.1.16, “Resource Groups” </a> ). This statement assigns threads to a resource group. It requires the <a class="link" href="privileges-provided.html#priv_resource-group-admin"> <code class="literal"> RESOURCE_GROUP_ADMIN </code> </a> or <a class="link" href="privileges-provided.html#priv_resource-group-user"> <code class="literal"> RESOURCE_GROUP_USER </code> </a> privilege. </p> <p> <em class="replaceable"> <code> group_name </code> </em> identifies which resource group to be assigned. Any <em class="replaceable"> <code> thread_id </code> </em> values indicate threads to assign to the group. Thread IDs can be determined from the Performance Schema <a class="link" href="performance-schema-threads-table.html" title="29.12.22.8 The threads Table"> <code class="literal"> threads </code> </a> table. If the resource group or any named thread ID does not exist, an error occurs. </p> <p> With no <code class="literal"> FOR </code> clause, the statement assigns the current thread for the session to the resource group. </p> <p> With a <code class="literal"> FOR </code> clause that names thread IDs, the statement assigns those threads to the resource group. </p> <p> For attempts to assign a system thread to a user resource group or a user thread to a system resource group, a warning occurs. </p> <p> Examples: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Assign the current session thread to a group: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa18639267"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SET</span> <span class="token keyword">RESOURCE</span> <span class="token keyword">GROUP</span> rg1<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Assign the named threads to a group: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa97818991"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SET</span> <span class="token keyword">RESOURCE</span> <span class="token keyword">GROUP</span> rg2 <span class="token keyword">FOR</span> <span class="token number">14</span><span class="token punctuation">,</span> <span class="token number">78</span><span class="token punctuation">,</span> <span class="token number">4</span><span class="token punctuation">;</span></code></pre> </div> </li> </ul> </div> <p> Resource group management is local to the server on which it occurs. <a class="link" href="set-resource-group.html" title="15.7.2.4 SET RESOURCE GROUP Statement"> <code class="literal"> SET RESOURCE GROUP </code> </a> statements are not written to the binary log and are not replicated. </p> <p> An alternative to <a class="link" href="set-resource-group.html" title="15.7.2.4 SET RESOURCE GROUP Statement"> <code class="literal"> SET RESOURCE GROUP </code> </a> is the <a class="link" href="optimizer-hints.html#optimizer-hints-resource-group" title="Resource Group Hint Syntax"> <code class="literal"> RESOURCE_GROUP </code> </a> optimizer hint, which assigns individual statements to a resource group. See <a class="xref" href="optimizer-hints.html" title="10.9.3 Optimizer Hints"> Section 10.9.3, “Optimizer Hints” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/iterate.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="iterate"> </a> 15.6.5.3 ITERATE Statement </h4> </div> </div> </div> <a class="indexterm" name="idm46045176273904"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa1948724"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ITERATE</span> <em class="replaceable">label</em></code></pre> </div> <p> <a class="link" href="iterate.html" title="15.6.5.3 ITERATE Statement"> <code class="literal"> ITERATE </code> </a> can appear only within <a class="link" href="loop.html" title="15.6.5.5 LOOP Statement"> <code class="literal"> LOOP </code> </a> , <a class="link" href="repeat.html" title="15.6.5.6 REPEAT Statement"> <code class="literal"> REPEAT </code> </a> , and <a class="link" href="while.html" title="15.6.5.8 WHILE Statement"> <code class="literal"> WHILE </code> </a> statements. <a class="link" href="iterate.html" title="15.6.5.3 ITERATE Statement"> <code class="literal"> ITERATE </code> </a> means <span class="quote"> “ <span class="quote"> start the loop again. </span> ” </span> </p> <p> For an example, see <a class="xref" href="loop.html" title="15.6.5.5 LOOP Statement"> Section 15.6.5.5, “LOOP Statement” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/rewriter-query-rewrite-plugin-installation.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="rewriter-query-rewrite-plugin-installation"> </a> 7.6.4.1 Installing or Uninstalling the Rewriter Query Rewrite Plugin </h4> </div> </div> </div> <a class="indexterm" name="idm46045256618256"> </a> <a class="indexterm" name="idm46045256616752"> </a> <a class="indexterm" name="idm46045256615248"> </a> <a class="indexterm" name="idm46045256613744"> </a> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> If installed, the <code class="literal"> Rewriter </code> plugin involves some overhead even when disabled. To avoid this overhead, do not install the plugin unless you plan to use it. </p> </div> <p> To install or uninstall the <code class="literal"> Rewriter </code> query rewrite plugin, choose the appropriate script located in the <code class="filename"> share </code> directory of your MySQL installation: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="filename"> install_rewriter.sql </code> : Choose this script to install the <code class="literal"> Rewriter </code> plugin and its associated elements. </p> </li> <li class="listitem"> <p> <code class="filename"> uninstall_rewriter.sql </code> : Choose this script to uninstall the <code class="literal"> Rewriter </code> plugin and its associated elements. </p> </li> </ul> </div> <p> Run the chosen script as follows: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa48340832"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">$&gt; </span><span class="token command">mysql</span> <span class="token property">-u</span> root <span class="token property">-p</span> &lt; install_rewriter<span class="token punctuation">.</span>sql Enter password<span class="token punctuation">:</span> <span class="token punctuation"></span><em class="replaceable"><span class="token punctuation">(</span>enter root password here<span class="token punctuation">)</span></em><span class="token punctuation"></span></code></pre> </div> <p> The example here uses the <code class="filename"> install_rewriter.sql </code> installation script. Substitute <code class="filename"> uninstall_rewriter.sql </code> if you are uninstalling the plugin. </p> <p> Running an installation script should install and enable the plugin. To verify that, connect to the server and execute this statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa99263426"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">GLOBAL</span> <span class="token keyword">VARIABLES</span> <span class="token operator">LIKE</span> <span class="token string">'rewriter_enabled'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> rewriter_enabled <span class="token punctuation">|</span> ON <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For usage instructions, see <a class="xref" href="rewriter-query-rewrite-plugin-usage.html" title="7.6.4.2 Using the Rewriter Query Rewrite Plugin"> Section 7.6.4.2, “Using the Rewriter Query Rewrite Plugin” </a> . For reference information, see <a class="xref" href="rewriter-query-rewrite-plugin-reference.html" title="7.6.4.3 Rewriter Query Rewrite Plugin Reference"> Section 7.6.4.3, “Rewriter Query Rewrite Plugin Reference” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-mutex-instances-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-mutex-instances-table"> </a> 29.12.3.3 The mutex_instances Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073552144"> </a> <a class="indexterm" name="idm46045073550656"> </a> <p> The <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> table lists all the mutexes seen by the Performance Schema while the server executes. A mutex is a synchronization mechanism used in the code to enforce that only one thread at a given time can have access to some common resource. The resource is said to be <span class="quote"> “ <span class="quote"> protected </span> ” </span> by the mutex. </p> <p> When two threads executing in the server (for example, two user sessions executing a query simultaneously) do need to access the same resource (a file, a buffer, or some piece of data), these two threads compete against each other, so that the first query to obtain a lock on the mutex causes the other query to wait until the first is done and unlocks the mutex. </p> <p> The work performed while holding a mutex is said to be in a <span class="quote"> “ <span class="quote"> critical section, </span> ” </span> and multiple queries do execute this critical section in a serialized way (one at a time), which is a potential bottleneck. </p> <p> The <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> NAME </code> </p> <p> The instrument name associated with the mutex. </p> </li> <li class="listitem"> <p> <code class="literal"> OBJECT_INSTANCE_BEGIN </code> </p> <p> The address in memory of the instrumented mutex. </p> </li> <li class="listitem"> <p> <code class="literal"> LOCKED_BY_THREAD_ID </code> </p> <p> When a thread currently has a mutex locked, <code class="literal"> LOCKED_BY_THREAD_ID </code> is the <code class="literal"> THREAD_ID </code> of the locking thread, otherwise it is <code class="literal"> NULL </code> . </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> OBJECT_INSTANCE_BEGIN </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> NAME </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> LOCKED_BY_THREAD_ID </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is not permitted for the <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> table. </p> <p> For every mutex instrumented in the code, the Performance Schema provides the following information. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <a class="link" href="performance-schema-setup-instruments-table.html" title="29.12.2.3 The setup_instruments Table"> <code class="literal"> setup_instruments </code> </a> table lists the name of the instrumentation point, with the prefix <code class="literal"> wait/synch/mutex/ </code> . </p> </li> <li class="listitem"> <p> When some code creates a mutex, a row is added to the <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> table. The <code class="literal"> OBJECT_INSTANCE_BEGIN </code> column is a property that uniquely identifies the mutex. </p> </li> <li class="listitem"> <p> When a thread attempts to lock a mutex, the <a class="link" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> <code class="literal"> events_waits_current </code> </a> table shows a row for that thread, indicating that it is waiting on a mutex (in the <code class="literal"> EVENT_NAME </code> column), and indicating which mutex is waited on (in the <code class="literal"> OBJECT_INSTANCE_BEGIN </code> column). </p> </li> <li class="listitem"> <p> When a thread succeeds in locking a mutex: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <a class="link" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> <code class="literal"> events_waits_current </code> </a> shows that the wait on the mutex is completed (in the <code class="literal"> TIMER_END </code> and <code class="literal"> TIMER_WAIT </code> columns) </p> </li> <li class="listitem"> <p> The completed wait event is added to the <a class="link" href="performance-schema-events-waits-history-table.html" title="29.12.4.2 The events_waits_history Table"> <code class="literal"> events_waits_history </code> </a> and <a class="link" href="performance-schema-events-waits-history-long-table.html" title="29.12.4.3 The events_waits_history_long Table"> <code class="literal"> events_waits_history_long </code> </a> tables </p> </li> <li class="listitem"> <p> <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> shows that the mutex is now owned by the thread (in the <code class="literal"> THREAD_ID </code> column). </p> </li> </ul> </div> </li> <li class="listitem"> <p> When a thread unlocks a mutex, <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> shows that the mutex now has no owner (the <code class="literal"> THREAD_ID </code> column is <code class="literal"> NULL </code> ). </p> </li> <li class="listitem"> <p> When a mutex object is destroyed, the corresponding row is removed from <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> . </p> </li> </ul> </div> <p> By performing queries on both of the following tables, a monitoring application or a DBA can detect bottlenecks or deadlocks between threads that involve mutexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> <code class="literal"> events_waits_current </code> </a> , to see what mutex a thread is waiting for </p> </li> <li class="listitem"> <p> <a class="link" href="performance-schema-mutex-instances-table.html" title="29.12.3.3 The mutex_instances Table"> <code class="literal"> mutex_instances </code> </a> , to see which other thread currently owns a mutex </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-schema-resource-groups-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="information-schema-resource-groups-table"> </a> 28.3.26 The INFORMATION_SCHEMA RESOURCE_GROUPS Table </h3> </div> </div> </div> <a class="indexterm" name="idm46045079001616"> </a> <p> The <a class="link" href="information-schema-resource-groups-table.html" title="28.3.26 The INFORMATION_SCHEMA RESOURCE_GROUPS Table"> <code class="literal"> RESOURCE_GROUPS </code> </a> table provides access to information about resource groups. For general discussion of the resource group capability, see <a class="xref" href="resource-groups.html" title="7.1.16 Resource Groups"> Section 7.1.16, “Resource Groups” </a> . </p> <p> You can see information only for columns for which you have some privilege. </p> <p> The <a class="link" href="information-schema-resource-groups-table.html" title="28.3.26 The INFORMATION_SCHEMA RESOURCE_GROUPS Table"> <code class="literal"> RESOURCE_GROUPS </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> RESOURCE_GROUP_NAME </code> </p> <p> The name of the resource group. </p> </li> <li class="listitem"> <p> <code class="literal"> RESOURCE_GROUP_TYPE </code> </p> <p> The resource group type, either <code class="literal"> SYSTEM </code> or <code class="literal"> USER </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> RESOURCE_GROUP_ENABLED </code> </p> <p> Whether the resource group is enabled (1) or disabled (0); </p> </li> <li class="listitem"> <p> <code class="literal"> VCPU_IDS </code> </p> <p> The CPU affinity; that is, the set of virtual CPUs that the resource group can use. The value is a list of comma-separated CPU numbers or ranges. </p> </li> <li class="listitem"> <p> <code class="literal"> THREAD_PRIORITY </code> </p> <p> The priority for threads assigned to the resource group. The priority ranges from -20 (highest priority) to 19 (lowest priority). System resource groups have a priority that ranges from -20 to 0. User resource groups have a priority that ranges from 0 to 19. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/innodb-table-compression.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="innodb-table-compression"> </a> 17.9.1 InnoDB Table Compression </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="innodb-compression-background.html"> 17.9.1.1 Overview of Table Compression </a> </span> </dt> <dt> <span class="section"> <a href="innodb-compression-usage.html"> 17.9.1.2 Creating Compressed Tables </a> </span> </dt> <dt> <span class="section"> <a href="innodb-compression-tuning.html"> 17.9.1.3 Tuning Compression for InnoDB Tables </a> </span> </dt> <dt> <span class="section"> <a href="innodb-compression-tuning-monitoring.html"> 17.9.1.4 Monitoring InnoDB Table Compression at Runtime </a> </span> </dt> <dt> <span class="section"> <a href="innodb-compression-internals.html"> 17.9.1.5 How Compression Works for InnoDB Tables </a> </span> </dt> <dt> <span class="section"> <a href="innodb-performance-compression-oltp.html"> 17.9.1.6 Compression for OLTP Workloads </a> </span> </dt> <dt> <span class="section"> <a href="innodb-compression-syntax-warnings.html"> 17.9.1.7 SQL Compression Syntax Warnings and Errors </a> </span> </dt> </dl> </div> <p> This section describes <code class="literal"> InnoDB </code> table compression, which is supported with <code class="literal"> InnoDB </code> tables that reside in <a class="link" href="glossary.html#glos_file_per_table" title="file-per-table"> file_per_table </a> tablespaces or <a class="link" href="glossary.html#glos_general_tablespace" title="general tablespace"> general tablespaces </a> . Table compression is enabled using the <code class="literal"> ROW_FORMAT=COMPRESSED </code> attribute with <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/create-index.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="create-index"> </a> 15.1.15 CREATE INDEX Statement </h3> </div> </div> </div> <a class="indexterm" name="idm46045188100000"> </a> <a class="indexterm" name="idm46045188098928"> </a> <a class="indexterm" name="idm46045188097856"> </a> <a class="indexterm" name="idm46045188096368"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa78334747"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token punctuation">[</span><span class="token keyword">UNIQUE</span> <span class="token operator">|</span> <span class="token keyword">FULLTEXT</span> <span class="token operator">|</span> <span class="token keyword">SPATIAL</span><span class="token punctuation">]</span> <span class="token keyword">INDEX</span> <em class="replaceable">index_name</em> <span class="token punctuation">[</span><em class="replaceable">index_type</em><span class="token punctuation">]</span> <span class="token keyword">ON</span> <em class="replaceable">tbl_name</em> <span class="token punctuation">(</span><em class="replaceable">key_part</em><span class="token punctuation">,</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">)</span> <span class="token punctuation">[</span><em class="replaceable">index_option</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><em class="replaceable">algorithm_option</em> <span class="token operator">|</span> <em class="replaceable">lock_option</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <em class="replaceable">key_part</em>: {<em class="replaceable">col_name</em> <span class="token punctuation">[</span><span class="token punctuation">(</span><em class="replaceable">length</em><span class="token punctuation">)</span><span class="token punctuation">]</span> <span class="token operator">|</span> <span class="token punctuation">(</span><em class="replaceable">expr</em><span class="token punctuation">)</span>} <span class="token punctuation">[</span><span class="token keyword">ASC</span> <span class="token operator">|</span> <span class="token keyword">DESC</span><span class="token punctuation">]</span> <em class="replaceable">index_option</em>: { <span class="token keyword">KEY_BLOCK_SIZE</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> <span class="token keyword"><em class="replaceable">value</em></span> <span class="token operator">|</span> <em class="replaceable">index_type</em> <span class="token operator">|</span> <span class="token keyword">WITH</span> <span class="token keyword">PARSER</span> <em class="replaceable">parser_name</em> <span class="token operator">|</span> <span class="token keyword">COMMENT</span> <span class="token string">'<em class="replaceable">string</em>'</span> <span class="token operator">|</span> {<span class="token keyword">VISIBLE</span> <span class="token operator">|</span> <span class="token keyword">INVISIBLE</span>} <span class="token operator">|</span> <span class="token keyword">ENGINE_ATTRIBUTE</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> <span class="token string">'<em class="replaceable">string</em>'</span> <span class="token operator">|</span> <span class="token keyword">SECONDARY_ENGINE_ATTRIBUTE</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> <span class="token string">'<em class="replaceable">string</em>'</span> } <em class="replaceable">index_type</em>: <span class="token keyword">USING</span> {<span class="token keyword">BTREE</span> <span class="token operator">|</span> <span class="token keyword">HASH</span>} <em class="replaceable">algorithm_option</em>: <span class="token keyword">ALGORITHM</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> {<span class="token keyword">DEFAULT</span> <span class="token operator">|</span> <span class="token keyword">INPLACE</span> <span class="token operator">|</span> <span class="token keyword">COPY</span>} <em class="replaceable">lock_option</em>: <span class="token keyword">LOCK</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> {<span class="token keyword">DEFAULT</span> <span class="token operator">|</span> <span class="token keyword">NONE</span> <span class="token operator">|</span> <span class="token keyword">SHARED</span> <span class="token operator">|</span> <span class="token keyword">EXCLUSIVE</span>}</code></pre> </div> <p> Normally, you create all indexes on a table at the time the table itself is created with <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> . See <a class="xref" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> Section 15.1.20, “CREATE TABLE Statement” </a> . This guideline is especially important for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> tables, where the primary key determines the physical layout of rows in the data file. <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> enables you to add indexes to existing tables. </p> <p> <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> is mapped to an <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement to create indexes. See <a class="xref" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> Section 15.1.9, “ALTER TABLE Statement” </a> . <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> cannot be used to create a <code class="literal"> PRIMARY KEY </code> ; use <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> instead. For more information about indexes, see <a class="xref" href="mysql-indexes.html" title="10.3.1 How MySQL Uses Indexes"> Section 10.3.1, “How MySQL Uses Indexes” </a> . </p> <p> <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> supports secondary indexes on virtual columns. For more information, see <a class="xref" href="create-table-secondary-indexes.html" title="15.1.20.9 Secondary Indexes and Generated Columns"> Section 15.1.20.9, “Secondary Indexes and Generated Columns” </a> . </p> <p> When the <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent"> <code class="literal"> innodb_stats_persistent </code> </a> setting is enabled, run the <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> statement for an <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> table after creating an index on that table. </p> <p> The <em class="replaceable"> <code> expr </code> </em> for a <em class="replaceable"> <code> key_part </code> </em> specification can also take the form <code class="literal"> (CAST <em class="replaceable"> <code> json_expression </code> </em> AS <em class="replaceable"> <code> type </code> </em> ARRAY) </code> to create a multi-valued index on a <a class="link" href="json.html" title="13.5 The JSON Data Type"> <code class="literal"> JSON </code> </a> column. See <a class="xref" href="create-index.html#create-index-multi-valued" title="Multi-Valued Indexes"> Multi-Valued Indexes </a> . </p> <p> An index specification of the form <code class="literal"> ( <em class="replaceable"> <code> key_part1 </code> </em> , <em class="replaceable"> <code> key_part2 </code> </em> , ...) </code> creates an index with multiple key parts. Index key values are formed by concatenating the values of the given key parts. For example <code class="literal"> (col1, col2, col3) </code> specifies a multiple-column index with index keys consisting of values from <code class="literal"> col1 </code> , <code class="literal"> col2 </code> , and <code class="literal"> col3 </code> . </p> <p> A <em class="replaceable"> <code> key_part </code> </em> specification can end with <code class="literal"> ASC </code> or <code class="literal"> DESC </code> to specify whether index values are stored in ascending or descending order. The default is ascending if no order specifier is given. </p> <p> <code class="literal"> ASC </code> and <code class="literal"> DESC </code> are not supported for <code class="literal"> HASH </code> indexes, multi-valued indexes or <code class="literal"> SPATIAL </code> indexes. </p> <p> The following sections describe different aspects of the <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> statement: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-column-prefixes" title="Column Prefix Key Parts"> Column Prefix Key Parts </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-functional-key-parts" title="Functional Key Parts"> Functional Key Parts </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-unique" title="Unique Indexes"> Unique Indexes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-fulltext" title="Full-Text Indexes"> Full-Text Indexes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-multi-valued" title="Multi-Valued Indexes"> Multi-Valued Indexes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-spatial" title="Spatial Indexes"> Spatial Indexes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-options" title="Index Options"> Index Options </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="create-index.html#create-index-copying" title="Table Copying and Locking Options"> Table Copying and Locking Options </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-column-prefixes"> </a> Column Prefix Key Parts </h4> </div> </div> </div> <p> For string columns, indexes can be created that use only the leading part of column values, using <code class="literal"> <em class="replaceable"> <code> col_name </code> </em> ( <em class="replaceable"> <code> length </code> </em> ) </code> syntax to specify an index prefix length: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Prefixes can be specified for <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> CHAR </code> </a> , <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> BINARY </code> </a> , and <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> VARBINARY </code> </a> key parts. </p> </li> <li class="listitem"> <p> Prefixes <span class="emphasis"> <em> must </em> </span> be specified for <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> and <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> key parts. Additionally, <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> and <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> columns can be indexed only for <code class="literal"> InnoDB </code> , <code class="literal"> MyISAM </code> , and <code class="literal"> BLACKHOLE </code> tables. </p> <a class="indexterm" name="idm46045188019232"> </a> <a class="indexterm" name="idm46045188017744"> </a> <a class="indexterm" name="idm46045188016256"> </a> <a class="indexterm" name="idm46045188014768"> </a> </li> <li class="listitem"> <p> Prefix <span class="emphasis"> <em> limits </em> </span> are measured in bytes. However, prefix <span class="emphasis"> <em> lengths </em> </span> for index specifications in <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> , <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> , and <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> statements are interpreted as number of characters for nonbinary string types ( <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> CHAR </code> </a> , <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> ) and number of bytes for binary string types ( <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> BINARY </code> </a> , <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> VARBINARY </code> </a> , <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> ). Take this into account when specifying a prefix length for a nonbinary string column that uses a multibyte character set. </p> <p> Prefix support and lengths of prefixes (where supported) are storage engine dependent. For example, a prefix can be up to 767 bytes long for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> tables that use the <code class="literal"> <a class="link" href="glossary.html#glos_redundant_row_format" title="redundant row format"> REDUNDANT </a> </code> or <code class="literal"> <a class="link" href="glossary.html#glos_compact_row_format" title="compact row format"> COMPACT </a> </code> row format. The prefix length limit is 3072 bytes for <code class="literal"> InnoDB </code> tables that use the <code class="literal"> <a class="link" href="glossary.html#glos_dynamic_row_format" title="dynamic row format"> DYNAMIC </a> </code> or <code class="literal"> <a class="link" href="glossary.html#glos_compressed_row_format" title="compressed row format"> COMPRESSED </a> </code> row format. For <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> tables, the prefix length limit is 1000 bytes. The <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> storage engine does not support prefixes (see <a class="xref" href="mysql-cluster-limitations-unsupported.html" title="25.2.7.6 Unsupported or Missing Features in NDB Cluster"> Section 25.2.7.6, “Unsupported or Missing Features in NDB Cluster” </a> ). </p> </li> </ul> </div> <p> If a specified index prefix exceeds the maximum column data type size, <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> handles the index as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> For a nonunique index, either an error occurs (if strict SQL mode is enabled), or the index length is reduced to lie within the maximum column data type size and a warning is produced (if strict SQL mode is not enabled). </p> </li> <li class="listitem"> <p> For a unique index, an error occurs regardless of SQL mode because reducing the index length might enable insertion of nonunique entries that do not meet the specified uniqueness requirement. </p> </li> </ul> </div> <p> The statement shown here creates an index using the first 10 characters of the <code class="literal"> name </code> column (assuming that <code class="literal"> name </code> has a nonbinary string type): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa87450387"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> part_of_name <span class="token keyword">ON</span> customer <span class="token punctuation">(</span><span class="token keyword">name</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> If names in the column usually differ in the first 10 characters, lookups performed using this index should not be much slower than using an index created from the entire <code class="literal"> name </code> column. Also, using column prefixes for indexes can make the index file much smaller, which could save a lot of disk space and might also speed up <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> operations. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-functional-key-parts"> </a> Functional Key Parts </h4> </div> </div> </div> <p> A <span class="quote"> “ <span class="quote"> normal </span> ” </span> index indexes column values or prefixes of column values. For example, in the following table, the index entry for a given <code class="literal"> t1 </code> row includes the full <code class="literal"> col1 </code> value and a prefix of the <code class="literal"> col2 </code> value consisting of its first 10 characters: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa55269619"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span> col1 <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">,</span> col2 <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> <span class="token punctuation">(</span>col1<span class="token punctuation">,</span> col2<span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> Functional key parts that index expression values canalso be used in place of column or column prefix values. Use of functional key parts enables indexing of values not stored directly in the table. Examples: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa94567510"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>col1 <span class="token datatype">INT</span><span class="token punctuation">,</span> col2 <span class="token datatype">INT</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> func_index <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">ABS</span><span class="token punctuation">(</span>col1<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> idx1 <span class="token keyword">ON</span> t1 <span class="token punctuation">(</span><span class="token punctuation">(</span>col1 <span class="token operator">+</span> col2<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> idx2 <span class="token keyword">ON</span> t1 <span class="token punctuation">(</span><span class="token punctuation">(</span>col1 <span class="token operator">+</span> col2<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span>col1 <span class="token operator">-</span> col2<span class="token punctuation">)</span><span class="token punctuation">,</span> col1<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t1 <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> <span class="token punctuation">(</span><span class="token punctuation">(</span>col1 <span class="token operator">*</span> <span class="token number">40</span><span class="token punctuation">)</span> <span class="token keyword">DESC</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> An index with multiple key parts can mix nonfunctional and functional key parts. </p> <p> <code class="literal"> ASC </code> and <code class="literal"> DESC </code> are supported for functional key parts. </p> <p> Functional key parts must adhere to the following rules. An error occurs if a key part definition contains disallowed constructs. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> In index definitions, enclose expressions within parentheses to distinguish them from columns or column prefixes. For example, this is permitted; the expressions are enclosed within parentheses: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa15996270"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INDEX</span> <span class="token punctuation">(</span><span class="token punctuation">(</span>col1 <span class="token operator">+</span> col2<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span>col3 <span class="token operator">-</span> col4<span class="token punctuation">)</span><span class="token punctuation">)</span></code></pre> </div> <p> This produces an error; the expressions are not enclosed within parentheses: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa43022606"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INDEX</span> <span class="token punctuation">(</span>col1 <span class="token operator">+</span> col2<span class="token punctuation">,</span> col3 <span class="token operator">-</span> col4<span class="token punctuation">)</span></code></pre> </div> </li> <li class="listitem"> <p> A functional key part cannot consist solely of a column name. For example, this is not permitted: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa35149159"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INDEX</span> <span class="token punctuation">(</span><span class="token punctuation">(</span>col1<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span>col2<span class="token punctuation">)</span><span class="token punctuation">)</span></code></pre> </div> <p> Instead, write the key parts as nonfunctional key parts, without parentheses: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa80024135"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INDEX</span> <span class="token punctuation">(</span>col1<span class="token punctuation">,</span> col2<span class="token punctuation">)</span></code></pre> </div> </li> <li class="listitem"> <p> A functional key part expression cannot refer to column prefixes. For a workaround, see the discussion of <a class="link" href="string-functions.html#function_substring"> <code class="literal"> SUBSTRING() </code> </a> and <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> later in this section. </p> </li> <li class="listitem"> <p> Functional key parts are not permitted in foreign key specifications. </p> </li> </ul> </div> <p> For <a class="link" href="create-table-like.html" title="15.1.20.3 CREATE TABLE ... LIKE Statement"> <code class="literal"> CREATE TABLE ... LIKE </code> </a> , the destination table preserves functional key parts from the original table. </p> <p> Functional indexes are implemented as hidden virtual generated columns, which has these implications: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Each functional key part counts against the limit on total number of table columns; see <a class="xref" href="column-count-limit.html" title="10.4.7 Limits on Table Column Count and Row Size"> Section 10.4.7, “Limits on Table Column Count and Row Size” </a> . </p> </li> <li class="listitem"> <p> Functional key parts inherit all restrictions that apply to generated columns. Examples: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> Only functions permitted for generated columns are permitted for functional key parts. </p> </li> <li class="listitem"> <p> Subqueries, parameters, variables, stored functions, and loadable functions are not permitted. </p> </li> </ul> </div> <p> For more information about applicable restrictions, see <a class="xref" href="create-table-generated-columns.html" title="15.1.20.8 CREATE TABLE and Generated Columns"> Section 15.1.20.8, “CREATE TABLE and Generated Columns” </a> , and <a class="xref" href="alter-table-generated-columns.html" title="15.1.9.2 ALTER TABLE and Generated Columns"> Section 15.1.9.2, “ALTER TABLE and Generated Columns” </a> . </p> </li> <li class="listitem"> <p> The virtual generated column itself requires no storage. The index itself takes up storage space as any other index. </p> </li> </ul> </div> <p> <code class="literal"> UNIQUE </code> is supported for indexes that include functional key parts. However, primary keys cannot include functional key parts. A primary key requires the generated column to be stored, but functional key parts are implemented as virtual generated columns, not stored generated columns. </p> <p> <code class="literal"> SPATIAL </code> and <code class="literal"> FULLTEXT </code> indexes cannot have functional key parts. </p> <p> If a table contains no primary key, <code class="literal"> InnoDB </code> automatically promotes the first <code class="literal"> UNIQUE NOT NULL </code> index to the primary key. This is not supported for <code class="literal"> UNIQUE NOT NULL </code> indexes that have functional key parts. </p> <p> Nonfunctional indexes raise a warning if there are duplicate indexes. Indexes that contain functional key parts do not have this feature. </p> <p> To remove a column that is referenced by a functional key part, the index must be removed first. Otherwise, an error occurs. </p> <p> Although nonfunctional key parts support a prefix length specification, this is not possible for functional key parts. The solution is to use <a class="link" href="string-functions.html#function_substring"> <code class="literal"> SUBSTRING() </code> </a> (or <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> , as described later in this section). For a functional key part containing the <a class="link" href="string-functions.html#function_substring"> <code class="literal"> SUBSTRING() </code> </a> function to be used in a query, the <code class="literal"> WHERE </code> clause must contain <a class="link" href="string-functions.html#function_substring"> <code class="literal"> SUBSTRING() </code> </a> with the same arguments. In the following example, only the second <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> is able to use the index because that is the only query in which the arguments to <a class="link" href="string-functions.html#function_substring"> <code class="literal"> SUBSTRING() </code> </a> match the index specification: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa1449497"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> tbl <span class="token punctuation">(</span> col1 <span class="token datatype">LONGTEXT</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> idx1 <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">SUBSTRING</span><span class="token punctuation">(</span>col1<span class="token punctuation">,</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> tbl <span class="token keyword">WHERE</span> <span class="token function">SUBSTRING</span><span class="token punctuation">(</span>col1<span class="token punctuation">,</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token number">9</span><span class="token punctuation">)</span> <span class="token operator">=</span> <span class="token string">'123456789'</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> tbl <span class="token keyword">WHERE</span> <span class="token function">SUBSTRING</span><span class="token punctuation">(</span>col1<span class="token punctuation">,</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token number">10</span><span class="token punctuation">)</span> <span class="token operator">=</span> <span class="token string">'1234567890'</span><span class="token punctuation">;</span></code></pre> </div> <p> Functional key parts enable indexing of values that cannot be indexed otherwise, such as <a class="link" href="json.html" title="13.5 The JSON Data Type"> <code class="literal"> JSON </code> </a> values. However, this must be done correctly to achieve the desired effect. For example, this syntax does not work: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa5338321"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> employees <span class="token punctuation">(</span> <span class="token keyword">data</span> <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> The syntax fails because: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <a class="link" href="json-search-functions.html#operator_json-inline-path"> <code class="literal"> -&gt;&gt; </code> </a> operator translates into <a class="link" href="json-modification-functions.html#function_json-unquote"> <code class="literal"> JSON_UNQUOTE(JSON_EXTRACT(...)) </code> </a> . </p> </li> <li class="listitem"> <p> <a class="link" href="json-modification-functions.html#function_json-unquote"> <code class="literal"> JSON_UNQUOTE() </code> </a> returns a value with a data type of <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> LONGTEXT </code> </a> , and the hidden generated column thus is assigned the same data type. </p> </li> <li class="listitem"> <p> MySQL cannot index <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> LONGTEXT </code> </a> columns specified without a prefix length on the key part, and prefix lengths are not permitted in functional key parts. </p> </li> </ul> </div> <p> To index the <code class="literal"> JSON </code> column, you could try using the <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> function as follows: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36636309"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> employees <span class="token punctuation">(</span> <span class="token keyword">data</span> <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> The hidden generated column is assigned the <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR(30) </code> </a> data type, which can be indexed. But this approach produces a new issue when trying to use the index: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> returns a string with the collation <code class="literal"> utf8mb4_0900_ai_ci </code> (the server default collation). </p> </li> <li class="listitem"> <p> <a class="link" href="json-modification-functions.html#function_json-unquote"> <code class="literal"> JSON_UNQUOTE() </code> </a> returns a string with the collation <code class="literal"> utf8mb4_bin </code> (hard coded). </p> </li> </ul> </div> <p> As a result, there is a collation mismatch between the indexed expression in the preceding table definition and the <code class="literal"> WHERE </code> clause expression in the following query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa19802754"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> employees <span class="token keyword">WHERE</span> <span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token operator">=</span> <span class="token string">'James'</span><span class="token punctuation">;</span></code></pre> </div> <p> The index is not used because the expressions in the query and the index differ. To support this kind of scenario for functional key parts, the optimizer automatically strips <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> when looking for an index to use, but <span class="emphasis"> <em> only </em> </span> if the collation of the indexed expression matches that of the query expression. For an index with a functional key part to be used, either of the following two solutions work (although they differ somewhat in effect): </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Solution 1. Assign the indexed expression the same collation as <a class="link" href="json-modification-functions.html#function_json-unquote"> <code class="literal"> JSON_UNQUOTE() </code> </a> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36577371"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> employees <span class="token punctuation">(</span> <span class="token keyword">data</span> <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> idx <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token keyword">COLLATE</span> utf8mb4_bin<span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> employees <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "james", "salary": 9000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "James", "salary": 10000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "Mary", "salary": 12000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "Peter", "salary": 8000 }'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> employees <span class="token keyword">WHERE</span> <span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token operator">=</span> <span class="token string">'James'</span><span class="token punctuation">;</span></code></pre> </div> <p> The <code class="literal"> -&gt;&gt; </code> operator is the same as <code class="literal"> JSON_UNQUOTE(JSON_EXTRACT(...)) </code> , and <code class="literal"> JSON_UNQUOTE() </code> returns a string with collation <code class="literal"> utf8mb4_bin </code> . The comparison is thus case-sensitive, and only one row matches: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa53917550"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> data <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "James", "salary": 10000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> <li class="listitem"> <p> Solution 2. Specify the full expression in the query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa76485731"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> employees <span class="token punctuation">(</span> <span class="token keyword">data</span> <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> idx <span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> employees <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "james", "salary": 9000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "James", "salary": 10000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "Mary", "salary": 12000 }'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{ "name": "Peter", "salary": 8000 }'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> employees <span class="token keyword">WHERE</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token operator">=</span> <span class="token string">'James'</span><span class="token punctuation">;</span></code></pre> </div> <p> <code class="literal"> CAST() </code> returns a string with collation <code class="literal"> utf8mb4_0900_ai_ci </code> , so the comparison case-insensitive and two rows match: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa49747148"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> data <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "james", "salary": 9000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "James", "salary": 10000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> </ul> </div> <p> Be aware that although the optimizer supports automatically stripping <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> with indexed generated columns, the following approach does not work because it produces a different result with and without an index (Bug#27337092): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa72903372"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> employees <span class="token punctuation">(</span> <span class="token keyword">data</span> <span class="token datatype">JSON</span><span class="token punctuation">,</span> generated_col <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span> <span class="token keyword">AS</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected, 1 warning (0.03 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> employees <span class="token punctuation">(</span><span class="token keyword">data</span><span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'{"name": "james"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"name": "James"}'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 2 rows affected, 1 warning (0.01 sec)</span> <span class="token output">Records: 2 Duplicates: 0 Warnings: 1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> employees <span class="token keyword">WHERE</span> <span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token operator">=</span> <span class="token string">'James'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> data <span class="token punctuation">|</span> generated_col <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "James"} <span class="token punctuation">|</span> James <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> employees <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> idx <span class="token punctuation">(</span>generated_col<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected, 1 warning (0.03 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> employees <span class="token keyword">WHERE</span> <span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">'$.name'</span> <span class="token operator">=</span> <span class="token string">'James'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> data <span class="token punctuation">|</span> generated_col <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "james"} <span class="token punctuation">|</span> james <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> {"name": "James"} <span class="token punctuation">|</span> James <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">2 rows in set (0.01 sec)</span></code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-unique"> </a> Unique Indexes </h4> </div> </div> </div> <p> A <code class="literal"> UNIQUE </code> index creates a constraint such that all values in the index must be distinct. An error occurs if you try to add a new row with a key value that matches an existing row. If you specify a prefix value for a column in a <code class="literal"> UNIQUE </code> index, the column values must be unique within the prefix length. A <code class="literal"> UNIQUE </code> index permits multiple <code class="literal"> NULL </code> values for columns that can contain <code class="literal"> NULL </code> . </p> <a class="indexterm" name="idm46045187870480"> </a> <p> If a table has a <code class="literal"> PRIMARY KEY </code> or <code class="literal"> UNIQUE NOT NULL </code> index that consists of a single column that has an integer type, you can use <code class="literal"> _rowid </code> to refer to the indexed column in <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements, as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> _rowid </code> refers to the <code class="literal"> PRIMARY KEY </code> column if there is a <code class="literal"> PRIMARY KEY </code> consisting of a single integer column. If there is a <code class="literal"> PRIMARY KEY </code> but it does not consist of a single integer column, <code class="literal"> _rowid </code> cannot be used. </p> </li> <li class="listitem"> <p> Otherwise, <code class="literal"> _rowid </code> refers to the column in the first <code class="literal"> UNIQUE NOT NULL </code> index if that index consists of a single integer column. If the first <code class="literal"> UNIQUE NOT NULL </code> index does not consist of a single integer column, <code class="literal"> _rowid </code> cannot be used. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-fulltext"> </a> Full-Text Indexes </h4> </div> </div> </div> <p> <code class="literal"> FULLTEXT </code> indexes are supported only for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> and <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> tables and can include only <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> CHAR </code> </a> , <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , and <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> columns. Indexing always happens over the entire column; column prefix indexing is not supported and any prefix length is ignored if specified. See <a class="xref" href="fulltext-search.html" title="14.9 Full-Text Search Functions"> Section 14.9, “Full-Text Search Functions” </a> , for details of operation. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-multi-valued"> </a> Multi-Valued Indexes </h4> </div> </div> </div> <a class="indexterm" name="idm46045187845584"> </a> <p> <code class="literal"> InnoDB </code> supports multi-valued indexes. A multi-valued index is a secondary index defined on a column that stores an array of values. A <span class="quote"> “ <span class="quote"> normal </span> ” </span> index has one index record for each data record (1:1). A multi-valued index can have multiple index records for a single data record (N:1). Multi-valued indexes are intended for indexing <code class="literal"> JSON </code> arrays. For example, a multi-valued index defined on the array of zip codes in the following JSON document creates an index record for each zip code, with each index record referencing the same data record. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa24466944"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"><span class="token punctuation">{</span> <span class="token property">"user"</span><span class="token operator">:</span><span class="token string">"Bob"</span><span class="token punctuation">,</span> <span class="token property">"user_id"</span><span class="token operator">:</span><span class="token number">31</span><span class="token punctuation">,</span> <span class="token property">"zipcode"</span><span class="token operator">:</span><span class="token punctuation">[</span><span class="token number">94477</span><span class="token punctuation">,</span><span class="token number">94536</span><span class="token punctuation">]</span> <span class="token punctuation">}</span></code></pre> </div> <h5> <a name="idm46045187840672"> </a> Creating multi-valued Indexes </h5> <p> You can create a multi-valued index in a <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> , <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> , or <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> statement. This requires using <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST(... AS ... ARRAY) </code> </a> in the index definition, which casts same-typed scalar values in a <code class="literal"> JSON </code> array to an SQL data type array. A virtual column is then generated transparently with the values in the SQL data type array; finally, a functional index (also referred to as a virtual index) is created on the virtual column. It is the functional index defined on the virtual column of values from the SQL data type array that forms the multi-valued index. </p> <p> The examples in the following list show the three different ways in which a multi-valued index <code class="literal"> zips </code> can be created on an array <code class="literal"> $.zipcode </code> on a <code class="literal"> JSON </code> column <code class="literal"> custinfo </code> in a table named <code class="literal"> customers </code> . In each case, the JSON array is cast to an SQL data type array of <code class="literal"> UNSIGNED </code> integer values. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> CREATE TABLE </code> only: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa19638559"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> customers <span class="token punctuation">(</span> id <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> modified <span class="token datatype">DATETIME</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">CURRENT_TIMESTAMP</span> <span class="token keyword">ON</span> <span class="token keyword">UPDATE</span> <span class="token keyword">CURRENT_TIMESTAMP</span><span class="token punctuation">,</span> custinfo <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">(</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> <code class="literal"> CREATE TABLE </code> plus <code class="literal"> ALTER TABLE </code> : </p> <p> </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa23511460"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> customers <span class="token punctuation">(</span> id <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> modified <span class="token datatype">DATETIME</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">CURRENT_TIMESTAMP</span> <span class="token keyword">ON</span> <span class="token keyword">UPDATE</span> <span class="token keyword">CURRENT_TIMESTAMP</span><span class="token punctuation">,</span> custinfo <span class="token datatype">JSON</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">(</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> </p> </li> <li class="listitem"> <p> <code class="literal"> CREATE TABLE </code> plus <code class="literal"> CREATE INDEX </code> : </p> <p> </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa73932871"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> customers <span class="token punctuation">(</span> id <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> modified <span class="token datatype">DATETIME</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">CURRENT_TIMESTAMP</span> <span class="token keyword">ON</span> <span class="token keyword">UPDATE</span> <span class="token keyword">CURRENT_TIMESTAMP</span><span class="token punctuation">,</span> custinfo <span class="token datatype">JSON</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> zips <span class="token keyword">ON</span> customers <span class="token punctuation">(</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> </p> </li> </ul> </div> <p> A multi-valued index can also be defined as part of a composite index. This example shows a composite index that includes two single-valued parts (for the <code class="literal"> id </code> and <code class="literal"> modified </code> columns), and one multi-valued part (for the <code class="literal"> custinfo </code> column): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa74682398"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> customers <span class="token punctuation">(</span> id <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> modified <span class="token datatype">DATETIME</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">CURRENT_TIMESTAMP</span> <span class="token keyword">ON</span> <span class="token keyword">UPDATE</span> <span class="token keyword">CURRENT_TIMESTAMP</span><span class="token punctuation">,</span> custinfo <span class="token datatype">JSON</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> comp<span class="token punctuation">(</span>id<span class="token punctuation">,</span> modified<span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> Only one multi-valued key part can be used in a composite index. The multi-valued key part may be used in any order relative to the other parts of the key. In other words, the <code class="literal"> ALTER TABLE </code> statement just shown could have used <code class="literal"> comp(id, (CAST(custinfo-&gt;'$.zipcode' AS UNSIGNED ARRAY), modified)) </code> (or any other ordering) and still have been valid. </p> <h5> <a name="idm46045187810832"> </a> Using multi-valued Indexes </h5> <p> The optimizer uses a multi-valued index to fetch records when the following functions are specified in a <code class="literal"> WHERE </code> clause: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="link" href="json-search-functions.html#operator_member-of"> <code class="literal"> MEMBER OF() </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="json-search-functions.html#function_json-contains"> <code class="literal"> JSON_CONTAINS() </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="json-search-functions.html#function_json-overlaps"> <code class="literal"> JSON_OVERLAPS() </code> </a> </p> </li> </ul> </div> <p> We can demonstrate this by creating and populating the <code class="literal"> customers </code> table using the following <code class="literal"> CREATE TABLE </code> and <code class="literal"> INSERT </code> statements: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa96678191"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> customers <span class="token punctuation">(</span> <span class="token prompt"> -&gt;</span> id <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> modified <span class="token datatype">DATETIME</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">CURRENT_TIMESTAMP</span> <span class="token keyword">ON</span> <span class="token keyword">UPDATE</span> <span class="token keyword">CURRENT_TIMESTAMP</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> custinfo <span class="token datatype">JSON</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.51 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> customers <span class="token keyword">VALUES</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token function">NOW</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'{"user":"Jack","user_id":37,"zipcode":[94582,94536]}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token function">NOW</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'{"user":"Jill","user_id":22,"zipcode":[94568,94507,94582]}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token function">NOW</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'{"user":"Bob","user_id":31,"zipcode":[94477,94507]}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token function">NOW</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'{"user":"Mary","user_id":72,"zipcode":[94536]}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token function">NOW</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token string">'{"user":"Ted","user_id":56,"zipcode":[94507,94582]}'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 5 rows affected (0.07 sec)</span> <span class="token output">Records: 5 Duplicates: 0 Warnings: 0</span></code></pre> </div> <p> First we execute three queries on the <code class="literal"> customers </code> table, one each using <code class="literal"> MEMBER OF() </code> , <code class="literal"> JSON_CONTAINS() </code> , and <code class="literal"> JSON_OVERLAPS() </code> , with the result from each query shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa58414434"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token number">94507</span> <span class="token function">MEMBER OF</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> modified <span class="token punctuation">|</span> custinfo <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Jill", "user_id": 22, "zipcode": [94568, 94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Bob", "user_id": 31, "zipcode": [94477, 94507]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Ted", "user_id": 56, "zipcode": [94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">3 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_CONTAINS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> modified <span class="token punctuation">|</span> custinfo <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Jill", "user_id": 22, "zipcode": [94568, 94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Ted", "user_id": 56, "zipcode": [94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">2 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_OVERLAPS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> modified <span class="token punctuation">|</span> custinfo <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Jack", "user_id": 37, "zipcode": [94582, 94536]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Jill", "user_id": 22, "zipcode": [94568, 94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Bob", "user_id": 31, "zipcode": [94477, 94507]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 2019<span class="token punctuation">-</span>06<span class="token punctuation">-</span>29 22:23:12 <span class="token punctuation">|</span> {"user": "Ted", "user_id": 56, "zipcode": [94507, 94582]} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">4 rows in set (0.00 sec)</span></code></pre> </div> <p> Next, we run <a class="link" href="explain.html" title="15.8.2 EXPLAIN Statement"> <code class="literal"> EXPLAIN </code> </a> on each of the previous three queries: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa92377467"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token number">94507</span> <span class="token function">MEMBER OF</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> ALL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_CONTAINS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> ALL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_OVERLAPS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> ALL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.01 sec)</span></code></pre> </div> <p> None of the three queries just shown are able to use any keys. To solve this problem, we can add a multi-valued index on the <code class="literal"> zipcode </code> array in the <code class="literal"> JSON </code> column ( <code class="literal"> custinfo </code> ), like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa81987568"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">(</span> <span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.47 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span></code></pre> </div> <p> When we run the previous <code class="literal"> EXPLAIN </code> statements again, we can now observe that the queries can (and do) use the index <code class="literal"> zips </code> that was just created: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa34930699"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token number">94507</span> <span class="token function">MEMBER OF</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> 9 <span class="token punctuation">|</span> const <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_CONTAINS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> range <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> 9 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 6 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> <span class="token function">JSON_OVERLAPS</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'[94507,94582]'</span> <span class="token keyword">AS</span> <span class="token datatype">JSON</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> select_type <span class="token punctuation">|</span> table <span class="token punctuation">|</span> partitions <span class="token punctuation">|</span> type <span class="token punctuation">|</span> possible_keys <span class="token punctuation">|</span> key <span class="token punctuation">|</span> key_len <span class="token punctuation">|</span> ref <span class="token punctuation">|</span> rows <span class="token punctuation">|</span> filtered <span class="token punctuation">|</span> Extra <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> SIMPLE <span class="token punctuation">|</span> customers <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> range <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> zips <span class="token punctuation">|</span> 9 <span class="token punctuation">|</span> NULL <span class="token punctuation">|</span> 6 <span class="token punctuation">|</span> 100.00 <span class="token punctuation">|</span> Using where <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set, 1 warning (0.01 sec)</span></code></pre> </div> <p> A multi-valued index can be defined as a unique key. If defined as a unique key, attempting to insert a value already present in the multi-valued index returns a duplicate key error. If duplicate values are already present, attempting to add a unique multi-valued index fails, as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa14618238"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token keyword">DROP</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.55 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">ADD</span> <span class="token keyword">UNIQUE</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">ERROR 1062 (23000)<span class="token punctuation">:</span> Duplicate entry '[94507, ' for key 'customers.zips'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> customers <span class="token prompt"> -&gt;</span> <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> zips<span class="token punctuation">(</span><span class="token punctuation">(</span><span class="token function">CAST</span><span class="token punctuation">(</span>custinfo<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.zipcode'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.36 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span></code></pre> </div> <h5> <a name="idm46045187745664"> </a> Characteristics of Multi-Valued Indexes </h5> <p> Multi-valued indexes have the additional characteristics listed here: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> DML operations that affect multi-valued indexes are handled in the same way as DML operations that affect a normal index, with the only difference being that there may be more than one insert or update for a single clustered index record. </p> </li> <li class="listitem"> <p> Nullability and multi-valued indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> If a multi-valued key part has an empty array, no entries are added to the index, and the data record is not accessible by an index scan. </p> </li> <li class="listitem"> <p> If multi-valued key part generation returns a <code class="literal"> NULL </code> value, a single entry containing <code class="literal"> NULL </code> is added to the multi-valued index. If the key part is defined as <code class="literal"> NOT NULL </code> , an error is reported. </p> </li> <li class="listitem"> <p> If the typed array column is set to <code class="literal"> NULL </code> , the storage engine stores a single record containing <code class="literal"> NULL </code> that points to the data record. </p> </li> <li class="listitem"> <p> <code class="literal"> JSON </code> null values are not permitted in indexed arrays. If any returned value is <code class="literal"> NULL </code> , it is treated as a JSON null and an <span class="errortext"> Invalid JSON value </span> error is reported. </p> </li> </ul> </div> </li> <li class="listitem"> <p> Because multi-valued indexes are virtual indexes on virtual columns, they must adhere to the same rules as secondary indexes on virtual generated columns. </p> </li> <li class="listitem"> <p> Index records are not added for empty arrays. </p> </li> </ul> </div> <h5> <a name="idm46045187729664"> </a> Limitations and Restrictions on Multi-valued Indexes </h5> <p> Multi-valued indexes are subject to the limitations and restrictions listed here: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Only one multi-valued key part is permitted per multi-valued index. However, the <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST(... AS ... ARRAY) </code> </a> expression can refer to multiple arrays within a <code class="literal"> JSON </code> document, as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa99727756"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token function">CAST</span><span class="token punctuation">(</span><span class="token keyword">data</span><span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">'$.arr[*][*]'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span> <span class="token keyword">ARRAY</span><span class="token punctuation">)</span></code></pre> </div> <p> In this case, all values matching the JSON expression are stored in the index as a single flat array. </p> </li> <li class="listitem"> <p> An index with a multi-valued key part does not support ordering and therefore cannot be used as a primary key. For the same reason, a multi-valued index cannot be defined using the <code class="literal"> ASC </code> or <code class="literal"> DESC </code> keyword. </p> </li> <li class="listitem"> <p> A multi-valued index cannot be a covering index. </p> </li> <li class="listitem"> <p> The maximum number of values per record for a multi-valued index is determined by the amount of data than can be stored on a single undo log page, which is 65221 bytes (64K minus 315 bytes for overhead), which means that the maximum total length of key values is also 65221 bytes. The maximum number of keys depends on various factors, which prevents defining a specific limit. Tests have shown a multi-valued index to permit as many as 1604 integer keys per record, for example. When the limit is reached, an error similar to the following is reported: <span class="errortext"> ERROR 3905 (HY000): Exceeded max number of values per record for multi-valued index 'idx' by 1 value(s). </span> </p> </li> <li class="listitem"> <p> The only type of expression that is permitted in a multi-valued key part is a <code class="literal"> JSON </code> expression. The expression need not reference an existing element in a JSON document inserted into the indexed column, but must itself be syntactically valid. </p> </li> <li class="listitem"> <p> Because index records for the same clustered index record are dispersed throughout a multi-valued index, a multi-valued index does not support range scans or index-only scans. </p> </li> <li class="listitem"> <p> Multi-valued indexes are not permitted in foreign key specifications. </p> </li> <li class="listitem"> <p> Index prefixes cannot be defined for multi-valued indexes. </p> </li> <li class="listitem"> <p> Multi-valued indexes cannot be defined on data cast as <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> BINARY </code> </a> (see the description of the <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> function). </p> </li> <li class="listitem"> <p> Online creation of a multi-value index is not supported, which means the operation uses <code class="literal"> ALGORITHM=COPY </code> . See <a class="xref" href="alter-table.html#alter-table-performance" title="Performance and Space Requirements"> Performance and Space Requirements </a> . </p> </li> <li class="listitem"> <p> Character sets and collations other than the following two combinations of character set and collation are not supported for multi-valued indexes: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> The <code class="literal"> binary </code> character set with the default <code class="literal"> binary </code> collation </p> </li> <li class="listitem"> <p> The <code class="literal"> utf8mb4 </code> character set with the default <code class="literal"> utf8mb4_0900_as_cs </code> collation. </p> </li> </ol> </div> </li> <li class="listitem"> <p> As with other indexes on columns of <code class="literal"> InnoDB </code> tables, a multi-valued index cannot be created with <code class="literal"> USING HASH </code> ; attempting to do so results in a warning: <span class="errortext"> This storage engine does not support the HASH index algorithm, storage engine default was used instead </span> . ( <code class="literal"> USING BTREE </code> is supported as usual.) </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-spatial"> </a> Spatial Indexes </h4> </div> </div> </div> <p> The <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> , <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> , <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> , and <a class="link" href="archive-storage-engine.html" title="18.5 The ARCHIVE Storage Engine"> <code class="literal"> ARCHIVE </code> </a> storage engines support spatial columns such as <a class="link" href="spatial-type-overview.html" title="13.4.1 Spatial Data Types"> <code class="literal"> POINT </code> </a> and <a class="link" href="spatial-type-overview.html" title="13.4.1 Spatial Data Types"> <code class="literal"> GEOMETRY </code> </a> . ( <a class="xref" href="spatial-types.html" title="13.4 Spatial Data Types"> Section 13.4, “Spatial Data Types” </a> , describes the spatial data types.) However, support for spatial column indexing varies among engines. Spatial and nonspatial indexes on spatial columns are available according to the following rules. </p> <p> Spatial indexes on spatial columns have these characteristics: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Available only for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> and <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> tables. Specifying <code class="literal"> SPATIAL INDEX </code> for other storage engines results in an error. </p> </li> <li class="listitem"> <p> An index on a spatial column <span class="emphasis"> <em> must </em> </span> be a <code class="literal"> SPATIAL </code> index. The <code class="literal"> SPATIAL </code> keyword is thus optional but implicit for creating an index on a spatial column. </p> </li> <li class="listitem"> <p> Available for single spatial columns only. A spatial index cannot be created over multiple spatial columns. </p> </li> <li class="listitem"> <p> Indexed columns must be <code class="literal"> NOT NULL </code> . </p> </li> <li class="listitem"> <p> Column prefix lengths are prohibited. The full width of each column is indexed. </p> </li> <li class="listitem"> <p> Not permitted for a primary key or unique index. </p> </li> </ul> </div> <p> Nonspatial indexes on spatial columns (created with <code class="literal"> INDEX </code> , <code class="literal"> UNIQUE </code> , or <code class="literal"> PRIMARY KEY </code> ) have these characteristics: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Permitted for any storage engine that supports spatial columns except <a class="link" href="archive-storage-engine.html" title="18.5 The ARCHIVE Storage Engine"> <code class="literal"> ARCHIVE </code> </a> . </p> </li> <li class="listitem"> <p> Columns can be <code class="literal"> NULL </code> unless the index is a primary key. </p> </li> <li class="listitem"> <p> The index type for a non- <code class="literal"> SPATIAL </code> index depends on the storage engine. Currently, B-tree is used. </p> </li> <li class="listitem"> <p> Permitted for a column that can have <code class="literal"> NULL </code> values only for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> , <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> , and <a class="link" href="memory-storage-engine.html" title="18.3 The MEMORY Storage Engine"> <code class="literal"> MEMORY </code> </a> tables. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-options"> </a> Index Options </h4> </div> </div> </div> <p> Following the key part list, index options can be given. An <em class="replaceable"> <code> index_option </code> </em> value can be any of the following: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> KEY_BLOCK_SIZE [=] <em class="replaceable"> <code> value </code> </em> </code> </p> <p> For <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> tables, <code class="literal"> KEY_BLOCK_SIZE </code> optionally specifies the size in bytes to use for index key blocks. The value is treated as a hint; a different size could be used if necessary. A <code class="literal"> KEY_BLOCK_SIZE </code> value specified for an individual index definition overrides a table-level <code class="literal"> KEY_BLOCK_SIZE </code> value. </p> <p> <code class="literal"> KEY_BLOCK_SIZE </code> is not supported at the index level for <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> tables. See <a class="xref" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> Section 15.1.20, “CREATE TABLE Statement” </a> . </p> </li> <li class="listitem"> <p> <em class="replaceable"> <code> index_type </code> </em> </p> <p> Some storage engines permit you to specify an index type when creating an index. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa47447701"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> lookup <span class="token punctuation">(</span>id <span class="token datatype">INT</span><span class="token punctuation">)</span> <span class="token keyword">ENGINE</span> <span class="token operator">=</span> <span class="token keyword">MEMORY</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> id_index <span class="token keyword">ON</span> lookup <span class="token punctuation">(</span>id<span class="token punctuation">)</span> <span class="token keyword">USING</span> <span class="token keyword">BTREE</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="xref" href="create-index.html#create-index-storage-engine-index-types" title="Table 15.1 Index Types Per Storage Engine"> Table 15.1, “Index Types Per Storage Engine” </a> shows the permissible index type values supported by different storage engines. Where multiple index types are listed, the first one is the default when no index type specifier is given. Storage engines not listed in the table do not support an <em class="replaceable"> <code> index_type </code> </em> clause in index definitions. </p> <div class="table"> <a name="create-index-storage-engine-index-types"> </a> <p class="title"> <b> Table 15.1 Index Types Per Storage Engine </b> </p> <div class="table-contents"> <table summary="Permissible index types by storage engine."> <colgroup> <col style="width: 20%"/> <col style="width: 50%"/> </colgroup> <thead> <tr> <th> Storage Engine </th> <th> Permissible Index Types </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> </td> <td> <code class="literal"> BTREE </code> </td> </tr> <tr> <td> <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> </td> <td> <code class="literal"> BTREE </code> </td> </tr> <tr> <td> <a class="link" href="memory-storage-engine.html" title="18.3 The MEMORY Storage Engine"> <code class="literal"> MEMORY </code> </a> / <code class="literal"> HEAP </code> </td> <td> <code class="literal"> HASH </code> , <code class="literal"> BTREE </code> </td> </tr> <tr> <td> <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> </td> <td> <code class="literal"> HASH </code> , <code class="literal"> BTREE </code> (see note in text) </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <p> The <em class="replaceable"> <code> index_type </code> </em> clause cannot be used for <code class="literal"> FULLTEXT INDEX </code> specifications. Full-text index implementation is storage-engine dependent. Spatial indexes are implemented as R-tree indexes. </p> <p> If you specify an index type that is not valid for a given storage engine, but another index type is available that the engine can use without affecting query results, the engine uses the available type. The parser recognizes <code class="literal"> RTREE </code> as a type name. This is permitted only for <code class="literal"> SPATIAL </code> indexes. </p> <p> <code class="literal"> BTREE </code> indexes are implemented by the <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> storage engine as T-tree indexes. </p> <a class="indexterm" name="idm46045187616368"> </a> <a class="indexterm" name="idm46045187614880"> </a> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> For indexes on <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> table columns, the <code class="literal"> USING </code> option can be specified only for a unique index or primary key. <code class="literal"> USING HASH </code> prevents the creation of an ordered index; otherwise, creating a unique index or primary key on an <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> table automatically results in the creation of both an ordered index and a hash index, each of which indexes the same set of columns. </p> <p> For unique indexes that include one or more <code class="literal"> NULL </code> columns of an <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> table, the hash index can be used only to look up literal values, which means that <code class="literal"> IS [NOT] NULL </code> conditions require a full scan of the table. One workaround is to make sure that a unique index using one or more <code class="literal"> NULL </code> columns on such a table is always created in such a way that it includes the ordered index; that is, avoid employing <code class="literal"> USING HASH </code> when creating the index. </p> </div> <p> If you specify an index type that is not valid for a given storage engine, but another index type is available that the engine can use without affecting query results, the engine uses the available type. The parser recognizes <code class="literal"> RTREE </code> as a type name, but currently this cannot be specified for any storage engine. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Use of the <em class="replaceable"> <code> index_type </code> </em> option before the <code class="literal"> ON <em class="replaceable"> <code> tbl_name </code> </em> </code> clause is deprecated; expect support for use of the option in this position to be removed in a future MySQL release. If an <em class="replaceable"> <code> index_type </code> </em> option is given in both the earlier and later positions, the final option applies. </p> </div> <p> <code class="literal"> TYPE <em class="replaceable"> <code> type_name </code> </em> </code> is recognized as a synonym for <code class="literal"> USING <em class="replaceable"> <code> type_name </code> </em> </code> . However, <code class="literal"> USING </code> is the preferred form. </p> <p> The following tables show index characteristics for the storage engines that support the <em class="replaceable"> <code> index_type </code> </em> option. </p> <div class="table"> <a name="innodb-storage-engine-index-characteristics"> </a> <p class="title"> <b> Table 15.2 InnoDB Storage Engine Index Characteristics </b> </p> <div class="table-contents"> <table summary="Index characteristics of the InnoDB storage engine."> <colgroup> <col style="width: 15%"/> <col style="width: 10%"/> <col style="width: 15%"/> <col style="width: 20%"/> <col style="width: 20%"/> <col style="width: 20%"/> </colgroup> <thead> <tr> <th scope="col"> Index Class </th> <th scope="col"> Index Type </th> <th scope="col"> Stores NULL VALUES </th> <th scope="col"> Permits Multiple NULL Values </th> <th scope="col"> IS NULL Scan Type </th> <th scope="col"> IS NOT NULL Scan Type </th> </tr> </thead> <tbody> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> BTREE </code> </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> <code class="literal"> FULLTEXT </code> </th> <td> N/A </td> <td> Yes </td> <td> Yes </td> <td> Table </td> <td> Table </td> </tr> <tr> <th scope="row"> <code class="literal"> SPATIAL </code> </th> <td> N/A </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <div class="table"> <a name="myisam-storage-engine-index-characteristics"> </a> <p class="title"> <b> Table 15.3 MyISAM Storage Engine Index Characteristics </b> </p> <div class="table-contents"> <table summary="Index characteristics of the MyISAM storage engine."> <colgroup> <col style="width: 15%"/> <col style="width: 10%"/> <col style="width: 15%"/> <col style="width: 20%"/> <col style="width: 20%"/> <col style="width: 20%"/> </colgroup> <thead> <tr> <th scope="col"> Index Class </th> <th scope="col"> Index Type </th> <th scope="col"> Stores NULL VALUES </th> <th scope="col"> Permits Multiple NULL Values </th> <th scope="col"> IS NULL Scan Type </th> <th scope="col"> IS NOT NULL Scan Type </th> </tr> </thead> <tbody> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> BTREE </code> </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> <code class="literal"> FULLTEXT </code> </th> <td> N/A </td> <td> Yes </td> <td> Yes </td> <td> Table </td> <td> Table </td> </tr> <tr> <th scope="row"> <code class="literal"> SPATIAL </code> </th> <td> N/A </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <div class="table"> <a name="memory-storage-engine-index-characteristics"> </a> <p class="title"> <b> Table 15.4 MEMORY Storage Engine Index Characteristics </b> </p> <div class="table-contents"> <table summary="Index characteristics of the Memory storage engine."> <colgroup> <col style="width: 15%"/> <col style="width: 10%"/> <col style="width: 15%"/> <col style="width: 20%"/> <col style="width: 20%"/> <col style="width: 20%"/> </colgroup> <thead> <tr> <th scope="col"> Index Class </th> <th scope="col"> Index Type </th> <th scope="col"> Stores NULL VALUES </th> <th scope="col"> Permits Multiple NULL Values </th> <th scope="col"> IS NULL Scan Type </th> <th scope="col"> IS NOT NULL Scan Type </th> </tr> </thead> <tbody> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> BTREE </code> </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> HASH </code> </td> <td> No </td> <td> No </td> <td> N/A </td> <td> N/A </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> HASH </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> HASH </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <div class="table"> <a name="ndb-storage-engine-index-characteristics"> </a> <p class="title"> <b> Table 15.5 NDB Storage Engine Index Characteristics </b> </p> <div class="table-contents"> <table summary="Index characteristics of the NDB storage engine."> <colgroup> <col style="width: 15%"/> <col style="width: 10%"/> <col style="width: 15%"/> <col style="width: 20%"/> <col style="width: 20%"/> <col style="width: 20%"/> </colgroup> <thead> <tr> <th scope="col"> Index Class </th> <th scope="col"> Index Type </th> <th scope="col"> Stores NULL VALUES </th> <th scope="col"> Permits Multiple NULL Values </th> <th scope="col"> IS NULL Scan Type </th> <th scope="col"> IS NOT NULL Scan Type </th> </tr> </thead> <tbody> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> BTREE </code> </td> <td> No </td> <td> No </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> BTREE </code> </td> <td> Yes </td> <td> Yes </td> <td> Index </td> <td> Index </td> </tr> <tr> <th scope="row"> Primary key </th> <td> <code class="literal"> HASH </code> </td> <td> No </td> <td> No </td> <td> Table (see note 1) </td> <td> Table (see note 1) </td> </tr> <tr> <th scope="row"> Unique </th> <td> <code class="literal"> HASH </code> </td> <td> Yes </td> <td> Yes </td> <td> Table (see note 1) </td> <td> Table (see note 1) </td> </tr> <tr> <th scope="row"> Key </th> <td> <code class="literal"> HASH </code> </td> <td> Yes </td> <td> Yes </td> <td> Table (see note 1) </td> <td> Table (see note 1) </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <p> Table note: </p> <p> 1. <code class="literal"> USING HASH </code> prevents creation of an implicit ordered index. </p> </li> <li class="listitem"> <p> <code class="literal"> WITH PARSER <em class="replaceable"> <code> parser_name </code> </em> </code> </p> <p> This option can be used only with <code class="literal"> FULLTEXT </code> indexes. It associates a parser plugin with the index if full-text indexing and searching operations need special handling. <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> and <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> support full-text parser plugins. If you have a <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> table with an associated full-text parser plugin, you can convert the table to <code class="literal"> InnoDB </code> using <code class="literal"> ALTER TABLE </code> . See <a class="ulink" href="/doc/extending-mysql/8.4/en/plugin-types.html#full-text-plugin-type" target="_top"> Full-Text Parser Plugins </a> and <a class="ulink" href="/doc/extending-mysql/8.4/en/writing-full-text-plugins.html" target="_top"> Writing Full-Text Parser Plugins </a> for more information. </p> </li> <li class="listitem"> <p> <code class="literal"> COMMENT ' <em class="replaceable"> <code> string </code> </em> ' </code> </p> <p> Index definitions can include an optional comment of up to 1024 characters. </p> <p> The <a class="link" href="index-page-merge-threshold.html" title="17.8.11 Configuring the Merge Threshold for Index Pages"> <code class="literal"> MERGE_THRESHOLD </code> </a> for index pages can be configured for individual indexes using the <em class="replaceable"> <code> index_option </code> </em> <code class="literal"> COMMENT </code> clause of the <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> statement. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa13467892"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>id <span class="token datatype">INT</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> id_index <span class="token keyword">ON</span> t1 <span class="token punctuation">(</span>id<span class="token punctuation">)</span> <span class="token keyword">COMMENT</span> <span class="token string">'MERGE_THRESHOLD=40'</span><span class="token punctuation">;</span></code></pre> </div> <p> If the page-full percentage for an index page falls below the <code class="literal"> MERGE_THRESHOLD </code> value when a row is deleted or when a row is shortened by an update operation, <a class="link" href="innodb-storage-engine.html" title="Chapter 17 The InnoDB Storage Engine"> <code class="literal"> InnoDB </code> </a> attempts to merge the index page with a neighboring index page. The default <code class="literal"> MERGE_THRESHOLD </code> value is 50, which is the previously hardcoded value. </p> <p> <code class="literal"> MERGE_THRESHOLD </code> can also be defined at the index level and table level using <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> and <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statements. For more information, see <a class="xref" href="index-page-merge-threshold.html" title="17.8.11 Configuring the Merge Threshold for Index Pages"> Section 17.8.11, “Configuring the Merge Threshold for Index Pages” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> VISIBLE </code> , <code class="literal"> INVISIBLE </code> </p> <p> Specify index visibility. Indexes are visible by default. An invisible index is not used by the optimizer. Specification of index visibility applies to indexes other than primary keys (either explicit or implicit). For more information, see <a class="xref" href="invisible-indexes.html" title="10.3.12 Invisible Indexes"> Section 10.3.12, “Invisible Indexes” </a> . </p> <a class="indexterm" name="idm46045187367392"> </a> </li> <li class="listitem"> <p> The <code class="literal"> ENGINE_ATTRIBUTE </code> and <code class="literal"> SECONDARY_ENGINE_ATTRIBUTE </code> are used to specify index attributes for primary and secondary storage engines. The options are reserved for future use. </p> <p> The value assigned to this option is a string literal containing a valid JSON document or an empty string (''). Invalid JSON is rejected. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa58046435"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">INDEX</span> i1 <span class="token keyword">ON</span> t1 <span class="token punctuation">(</span>c1<span class="token punctuation">)</span> <span class="token keyword">ENGINE_ATTRIBUTE</span><span class="token operator">=</span><span class="token string">'{"<em class="replaceable">key</em>":"<em class="replaceable">value</em>"}'</span><span class="token punctuation">;</span></code></pre> </div> <p> <code class="literal"> ENGINE_ATTRIBUTE </code> and <code class="literal"> SECONDARY_ENGINE_ATTRIBUTE </code> values can be repeated without error. In this case, the last specified value is used. </p> <p> <code class="literal"> ENGINE_ATTRIBUTE </code> and <code class="literal"> SECONDARY_ENGINE_ATTRIBUTE </code> values are not checked by the server, nor are they cleared when the table's storage engine is changed. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="create-index-copying"> </a> Table Copying and Locking Options </h4> </div> </div> </div> <p> <code class="literal"> ALGORITHM </code> and <code class="literal"> LOCK </code> clauses may be given to influence the table copying method and level of concurrency for reading and writing the table while its indexes are being modified. They have the same meaning as for the <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement. For more information, see <a class="xref" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> Section 15.1.9, “ALTER TABLE Statement” </a> </p> <p> NDB Cluster supports online operations using the same <code class="literal"> ALGORITHM=INPLACE </code> syntax used with the standard MySQL Server. See <a class="xref" href="mysql-cluster-online-operations.html" title="25.6.12 Online Operations with ALTER TABLE in NDB Cluster"> Section 25.6.12, “Online Operations with ALTER TABLE in NDB Cluster” </a> , for more information. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf16le.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="charset-unicode-utf16le"> </a> 12.9.6 The utf16le Character Set (UTF-16LE Unicode Encoding) </h3> </div> </div> </div> <a class="indexterm" name="idm46045216554176"> </a> <p> This is the same as <code class="literal"> utf16 </code> but is little-endian rather than big-endian. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/type-conversion.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="type-conversion"> </a> 14.3 Type Conversion in Expression Evaluation </h2> </div> </div> </div> <a class="indexterm" name="idm46045207934368"> </a> <a class="indexterm" name="idm46045207933328"> </a> <p> When an operator is used with operands of different types, type conversion occurs to make the operands compatible. Some conversions occur implicitly. For example, MySQL automatically converts strings to numbers as necessary, and vice versa. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa75541447"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">1</span><span class="token operator">+</span><span class="token string">'1'</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">2</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONCAT</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">' test'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'2 test'</span></code></pre> </div> <p> It is also possible to convert a number to a string explicitly using the <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> function. Conversion occurs implicitly with the <a class="link" href="string-functions.html#function_concat"> <code class="literal"> CONCAT() </code> </a> function because it expects string arguments. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36599371"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">38.8</span><span class="token punctuation">,</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token number">38.8</span> <span class="token keyword">AS</span> <span class="token datatype">CHAR</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">38.8</span><span class="token punctuation">,</span> <span class="token string">'38.8'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">38.8</span><span class="token punctuation">,</span> <span class="token function">CONCAT</span><span class="token punctuation">(</span><span class="token number">38.8</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">38.8</span><span class="token punctuation">,</span> <span class="token string">'38.8'</span></code></pre> </div> <p> See later in this section for information about the character set of implicit number-to-string conversions, and for modified rules that apply to <code class="literal"> CREATE TABLE ... SELECT </code> statements. </p> <p> The following rules describe how conversion occurs for comparison operations: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> If one or both arguments are <code class="literal"> NULL </code> , the result of the comparison is <code class="literal"> NULL </code> , except for the <code class="literal"> NULL </code> -safe <a class="link" href="comparison-operators.html#operator_equal-to"> <code class="literal"> &lt;=&gt; </code> </a> equality comparison operator. For <code class="literal"> NULL &lt;=&gt; NULL </code> , the result is true. No conversion is needed. </p> </li> <li class="listitem"> <p> If both arguments in a comparison operation are strings, they are compared as strings. </p> </li> <li class="listitem"> <p> If both arguments are integers, they are compared as integers. </p> </li> <li class="listitem"> <p> Hexadecimal values are treated as binary strings if not compared to a number. </p> </li> <li class="listitem"> <p> If one of the arguments is a <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> TIMESTAMP </code> </a> or <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> DATETIME </code> </a> column and the other argument is a constant, the constant is converted to a timestamp before the comparison is performed. This is done to be more ODBC-friendly. This is not done for the arguments to <a class="link" href="comparison-operators.html#operator_in"> <code class="literal"> IN() </code> </a> . To be safe, always use complete datetime, date, or time strings when doing comparisons. For example, to achieve best results when using <a class="link" href="comparison-operators.html#operator_between"> <code class="literal"> BETWEEN </code> </a> with date or time values, use <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> to explicitly convert the values to the desired data type. </p> <p> A single-row subquery from a table or tables is not considered a constant. For example, if a subquery returns an integer to be compared to a <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> DATETIME </code> </a> value, the comparison is done as two integers. The integer is not converted to a temporal value. To compare the operands as <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> DATETIME </code> </a> values, use <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> to explicitly convert the subquery value to <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> DATETIME </code> </a> . </p> <a class="indexterm" name="idm46045207900864"> </a> <a class="indexterm" name="idm46045207899792"> </a> </li> <li class="listitem"> <p> If one of the arguments is a decimal value, comparison depends on the other argument. The arguments are compared as decimal values if the other argument is a decimal or integer value, or as floating-point values if the other argument is a floating-point value. </p> </li> <li class="listitem"> <p> In all other cases, the arguments are compared as floating-point (double-precision) numbers. For example, a comparison of string and numeric operands takes place as a comparison of floating-point numbers. </p> </li> </ul> </div> <p> For information about conversion of values from one temporal type to another, see <a class="xref" href="date-and-time-type-conversion.html" title="13.2.8 Conversion Between Date and Time Types"> Section 13.2.8, “Conversion Between Date and Time Types” </a> . </p> <p> Comparison of JSON values takes place at two levels. The first level of comparison is based on the JSON types of the compared values. If the types differ, the comparison result is determined solely by which type has higher precedence. If the two values have the same JSON type, a second level of comparison occurs using type-specific rules. For comparison of JSON and non-JSON values, the non-JSON value is converted to JSON and the values compared as JSON values. For details, see <a class="xref" href="json.html#json-comparison" title="Comparison and Ordering of JSON Values"> Comparison and Ordering of JSON Values </a> . </p> <p> The following examples illustrate conversion of strings to numbers for comparison operations: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa79926722"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">1</span> <span class="token operator">&gt;</span> <span class="token string">'6x'</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">7</span> <span class="token operator">&gt;</span> <span class="token string">'6x'</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">0</span> <span class="token operator">&gt;</span> <span class="token string">'x6'</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token number">0</span> <span class="token operator">=</span> <span class="token string">'x6'</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span></code></pre> </div> <p> For comparisons of a string column with a number, MySQL cannot use an index on the column to look up the value quickly. If <em class="replaceable"> <code> str_col </code> </em> is an indexed string column, the index cannot be used when performing the lookup in the following statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa57983256"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> <em class="replaceable">str_col</em><span class="token operator">=</span><span class="token number">1</span><span class="token punctuation">;</span></code></pre> </div> <p> The reason for this is that there are many different strings that may convert to the value <code class="literal"> 1 </code> , such as <code class="literal"> '1' </code> , <code class="literal"> ' 1' </code> , or <code class="literal"> '1a' </code> . </p> <p> Another issue can arise when comparing a string column with integer <code class="literal"> 0 </code> . Consider table <code class="literal"> t1 </code> created and populated as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa76517459"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span> <span class="token prompt"> -&gt;</span> c1 <span class="token datatype">INT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> c2 <span class="token datatype">INT</span> <span class="token keyword">DEFAULT</span> <span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> c3 <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">25</span><span class="token punctuation">)</span> <span class="token keyword">DEFAULT</span> <span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span> <span class="token punctuation">(</span>c1<span class="token punctuation">)</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.03 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t1 <span class="token keyword">VALUES</span> <span class="token keyword">ROW</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span> <span class="token number">52</span><span class="token punctuation">,</span> <span class="token string">'grape'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">ROW</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span> <span class="token number">139</span><span class="token punctuation">,</span> <span class="token string">'apple'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">ROW</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">,</span> <span class="token number">37</span><span class="token punctuation">,</span> <span class="token string">'peach'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">ROW</span><span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">,</span> <span class="token number">221</span><span class="token punctuation">,</span> <span class="token string">'watermelon'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">ROW</span><span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span> <span class="token number">83</span><span class="token punctuation">,</span> <span class="token string">'pear'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 5 rows affected (0.01 sec)</span> <span class="token output">Records: 5 Duplicates: 0 Warnings: 0</span></code></pre> </div> <p> Observe the result when selecting from this table and comparing <code class="literal"> c3 </code> , which is a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> column, with integer <code class="literal"> 0 </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa50041352"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> c3 <span class="token operator">=</span> <span class="token number">0</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> c1 <span class="token punctuation">|</span> c2 <span class="token punctuation">|</span> c3 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> 52 <span class="token punctuation">|</span> grape <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> 139 <span class="token punctuation">|</span> apple <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> 37 <span class="token punctuation">|</span> peach <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 4 <span class="token punctuation">|</span> 221 <span class="token punctuation">|</span> watermelon <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 5 <span class="token punctuation">|</span> 83 <span class="token punctuation">|</span> pear <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">5 rows in set, 5 warnings (0.00 sec)</span></code></pre> </div> <p> <span class="emphasis"> <em> This occurs even when using strict SQL mode </em> </span> . To prevent this from happening, quote the value, as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa61040365"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> c3 <span class="token operator">=</span> <span class="token string">'0'</span><span class="token punctuation">;</span> <span class="token output">Empty set (0.00 sec)</span></code></pre> </div> <p> This does <span class="emphasis"> <em> not </em> </span> occur when <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> is part of a data definition statement such as <a class="link" href="create-table-select.html" title="15.1.20.4 CREATE TABLE ... SELECT Statement"> <code class="literal"> CREATE TABLE ... SELECT </code> </a> ; in strict mode, the statement fails due to the invalid comparison: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa16975585"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> c3 <span class="token operator">=</span> <span class="token number">0</span><span class="token punctuation">;</span> <span class="token output">ERROR 1292 (22007)<span class="token punctuation">:</span> Truncated incorrect DOUBLE value<span class="token punctuation">:</span> 'grape'</span></code></pre> </div> <p> When the <code class="literal"> 0 </code> is quoted, the statement succeeds, but the table created contains no rows because there were none matching <code class="literal"> '0' </code> , as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa16759237"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">WHERE</span> c3 <span class="token operator">=</span> <span class="token string">'0'</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.03 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t2<span class="token punctuation">;</span> <span class="token output">Empty set (0.00 sec)</span></code></pre> </div> <p> This is a known issue, which is due to the fact that strict mode is not applied when processing <code class="literal"> SELECT </code> . See also <a class="xref" href="sql-mode.html#sql-mode-strict" title="Strict SQL Mode"> Strict SQL Mode </a> . </p> <p> Comparisons between floating-point numbers and large integer values are approximate because the integer is converted to double-precision floating point before comparison, which is not capable of representing all 64-bit integers exactly. For example, the integer value 2 <sup> 53 </sup> + 1 is not representable as a float, and is rounded to 2 <sup> 53 </sup> or 2 <sup> 53 </sup> + 2 before a float comparison, depending on the platform. </p> <p> To illustrate, only the first of the following comparisons compares equal values, but both comparisons return true (1): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa82291208"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token string">'9223372036854775807'</span> <span class="token operator">=</span> <span class="token number">9223372036854775807</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token string">'9223372036854775807'</span> <span class="token operator">=</span> <span class="token number">9223372036854775806</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">1</span></code></pre> </div> <p> When conversions from string to floating-point and from integer to floating-point occur, they do not necessarily occur the same way. The integer may be converted to floating-point by the CPU, whereas the string is converted digit by digit in an operation that involves floating-point multiplications. Also, results can be affected by factors such as computer architecture or the compiler version or optimization level. One way to avoid such problems is to use <a class="link" href="cast-functions.html#function_cast"> <code class="literal"> CAST() </code> </a> so that a value is not converted implicitly to a float-point number: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa21928713"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CAST</span><span class="token punctuation">(</span><span class="token string">'9223372036854775807'</span> <span class="token keyword">AS</span> <span class="token keyword">UNSIGNED</span><span class="token punctuation">)</span> <span class="token operator">=</span> <span class="token number">9223372036854775806</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span></code></pre> </div> <p> For more information about floating-point comparisons, see <a class="xref" href="problems-with-float.html" title="B.3.4.8 Problems with Floating-Point Values"> Section B.3.4.8, “Problems with Floating-Point Values” </a> . </p> <p> The server includes <code class="literal"> dtoa </code> , a conversion library that provides the basis for improved conversion between string or <a class="link" href="fixed-point-types.html" title="13.1.3 Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC"> <code class="literal"> DECIMAL </code> </a> values and approximate-value ( <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> FLOAT </code> </a> / <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> ) numbers: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Consistent conversion results across platforms, which eliminates, for example, Unix versus Windows conversion differences. </p> </li> <li class="listitem"> <p> Accurate representation of values in cases where results previously did not provide sufficient precision, such as for values close to IEEE limits. </p> </li> <li class="listitem"> <p> Conversion of numbers to string format with the best possible precision. The precision of <code class="literal"> dtoa </code> is always the same or better than that of the standard C library functions. </p> </li> </ul> </div> <p> Because the conversions produced by this library differ in some cases from non- <code class="literal"> dtoa </code> results, the potential exists for incompatibilities in applications that rely on previous results. For example, applications that depend on a specific exact result from previous conversions might need adjustment to accommodate additional precision. </p> <p> The <code class="literal"> dtoa </code> library provides conversions with the following properties. <em class="replaceable"> <code> D </code> </em> represents a value with a <a class="link" href="fixed-point-types.html" title="13.1.3 Fixed-Point Types (Exact Value) - DECIMAL, NUMERIC"> <code class="literal"> DECIMAL </code> </a> or string representation, and <em class="replaceable"> <code> F </code> </em> represents a floating-point number in native binary (IEEE) format. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <em class="replaceable"> <code> F </code> </em> -&gt; <em class="replaceable"> <code> D </code> </em> conversion is done with the best possible precision, returning <em class="replaceable"> <code> D </code> </em> as the shortest string that yields <em class="replaceable"> <code> F </code> </em> when read back in and rounded to the nearest value in native binary format as specified by IEEE. </p> </li> <li class="listitem"> <p> <em class="replaceable"> <code> D </code> </em> -&gt; <em class="replaceable"> <code> F </code> </em> conversion is done such that <em class="replaceable"> <code> F </code> </em> is the nearest native binary number to the input decimal string <em class="replaceable"> <code> D </code> </em> . </p> </li> </ul> </div> <p> These properties imply that <em class="replaceable"> <code> F </code> </em> -&gt; <em class="replaceable"> <code> D </code> </em> -&gt; <em class="replaceable"> <code> F </code> </em> conversions are lossless unless <em class="replaceable"> <code> F </code> </em> is <code class="literal"> -inf </code> , <code class="literal"> +inf </code> , or <code class="literal"> NaN </code> . The latter values are not supported because the SQL standard defines them as invalid values for <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> FLOAT </code> </a> or <a class="link" href="floating-point-types.html" title="13.1.4 Floating-Point Types (Approximate Value) - FLOAT, DOUBLE"> <code class="literal"> DOUBLE </code> </a> . </p> <p> For <em class="replaceable"> <code> D </code> </em> -&gt; <em class="replaceable"> <code> F </code> </em> -&gt; <em class="replaceable"> <code> D </code> </em> conversions, a sufficient condition for losslessness is that <em class="replaceable"> <code> D </code> </em> uses 15 or fewer digits of precision, is not a denormal value, <code class="literal"> -inf </code> , <code class="literal"> +inf </code> , or <code class="literal"> NaN </code> . In some cases, the conversion is lossless even if <em class="replaceable"> <code> D </code> </em> has more than 15 digits of precision, but this is not always the case. </p> <p> Implicit conversion of a numeric or temporal value to string produces a value that has a character set and collation determined by the <a class="link" href="server-system-variables.html#sysvar_character_set_connection"> <code class="literal"> character_set_connection </code> </a> and <a class="link" href="server-system-variables.html#sysvar_collation_connection"> <code class="literal"> collation_connection </code> </a> system variables. (These variables commonly are set with <a class="link" href="set-names.html" title="15.7.6.3 SET NAMES Statement"> <code class="literal"> SET NAMES </code> </a> . For information about connection character sets, see <a class="xref" href="charset-connection.html" title="12.4 Connection Character Sets and Collations"> Section 12.4, “Connection Character Sets and Collations” </a> .) </p> <p> This means that such a conversion results in a character (nonbinary) string (a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> CHAR </code> </a> , <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> LONGTEXT </code> </a> value), except in the case that the connection character set is set to <code class="literal"> binary </code> . In that case, the conversion result is a binary string (a <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> BINARY </code> </a> , <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> VARBINARY </code> </a> , or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> LONGBLOB </code> </a> value). </p> <p> For integer expressions, the preceding remarks about expression <span class="emphasis"> <em> evaluation </em> </span> apply somewhat differently for expression <span class="emphasis"> <em> assignment </em> </span> ; for example, in a statement such as this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa49289651"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token keyword">SELECT</span> <em class="replaceable">integer_expr</em><span class="token punctuation">;</span></code></pre> </div> <p> In this case, the table in the column resulting from the expression has type <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> INT </code> </a> or <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> depending on the length of the integer expression. If the maximum length of the expression does not fit in an <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> INT </code> </a> , <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> is used instead. The length is taken from the <code class="literal"> max_length </code> value of the <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> result set metadata (see <a class="ulink" href="/doc/c-api/8.4/en/c-api-data-structures.html" target="_top"> C API Basic Data Structures </a> ). This means that you can force a <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> BIGINT </code> </a> rather than <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> INT </code> </a> by use of a sufficiently long expression: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa36209382"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token keyword">SELECT</span> <span class="token number">000000000000000000000</span><span class="token punctuation">;</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-programs-ndb-show-tables.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-cluster-programs-ndb-show-tables"> </a> 25.5.27 ndb_show_tables — Display List of NDB Tables </h3> </div> </div> </div> <a class="indexterm" name="idm46045097134416"> </a> <p> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> <span class="command"> <strong> ndb_show_tables </strong> </span> </a> displays a list of all <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> database objects in the cluster. By default, this includes not only both user-created tables and <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> system tables, but <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> -specific indexes, internal triggers, and NDB Cluster Disk Data objects as well. </p> <p> Options that can be used with <a class="link" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> <span class="command"> <strong> ndb_show_tables </strong> </span> </a> are shown in the following table. Additional descriptions follow the table. </p> <p> </p> <h4> <a name="idm46045097125552"> </a> Usage </h4> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa26529348"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">ndb_show_tables <span class="token punctuation">[</span><span class="token property">-c</span> <em class="replaceable">connection_string</em><span class="token punctuation">]</span></code></pre> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a name="option_ndb_show_tables_character-sets-dir"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_character-sets-dir"> <code class="option"> --character-sets-dir </code> </a> </p> <a class="indexterm" name="idm46045097120976"> </a> <a class="indexterm" name="idm46045097119472"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for character-sets-dir"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --character-sets-dir=path </code> </td> </tr> </tbody> </table> </div> <p> Directory containing character sets. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_connect-retries"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_connect-retries"> <code class="option"> --connect-retries </code> </a> </p> <a class="indexterm" name="idm46045097109680"> </a> <a class="indexterm" name="idm46045097108192"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connect-retries"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connect-retries=# </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 12 </code> </td> </tr> <tr> <th> Minimum Value </th> <td> <code class="literal"> 0 </code> </td> </tr> <tr> <th> Maximum Value </th> <td> <code class="literal"> 12 </code> </td> </tr> </tbody> </table> </div> <p> Number of times to retry connection before giving up. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_connect-retry-delay"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_connect-retry-delay"> <code class="option"> --connect-retry-delay </code> </a> </p> <a class="indexterm" name="idm46045097089024"> </a> <a class="indexterm" name="idm46045097087520"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connect-retry-delay"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connect-retry-delay=# </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 5 </code> </td> </tr> <tr> <th> Minimum Value </th> <td> <code class="literal"> 0 </code> </td> </tr> <tr> <th> Maximum Value </th> <td> <code class="literal"> 5 </code> </td> </tr> </tbody> </table> </div> <p> Number of seconds to wait between attempts to contact management server. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_connect-string"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_connect-string"> <code class="option"> --connect-string </code> </a> </p> <a class="indexterm" name="idm46045097068464"> </a> <a class="indexterm" name="idm46045097066976"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connect-string"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connect-string=connection_string </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Same as <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-connectstring"> <code class="option"> --ndb-connectstring </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_core-file"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_core-file"> <code class="option"> --core-file </code> </a> </p> <a class="indexterm" name="idm46045097051584"> </a> <a class="indexterm" name="idm46045097050096"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for core-file"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --core-file </code> </td> </tr> </tbody> </table> </div> <p> Write core file on error; used in debugging. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_database"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_database"> <code class="option"> --database </code> </a> , <code class="option"> -d </code> </p> <a class="indexterm" name="idm46045097039968"> </a> <a class="indexterm" name="idm46045097038480"> </a> <p> Specifies the name of the database in which the desired table is found. If this option is given, the name of a table must follow the database name. </p> <p> If this option has not been specified, and no tables are found in the <code class="literal"> TEST_DB </code> database, <a class="link" href="mysql-cluster-programs-ndb-show-tables.html" title="25.5.27 ndb_show_tables — Display List of NDB Tables"> <span class="command"> <strong> ndb_show_tables </strong> </span> </a> issues a warning. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_defaults-extra-file"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_defaults-extra-file"> <code class="option"> --defaults-extra-file </code> </a> </p> <a class="indexterm" name="idm46045097031520"> </a> <a class="indexterm" name="idm46045097030016"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for defaults-extra-file"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --defaults-extra-file=path </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Read given file after global files are read. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_defaults-file"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_defaults-file"> <code class="option"> --defaults-file </code> </a> </p> <a class="indexterm" name="idm46045097015664"> </a> <a class="indexterm" name="idm46045097014176"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for defaults-file"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --defaults-file=path </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Read default options from given file only. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_defaults-group-suffix"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_defaults-group-suffix"> <code class="option"> --defaults-group-suffix </code> </a> </p> <a class="indexterm" name="idm46045096999824"> </a> <a class="indexterm" name="idm46045096998320"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for defaults-group-suffix"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --defaults-group-suffix=string </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Also read groups with concat(group, suffix). </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_help"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_help"> <code class="option"> --help </code> </a> </p> <a class="indexterm" name="idm46045096984096"> </a> <a class="indexterm" name="idm46045096982608"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for help"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --help </code> </td> </tr> </tbody> </table> </div> <p> Display help text and exit. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_login-path"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_login-path"> <code class="option"> --login-path </code> </a> </p> <a class="indexterm" name="idm46045096972928"> </a> <a class="indexterm" name="idm46045096971440"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for login-path"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --login-path=path </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Read given path from login file. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_no-login-paths"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_no-login-paths"> <code class="option"> --no-login-paths </code> </a> </p> <a class="indexterm" name="idm46045096957168"> </a> <a class="indexterm" name="idm46045096955680"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for no-login-paths"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --no-login-paths </code> </td> </tr> </tbody> </table> </div> <p> Skips reading options from the login path file. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_loops"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_loops"> <code class="option"> --loops </code> </a> , <code class="option"> -l </code> </p> <a class="indexterm" name="idm46045096945424"> </a> <a class="indexterm" name="idm46045096943936"> </a> <p> Specifies the number of times the utility should execute. This is 1 when this option is not specified, but if you do use the option, you must supply an integer argument for it. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-connectstring"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-connectstring"> <code class="option"> --ndb-connectstring </code> </a> </p> <a class="indexterm" name="idm46045096939616"> </a> <a class="indexterm" name="idm46045096938112"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-connectstring"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-connectstring=connection_string </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Set connection string for connecting to <a class="link" href="mysql-cluster-programs-ndb-mgmd.html" title="25.5.4 ndb_mgmd — The NDB Cluster Management Server Daemon"> <span class="command"> <strong> ndb_mgmd </strong> </span> </a> . Syntax: <code class="literal"> [nodeid= <em class="replaceable"> <code> id </code> </em> ;][host=] <em class="replaceable"> <code> hostname </code> </em> [: <em class="replaceable"> <code> port </code> </em> ] </code> . Overrides entries in <code class="literal"> NDB_CONNECTSTRING </code> and <code class="filename"> my.cnf </code> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-mgm-tls"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-mgm-tls"> <code class="option"> --ndb-mgm-tls </code> </a> </p> <a class="indexterm" name="idm46045096919200"> </a> <a class="indexterm" name="idm46045096917712"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-mgm-tls"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-mgm-tls=level </code> </td> </tr> <tr> <th> Type </th> <td> Enumeration </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> relaxed </code> </td> </tr> <tr> <th> Valid Values </th> <td> <p class="valid-value"> <code class="literal"> relaxed </code> </p> <p class="valid-value"> <code class="literal"> strict </code> </p> </td> </tr> </tbody> </table> </div> <p> Sets the level of TLS support required to connect to the management server; one of <code class="literal"> relaxed </code> or <code class="literal"> strict </code> . <code class="literal"> relaxed </code> (the default) means that a TLS connection is attempted, but success is not required; <code class="literal"> strict </code> means that TLS is required to connect. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-mgmd-host"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-mgmd-host"> <code class="option"> --ndb-mgmd-host </code> </a> </p> <a class="indexterm" name="idm46045096896656"> </a> <a class="indexterm" name="idm46045096895168"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-mgmd-host"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-mgmd-host=connection_string </code> </td> </tr> <tr> <th> Type </th> <td> String </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Same as <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-connectstring"> <code class="option"> --ndb-connectstring </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-nodeid"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-nodeid"> <code class="option"> --ndb-nodeid </code> </a> </p> <a class="indexterm" name="idm46045096879824"> </a> <a class="indexterm" name="idm46045096878336"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-nodeid"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-nodeid=# </code> </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> [none] </code> </td> </tr> </tbody> </table> </div> <p> Set node ID for this node, overriding any ID set by <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-connectstring"> <code class="option"> --ndb-connectstring </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-optimized-node-selection"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-optimized-node-selection"> <code class="option"> --ndb-optimized-node-selection </code> </a> </p> <a class="indexterm" name="idm46045096862928"> </a> <a class="indexterm" name="idm46045096861424"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-optimized-node-selection"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-optimized-node-selection </code> </td> </tr> </tbody> </table> </div> <p> Enable optimizations for selection of nodes for transactions. Enabled by default; use <code class="option"> --skip-ndb-optimized-node-selection </code> to disable. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_ndb-tls-search-path"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_ndb-tls-search-path"> <code class="option"> --ndb-tls-search-path </code> </a> </p> <a class="indexterm" name="idm46045096851056"> </a> <a class="indexterm" name="idm46045096849552"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for ndb-tls-search-path"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --ndb-tls-search-path=list </code> </td> </tr> <tr> <th> Type </th> <td> Path name </td> </tr> <tr> <th> Default Value (Unix) </th> <td> <code class="literal"> $HOME/ndb-tls </code> </td> </tr> <tr> <th> Default Value (Windows) </th> <td> <code class="literal"> $HOMEDIR/ndb-tls </code> </td> </tr> </tbody> </table> </div> <p> Specify a list of directories to search for a CA file. On Unix platforms, the directory names are separated by colons ( <code class="literal"> : </code> ); on Windows systems, the semicolon character ( <code class="literal"> ; </code> ) is used as the separator. A directory reference may be relative or absolute; it may contain one or more environment variables, each denoted by a prefixed dollar sign ( <code class="literal"> $ </code> ), and expanded prior to use. </p> <p> Searching begins with the leftmost named directory and proceeds from left to right until a file is found. An empty string denotes an empty search path, which causes all searches to fail. A string consisting of a single dot ( <code class="literal"> . </code> ) indicates that the search path limited to the current working directory. </p> <p> If no search path is supplied, the compiled-in default value is used. This value depends on the platform used: On Windows, this is <code class="literal"> \ndb-tls </code> ; on other platforms (including Linux), it is <code class="literal"> $HOME/ndb-tls </code> . This can be overridden by compiling NDB Cluster using <a class="link" href="source-configuration-options.html#option_cmake_with_ndb_tls_search_path"> <code class="option"> -DWITH_NDB_TLS_SEARCH_PATH </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_no-defaults"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_no-defaults"> <code class="option"> --no-defaults </code> </a> </p> <a class="indexterm" name="idm46045096825856"> </a> <a class="indexterm" name="idm46045096824368"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for no-defaults"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --no-defaults </code> </td> </tr> </tbody> </table> </div> <p> Do not read default options from any option file other than login file. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_parsable"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_parsable"> <code class="option"> --parsable </code> </a> , <code class="option"> -p </code> </p> <a class="indexterm" name="idm46045096814128"> </a> <a class="indexterm" name="idm46045096812640"> </a> <p> Using this option causes the output to be in a format suitable for use with <a class="link" href="load-data.html" title="15.2.9 LOAD DATA Statement"> <code class="literal"> LOAD DATA </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_print-defaults"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_print-defaults"> <code class="option"> --print-defaults </code> </a> </p> <a class="indexterm" name="idm46045096807184"> </a> <a class="indexterm" name="idm46045096805696"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for print-defaults"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --print-defaults </code> </td> </tr> </tbody> </table> </div> <p> Print program argument list and exit. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_show-temp-status"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_show-temp-status"> <code class="option"> --show-temp-status </code> </a> </p> <a class="indexterm" name="idm46045096795984"> </a> <a class="indexterm" name="idm46045096794496"> </a> <p> If specified, this causes temporary tables to be displayed. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_type"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_type"> <code class="option"> --type </code> </a> , <code class="option"> -t </code> </p> <a class="indexterm" name="idm46045096789872"> </a> <a class="indexterm" name="idm46045096788384"> </a> <p> Can be used to restrict the output to one type of object, specified by an integer type code as shown here: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <code class="literal"> 1 </code> : System table </p> </li> <li class="listitem"> <p> <code class="literal"> 2 </code> : User-created table </p> </li> <li class="listitem"> <p> <code class="literal"> 3 </code> : Unique hash index </p> </li> </ul> </div> <p> Any other value causes all <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> database objects to be listed (the default). </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_unqualified"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_unqualified"> <code class="option"> --unqualified </code> </a> , <code class="option"> -u </code> </p> <a class="indexterm" name="idm46045096777200"> </a> <a class="indexterm" name="idm46045096775712"> </a> <p> If specified, this causes unqualified object names to be displayed. </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_usage"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_usage"> <code class="option"> --usage </code> </a> </p> <a class="indexterm" name="idm46045096771536"> </a> <a class="indexterm" name="idm46045096770048"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for usage"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --usage </code> </td> </tr> </tbody> </table> </div> <p> Display help text and exit; same as <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_help"> <code class="option"> --help </code> </a> . </p> </li> <li class="listitem"> <p> <a name="option_ndb_show_tables_version"> </a> <a class="link" href="mysql-cluster-programs-ndb-show-tables.html#option_ndb_show_tables_version"> <code class="option"> --version </code> </a> </p> <a class="indexterm" name="idm46045096759296"> </a> <a class="indexterm" name="idm46045096757808"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for version"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --version </code> </td> </tr> </tbody> </table> </div> <p> Display version information and exit. </p> </li> </ul> </div> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Only user-created NDB Cluster tables may be accessed from MySQL; system tables such as <code class="literal"> SYSTAB_0 </code> are not visible to <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> . However, you can examine the contents of system tables using <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> API applications such as <a class="link" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> <span class="command"> <strong> ndb_select_all </strong> </span> </a> (see <a class="xref" href="mysql-cluster-programs-ndb-select-all.html" title="25.5.25 ndb_select_all — Print Rows from an NDB Table"> Section 25.5.25, “ndb_select_all — Print Rows from an NDB Table” </a> ). </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/drop-index.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="drop-index"> </a> 15.1.27 DROP INDEX Statement </h3> </div> </div> </div> <a class="indexterm" name="idm46045183449712"> </a> <a class="indexterm" name="idm46045183448640"> </a> <a class="indexterm" name="idm46045183447152"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa96365373"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DROP</span> <span class="token keyword">INDEX</span> <em class="replaceable">index_name</em> <span class="token keyword">ON</span> <em class="replaceable">tbl_name</em> <span class="token punctuation">[</span><em class="replaceable">algorithm_option</em> <span class="token operator">|</span> <em class="replaceable">lock_option</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <em class="replaceable">algorithm_option</em>: <span class="token keyword">ALGORITHM</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> {<span class="token keyword">DEFAULT</span> <span class="token operator">|</span> <span class="token keyword">INPLACE</span> <span class="token operator">|</span> <span class="token keyword">COPY</span>} <em class="replaceable">lock_option</em>: <span class="token keyword">LOCK</span> <span class="token punctuation">[</span><span class="token operator">=</span><span class="token punctuation">]</span> {<span class="token keyword">DEFAULT</span> <span class="token operator">|</span> <span class="token keyword">NONE</span> <span class="token operator">|</span> <span class="token keyword">SHARED</span> <span class="token operator">|</span> <span class="token keyword">EXCLUSIVE</span>}</code></pre> </div> <p> <a class="link" href="drop-index.html" title="15.1.27 DROP INDEX Statement"> <code class="literal"> DROP INDEX </code> </a> drops the index named <em class="replaceable"> <code> index_name </code> </em> from the table <em class="replaceable"> <code> tbl_name </code> </em> . This statement is mapped to an <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement to drop the index. See <a class="xref" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> Section 15.1.9, “ALTER TABLE Statement” </a> . </p> <p> To drop a primary key, the index name is always <code class="literal"> PRIMARY </code> , which must be specified as a quoted identifier because <code class="literal"> PRIMARY </code> is a reserved word: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa92942772"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DROP</span> <span class="token keyword">INDEX</span> <span class="token punctuation">`</span><span class="token keyword">PRIMARY</span><span class="token punctuation">`</span> <span class="token keyword">ON</span> t<span class="token punctuation">;</span></code></pre> </div> <p> Indexes on variable-width columns of <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables are dropped online; that is, without any table copying. The table is not locked against access from other NDB Cluster API nodes, although it is locked against other operations on the <span class="emphasis"> <em> same </em> </span> API node for the duration of the operation. This is done automatically by the server whenever it determines that it is possible to do so; you do not have to use any special SQL syntax or server options to cause it to happen. </p> <p> <code class="literal"> ALGORITHM </code> and <code class="literal"> LOCK </code> clauses may be given to influence the table copying method and level of concurrency for reading and writing the table while its indexes are being modified. They have the same meaning as for the <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement. For more information, see <a class="xref" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> Section 15.1.9, “ALTER TABLE Statement” </a> </p> <p> MySQL NDB Cluster supports online operations using the same <code class="literal"> ALGORITHM=INPLACE </code> syntax supported in the standard MySQL Server. See <a class="xref" href="mysql-cluster-online-operations.html" title="25.6.12 Online Operations with ALTER TABLE in NDB Cluster"> Section 25.6.12, “Online Operations with ALTER TABLE in NDB Cluster” </a> , for more information. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/sorting-rows.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="sorting-rows"> </a> 5.3.4.4 Sorting Rows </h4> </div> </div> </div> <a class="indexterm" name="idm46045325215360"> </a> <a class="indexterm" name="idm46045325214288"> </a> <a class="indexterm" name="idm46045325212800"> </a> <a class="indexterm" name="idm46045325211312"> </a> <a class="indexterm" name="idm46045325209824"> </a> <p> You may have noticed in the preceding examples that the result rows are displayed in no particular order. It is often easier to examine query output when the rows are sorted in some meaningful way. To sort a result, use an <code class="literal"> ORDER BY </code> clause. </p> <p> Here are animal birthdays, sorted by date: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa71974274"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">name</span><span class="token punctuation">,</span> birth <span class="token keyword">FROM</span> pet <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> birth<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> birth <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fang <span class="token punctuation">|</span> 1990<span class="token punctuation">-</span>08<span class="token punctuation">-</span>27 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fluffy <span class="token punctuation">|</span> 1993<span class="token punctuation">-</span>02<span class="token punctuation">-</span>04 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Slim <span class="token punctuation">|</span> 1996<span class="token punctuation">-</span>04<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Whistler <span class="token punctuation">|</span> 1997<span class="token punctuation">-</span>12<span class="token punctuation">-</span>09 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Chirpy <span class="token punctuation">|</span> 1998<span class="token punctuation">-</span>09<span class="token punctuation">-</span>11 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Puffball <span class="token punctuation">|</span> 1999<span class="token punctuation">-</span>03<span class="token punctuation">-</span>30 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> On character type columns, sorting—like all other comparison operations—is normally performed in a case-insensitive fashion. This means that the order is undefined for columns that are identical except for their case. You can force a case-sensitive sort for a column by using <a class="link" href="cast-functions.html#operator_binary"> <code class="literal"> BINARY </code> </a> like so: <code class="literal"> ORDER BY BINARY <em class="replaceable"> <code> col_name </code> </em> </code> . </p> <p> The default sort order is ascending, with smallest values first. To sort in reverse (descending) order, add the <code class="literal"> DESC </code> keyword to the name of the column you are sorting by: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa99563586"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">name</span><span class="token punctuation">,</span> birth <span class="token keyword">FROM</span> pet <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> birth <span class="token keyword">DESC</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> birth <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Puffball <span class="token punctuation">|</span> 1999<span class="token punctuation">-</span>03<span class="token punctuation">-</span>30 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Chirpy <span class="token punctuation">|</span> 1998<span class="token punctuation">-</span>09<span class="token punctuation">-</span>11 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Whistler <span class="token punctuation">|</span> 1997<span class="token punctuation">-</span>12<span class="token punctuation">-</span>09 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Slim <span class="token punctuation">|</span> 1996<span class="token punctuation">-</span>04<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fluffy <span class="token punctuation">|</span> 1993<span class="token punctuation">-</span>02<span class="token punctuation">-</span>04 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fang <span class="token punctuation">|</span> 1990<span class="token punctuation">-</span>08<span class="token punctuation">-</span>27 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> You can sort on multiple columns, and you can sort different columns in different directions. For example, to sort by type of animal in ascending order, then by birth date within animal type in descending order (youngest animals first), use the following query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa37386622"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">name</span><span class="token punctuation">,</span> species<span class="token punctuation">,</span> birth <span class="token keyword">FROM</span> pet <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> species<span class="token punctuation">,</span> birth <span class="token keyword">DESC</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span> species <span class="token punctuation">|</span> birth <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Chirpy <span class="token punctuation">|</span> bird <span class="token punctuation">|</span> 1998<span class="token punctuation">-</span>09<span class="token punctuation">-</span>11 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Whistler <span class="token punctuation">|</span> bird <span class="token punctuation">|</span> 1997<span class="token punctuation">-</span>12<span class="token punctuation">-</span>09 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Claws <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> 1994<span class="token punctuation">-</span>03<span class="token punctuation">-</span>17 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fluffy <span class="token punctuation">|</span> cat <span class="token punctuation">|</span> 1993<span class="token punctuation">-</span>02<span class="token punctuation">-</span>04 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Fang <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> 1990<span class="token punctuation">-</span>08<span class="token punctuation">-</span>27 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Bowser <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>08<span class="token punctuation">-</span>31 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Buffy <span class="token punctuation">|</span> dog <span class="token punctuation">|</span> 1989<span class="token punctuation">-</span>05<span class="token punctuation">-</span>13 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Puffball <span class="token punctuation">|</span> hamster <span class="token punctuation">|</span> 1999<span class="token punctuation">-</span>03<span class="token punctuation">-</span>30 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Slim <span class="token punctuation">|</span> snake <span class="token punctuation">|</span> 1996<span class="token punctuation">-</span>04<span class="token punctuation">-</span>29 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The <code class="literal"> DESC </code> keyword applies only to the column name immediately preceding it ( <code class="literal"> birth </code> ); it does not affect the <code class="literal"> species </code> column sort order. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-download.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-shell-tutorial-javascript-download"> </a> 22.3.2 Download and Import world_x Database </h3> </div> </div> </div> <p> As part of this quick-start guide, an example schema is provided which is referred to as the <code class="literal"> world_x </code> schema. Many of the examples demonstrate Document Store functionality using this schema. Start your MySQL server so that you can load the <code class="literal"> world_x </code> schema, then follow these steps: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Download <a class="ulink" href="http://downloads.mysql.com/docs/world_x-db.zip" target="_blank"> world_x-db.zip </a> . </p> </li> <li class="listitem"> <p> Extract the installation archive to a temporary location such as <code class="filename"> /tmp/ </code> . Unpacking the archive results in a single file named <code class="filename"> world_x.sql </code> . </p> </li> <li class="listitem"> <p> Import the <code class="filename"> world_x.sql </code> file to your server. You can either: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Start MySQL Shell in SQL mode and import the file by issuing: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa11873414"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysqlsh <span class="token property">-u</span> root <span class="token property">--sql</span> <span class="token property">--file</span> /tmp/world_x-db/world_x<span class="token punctuation">.</span>sql Enter password<span class="token punctuation">:</span> ****</code></pre> </div> </li> <li class="listitem"> <p> Set MySQL Shell to SQL mode while it is running and source the schema file by issuing: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa52473344"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh">\sql Switching to SQL mode<span class="token operator">...</span> Commands end <span class="token keyword">with</span> <span class="token punctuation">;</span> \source <span class="token operator">/</span>tmp<span class="token operator">/</span>world_x<span class="token operator">-</span>db<span class="token operator">/</span>world_x<span class="token punctuation">.</span>sql</code></pre> </div> </li> </ul> </div> <p> Replace <code class="filename"> /tmp/ </code> with the path to the <code class="filename"> world_x.sql </code> 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. </p> </li> </ol> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="idm46045128032320"> </a> The world_x Schema </h4> </div> </div> </div> <a class="indexterm" name="idm46045128031648"> </a> <p> The <code class="literal"> world_x </code> example schema contains the following JSON collection and relational tables: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Collection </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <code class="literal"> countryinfo </code> : Information about countries in the world. </p> </li> </ul> </div> </li> <li class="listitem"> <p> Tables </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <code class="literal"> country </code> : Minimal information about countries of the world. </p> </li> <li class="listitem"> <p> <code class="literal"> city </code> : Information about some of the cities in those countries. </p> </li> <li class="listitem"> <p> <code class="literal"> countrylanguage </code> : Languages spoken in each country. </p> </li> </ul> </div> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="idm46045128019808"> </a> Related Information </h4> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="ulink" href="/doc/mysql-shell/8.4/en/mysql-shell-sessions.html" target="_top"> MySQL Shell Sessions </a> explains session types. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/innodb-data-encryption.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="innodb-data-encryption"> </a> 17.13 InnoDB Data-at-Rest Encryption </h2> </div> </div> </div> <a class="indexterm" name="idm46045159423296"> </a> <a class="indexterm" name="idm46045159422224"> </a> <a class="indexterm" name="idm46045159421152"> </a> <a class="indexterm" name="idm46045159420080"> </a> <a class="indexterm" name="idm46045159418992"> </a> <a class="indexterm" name="idm46045159417920"> </a> <a class="indexterm" name="idm46045159416832"> </a> <a class="indexterm" name="idm46045159415728"> </a> <a class="indexterm" name="idm46045159414656"> </a> <a class="indexterm" name="idm46045159413584"> </a> <a class="indexterm" name="idm46045159412496"> </a> <p> <code class="literal"> InnoDB </code> supports data-at-rest encryption for <a class="link" href="glossary.html#glos_file_per_table" title="file-per-table"> file-per-table </a> tablespaces, <a class="link" href="glossary.html#glos_general_tablespace" title="general tablespace"> general </a> tablespaces, the <code class="literal"> mysql </code> system tablespace, redo logs, and undo logs. </p> <p> You can set an encryption default for schemas and general tablespaces; this permits DBAs to control whether tables created in those schemas and tablespaces are encrypted. </p> <p> <code class="literal"> InnoDB </code> data-at-rest encryption features and capabilities are described under the following topics in this section. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-about" title="About Data-at-Rest Encryption"> About Data-at-Rest Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-encryption-prerequisites" title="Encryption Prerequisites"> Encryption Prerequisites </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-schema-tablespace-encryption-default" title="Defining an Encryption Default for Schemas and General Tablespaces"> Defining an Encryption Default for Schemas and General Tablespaces </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-enabling-disabling" title="File-Per-Table Tablespace Encryption"> File-Per-Table Tablespace Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-general-tablespace-encryption-enabling-disabling" title="General Tablespace Encryption"> General Tablespace Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-doublewrite-file-encryption" title="Doublewrite File Encryption"> Doublewrite File Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-mysql-tablespace-encryption-enabling-disabling" title="mysql System Tablespace Encryption"> mysql System Tablespace Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-redo-log" title="Redo Log Encryption"> Redo Log Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-undo-log" title="Undo Log Encryption"> Undo Log Encryption </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-master-key-rotation" title="Master Key Rotation"> Master Key Rotation </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-recovery" title="Encryption and Recovery"> Encryption and Recovery </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-exporting" title="Exporting Encrypted Tablespaces"> Exporting Encrypted Tablespaces </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-replication" title="Encryption and Replication"> Encryption and Replication </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-identifying" title="Identifying Encrypted Tablespaces and Schemas"> Identifying Encrypted Tablespaces and Schemas </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-progress-monitoring" title="Monitoring Encryption Progress"> Monitoring Encryption Progress </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-usage-notes" title="Encryption Usage Notes"> Encryption Usage Notes </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-limitations" title="Encryption Limitations"> Encryption Limitations </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-about"> </a> About Data-at-Rest Encryption </h3> </div> </div> </div> <p> <code class="literal"> InnoDB </code> uses a two tier encryption key architecture, consisting of a master encryption key and tablespace keys. When a tablespace is encrypted, a tablespace key is encrypted and stored in the tablespace header. When an application or authenticated user wants to access encrypted tablespace data, <code class="literal"> InnoDB </code> uses a master encryption key to decrypt the tablespace key. The decrypted version of a tablespace key never changes, but the master encryption key can be changed as required. This action is referred to as <span class="emphasis"> <em> master key rotation </em> </span> . </p> <p> The data-at-rest encryption feature relies on a keyring component or plugin for master encryption key management. </p> <p> All MySQL editions provide a <code class="literal"> component_keyring_file </code> component, which stores keyring data in a file local to the server host. </p> <p> MySQL Enterprise Edition offers additional keyring components and plugins: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> component_keyring_encrypted_file </code> : Stores keyring data in an encrypted, password-protected file local to the server host. </p> </li> <li class="listitem"> <p> <code class="literal"> keyring_okv </code> : A KMIP 1.1 plugin for use with KMIP-compatible back end keyring storage products. Supported KMIP-compatible products include centralized key management solutions such as Oracle Key Vault, Gemalto KeySecure, Thales Vormetric key management server, and Fornetix Key Orchestration. </p> </li> <li class="listitem"> <p> <code class="literal"> keyring_aws </code> : Communicates with the Amazon Web Services Key Management Service (AWS KMS) as a back end for key generation and uses a local file for key storage. </p> </li> <li class="listitem"> <p> <code class="literal"> keyring_hashicorp </code> : Communicates with HashiCorp Vault for back end storage. </p> </li> </ul> </div> <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Warning </div> <p> For encryption key management, the <code class="literal"> component_keyring_file </code> and <code class="literal"> component_keyring_encrypted_file </code> components are not intended as a regulatory compliance solution. Security standards such as PCI, FIPS, and others require use of key management systems to secure, manage, and protect encryption keys in key vaults or hardware security modules (HSMs). </p> </div> <p> A secure and robust encryption key management solution is critical for security and for compliance with various security standards. When the data-at-rest encryption feature uses a centralized key management solution, the feature is referred to as <span class="quote"> “ <span class="quote"> MySQL Enterprise Transparent Data Encryption (TDE) </span> ” </span> . </p> <p> The data-at-rest encryption feature supports the Advanced Encryption Standard (AES) block-based encryption algorithm. It uses Electronic Codebook (ECB) block encryption mode for tablespace key encryption and Cipher Block Chaining (CBC) block encryption mode for data encryption. </p> <p> For frequently asked questions about the data-at-rest encryption feature, see <a class="xref" href="faqs-tablespace-encryption.html" title="A.17 MySQL 8.4 FAQ: InnoDB Data-at-Rest Encryption"> Section A.17, “MySQL 8.4 FAQ: InnoDB Data-at-Rest Encryption” </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-encryption-prerequisites"> </a> Encryption Prerequisites </h3> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> A keyring component or plugin must be installed and configured at startup. Early loading ensures that the component or plugin is available prior to initialization of the <code class="literal"> InnoDB </code> storage engine. For keyring installation and configuration instructions, see <a class="xref" href="keyring.html" title="8.4.4 The MySQL Keyring"> Section 8.4.4, “The MySQL Keyring” </a> . The instructions show how to ensure that the chosen component or plugin is active. </p> <p> Only one keyring component or plugin should be enabled at a time. Enabling multiple keyring components or plugins is unsupported and results may not be as anticipated. </p> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> Once encrypted tablespaces are created in a MySQL instance, the keyring component or plugin that was loaded when creating the encrypted tablespace must continue to be loaded at startup. Failing to do so results in errors when starting the server and during <code class="literal"> InnoDB </code> recovery. </p> </div> </li> <li class="listitem"> <p> When encrypting production data, ensure that you take steps to prevent loss of the master encryption key. <span class="emphasis"> <em> If the master encryption key is lost, data stored in encrypted tablespace files is unrecoverable. </em> </span> If you use the <code class="literal"> component_keyring_file </code> or <code class="literal"> component_keyring_encrypted_file </code> component create a backup of the keyring data file immediately after creating the first encrypted tablespace, before master key rotation, and after master key rotation. For each component, its configuration file indicates the data file location. If you use the <code class="literal"> keyring_okv </code> or <code class="literal"> keyring_aws </code> plugin, ensure that you have performed the necessary configuration. For instructions, see <a class="xref" href="keyring.html" title="8.4.4 The MySQL Keyring"> Section 8.4.4, “The MySQL Keyring” </a> . </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-schema-tablespace-encryption-default"> </a> Defining an Encryption Default for Schemas and General Tablespaces </h3> </div> </div> </div> <a class="indexterm" name="idm46045159355680"> </a> <p> <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> system variable defines the default encryption setting for schemas and general tablespaces. <a class="link" href="create-tablespace.html" title="15.1.21 CREATE TABLESPACE Statement"> <code class="literal"> CREATE TABLESPACE </code> </a> and <a class="link" href="create-database.html" title="15.1.12 CREATE DATABASE Statement"> <code class="literal"> CREATE SCHEMA </code> </a> operations apply the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting when an <code class="literal"> ENCRYPTION </code> clause is not specified explicitly. </p> <p> <a class="link" href="alter-database.html" title="15.1.2 ALTER DATABASE Statement"> <code class="literal"> ALTER SCHEMA </code> </a> and <a class="link" href="alter-tablespace.html" title="15.1.10 ALTER TABLESPACE Statement"> <code class="literal"> ALTER TABLESPACE </code> </a> operations do not apply the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting. An <code class="literal"> ENCRYPTION </code> clause must be specified explicitly to alter the encryption of an existing schema or general tablespace. </p> <p> The <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> variable can be set for an individual client connection or globally using <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET </code> </a> syntax. For example, the following statement enables default schema and tablespace encryption globally: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa78783373"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">GLOBAL</span> default_table_encryption<span class="token operator">=</span><span class="token keyword">ON</span><span class="token punctuation">;</span></code></pre> </div> <p> The default encryption setting for a schema can also be defined using the <code class="literal"> DEFAULT ENCRYPTION </code> clause when creating or altering a schema, as in this example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa11914170"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">SCHEMA</span> test <span class="token keyword">DEFAULT</span> <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> <p> If the <code class="literal"> DEFAULT ENCRYPTION </code> clause is not specified when creating a schema, the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting is applied. The <code class="literal"> DEFAULT ENCRYPTION </code> clause must be specified to alter the default encryption of an existing schema. Otherwise, the schema retains its current encryption setting. </p> <p> By default, a table inherits the encryption setting of the schema or general tablespace it is created in. For example, a table created in an encryption-enabled schema is encrypted by default. This behavior enables a DBA to control table encryption usage by defining and enforcing schema and general tablespace encryption defaults. </p> <p> Encryption defaults are enforced by enabling the <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> system variable. When <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> is enabled, a privilege check occurs when creating or altering a schema or general tablespace with an encryption setting that differs from the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting, or when creating or altering a table with an encryption setting that differs from the default schema encryption. When <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> is disabled (the default), the privilege check does not occur and the previously mentioned operations are permitted to proceed with a warning. </p> <p> The <a class="link" href="privileges-provided.html#priv_table-encryption-admin"> <code class="literal"> TABLE_ENCRYPTION_ADMIN </code> </a> privilege is required to override default encryption settings when <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> is enabled. A DBA can grant this privilege to enable a user to deviate from the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting when creating or altering a schema or general tablespace, or to deviate from the default schema encryption when creating or altering a table. This privilege does not permit deviating from the encryption of a general tablespace when creating or altering a table. A table must have the same encryption setting as the general tablespace it resides in. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-enabling-disabling"> </a> File-Per-Table Tablespace Encryption </h3> </div> </div> </div> <p> A file-per-table tablespace inherits the default encryption of the schema in which the table is created unless an <code class="literal"> ENCRYPTION </code> clause is specified explicitly in the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa10778616"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>c1 <span class="token datatype">INT</span><span class="token punctuation">)</span> <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> <p> To alter the encryption of an existing file-per-table tablespace, an <code class="literal"> ENCRYPTION </code> clause must be specified. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa79173968"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t1 <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> is enabled, specifying an <code class="literal"> ENCRYPTION </code> clause with a setting that differs from the default schema encryption requires the <a class="link" href="privileges-provided.html#priv_table-encryption-admin"> <code class="literal"> TABLE_ENCRYPTION_ADMIN </code> </a> privilege. See <a class="xref" href="innodb-data-encryption.html#innodb-schema-tablespace-encryption-default" title="Defining an Encryption Default for Schemas and General Tablespaces"> Defining an Encryption Default for Schemas and General Tablespaces </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-general-tablespace-encryption-enabling-disabling"> </a> General Tablespace Encryption </h3> </div> </div> </div> <p> The <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> variable determines the encryption of a newly created general tablespace unless an <code class="literal"> ENCRYPTION </code> clause is specified explicitly in the <a class="link" href="create-tablespace.html" title="15.1.21 CREATE TABLESPACE Statement"> <code class="literal"> CREATE TABLESPACE </code> </a> statement. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa65627116"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLESPACE</span> <span class="token punctuation">`</span>ts1<span class="token punctuation">`</span> <span class="token keyword">ADD</span> <span class="token keyword">DATAFILE</span> <span class="token string">'ts1.ibd'</span> <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span> <span class="token keyword">Engine</span><span class="token operator">=</span>InnoDB<span class="token punctuation">;</span></code></pre> </div> <p> To alter the encryption of an existing general tablespace, an <code class="literal"> ENCRYPTION </code> clause must be specified. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa86187467"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLESPACE</span> ts1 <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> <p> If <a class="link" href="server-system-variables.html#sysvar_table_encryption_privilege_check"> <code class="literal"> table_encryption_privilege_check </code> </a> is enabled, specifying an <code class="literal"> ENCRYPTION </code> clause with a setting that differs from the <a class="link" href="server-system-variables.html#sysvar_default_table_encryption"> <code class="literal"> default_table_encryption </code> </a> setting requires the <a class="link" href="privileges-provided.html#priv_table-encryption-admin"> <code class="literal"> TABLE_ENCRYPTION_ADMIN </code> </a> privilege. See <a class="xref" href="innodb-data-encryption.html#innodb-schema-tablespace-encryption-default" title="Defining an Encryption Default for Schemas and General Tablespaces"> Defining an Encryption Default for Schemas and General Tablespaces </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-doublewrite-file-encryption"> </a> Doublewrite File Encryption </h3> </div> </div> </div> <p> In MySQL 8.4, <code class="literal"> InnoDB </code> automatically encrypts doublewrite file pages that belong to encrypted tablespaces. No action is required. Doublewrite file pages are encrypted using the encryption key of the associated tablespace. The same encrypted page written to a tablespace data file is also written to a doublewrite file. Doublewrite file pages that belong to an unencrypted tablespace remain unencrypted. </p> <p> During recovery, encrypted doublewrite file pages are unencrypted and checked for corruption. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-mysql-tablespace-encryption-enabling-disabling"> </a> mysql System Tablespace Encryption </h3> </div> </div> </div> <p> The <code class="literal"> mysql </code> system tablespace contains the <code class="literal"> mysql </code> system database and MySQL data dictionary tables. It is unencrypted by default. To enable encryption for the <code class="literal"> mysql </code> system tablespace, specify the tablespace name and the <code class="literal"> ENCRYPTION </code> option in an <a class="link" href="alter-tablespace.html" title="15.1.10 ALTER TABLESPACE Statement"> <code class="literal"> ALTER TABLESPACE </code> </a> statement. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa4952043"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLESPACE</span> mysql <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> <p> To disable encryption for the <code class="literal"> mysql </code> system tablespace, set <code class="literal"> ENCRYPTION = 'N' </code> using an <a class="link" href="alter-tablespace.html" title="15.1.10 ALTER TABLESPACE Statement"> <code class="literal"> ALTER TABLESPACE </code> </a> statement. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa79180576"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLESPACE</span> mysql <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'N'</span><span class="token punctuation">;</span></code></pre> </div> <p> Enabling or disabling encryption for the <code class="literal"> mysql </code> system tablespace requires the <a class="link" href="privileges-provided.html#priv_create-tablespace"> <code class="literal"> CREATE TABLESPACE </code> </a> privilege on all tables in the instance ( <code class="literal"> CREATE TABLESPACE on *.*) </code> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-redo-log"> </a> Redo Log Encryption </h3> </div> </div> </div> <p> Redo log data encryption is enabled using the <a class="link" href="innodb-parameters.html#sysvar_innodb_redo_log_encrypt"> <code class="literal"> innodb_redo_log_encrypt </code> </a> configuration option. Redo log encryption is disabled by default. </p> <p> As with tablespace data, redo log data encryption occurs when redo log data is written to disk, and decryption occurs when redo log data is read from disk. Once redo log data is read into memory, it is in unencrypted form. Redo log data is encrypted and decrypted using the tablespace encryption key. </p> <p> When <a class="link" href="innodb-parameters.html#sysvar_innodb_redo_log_encrypt"> <code class="literal"> innodb_redo_log_encrypt </code> </a> is enabled, unencrypted redo log pages that are present on disk remain unencrypted, and new redo log pages are written to disk in encrypted form. Likewise, when <a class="link" href="innodb-parameters.html#sysvar_innodb_redo_log_encrypt"> <code class="literal"> innodb_redo_log_encrypt </code> </a> is disabled, encrypted redo log pages that are present on disk remain encrypted, and new redo log pages are written to disk in unencrypted form. </p> <p> Redo log encryption metadata, including the tablespace encryption key, is stored in the header of the redo log file with the most recent checkpoint LSN. If the redo log file with the encryption metadata is removed, redo log encryption is disabled. </p> <p> Once redo log encryption is enabled, a normal restart without the keyring component or plugin or without the encryption key is not possible, as <code class="literal"> InnoDB </code> must be able to scan redo pages during startup, which is not possible if redo log pages are encrypted. Without the keyring component or plugin or the encryption key, only a forced startup without the redo logs ( <code class="literal"> SRV_FORCE_NO_LOG_REDO </code> ) is possible. See <a class="xref" href="forcing-innodb-recovery.html" title="17.20.3 Forcing InnoDB Recovery"> Section 17.20.3, “Forcing InnoDB Recovery” </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-undo-log"> </a> Undo Log Encryption </h3> </div> </div> </div> <p> Undo log data encryption is enabled using the <a class="link" href="innodb-parameters.html#sysvar_innodb_undo_log_encrypt"> <code class="literal"> innodb_undo_log_encrypt </code> </a> configuration option. Undo log encryption applies to undo logs that reside in <a class="link" href="glossary.html#glos_undo_tablespace" title="undo tablespace"> undo tablespaces </a> . See <a class="xref" href="innodb-undo-tablespaces.html" title="17.6.3.4 Undo Tablespaces"> Section 17.6.3.4, “Undo Tablespaces” </a> . Undo log data encryption is disabled by default. </p> <p> As with tablespace data, undo log data encryption occurs when undo log data is written to disk, and decryption occurs when undo log data is read from disk. Once undo log data is read into memory, it is in unencrypted form. Undo log data is encrypted and decrypted using the tablespace encryption key. </p> <p> When <a class="link" href="innodb-parameters.html#sysvar_innodb_undo_log_encrypt"> <code class="literal"> innodb_undo_log_encrypt </code> </a> is enabled, unencrypted undo log pages that are present on disk remain unencrypted, and new undo log pages are written to disk in encrypted form. Likewise, when <a class="link" href="innodb-parameters.html#sysvar_innodb_undo_log_encrypt"> <code class="literal"> innodb_undo_log_encrypt </code> </a> is disabled, encrypted undo log pages that are present on disk remain encrypted, and new undo log pages are written to disk in unencrypted form. </p> <p> Undo log encryption metadata, including the tablespace encryption key, is stored in the header of the undo log file. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> When undo log encryption is disabled, the server continues to require the keyring component or plugin that was used to encrypt undo log data until the undo tablespaces that contained the encrypted undo log data are truncated. (An encryption header is only removed from an undo tablespace when the undo tablespace is truncated.) For information about truncating undo tablespaces, see <a class="xref" href="innodb-undo-tablespaces.html#truncate-undo-tablespace" title="Truncating Undo Tablespaces"> Truncating Undo Tablespaces </a> . </p> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-master-key-rotation"> </a> Master Key Rotation </h3> </div> </div> </div> <p> The master encryption key should be rotated periodically and whenever you suspect that the key has been compromised. </p> <p> Master key rotation is an atomic, instance-level operation. Each time the master encryption key is rotated, all tablespace keys in the MySQL instance are re-encrypted and saved back to their respective tablespace headers. As an atomic operation, re-encryption must succeed for all tablespace keys once a rotation operation is initiated. If master key rotation is interrupted by a server failure, <code class="literal"> InnoDB </code> rolls the operation forward on server restart. For more information, see <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-recovery" title="Encryption and Recovery"> Encryption and Recovery </a> . </p> <p> Rotating the master encryption key only changes the master encryption key and re-encrypts tablespace keys. It does not decrypt or re-encrypt associated tablespace data. </p> <p> Rotating the master encryption key requires the <a class="link" href="privileges-provided.html#priv_encryption-key-admin"> <code class="literal"> ENCRYPTION_KEY_ADMIN </code> </a> privilege (or the deprecated <a class="link" href="privileges-provided.html#priv_super"> <code class="literal"> SUPER </code> </a> privilege). </p> <p> To rotate the master encryption key, run: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa99196688"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">INSTANCE</span> <span class="token keyword">ROTATE</span> INNODB <span class="token keyword">MASTER</span> <span class="token keyword">KEY</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> supports concurrent DML. However, it cannot be run concurrently with tablespace encryption operations, and locks are taken to prevent conflicts that could arise from concurrent execution. If an <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> operation is running, it must finish before a tablespace encryption operation can proceed, and vice versa. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-recovery"> </a> Encryption and Recovery </h3> </div> </div> </div> <p> If a server failure occurs during an encryption operation, the operation is rolled forward when the server is restarted. For general tablespaces, the encryption operation is resumed in a background thread from the last processed page. </p> <p> If a server failure occurs during master key rotation, <code class="literal"> InnoDB </code> continues the operation on server restart. </p> <p> The keyring component or plugin must be loaded prior to storage engine initialization so that the information necessary to decrypt tablespace data pages can be retrieved from tablespace headers before <code class="literal"> InnoDB </code> initialization and recovery activities access tablespace data. (See <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-encryption-prerequisites" title="Encryption Prerequisites"> Encryption Prerequisites </a> .) </p> <p> When <code class="literal"> InnoDB </code> initialization and recovery begin, the master key rotation operation resumes. Due to the server failure, some tablespace keys may already be encrypted using the new master encryption key. <code class="literal"> InnoDB </code> reads the encryption data from each tablespace header, and if the data indicates that the tablespace key is encrypted using the old master encryption key, <code class="literal"> InnoDB </code> retrieves the old key from the keyring and uses it to decrypt the tablespace key. <code class="literal"> InnoDB </code> then re-encrypts the tablespace key using the new master encryption key and saves the re-encrypted tablespace key back to the tablespace header. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-exporting"> </a> Exporting Encrypted Tablespaces </h3> </div> </div> </div> <p> Tablespace export is only supported for file-per-table tablespaces. </p> <p> When an encrypted tablespace is exported, <code class="literal"> InnoDB </code> generates a <span class="emphasis"> <em> transfer key </em> </span> that is used to encrypt the tablespace key. The encrypted tablespace key and transfer key are stored in a <code class="filename"> <em class="replaceable"> <code> tablespace_name </code> </em> .cfp </code> file. This file together with the encrypted tablespace file is required to perform an import operation. On import, <code class="literal"> InnoDB </code> uses the transfer key to decrypt the tablespace key in the <code class="filename"> <em class="replaceable"> <code> tablespace_name </code> </em> .cfp </code> file. For related information, see <a class="xref" href="innodb-table-import.html" title="17.6.1.3 Importing InnoDB Tables"> Section 17.6.1.3, “Importing InnoDB Tables” </a> . </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-replication"> </a> Encryption and Replication </h3> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> statement is only supported in replication environments where the source and replica run a version of MySQL that supports tablespace encryption. </p> </li> <li class="listitem"> <p> Successful <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> statements are written to the binary log for replication on replicas. </p> </li> <li class="listitem"> <p> If an <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> statement fails, it is not logged to the binary log and is not replicated on replicas. </p> </li> <li class="listitem"> <p> Replication of an <a class="link" href="alter-instance.html#alter-instance-rotate-innodb-master-key"> <code class="literal"> ALTER INSTANCE ROTATE INNODB MASTER KEY </code> </a> operation fails if the keyring component or plugin is installed on the source but not on the replica. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-identifying"> </a> Identifying Encrypted Tablespaces and Schemas </h3> </div> </div> </div> <p> The Information Schema <a class="link" href="information-schema-innodb-tablespaces-table.html" title="28.4.24 The INFORMATION_SCHEMA INNODB_TABLESPACES Table"> <code class="literal"> INNODB_TABLESPACES </code> </a> table includes an <code class="literal"> ENCRYPTION </code> column that can be used to identify encrypted tablespaces. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa97616289"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> SPACE<span class="token punctuation">,</span> <span class="token keyword">NAME</span><span class="token punctuation">,</span> SPACE_TYPE<span class="token punctuation">,</span> <span class="token keyword">ENCRYPTION</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>INNODB_TABLESPACES <span class="token keyword">WHERE</span> <span class="token keyword">ENCRYPTION</span><span class="token operator">=</span><span class="token string">'Y'</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> SPACE<span class="token punctuation">:</span> 4294967294 NAME<span class="token punctuation">:</span> mysql SPACE_TYPE<span class="token punctuation">:</span> General ENCRYPTION<span class="token punctuation">:</span> Y <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 2. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> SPACE<span class="token punctuation">:</span> 2 NAME<span class="token punctuation">:</span> test/t1 SPACE_TYPE<span class="token punctuation">:</span> Single ENCRYPTION<span class="token punctuation">:</span> Y <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 3. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> SPACE<span class="token punctuation">:</span> 3 NAME<span class="token punctuation">:</span> ts1 SPACE_TYPE<span class="token punctuation">:</span> General ENCRYPTION<span class="token punctuation">:</span> Y</span></code></pre> </div> <p> When the <code class="literal"> ENCRYPTION </code> option is specified in a <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement, it is recorded in the <code class="literal"> CREATE_OPTIONS </code> column of <a class="link" href="information-schema-tables-table.html" title="28.3.38 The INFORMATION_SCHEMA TABLES Table"> <code class="literal"> INFORMATION_SCHEMA.TABLES </code> </a> . This column can be queried to identify tables that reside in encrypted file-per-table tablespaces. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa17443659"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> TABLE_SCHEMA<span class="token punctuation">,</span> <span class="token keyword">TABLE_NAME</span><span class="token punctuation">,</span> CREATE_OPTIONS <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span><span class="token keyword">TABLES</span> <span class="token keyword">WHERE</span> CREATE_OPTIONS <span class="token operator">LIKE</span> <span class="token string">'%ENCRYPTION%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> TABLE_SCHEMA <span class="token punctuation">|</span> TABLE_NAME <span class="token punctuation">|</span> CREATE_OPTIONS <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> test <span class="token punctuation">|</span> t1 <span class="token punctuation">|</span> ENCRYPTION="Y" <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Query the Information Schema <a class="link" href="information-schema-innodb-tablespaces-table.html" title="28.4.24 The INFORMATION_SCHEMA INNODB_TABLESPACES Table"> <code class="literal"> INNODB_TABLESPACES </code> </a> table to retrieve information about the tablespace associated with a particular schema and table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25065716"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> SPACE<span class="token punctuation">,</span> <span class="token keyword">NAME</span><span class="token punctuation">,</span> SPACE_TYPE <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>INNODB_TABLESPACES <span class="token keyword">WHERE</span> <span class="token keyword">NAME</span><span class="token operator">=</span><span class="token string">'test/t1'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> SPACE <span class="token punctuation">|</span> NAME <span class="token punctuation">|</span> SPACE_TYPE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> test/t1 <span class="token punctuation">|</span> Single <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> You can identify encryption-enabled schemas by querying the Information Schema <a class="link" href="information-schema-schemata-table.html" title="28.3.31 The INFORMATION_SCHEMA SCHEMATA Table"> <code class="literal"> SCHEMATA </code> </a> table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa69909464"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">SCHEMA_NAME</span><span class="token punctuation">,</span> DEFAULT_ENCRYPTION <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>SCHEMATA <span class="token keyword">WHERE</span> DEFAULT_ENCRYPTION<span class="token operator">=</span><span class="token string">'YES'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> SCHEMA_NAME <span class="token punctuation">|</span> DEFAULT_ENCRYPTION <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> test <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> <a class="link" href="show-create-database.html" title="15.7.7.7 SHOW CREATE DATABASE Statement"> <code class="literal"> SHOW CREATE SCHEMA </code> </a> also shows the <code class="literal"> DEFAULT ENCRYPTION </code> clause. </p> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-progress-monitoring"> </a> Monitoring Encryption Progress </h3> </div> </div> </div> <a class="indexterm" name="idm46045159187872"> </a> <a class="indexterm" name="idm46045159186384"> </a> <p> You can monitor general tablespace and <code class="literal"> mysql </code> system tablespace encryption progress using <a class="link" href="performance-schema.html" title="Chapter 29 MySQL Performance Schema"> Performance Schema </a> . </p> <p> The <code class="literal"> stage/innodb/alter tablespace (encryption) </code> stage event instrument reports <code class="literal"> WORK_ESTIMATED </code> and <code class="literal"> WORK_COMPLETED </code> information for general tablespace encryption operations. </p> <p> The following example demonstrates how to enable the <code class="literal"> stage/innodb/alter tablespace (encryption) </code> stage event instrument and related consumer tables to monitor general tablespace or <code class="literal"> mysql </code> system tablespace encryption progress. For information about Performance Schema stage event instruments and related consumers, see <a class="xref" href="performance-schema-stage-tables.html" title="29.12.5 Performance Schema Stage Event Tables"> Section 29.12.5, “Performance Schema Stage Event Tables” </a> . </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Enable the <code class="literal"> stage/innodb/alter tablespace (encryption) </code> instrument: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa21068893"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">USE</span> performance_schema<span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">UPDATE</span> setup_instruments <span class="token keyword">SET</span> ENABLED <span class="token operator">=</span> <span class="token string">'YES'</span> <span class="token keyword">WHERE</span> <span class="token keyword">NAME</span> <span class="token operator">LIKE</span> <span class="token string">'stage/innodb/alter tablespace (encryption)'</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Enable the stage event consumer tables, which include <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> , <a class="link" href="performance-schema-events-stages-history-table.html" title="29.12.5.2 The events_stages_history Table"> <code class="literal"> events_stages_history </code> </a> , and <a class="link" href="performance-schema-events-stages-history-long-table.html" title="29.12.5.3 The events_stages_history_long Table"> <code class="literal"> events_stages_history_long </code> </a> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa10948058"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">UPDATE</span> setup_consumers <span class="token keyword">SET</span> ENABLED <span class="token operator">=</span> <span class="token string">'YES'</span> <span class="token keyword">WHERE</span> <span class="token keyword">NAME</span> <span class="token operator">LIKE</span> <span class="token string">'%stages%'</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Run a tablespace encryption operation. In this example, a general tablespace named <code class="literal"> ts1 </code> is encrypted. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa68417008"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLESPACE</span> ts1 <span class="token keyword">ENCRYPTION</span> <span class="token operator">=</span> <span class="token string">'Y'</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Check the progress of the encryption operation by querying the Performance Schema <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table. <code class="literal"> WORK_ESTIMATED </code> reports the total number of pages in the tablespace. <code class="literal"> WORK_COMPLETED </code> reports the number of pages processed. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa96885494"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> EVENT_NAME<span class="token punctuation">,</span> WORK_ESTIMATED<span class="token punctuation">,</span> WORK_COMPLETED <span class="token keyword">FROM</span> events_stages_current<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> EVENT_NAME <span class="token punctuation">|</span> WORK_COMPLETED <span class="token punctuation">|</span> WORK_ESTIMATED <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> stage/innodb/alter tablespace (encryption) <span class="token punctuation">|</span> 1056 <span class="token punctuation">|</span> 1407 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> The <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table returns an empty set if the encryption operation has completed. In this case, you can check the <a class="link" href="performance-schema-events-stages-history-table.html" title="29.12.5.2 The events_stages_history Table"> <code class="literal"> events_stages_history </code> </a> table to view event data for the completed operation. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa89846846"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> EVENT_NAME<span class="token punctuation">,</span> WORK_COMPLETED<span class="token punctuation">,</span> WORK_ESTIMATED <span class="token keyword">FROM</span> events_stages_history<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> EVENT_NAME <span class="token punctuation">|</span> WORK_COMPLETED <span class="token punctuation">|</span> WORK_ESTIMATED <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> stage/innodb/alter tablespace (encryption) <span class="token punctuation">|</span> 1407 <span class="token punctuation">|</span> 1407 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> </ol> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-usage-notes"> </a> Encryption Usage Notes </h3> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Plan appropriately when altering an existing file-per-table tablespace with the <code class="literal"> ENCRYPTION </code> option. Tables residing in file-per-table tablespaces are rebuilt using the <code class="literal"> COPY </code> algorithm. The <code class="literal"> INPLACE </code> algorithm is used when altering the <code class="literal"> ENCRYPTION </code> attribute of a general tablespace or the <code class="literal"> mysql </code> system tablespace. The <code class="literal"> INPLACE </code> algorithm permits concurrent DML on tables that reside in the general tablespace. Concurrent DDL is blocked. </p> </li> <li class="listitem"> <p> When a general tablespace or the <code class="literal"> mysql </code> system tablespace is encrypted, all tables residing in the tablespace are encrypted. Likewise, a table created in an encrypted tablespace is encrypted. </p> </li> <li class="listitem"> <p> If the server exits or is stopped during normal operation, it is recommended to restart the server using the same encryption settings that were configured previously. </p> </li> <li class="listitem"> <p> The first master encryption key is generated when the first new or existing tablespace is encrypted. </p> </li> <li class="listitem"> <p> Master key rotation re-encrypts tablespaces keys but does not change the tablespace key itself. To change a tablespace key, you must disable and re-enable encryption. For file-per-table tablespaces, re-encrypting the tablespace is an <code class="literal"> ALGORITHM=COPY </code> operation that rebuilds the table. For general tablespaces and the <code class="literal"> mysql </code> system tablespace, it is an <code class="literal"> ALGORITHM=INPLACE </code> operation, which does not require rebuilding tables that reside in the tablespace. </p> </li> <li class="listitem"> <p> If a table is created with both the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> COMPRESSION </code> </a> and <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> ENCRYPTION </code> </a> options, compression is performed before tablespace data is encrypted. </p> </li> <li class="listitem"> <p> Uninstalling the <code class="literal"> component_keyring_file </code> or <code class="literal"> component_keyring_encrypted_file </code> component does not remove an existing keyring data file. </p> </li> <li class="listitem"> <p> It is recommended that you not place a keyring data file under the same directory as tablespace data files. </p> </li> <li class="listitem"> <p> Encryption is supported for the <code class="literal"> InnoDB </code> <code class="literal"> FULLTEXT </code> index tables that are created implicitly when adding a <code class="literal"> FULLTEXT </code> index. For related information, see <a class="xref" href="innodb-fulltext-index.html#innodb-fulltext-index-tables" title="InnoDB Full-Text Index Tables"> InnoDB Full-Text Index Tables </a> . </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h3 class="title"> <a name="innodb-data-encryption-limitations"> </a> Encryption Limitations </h3> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Advanced Encryption Standard (AES) is the only supported encryption algorithm. <code class="literal"> InnoDB </code> tablespace encryption uses Electronic Codebook (ECB) block encryption mode for tablespace key encryption and Cipher Block Chaining (CBC) block encryption mode for data encryption. Padding is not used with CBC block encryption mode. Instead, <code class="literal"> InnoDB </code> ensures that the text to be encrypted is a multiple of the block size. </p> </li> <li class="listitem"> <p> Encryption is supported only for <a class="link" href="glossary.html#glos_file_per_table" title="file-per-table"> file-per-table </a> tablespaces, <a class="link" href="glossary.html#glos_general_tablespace" title="general tablespace"> general </a> tablespaces, and the <code class="literal"> mysql </code> system tablespace. Encryption is not supported for other tablespace types including the <code class="literal"> InnoDB </code> <a class="link" href="glossary.html#glos_system_tablespace" title="system tablespace"> system tablespace </a> . </p> </li> <li class="listitem"> <p> You cannot move or copy a table from an encrypted <a class="link" href="glossary.html#glos_file_per_table" title="file-per-table"> file-per-table </a> tablespace, <a class="link" href="glossary.html#glos_general_tablespace" title="general tablespace"> general </a> tablespace, or the <code class="literal"> mysql </code> system tablespace to a tablespace type that does not support encryption. </p> </li> <li class="listitem"> <p> You cannot move or copy a table from an encrypted tablespace to an unencrypted tablespace. However, moving a table from an unencrypted tablespace to an encrypted one is permitted. For example, you can move or copy a table from a unencrypted <a class="link" href="glossary.html#glos_file_per_table" title="file-per-table"> file-per-table </a> or <a class="link" href="glossary.html#glos_general_tablespace" title="general tablespace"> general </a> tablespace to an encrypted general tablespace. </p> </li> <li class="listitem"> <p> By default, tablespace encryption only applies to data in the tablespace. Redo log and undo log data can be encrypted by enabling <a class="link" href="innodb-parameters.html#sysvar_innodb_redo_log_encrypt"> <code class="literal"> innodb_redo_log_encrypt </code> </a> and <a class="link" href="innodb-parameters.html#sysvar_innodb_undo_log_encrypt"> <code class="literal"> innodb_undo_log_encrypt </code> </a> . See <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-redo-log" title="Redo Log Encryption"> Redo Log Encryption </a> , and <a class="xref" href="innodb-data-encryption.html#innodb-data-encryption-undo-log" title="Undo Log Encryption"> Undo Log Encryption </a> . For information about binary log file and relay log file encryption, see <a class="xref" href="replication-binlog-encryption.html" title="19.3.2 Encrypting Binary Log Files and Relay Log Files"> Section 19.3.2, “Encrypting Binary Log Files and Relay Log Files” </a> . </p> </li> <li class="listitem"> <p> It is not permitted to change the storage engine of a table that resides in, or previously resided in, an encrypted tablespace. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/sys-ps-setup-enable-instrument.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="sys-ps-setup-enable-instrument"> </a> 30.4.4.10 The ps_setup_enable_instrument() Procedure </h4> </div> </div> </div> <a class="indexterm" name="idm46045061463472"> </a> <a class="indexterm" name="idm46045061462016"> </a> <p> Enables Performance Schema instruments with names that contain the argument. Produces a result set indicating how many instruments were enabled. Already enabled instruments do not count. </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="sys-ps-setup-enable-instrument-parameters"> </a> Parameters </h5> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> in_pattern VARCHAR(128) </code> : The value used to match instrument names, which are identified by using <code class="literal"> %in_pattern% </code> as an operand for a <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> pattern match. </p> <p> A value of <code class="literal"> '' </code> matches all instruments. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="sys-ps-setup-enable-instrument-example"> </a> Example </h5> </div> </div> </div> <p> Enable a specific instrument: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa74345497"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CALL</span> sys<span class="token punctuation">.</span>ps_setup_enable_instrument<span class="token punctuation">(</span><span class="token string">'wait/lock/metadata/sql/mdl'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> summary <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Enabled 1 instrument <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Enable all mutex instruments: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa8956220"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CALL</span> sys<span class="token punctuation">.</span>ps_setup_enable_instrument<span class="token punctuation">(</span><span class="token string">'mutex'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> summary <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Enabled 177 instruments <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/problems-with-alias.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="problems-with-alias"> </a> B.3.4.4 Problems with Column Aliases </h4> </div> </div> </div> <a class="indexterm" name="idm46045053532384"> </a> <a class="indexterm" name="idm46045053530928"> </a> <a class="indexterm" name="idm46045053529440"> </a> <p> An alias can be used in a query select list to give a column a different name. You can use the alias in <code class="literal"> GROUP BY </code> , <code class="literal"> ORDER BY </code> , or <code class="literal"> HAVING </code> clauses to refer to the column: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa83016483"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token function">SQRT</span><span class="token punctuation">(</span>a<span class="token operator">*</span>b<span class="token punctuation">)</span> <span class="token keyword">AS</span> root <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> root <span class="token keyword">HAVING</span> root <span class="token operator">&gt;</span> <span class="token number">0</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> id<span class="token punctuation">,</span> <span class="token function">COUNT</span><span class="token punctuation">(</span><span class="token operator">*</span><span class="token punctuation">)</span> <span class="token keyword">AS</span> cnt <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> id <span class="token keyword">HAVING</span> cnt <span class="token operator">&gt;</span> <span class="token number">0</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> id <span class="token keyword">AS</span> <span class="token string">'Customer identity'</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em><span class="token punctuation">;</span></code></pre> </div> <p> Standard SQL disallows references to column aliases in a <code class="literal"> WHERE </code> clause. This restriction is imposed because when the <code class="literal"> WHERE </code> clause is evaluated, the column value may not yet have been determined. For example, the following query is illegal: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa72728627"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> id<span class="token punctuation">,</span> <span class="token function">COUNT</span><span class="token punctuation">(</span><span class="token operator">*</span><span class="token punctuation">)</span> <span class="token keyword">AS</span> cnt <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> cnt <span class="token operator">&gt;</span> <span class="token number">0</span> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> id<span class="token punctuation">;</span></code></pre> </div> <p> The <code class="literal"> WHERE </code> clause determines which rows should be included in the <code class="literal"> GROUP BY </code> clause, but it refers to the alias of a column value that is not known until after the rows have been selected, and grouped by the <code class="literal"> GROUP BY </code> . </p> <p> In the select list of a query, a quoted column alias can be specified using identifier or string quoting characters: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa39201726"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token number">1</span> <span class="token keyword">AS</span> <span class="token punctuation">`</span><span class="token keyword">one</span><span class="token punctuation">`</span><span class="token punctuation">,</span> <span class="token number">2</span> <span class="token keyword">AS</span> <span class="token string">'two'</span><span class="token punctuation">;</span></code></pre> </div> <p> Elsewhere in the statement, quoted references to the alias must use identifier quoting or the reference is treated as a string literal. For example, this statement groups by the values in column <code class="literal"> id </code> , referenced using the alias <code class="literal"> `a` </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa51225262"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> id <span class="token keyword">AS</span> <span class="token string">'a'</span><span class="token punctuation">,</span> <span class="token function">COUNT</span><span class="token punctuation">(</span><span class="token operator">*</span><span class="token punctuation">)</span> <span class="token keyword">AS</span> cnt <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> <span class="token punctuation">`</span>a<span class="token punctuation">`</span><span class="token punctuation">;</span></code></pre> </div> <p> This statement groups by the literal string <code class="literal"> 'a' </code> and does not work as you may expect: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa92191554"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> id <span class="token keyword">AS</span> <span class="token string">'a'</span><span class="token punctuation">,</span> <span class="token function">COUNT</span><span class="token punctuation">(</span><span class="token operator">*</span><span class="token punctuation">)</span> <span class="token keyword">AS</span> cnt <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> <span class="token string">'a'</span><span class="token punctuation">;</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/account-names.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="account-names"> </a> 8.2.4 Specifying Account Names </h3> </div> </div> </div> <a class="indexterm" name="idm46045250009920"> </a> <a class="indexterm" name="idm46045250008880"> </a> <a class="indexterm" name="idm46045250007392"> </a> <a class="indexterm" name="idm46045250005904"> </a> <a class="indexterm" name="idm46045250004416"> </a> <a class="indexterm" name="idm46045250002928"> </a> <a class="indexterm" name="idm46045250001424"> </a> <a class="indexterm" name="idm46045249999920"> </a> <p> MySQL account names consist of a user name and a host name, which enables creation of distinct accounts for users with the same user name who connect from different hosts. This section describes the syntax for account names, including special values and wildcard rules. </p> <p> In most respects, account names are similar to MySQL role names, with some differences described at <a class="xref" href="role-names.html" title="8.2.5 Specifying Role Names"> Section 8.2.5, “Specifying Role Names” </a> . </p> <p> Account names appear in SQL statements such as <a class="link" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> <code class="literal"> CREATE USER </code> </a> , <a class="link" href="grant.html" title="15.7.1.6 GRANT Statement"> <code class="literal"> GRANT </code> </a> , and <a class="link" href="set-password.html" title="15.7.1.10 SET PASSWORD Statement"> <code class="literal"> SET PASSWORD </code> </a> and follow these rules: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Account name syntax is <code class="literal"> ' <em class="replaceable"> <code> user_name </code> </em> '@' <em class="replaceable"> <code> host_name </code> </em> ' </code> . </p> </li> <li class="listitem"> <p> The <code class="literal"> @' <em class="replaceable"> <code> host_name </code> </em> ' </code> part is optional. An account name consisting only of a user name is equivalent to <code class="literal"> ' <em class="replaceable"> <code> user_name </code> </em> '@'%' </code> . For example, <code class="literal"> 'me' </code> is equivalent to <code class="literal"> 'me'@'%' </code> . </p> </li> <li class="listitem"> <p> The user name and host name need not be quoted if they are legal as unquoted identifiers. Quotes must be used if a <em class="replaceable"> <code> user_name </code> </em> string contains special characters (such as space or <code class="literal"> - </code> ), or a <em class="replaceable"> <code> host_name </code> </em> string contains special characters or wildcard characters (such as <code class="literal"> . </code> or <code class="literal"> % </code> ). For example, in the account name <code class="literal"> 'test-user'@'%.com' </code> , both the user name and host name parts require quotes. </p> </li> <li class="listitem"> <p> Quote user names and host names as identifiers or as strings, using either backticks ( <code class="literal"> ` </code> ), single quotation marks ( <code class="literal"> ' </code> ), or double quotation marks ( <code class="literal"> " </code> ). For string-quoting and identifier-quoting guidelines, see <a class="xref" href="string-literals.html" title="11.1.1 String Literals"> Section 11.1.1, “String Literals” </a> , and <a class="xref" href="identifiers.html" title="11.2 Schema Object Names"> Section 11.2, “Schema Object Names” </a> . In <a class="link" href="show.html" title="15.7.7 SHOW Statements"> <code class="literal"> SHOW </code> </a> statement results, user names and host names are quoted using backticks ( <code class="literal"> ` </code> ). </p> </li> <li class="listitem"> <p> The user name and host name parts, if quoted, must be quoted separately. That is, write <code class="literal"> 'me'@'localhost' </code> , not <code class="literal"> 'me@localhost' </code> . (The latter is actually equivalent to <code class="literal"> 'me@localhost'@'%' </code> , although this behavior is now deprecated.) </p> </li> <li class="listitem"> <p> A reference to the <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER </code> </a> or <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> function is equivalent to specifying the current client's user name and host name literally. </p> </li> </ul> </div> <p> MySQL stores account names in grant tables in the <code class="literal"> mysql </code> system database using separate columns for the user name and host name parts: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <code class="literal"> user </code> table contains one row for each account. The <code class="literal"> User </code> and <code class="literal"> Host </code> columns store the user name and host name. This table also indicates which global privileges the account has. </p> </li> <li class="listitem"> <p> Other grant tables indicate privileges an account has for databases and objects within databases. These tables have <code class="literal"> User </code> and <code class="literal"> Host </code> columns to store the account name. Each row in these tables associates with the account in the <code class="literal"> user </code> table that has the same <code class="literal"> User </code> and <code class="literal"> Host </code> values. </p> </li> <li class="listitem"> <p> For access-checking purposes, comparisons of User values are case-sensitive. Comparisons of Host values are not case-sensitive. </p> <a class="indexterm" name="idm46045249957072"> </a> <a class="indexterm" name="idm46045249955584"> </a> </li> </ul> </div> <p> For additional detail about the properties of user names and host names as stored in the grant tables, such as maximum length, see <a class="xref" href="grant-tables.html#grant-tables-scope-column-properties" title="Grant Table Scope Column Properties"> Grant Table Scope Column Properties </a> . </p> <p> User names and host names have certain special values or wildcard conventions, as described following. </p> <p> The user name part of an account name is either a nonblank value that literally matches the user name for incoming connection attempts, or a blank value (the empty string) that matches any user name. An account with a blank user name is an anonymous user. To specify an anonymous user in SQL statements, use a quoted empty user name part, such as <code class="literal"> ''@'localhost' </code> . </p> <p> The host name part of an account name can take many forms, and wildcards are permitted: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> A host value can be a host name or an IP address (IPv4 or IPv6). The name <code class="literal"> 'localhost' </code> indicates the local host. The IP address <code class="literal"> '127.0.0.1' </code> indicates the IPv4 loopback interface. The IP address <code class="literal"> '::1' </code> indicates the IPv6 loopback interface. </p> </li> <li class="listitem"> <p> Use of the <code class="literal"> % </code> and <code class="literal"> _ </code> wildcard characters is permitted in host name or IP address values, but is deprecated and thus subject to removal in a future version of MySQL. These characters have the same meaning as for pattern-matching operations performed with the <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> operator. For example, a host value of <code class="literal"> '%' </code> matches any host name, whereas a value of <code class="literal"> '%.mysql.com' </code> matches any host in the <code class="literal"> mysql.com </code> domain. <code class="literal"> '198.51.100.%' </code> matches any host in the 198.51.100 class C network. </p> <a class="indexterm" name="idm46045249940032"> </a> <a class="indexterm" name="idm46045249938528"> </a> <p> Because IP wildcard values are permitted in host values (for example, <code class="literal"> '198.51.100.%' </code> to match every host on a subnet), someone could try to exploit this capability by naming a host <code class="literal"> 198.51.100.somewhere.com </code> . To foil such attempts, MySQL does not perform matching on host names that start with digits and a dot. For example, if a host is named <code class="literal"> 1.2.example.com </code> , its name never matches the host part of account names. An IP wildcard value can match only IP addresses, not host names. </p> <p> If <a class="link" href="server-system-variables.html#sysvar_partial_revokes"> <code class="literal"> partial_revokes </code> </a> is <code class="literal"> ON </code> , MySQL treats <code class="literal"> % </code> and <code class="literal"> _ </code> in grants as literal characters, and not as wildcards. Use of these wildcards is deprecated (regardless of this variable's value); you should expect this functionality to be removed in a future version of MySQL. </p> </li> <li class="listitem"> <p> For a host value specified as an IPv4 address, a netmask can be given to indicate how many address bits to use for the network number. Netmask notation cannot be used for IPv6 addresses. </p> <a class="indexterm" name="idm46045249929008"> </a> <p> The syntax is <code class="literal"> <em class="replaceable"> <code> host_ip </code> </em> / <em class="replaceable"> <code> netmask </code> </em> </code> . For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa57912228"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">USER</span> <span class="token string">'david'</span>@<span class="token string">'198.51.100.0/255.255.255.0'</span><span class="token punctuation">;</span></code></pre> </div> <p> This enables <code class="literal"> david </code> to connect from any client host having an IP address <em class="replaceable"> <code> client_ip </code> </em> for which the following condition is true: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-clike"><div class="docs-select-all right" id="sa44927553"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-clike"><em class="replaceable">client_ip</em> <span class="token operator">&amp;</span> <em class="replaceable">netmask</em> <span class="token operator">=</span> <em class="replaceable">host_ip</em></code></pre> </div> <p> That is, for the <a class="link" href="create-user.html" title="15.7.1.3 CREATE USER Statement"> <code class="literal"> CREATE USER </code> </a> statement just shown: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-clike"><div class="docs-select-all right" id="sa98418667"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-clike"><em class="replaceable">client_ip</em> <span class="token operator">&amp;</span> <span class="token number">255.255</span><span class="token punctuation">.</span><span class="token number">255.0</span> <span class="token operator">=</span> <span class="token number">198.51</span><span class="token punctuation">.</span><span class="token number">100.0</span></code></pre> </div> <p> IP addresses that satisfy this condition range from <code class="literal"> 198.51.100.0 </code> to <code class="literal"> 198.51.100.255 </code> . </p> <p> A netmask typically begins with bits set to 1, followed by bits set to 0. Examples: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <code class="literal"> 198.0.0.0/255.0.0.0 </code> : Any host on the 198 class A network </p> </li> <li class="listitem"> <p> <code class="literal"> 198.51.0.0/255.255.0.0 </code> : Any host on the 198.51 class B network </p> </li> <li class="listitem"> <p> <code class="literal"> 198.51.100.0/255.255.255.0 </code> : Any host on the 198.51.100 class C network </p> </li> <li class="listitem"> <p> <code class="literal"> 198.51.100.1 </code> : Only the host with this specific IP address </p> </li> </ul> </div> </li> <li class="listitem"> <p> A host value specified as an IPv4 address can be written using CIDR notation, such as <code class="literal"> 198.51.100.44/24 </code> . </p> <a class="indexterm" name="idm46045249907456"> </a> </li> </ul> </div> <p> The server performs matching of host values in account names against the client host using the value returned by the system DNS resolver for the client host name or IP address. Except in the case that the account host value is specified using netmask notation, the server performs this comparison as a string match, even for an account host value given as an IP address. This means that you should specify account host values in the same format used by DNS. Here are examples of problems to watch out for: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Suppose that a host on the local network has a fully qualified name of <code class="literal"> host1.example.com </code> . If DNS returns name lookups for this host as <code class="literal"> host1.example.com </code> , use that name in account host values. If DNS returns just <code class="literal"> host1 </code> , use <code class="literal"> host1 </code> instead. </p> </li> <li class="listitem"> <p> If DNS returns the IP address for a given host as <code class="literal"> 198.51.100.2 </code> , that matches an account host value of <code class="literal"> 198.51.100.2 </code> but not <code class="literal"> 198.051.100.2 </code> . Similarly, it matches an account host pattern like <code class="literal"> 198.51.100.% </code> but not <code class="literal"> 198.051.100.% </code> . </p> </li> </ul> </div> <p> To avoid problems like these, it is advisable to check the format in which your DNS returns host names and addresses. Use values in the same format in MySQL account names. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/innodb-performance-thread_concurrency.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="innodb-performance-thread_concurrency"> </a> 17.8.4 Configuring Thread Concurrency for InnoDB </h3> </div> </div> </div> <a class="indexterm" name="idm46045162782032"> </a> <a class="indexterm" name="idm46045162780992"> </a> <a class="indexterm" name="idm46045162779904"> </a> <a class="indexterm" name="idm46045162778816"> </a> <p> <code class="literal"> InnoDB </code> uses operating system <a class="link" href="glossary.html#glos_thread" title="thread"> threads </a> to process requests from user transactions. (Transactions may issue many requests to <code class="literal"> InnoDB </code> before they commit or roll back.) On modern operating systems and servers with multi-core processors, where context switching is efficient, most workloads run well without any limit on the number of concurrent threads. </p> <p> In situations where it is helpful to minimize context switching between threads, <code class="literal"> InnoDB </code> can use a number of techniques to limit the number of concurrently executing operating system threads (and thus the number of requests that are processed at any one time). When <code class="literal"> InnoDB </code> receives a new request from a user session, if the number of threads concurrently executing is at a pre-defined limit, the new request sleeps for a short time before it tries again. Threads waiting for locks are not counted in the number of concurrently executing threads. </p> <p> You can limit the number of concurrent threads by setting the configuration parameter <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> . Once the number of executing threads reaches this limit, additional threads sleep for a number of microseconds, set by the configuration parameter <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_sleep_delay"> <code class="literal"> innodb_thread_sleep_delay </code> </a> , before being placed into the queue. </p> <p> You can set the configuration option <a class="link" href="innodb-parameters.html#sysvar_innodb_adaptive_max_sleep_delay"> <code class="literal"> innodb_adaptive_max_sleep_delay </code> </a> to the highest value you would allow for <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_sleep_delay"> <code class="literal"> innodb_thread_sleep_delay </code> </a> , and <code class="literal"> InnoDB </code> automatically adjusts <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_sleep_delay"> <code class="literal"> innodb_thread_sleep_delay </code> </a> up or down depending on the current thread-scheduling activity. This dynamic adjustment helps the thread scheduling mechanism to work smoothly during times when the system is lightly loaded and when it is operating near full capacity. </p> <p> The default value for <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> and the implied default limit on the number of concurrent threads has been changed in various releases of MySQL and <code class="literal"> InnoDB </code> . The default value of <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> is <code class="literal"> 0 </code> , so that by default there is no limit on the number of concurrently executing threads. </p> <p> <code class="literal"> InnoDB </code> causes threads to sleep only when the number of concurrent threads is limited. When there is no limit on the number of threads, all contend equally to be scheduled. That is, if <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> is <code class="literal"> 0 </code> , the value of <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_sleep_delay"> <code class="literal"> innodb_thread_sleep_delay </code> </a> is ignored. </p> <p> When there is a limit on the number of threads (when <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> is &gt; 0), <code class="literal"> InnoDB </code> reduces context switching overhead by permitting multiple requests made during the execution of a <span class="emphasis"> <em> single SQL statement </em> </span> to enter <code class="literal"> InnoDB </code> without observing the limit set by <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> . Since an SQL statement (such as a join) may comprise multiple row operations within <code class="literal"> InnoDB </code> , <code class="literal"> InnoDB </code> assigns a specified number of <span class="quote"> “ <span class="quote"> tickets </span> ” </span> that allow a thread to be scheduled repeatedly with minimal overhead. </p> <p> When a new SQL statement starts, a thread has no tickets, and it must observe <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> . Once the thread is entitled to enter <code class="literal"> InnoDB </code> , it is assigned a number of tickets that it can use for subsequently entering <code class="literal"> InnoDB </code> to perform row operations. If the tickets run out, the thread is evicted, and <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> is observed again which may place the thread back into the first-in/first-out queue of waiting threads. When the thread is once again entitled to enter <code class="literal"> InnoDB </code> , tickets are assigned again. The number of tickets assigned is specified by the global option <a class="link" href="innodb-parameters.html#sysvar_innodb_concurrency_tickets"> <code class="literal"> innodb_concurrency_tickets </code> </a> , which is 5000 by default. A thread that is waiting for a lock is given one ticket once the lock becomes available. </p> <p> The correct values of these variables depend on your environment and workload. Try a range of different values to determine what value works for your applications. Before limiting the number of concurrently executing threads, review configuration options that may improve the performance of <code class="literal"> InnoDB </code> on multi-core and multi-processor computers, such as <a class="link" href="innodb-parameters.html#sysvar_innodb_adaptive_hash_index"> <code class="literal"> innodb_adaptive_hash_index </code> </a> . </p> <p> For general performance information about MySQL thread handling, see <a class="xref" href="connection-interfaces.html" title="7.1.12.1 Connection Interfaces"> Section 7.1.12.1, “Connection Interfaces” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/clone-plugin-directories.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="clone-plugin-directories"> </a> 7.6.7.8 Directories and Files Created During a Cloning Operation </h4> </div> </div> </div> <a class="indexterm" name="idm46045255349024"> </a> <p> When data is cloned, the following directories and files are created for internal use. They should not be modified. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="filename"> #clone </code> : Contains internal clone files used by the cloning operation. Created in the directory that data is cloned to. </p> </li> <li class="listitem"> <p> <code class="filename"> #ib_archive </code> : Contains internally archived log files, archived on the donor during the cloning operation. </p> </li> <li class="listitem"> <p> <code class="filename"> *.#clone </code> files: Temporary data files created on the recipient while data is removed from the recipient data directory and new data is cloned during a remote cloning operation. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/windows-select-server.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="windows-select-server"> </a> 2.3.3.3 Selecting a MySQL Server Type </h4> </div> </div> </div> <p> The following table shows the available servers for Windows in MySQL 8.4. </p> <div class="informaltable"> <table summary="Servers available for Windows in MySQL 8.4."> <colgroup> <col style="width: 20%"/> <col style="width: 80%"/> </colgroup> <thead> <tr> <th> Binary </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> </td> <td> Optimized binary with named-pipe support </td> </tr> <tr> <td> <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld-debug </strong> </span> </a> </td> <td> Like <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> , but compiled with full debugging and automatic memory allocation checking </td> </tr> </tbody> </table> </div> <p> Each of the servers in a distribution support the same set of storage engines. The <a class="link" href="show-engines.html" title="15.7.7.17 SHOW ENGINES Statement"> <code class="literal"> SHOW ENGINES </code> </a> statement displays which engines a given server supports. </p> <p> All Windows MySQL 8.4 servers have support for symbolic linking of database directories. </p> <a class="indexterm" name="idm46045332098752"> </a> <a class="indexterm" name="idm46045332097680"> </a> <p> MySQL supports TCP/IP on all Windows platforms. MySQL servers on Windows also support named pipes, if you start the server with the <a class="link" href="server-system-variables.html#sysvar_named_pipe"> <code class="literal"> named_pipe </code> </a> system variable enabled. It is necessary to enable this variable explicitly because some users have experienced problems with shutting down the MySQL server when named pipes were used. The default is to use TCP/IP regardless of platform because named pipes are slower than TCP/IP in many Windows configurations. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/disk-issues.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="disk-issues"> </a> 10.12.1 Optimizing Disk I/O </h3> </div> </div> </div> <a class="indexterm" name="idm46045222526400"> </a> <a class="indexterm" name="idm46045222525328"> </a> <a class="indexterm" name="idm46045222523840"> </a> <p> This section describes ways to configure storage devices when you can devote more and faster storage hardware to the database server. For information about optimizing an <code class="literal"> InnoDB </code> configuration to improve I/O performance, see <a class="xref" href="optimizing-innodb-diskio.html" title="10.5.8 Optimizing InnoDB Disk I/O"> Section 10.5.8, “Optimizing InnoDB Disk I/O” </a> . </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Disk seeks are a huge performance bottleneck. This problem becomes more apparent when the amount of data starts to grow so large that effective caching becomes impossible. For large databases where you access data more or less randomly, you can be sure that you need at least one disk seek to read and a couple of disk seeks to write things. To minimize this problem, use disks with low seek times. </p> </li> <li class="listitem"> <p> Increase the number of available disk spindles (and thereby reduce the seek overhead) by either symlinking files to different disks or striping the disks: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> Using symbolic links </p> <p> This means that, for <code class="literal"> MyISAM </code> tables, you symlink the index file and data files from their usual location in the data directory to another disk (that may also be striped). This makes both the seek and read times better, assuming that the disk is not used for other purposes as well. See <a class="xref" href="symbolic-links.html" title="10.12.2 Using Symbolic Links"> Section 10.12.2, “Using Symbolic Links” </a> . </p> <p> Symbolic links are not supported for use with <code class="literal"> InnoDB </code> tables. However, it is possible to place <code class="literal"> InnoDB </code> data and log files on different physical disks. For more information, see <a class="xref" href="optimizing-innodb-diskio.html" title="10.5.8 Optimizing InnoDB Disk I/O"> Section 10.5.8, “Optimizing InnoDB Disk I/O” </a> . </p> </li> <li class="listitem"> <p> <a class="indexterm" name="idm46045222511184"> </a> Striping </p> <p> Striping means that you have many disks and put the first block on the first disk, the second block on the second disk, and the <em class="replaceable"> <code> N </code> </em> -th block on the ( <code class="literal"> <em class="replaceable"> <code> N </code> </em> MOD <em class="replaceable"> <code> number_of_disks </code> </em> </code> ) disk, and so on. This means if your normal data size is less than the stripe size (or perfectly aligned), you get much better performance. Striping is very dependent on the operating system and the stripe size, so benchmark your application with different stripe sizes. See <a class="xref" href="custom-benchmarks.html" title="10.13.2 Using Your Own Benchmarks"> Section 10.13.2, “Using Your Own Benchmarks” </a> . </p> <p> The speed difference for striping is <span class="emphasis"> <em> very </em> </span> dependent on the parameters. Depending on how you set the striping parameters and number of disks, you may get differences measured in orders of magnitude. You have to choose to optimize for random or sequential access. </p> </li> </ul> </div> </li> <li class="listitem"> <p> For reliability, you may want to use RAID 0+1 (striping plus mirroring), but in this case, you need 2 × <em class="replaceable"> <code> N </code> </em> drives to hold <em class="replaceable"> <code> N </code> </em> drives of data. This is probably the best option if you have the money for it. However, you may also have to invest in some volume-management software to handle it efficiently. </p> </li> <li class="listitem"> <p> A good option is to vary the RAID level according to how critical a type of data is. For example, store semi-important data that can be regenerated on a RAID 0 disk, but store really important data such as host information and logs on a RAID 0+1 or RAID <em class="replaceable"> <code> N </code> </em> disk. RAID <em class="replaceable"> <code> N </code> </em> can be a problem if you have many writes, due to the time required to update the parity bits. </p> </li> <li class="listitem"> <p> You can also set the parameters for the file system that the database uses: </p> <p> If you do not need to know when files were last accessed (which is not really useful on a database server), you can mount your file systems with the <code class="option"> -o noatime </code> option. That skips updates to the last access time in inodes on the file system, which avoids some disk seeks. </p> <p> On many operating systems, you can set a file system to be updated asynchronously by mounting it with the <code class="option"> -o async </code> option. If your computer is reasonably stable, this should give you better performance without sacrificing too much reliability. (This flag is on by default on Linux.) </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="disk-issues-nfs"> </a> Using NFS with MySQL </h4> </div> </div> </div> <p> You should be cautious when considering whether to use NFS with MySQL. Potential issues, which vary by operating system and NFS version, include the following: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> MySQL data and log files placed on NFS volumes becoming locked and unavailable for use. Locking issues may occur in cases where multiple instances of MySQL access the same data directory or where MySQL is shut down improperly, due to a power outage, for example. NFS version 4 addresses underlying locking issues with the introduction of advisory and lease-based locking. However, sharing a data directory among MySQL instances is not recommended. </p> </li> <li class="listitem"> <p> Data inconsistencies introduced due to messages received out of order or lost network traffic. To avoid this issue, use TCP with <code class="literal"> hard </code> and <code class="literal"> intr </code> mount options. </p> </li> <li class="listitem"> <p> Maximum file size limitations. NFS Version 2 clients can only access the lowest 2GB of a file (signed 32 bit offset). NFS Version 3 clients support larger files (up to 64 bit offsets). The maximum supported file size also depends on the local file system of the NFS server. </p> </li> </ul> </div> <p> Using NFS within a professional SAN environment or other storage system tends to offer greater reliability than using NFS outside of such an environment. However, NFS within a SAN environment may be slower than directly attached or bus-attached non-rotational storage. </p> <p> If you choose to use NFS, NFS Version 4 or later is recommended, as is testing your NFS setup thoroughly before deploying into a production environment. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/replication-howto-slavebaseconfig.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="replication-howto-slavebaseconfig"> </a> 19.1.2.2 Setting the Replica Configuration </h4> </div> </div> </div> <p> Each replica must have a unique server ID, as specified by the <a class="link" href="replication-options.html#sysvar_server_id"> <code class="literal"> server_id </code> </a> system variable. If you are setting up multiple replicas, each one must have a unique <a class="link" href="replication-options.html#sysvar_server_id"> <code class="literal"> server_id </code> </a> value that differs from that of the source and from any of the other replicas. If the replica's server ID is not already set, or the current value conflicts with the value that you have chosen for the source or another replica, you must change it. </p> <p> The default <a class="link" href="replication-options.html#sysvar_server_id"> <code class="literal"> server_id </code> </a> value is 1. You can change the <a class="link" href="replication-options.html#sysvar_server_id"> <code class="literal"> server_id </code> </a> value dynamically by issuing a statement like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa94491431"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SET</span> <span class="token keyword">GLOBAL</span> server_id <span class="token operator">=</span> <span class="token number">21</span><span class="token punctuation">;</span></code></pre> </div> <p> Note that a value of 0 for the server ID prevents a replica from connecting to a source. If that server ID value (which was the default in earlier releases) was set previously, you must restart the server to initialize the replica with your new nonzero server ID. Otherwise, a server restart is not needed when you change the server ID, unless you make other configuration changes that require it. For example, if binary logging was disabled on the server and you want it enabled for your replica, a server restart is required to enable this. </p> <p> If you are shutting down the replica server, you can edit the <code class="literal"> [mysqld] </code> section of the configuration file to specify a unique server ID. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa33631440"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysqld]</span> <span class="token constant">server-id</span><span class="token attr-value"><span class="token punctuation">=</span>21</span></code></pre> </div> <p> Binary logging is enabled by default on all servers. A replica is not required to have binary logging enabled for replication to take place. However, binary logging on a replica means that the replica's binary log can be used for data backups and crash recovery. Replicas that have binary logging enabled can also be used as part of a more complex replication topology. For example, you might want to set up replication servers using this chained arrangement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-none"><div class="docs-select-all right" id="sa53971854"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none">A -&gt; B -&gt; C</code></pre> </div> <p> Here, <code class="literal"> A </code> serves as the source for the replica <code class="literal"> B </code> , and <code class="literal"> B </code> serves as the source for the replica <code class="literal"> C </code> . For this to work, <code class="literal"> B </code> must be both a source <span class="emphasis"> <em> and </em> </span> a replica. Updates received from <code class="literal"> A </code> must be logged by <code class="literal"> B </code> to its binary log, in order to be passed on to <code class="literal"> C </code> . In addition to binary logging, this replication topology requires the system variable <a class="link" href="replication-options-binary-log.html#sysvar_log_replica_updates"> <code class="literal"> log_replica_updates </code> </a> to be enabled. With replica updates enabled, the replica writes updates that are received from a source and performed by the replica's SQL thread to the replica's own binary log. <code class="literal"> log_replica_updates </code> is enabled by default. </p> <p> If you need to disable binary logging or replica update logging on a replica, you can do this by specifying the <a class="link" href="replication-options-binary-log.html#option_mysqld_log-bin"> <code class="option"> --skip-log-bin </code> </a> and <a class="link" href="replication-options-binary-log.html#sysvar_log_replica_updates"> <code class="option"> --log-replica-updates=OFF </code> </a> options for the replica. If you decide to re-enable these features on the replica, remove the relevant options and restart the server. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-schema-columns-extensions-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="information-schema-columns-extensions-table"> </a> 28.3.9 The INFORMATION_SCHEMA COLUMNS_EXTENSIONS Table </h3> </div> </div> </div> <a class="indexterm" name="idm46045080126528"> </a> <p> The <code class="literal"> COLUMNS_EXTENSIONS </code> table provides information about column attributes defined for primary and secondary storage engines. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> The <a class="link" href="information-schema-columns-extensions-table.html" title="28.3.9 The INFORMATION_SCHEMA COLUMNS_EXTENSIONS Table"> <code class="literal"> COLUMNS_EXTENSIONS </code> </a> table is reserved for future use. </p> </div> <p> The <a class="link" href="information-schema-columns-extensions-table.html" title="28.3.9 The INFORMATION_SCHEMA COLUMNS_EXTENSIONS Table"> <code class="literal"> COLUMNS_EXTENSIONS </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> TABLE_CATALOG </code> </p> <p> The name of the catalog to which the table belongs. This value is always <code class="literal"> def </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_SCHEMA </code> </p> <p> The name of the schema (database) to which the table belongs. </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_NAME </code> </p> <p> The name of the table. </p> </li> <li class="listitem"> <p> <code class="literal"> COLUMN_NAME </code> </p> <p> The name of the column. </p> </li> <li class="listitem"> <p> <code class="literal"> ENGINE_ATTRIBUTE </code> </p> <p> Column attributes defined for the primary storage engine. Reserved for future use. </p> </li> <li class="listitem"> <p> <code class="literal"> SECONDARY_ENGINE_ATTRIBUTE </code> </p> <p> Column attributes defined for the secondary storage engine. Reserved for future use. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/federated-usagenotes.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="federated-usagenotes"> </a> 18.8.3 FEDERATED Storage Engine Notes and Tips </h3> </div> </div> </div> <p> You should be aware of the following points when using the <code class="literal"> FEDERATED </code> storage engine: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> FEDERATED </code> tables may be replicated to other replicas, but you must ensure that the replica servers are able to use the user/password combination that is defined in the <code class="literal"> CONNECTION </code> string (or the row in the <code class="literal"> mysql.servers </code> table) to connect to the remote server. </p> </li> </ul> </div> <p> The following items indicate features that the <code class="literal"> FEDERATED </code> storage engine does and does not support: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The remote server must be a MySQL server. </p> </li> <li class="listitem"> <p> The remote table that a <code class="literal"> FEDERATED </code> table points to <span class="emphasis"> <em> must </em> </span> exist before you try to access the table through the <code class="literal"> FEDERATED </code> table. </p> </li> <li class="listitem"> <p> It is possible for one <code class="literal"> FEDERATED </code> table to point to another, but you must be careful not to create a loop. </p> </li> <li class="listitem"> <p> A <code class="literal"> FEDERATED </code> table does not support indexes in the usual sense; because access to the table data is handled remotely, it is actually the remote table that makes use of indexes. This means that, for a query that cannot use any indexes and so requires a full table scan, the server fetches all rows from the remote table and filters them locally. This occurs regardless of any <code class="literal"> WHERE </code> or <code class="literal"> LIMIT </code> used with this <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement; these clauses are applied locally to the returned rows. </p> <p> Queries that fail to use indexes can thus cause poor performance and network overload. In addition, since returned rows must be stored in memory, such a query can also lead to the local server swapping, or even hanging. </p> </li> <li class="listitem"> <p> Care should be taken when creating a <code class="literal"> FEDERATED </code> table since the index definition from an equivalent <code class="literal"> MyISAM </code> or other table may not be supported. For example, creating a <code class="literal"> FEDERATED </code> table fails if the table uses an index prefix on any <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> columns. The following definition using <code class="literal"> MyISAM </code> is valid: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36568226"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> <span class="token punctuation">`</span>T1<span class="token punctuation">`</span><span class="token punctuation">(</span> <span class="token punctuation">`</span>A<span class="token punctuation">`</span> <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">UNIQUE</span> <span class="token keyword">KEY</span><span class="token punctuation">(</span><span class="token punctuation">`</span>A<span class="token punctuation">`</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">ENGINE</span><span class="token operator">=</span>MYISAM<span class="token punctuation">;</span></code></pre> </div> <p> The key prefix in this example is incompatible with the <code class="literal"> FEDERATED </code> engine, and the equivalent statement fails: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa67519477"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> <span class="token punctuation">`</span>T1<span class="token punctuation">`</span><span class="token punctuation">(</span> <span class="token punctuation">`</span>A<span class="token punctuation">`</span> <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">100</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">UNIQUE</span> <span class="token keyword">KEY</span><span class="token punctuation">(</span><span class="token punctuation">`</span>A<span class="token punctuation">`</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">)</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">ENGINE</span><span class="token operator">=</span>FEDERATED <span class="token keyword">CONNECTION</span><span class="token operator">=</span><span class="token string">'MYSQL://127.0.0.1:3306/TEST/T1'</span><span class="token punctuation">;</span></code></pre> </div> <p> If possible, you should try to separate the column and index definition when creating tables on both the remote server and the local server to avoid these index issues. </p> </li> <li class="listitem"> <p> Internally, the implementation uses <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> , <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> , <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> , and <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> , but not <a class="link" href="handler.html" title="15.2.5 HANDLER Statement"> <code class="literal"> HANDLER </code> </a> . </p> </li> <li class="listitem"> <p> The <code class="literal"> FEDERATED </code> storage engine supports <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> , <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> , <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> , <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> , <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> , and indexes. It does not support <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> , or any Data Definition Language statements that directly affect the structure of the table, other than <a class="link" href="drop-table.html" title="15.1.32 DROP TABLE Statement"> <code class="literal"> DROP TABLE </code> </a> . The current implementation does not use prepared statements. </p> </li> <li class="listitem"> <p> <code class="literal"> FEDERATED </code> accepts <a class="link" href="insert-on-duplicate.html" title="15.2.7.2 INSERT ... ON DUPLICATE KEY UPDATE Statement"> <code class="literal"> INSERT ... ON DUPLICATE KEY UPDATE </code> </a> statements, but if a duplicate-key violation occurs, the statement fails with an error. </p> </li> <li class="listitem"> <p> Transactions are not supported. </p> </li> <li class="listitem"> <p> <code class="literal"> FEDERATED </code> performs bulk-insert handling such that multiple rows are sent to the remote table in a batch, which improves performance. Also, if the remote table is transactional, it enables the remote storage engine to perform statement rollback properly should an error occur. This capability has the following limitations: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The size of the insert cannot exceed the maximum packet size between servers. If the insert exceeds this size, it is broken into multiple packets and the rollback problem can occur. </p> </li> <li class="listitem"> <p> Bulk-insert handling does not occur for <a class="link" href="insert-on-duplicate.html" title="15.2.7.2 INSERT ... ON DUPLICATE KEY UPDATE Statement"> <code class="literal"> INSERT ... ON DUPLICATE KEY UPDATE </code> </a> . </p> </li> </ul> </div> </li> <li class="listitem"> <p> There is no way for the <code class="literal"> FEDERATED </code> engine to know if the remote table has changed. The reason for this is that this table must work like a data file that would never be written to by anything other than the database system. The integrity of the data in the local table could be breached if there was any change to the remote database. </p> </li> <li class="listitem"> <p> When using a <code class="literal"> CONNECTION </code> string, you cannot use an '@' character in the password. You can get round this limitation by using the <a class="link" href="create-server.html" title="15.1.18 CREATE SERVER Statement"> <code class="literal"> CREATE SERVER </code> </a> statement to create a server connection. </p> </li> <li class="listitem"> <p> The <a class="link" href="server-system-variables.html#sysvar_insert_id"> <code class="literal"> insert_id </code> </a> and <a class="link" href="server-system-variables.html#sysvar_timestamp"> <code class="literal"> timestamp </code> </a> options are not propagated to the data provider. </p> </li> <li class="listitem"> <p> Any <a class="link" href="drop-table.html" title="15.1.32 DROP TABLE Statement"> <code class="literal"> DROP TABLE </code> </a> statement issued against a <code class="literal"> FEDERATED </code> table drops only the local table, not the remote table. </p> </li> <li class="listitem"> <p> User-defined partitioning is not supported for <code class="literal"> FEDERATED </code> tables. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-shell.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-shell-tutorial-javascript-shell"> </a> 22.3.1 MySQL Shell </h3> </div> </div> </div> <a class="indexterm" name="idm46045128107728"> </a> <p> This quick-start guide assumes a certain level of familiarity with MySQL Shell. The following section is a high level overview, see the MySQL Shell documentation for more information. MySQL Shell is a unified scripting interface to MySQL Server. It supports scripting in JavaScript and Python. JavaScript is the default processing mode. </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="mysql-shell-tutorial-javascript-shell-start"> </a> Start MySQL Shell </h4> </div> </div> </div> <p> After you have installed and started MySQL server, connect MySQL Shell to the server instance. You need to know the address of the MySQL server instance you plan to connect to. To be able to use the instance as a Document Store, the server instance must have X Plugin installed and you should connect to the server using X Protocol. For example to connect to the instance <code class="literal"> ds1.example.com </code> on the default X Protocol port of 33060 use the network string <code class="literal"> <em class="replaceable"> <code> user </code> </em> @ds1.example.com:33060 </code> . </p> <div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Tip </div> <p> If you connect to the instance using classic MySQL protocol, for example by using the default <a class="link" href="server-system-variables.html#sysvar_port"> <code class="literal"> port </code> </a> of 3306 instead of the <a class="link" href="x-plugin-options-system-variables.html#sysvar_mysqlx_port"> <code class="literal"> mysqlx_port </code> </a> , you <span class="emphasis"> <em> cannot </em> </span> use the Document Store functionality shown in this tutorial. For example the <code class="literal"> db </code> global object is not populated. To use the Document Store, always connect using X Protocol. </p> </div> <p> If MySQL Shell is not already running, open a terminal window and issue: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa12084534"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysqlsh <em class="replaceable">user</em>@ds1<span class="token punctuation">.</span>example<span class="token punctuation">.</span>com<span class="token punctuation">:</span>33060/world_x</code></pre> </div> <p> Alternatively, if MySQL Shell is already running use the <code class="literal"> \connect </code> command by issuing: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa78194857"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh">\connect <em class="replaceable">user</em>@ds1<span class="token punctuation">.</span>example<span class="token punctuation">.</span>com<span class="token punctuation">:</span><span class="token number">33060</span><span class="token operator">/</span>world_x</code></pre> </div> <p> You need to specify the address of the MySQL server instance which you want to connect MySQL Shell to. For example in the previous example: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <em class="replaceable"> <code> user </code> </em> represents the user name of your MySQL account. </p> </li> <li class="listitem"> <p> <code class="literal"> ds1.example.com </code> is the hostname of the server instance running MySQL. Replace this with the hostname of the MySQL server instance you are using as a Document Store. </p> </li> <li class="listitem"> <p> The default schema for this session is <code class="literal"> world_x </code> . For instructions on setting up the <code class="literal"> world_x </code> schema, see <a class="xref" href="mysql-shell-tutorial-javascript-download.html" title="22.3.2 Download and Import world_x Database"> Section 22.3.2, “Download and Import world_x Database” </a> . </p> </li> </ul> </div> <p> For more information, see <a class="xref" href="connecting-using-uri-or-key-value-pairs.html" title="6.2.5 Connecting to the Server Using URI-Like Strings or Key-Value Pairs"> Section 6.2.5, “Connecting to the Server Using URI-Like Strings or Key-Value Pairs” </a> . </p> <p> Once MySQL Shell opens, the <code class="literal"> mysql-js&gt; </code> prompt indicates that the active language for this session is JavaScript. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa30930133"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span></code></pre> </div> <p> MySQL Shell supports input-line editing as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <span class="keycap"> <strong> left-arrow </strong> </span> and <span class="keycap"> <strong> right-arrow </strong> </span> keys move horizontally within the current input line. </p> </li> <li class="listitem"> <p> <span class="keycap"> <strong> up-arrow </strong> </span> and <span class="keycap"> <strong> down-arrow </strong> </span> keys move up and down through the set of previously entered lines. </p> </li> <li class="listitem"> <p> <span class="keycap"> <strong> Backspace </strong> </span> deletes the character before the cursor and typing new characters enters them at the cursor position. </p> </li> <li class="listitem"> <p> <span class="keycap"> <strong> Enter </strong> </span> sends the current input line to the server. </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="mysql-shell-tutorial-javascript-shell-help"> </a> Get Help for MySQL Shell </h4> </div> </div> </div> <a class="indexterm" name="idm46045128071056"> </a> <p> Type <span class="command"> <strong> mysqlsh --help </strong> </span> at the prompt of your command interpreter for a list of command-line options. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-terminal"><div class="docs-select-all right" id="sa25691841"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">mysqlsh <span class="token property">--help</span></code></pre> </div> <p> Type <code class="literal"> \help </code> at the MySQL Shell prompt for a list of available commands and their descriptions. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa40741079"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span> \help</code></pre> </div> <p> Type <code class="literal"> \help </code> followed by a command name for detailed help about an individual MySQL Shell command. For example, to view help on the <code class="literal"> \connect </code> command, issue: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa12132803"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span> \help \connect</code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="mysql-shell-tutorial-javascript-shell-quit"> </a> Quit MySQL Shell </h4> </div> </div> </div> <a class="indexterm" name="idm46045128059056"> </a> <p> To quit MySQL Shell, issue the following command: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa90350814"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span> \quit</code></pre> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="idm46045128055312"> </a> Related Information </h4> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> See <a class="ulink" href="/doc/mysql-shell/8.4/en/mysql-shell-interactive-code-execution.html" target="_top"> Interactive Code Execution </a> for an explanation of how interactive code execution works in MySQL Shell. </p> </li> <li class="listitem"> <p> See <a class="ulink" href="/doc/mysql-shell/8.4/en/mysql-shell-getting-started.html" target="_top"> Getting Started with MySQL Shell </a> to learn about session and connection alternatives. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/faqs-thread-pool.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="faqs-thread-pool"> </a> A.15 MySQL 8.4 FAQ: MySQL Enterprise Thread Pool </h2> </div> </div> </div> <div class="qandaset"> <a name="idm46045054932928"> </a> <dl> <dt> A.15.1. <a href="faqs-thread-pool.html#faq-thread-pool-what-solve"> What is the Thread Pool and what problem does it solve? </a> </dt> <dt> A.15.2. <a href="faqs-thread-pool.html#faq-thread-pool-how-manage-operation"> How does the Thread Pool limit and manage concurrent sessions and transactions for optimal performance and throughput? </a> </dt> <dt> A.15.3. <a href="faqs-thread-pool.html#faq-thread-pool-how-diff-connector-pool"> How is the Thread Pool different from the client side Connection Pool? </a> </dt> <dt> A.15.4. <a href="faqs-thread-pool.html#faq-thread-pool-when-use"> When should I use the Thread Pool? </a> </dt> <dt> A.15.5. <a href="faqs-thread-pool.html#faq-thread-pool-what-config-recommend"> Are there recommended Thread Pool configurations? </a> </dt> </dl> <table border="0" style="width: 100%;"> <colgroup> <col align="left" width="1%"/> <col/> </colgroup> <tbody> <tr class="question"> <td align="left" valign="top"> <a name="faq-thread-pool-what-solve"> </a> <a name="idm46045054932160"> </a> <p> <b> A.15.1. </b> </p> </td> <td align="left" valign="top"> <p> What is the Thread Pool and what problem does it solve? </p> </td> </tr> <tr class="answer"> <td align="left" valign="top"> </td> <td align="left" valign="top"> <p> The MySQL Thread Pool is a MySQL server plugin that extends the default connection-handling capabilities of the MySQL server to limit the number of concurrently executing statements/queries and transactions to ensure that each has sufficient CPU and memory resources to fulfill its task. For MySQL 8.4, the Thread Pool plugin is included in MySQL Enterprise Edition, a commercial product. </p> <p> The default thread-handling model in MySQL Server executes statements using one thread per client connection. As more clients connect to the server and execute statements, overall performance degrades. The Thread Pool plugin provides an alternative thread-handling model designed to reduce overhead and improve performance. The Thread Pool plugin increases server performance by efficiently managing statement execution threads for large numbers of client connections, especially on modern multi-CPU/Core systems. </p> <p> For more information, see <a class="xref" href="thread-pool.html" title="7.6.3 MySQL Enterprise Thread Pool"> Section 7.6.3, “MySQL Enterprise Thread Pool” </a> . </p> </td> </tr> <tr class="question"> <td align="left" valign="top"> <a name="faq-thread-pool-how-manage-operation"> </a> <a name="idm46045054927696"> </a> <p> <b> A.15.2. </b> </p> </td> <td align="left" valign="top"> <p> How does the Thread Pool limit and manage concurrent sessions and transactions for optimal performance and throughput? </p> </td> </tr> <tr class="answer"> <td align="left" valign="top"> </td> <td align="left" valign="top"> <p> The Thread Pool uses a <span class="quote"> “ <span class="quote"> divide and conquer </span> ” </span> approach to limiting and balancing concurrency. Unlike the default connection handling of the MySQL Server, the Thread Pool separates connections and threads, so there is no fixed relationship between connections and the threads that execute statements received from those connections. The Thread Pool then manages client connections within configurable thread groups, where they are prioritized and queued based on the nature of the work they were submitted to accomplish. </p> <p> For more information, see <a class="xref" href="thread-pool-operation.html" title="7.6.3.3 Thread Pool Operation"> Section 7.6.3.3, “Thread Pool Operation” </a> . </p> </td> </tr> <tr class="question"> <td align="left" valign="top"> <a name="faq-thread-pool-how-diff-connector-pool"> </a> <a name="idm46045054923536"> </a> <p> <b> A.15.3. </b> </p> </td> <td align="left" valign="top"> <p> How is the Thread Pool different from the client side Connection Pool? </p> </td> </tr> <tr class="answer"> <td align="left" valign="top"> </td> <td align="left" valign="top"> <p> The MySQL Connection Pool operates on the client side to ensure that a MySQL client does not constantly connect to and disconnect from the MySQL server. It is designed to cache idle connections in the MySQL client for use by other users as they are needed. This minimizes the overhead and expense of establishing and tearing down connections as queries are submitted to the MySQL server. The MySQL Connection Pool has no visibility as to the query handling capabilities or load of the back-end MySQL server. By contrast, the Thread Pool operates on the MySQL server side and is designed to manage the execution of inbound concurrent connections and queries as they are received from the client connections accessing the back-end MySQL database. Because of the separation of duties, the MySQL Connection Pool and Thread Pool are orthogonal and can be used independent of each other. </p> <p> MySQL Connection Pooling via the MySQL Connectors is covered in <a class="xref" href="connectors-apis.html" title="Chapter 31 Connectors and APIs"> Chapter 31, <i> Connectors and APIs </i> </a> . </p> </td> </tr> <tr class="question"> <td align="left" valign="top"> <a name="faq-thread-pool-when-use"> </a> <a name="idm46045054919392"> </a> <p> <b> A.15.4. </b> </p> </td> <td align="left" valign="top"> <p> When should I use the Thread Pool? </p> </td> </tr> <tr class="answer"> <td align="left" valign="top"> </td> <td align="left" valign="top"> <p> There are a few rules of thumb to consider for optimal Thread Pool use cases: </p> <p> The MySQL <a class="link" href="server-status-variables.html#statvar_Threads_running"> <code class="literal"> Threads_running </code> </a> variable keeps track of the number of concurrent statements currently executing in the MySQL Server. If this variable consistently exceeds a region where the server won't operate optimally (usually going beyond 40 for InnoDB workloads), the Thread Pool should be beneficial, especially in extreme parallel overload situations. </p> <p> If you are using the <a class="link" href="innodb-parameters.html#sysvar_innodb_thread_concurrency"> <code class="literal"> innodb_thread_concurrency </code> </a> to limit the number of concurrently executing statements, you should find that the Thread Pool solves the same problem, only better, by assigning connections to thread groups, then queuing executions based on transactional content, user defined designations, and so forth. </p> <p> Lastly, if your workload comprises mainly short queries, the Thread Pool should be beneficial. </p> <p> To learn more, see <a class="xref" href="thread-pool-tuning.html" title="7.6.3.4 Thread Pool Tuning"> Section 7.6.3.4, “Thread Pool Tuning” </a> . </p> </td> </tr> <tr class="question"> <td align="left" valign="top"> <a name="faq-thread-pool-what-config-recommend"> </a> <a name="idm46045054911648"> </a> <p> <b> A.15.5. </b> </p> </td> <td align="left" valign="top"> <p> Are there recommended Thread Pool configurations? </p> </td> </tr> <tr class="answer"> <td align="left" valign="top"> </td> <td align="left" valign="top"> <p> The Thread Pool has a number of user case driven configuration parameters that affect its performance. To learn about these and tips on tuning, see <a class="xref" href="thread-pool-tuning.html" title="7.6.3.4 Thread Pool Tuning"> Section 7.6.3.4, “Thread Pool Tuning” </a> . </p> </td> </tr> </tbody> </table> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/gis-class-geometrycollection.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="gis-class-geometrycollection"> </a> 13.4.2.8 GeometryCollection Class </h4> </div> </div> </div> <p> A <code class="literal"> GeomCollection </code> is a geometry that is a collection of zero or more geometries of any class. </p> <p> <code class="literal"> GeomCollection </code> and <code class="literal"> GeometryCollection </code> are synonymous, with <code class="literal"> GeomCollection </code> the preferred type name. </p> <p> All the elements in a geometry collection must be in the same spatial reference system (that is, in the same coordinate system). There are no other constraints on the elements of a geometry collection, although the subclasses of <code class="literal"> GeomCollection </code> described in the following sections may restrict membership. Restrictions may be based on: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Element type (for example, a <code class="literal"> MultiPoint </code> may contain only <code class="literal"> Point </code> elements) </p> </li> <li class="listitem"> <p> Dimension </p> </li> <li class="listitem"> <p> Constraints on the degree of spatial overlap between elements </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/delete.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="delete"> </a> 15.2.2 DELETE Statement </h3> </div> </div> </div> <a class="indexterm" name="idm46045182995744"> </a> <a class="indexterm" name="idm46045182994672"> </a> <p> <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> is a DML statement that removes rows from a table. </p> <p> A <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement can start with a <a class="link" href="with.html" title="15.2.20 WITH (Common Table Expressions)"> <code class="literal"> WITH </code> </a> clause to define common table expressions accessible within the <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> . See <a class="xref" href="with.html" title="15.2.20 WITH (Common Table Expressions)"> Section 15.2.20, “WITH (Common Table Expressions)” </a> . </p> <h4> <a name="idm46045182984608"> </a> Single-Table Syntax </h4> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25150964"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> <span class="token punctuation">[</span><span class="token keyword">LOW_PRIORITY</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">QUICK</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">IGNORE</span><span class="token punctuation">]</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token punctuation">[</span><span class="token punctuation">[</span><span class="token keyword">AS</span><span class="token punctuation">]</span> <em class="replaceable">tbl_alias</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">PARTITION</span> <span class="token punctuation">(</span><em class="replaceable">partition_name</em> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">partition_name</em><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">)</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">WHERE</span> <em class="replaceable">where_condition</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">ORDER</span> <span class="token keyword">BY</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">LIMIT</span> <span class="token keyword"><em class="replaceable">row_count</em></span><span class="token punctuation">]</span></code></pre> </div> <p> The <code class="literal"> DELETE </code> statement deletes rows from <em class="replaceable"> <code> tbl_name </code> </em> and returns the number of deleted rows. To check the number of deleted rows, call the <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> function described in <a class="xref" href="information-functions.html" title="14.15 Information Functions"> Section 14.15, “Information Functions” </a> . </p> <h4> <a name="idm46045182976688"> </a> Main Clauses </h4> <p> The conditions in the optional <code class="literal"> WHERE </code> clause identify which rows to delete. With no <code class="literal"> WHERE </code> clause, all rows are deleted. </p> <p> <em class="replaceable"> <code> where_condition </code> </em> is an expression that evaluates to true for each row to be deleted. It is specified as described in <a class="xref" href="select.html" title="15.2.13 SELECT Statement"> Section 15.2.13, “SELECT Statement” </a> . </p> <p> If the <code class="literal"> ORDER BY </code> clause is specified, the rows are deleted in the order that is specified. The <code class="literal"> LIMIT </code> clause places a limit on the number of rows that can be deleted. These clauses apply to single-table deletes, but not multi-table deletes. </p> <h4> <a name="idm46045182970384"> </a> Multiple-Table Syntax </h4> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa95395758"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> <span class="token punctuation">[</span><span class="token keyword">LOW_PRIORITY</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">QUICK</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">IGNORE</span><span class="token punctuation">]</span> <em class="replaceable">tbl_name</em><span class="token punctuation">[</span><span class="token punctuation">.</span><span class="token operator">*</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">tbl_name</em><span class="token punctuation">[</span><span class="token punctuation">.</span><span class="token operator">*</span><span class="token punctuation">]</span><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token keyword">FROM</span> <em class="replaceable">table_references</em> <span class="token punctuation">[</span><span class="token keyword">WHERE</span> <em class="replaceable">where_condition</em><span class="token punctuation">]</span> <span class="token keyword">DELETE</span> <span class="token punctuation">[</span><span class="token keyword">LOW_PRIORITY</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">QUICK</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">IGNORE</span><span class="token punctuation">]</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em><span class="token punctuation">[</span><span class="token punctuation">.</span><span class="token operator">*</span><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token punctuation">,</span> <em class="replaceable">tbl_name</em><span class="token punctuation">[</span><span class="token punctuation">.</span><span class="token operator">*</span><span class="token punctuation">]</span><span class="token punctuation">]</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token keyword">USING</span> <em class="replaceable">table_references</em> <span class="token punctuation">[</span><span class="token keyword">WHERE</span> <em class="replaceable">where_condition</em><span class="token punctuation">]</span></code></pre> </div> <h4> <a name="idm46045182964096"> </a> Privileges </h4> <p> You need the <a class="link" href="privileges-provided.html#priv_delete"> <code class="literal"> DELETE </code> </a> privilege on a table to delete rows from it. You need only the <a class="link" href="privileges-provided.html#priv_select"> <code class="literal"> SELECT </code> </a> privilege for any columns that are only read, such as those named in the <code class="literal"> WHERE </code> clause. </p> <h4> <a name="idm46045182959680"> </a> Performance </h4> <p> When you do not need to know the number of deleted rows, the <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> statement is a faster way to empty a table than a <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement with no <code class="literal"> WHERE </code> clause. Unlike <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> , <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> cannot be used within a transaction or if you have a lock on the table. See <a class="xref" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> Section 15.1.37, “TRUNCATE TABLE Statement” </a> and <a class="xref" href="lock-tables.html" title="15.3.6 LOCK TABLES and UNLOCK TABLES Statements"> Section 15.3.6, “LOCK TABLES and UNLOCK TABLES Statements” </a> . </p> <p> The speed of delete operations may also be affected by factors discussed in <a class="xref" href="delete-optimization.html" title="10.2.5.3 Optimizing DELETE Statements"> Section 10.2.5.3, “Optimizing DELETE Statements” </a> . </p> <p> To ensure that a given <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement does not take too much time, the MySQL-specific <code class="literal"> LIMIT <em class="replaceable"> <code> row_count </code> </em> </code> clause for <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> specifies the maximum number of rows to be deleted. If the number of rows to delete is larger than the limit, repeat the <code class="literal"> DELETE </code> statement until the number of affected rows is less than the <code class="literal"> LIMIT </code> value. </p> <h4> <a name="idm46045182944576"> </a> Subqueries </h4> <p> You cannot delete from a table and select from the same table in a subquery. </p> <h4> <a name="idm46045182943392"> </a> Partitioned Table Support </h4> <p> <code class="literal"> DELETE </code> supports explicit partition selection using the <code class="literal"> PARTITION </code> clause, which takes a list of the comma-separated names of one or more partitions or subpartitions (or both) from which to select rows to be dropped. Partitions not included in the list are ignored. Given a partitioned table <code class="literal"> t </code> with a partition named <code class="literal"> p0 </code> , executing the statement <code class="literal"> DELETE FROM t PARTITION (p0) </code> has the same effect on the table as executing <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE t TRUNCATE PARTITION (p0) </code> </a> ; in both cases, all rows in partition <code class="literal"> p0 </code> are dropped. </p> <p> <code class="literal"> PARTITION </code> can be used along with a <code class="literal"> WHERE </code> condition, in which case the condition is tested only on rows in the listed partitions. For example, <code class="literal"> DELETE FROM t PARTITION (p0) WHERE c &lt; 5 </code> deletes rows only from partition <code class="literal"> p0 </code> for which the condition <code class="literal"> c &lt; 5 </code> is true; rows in any other partitions are not checked and thus not affected by the <code class="literal"> DELETE </code> . </p> <p> The <code class="literal"> PARTITION </code> clause can also be used in multiple-table <code class="literal"> DELETE </code> statements. You can use up to one such option per table named in the <code class="literal"> FROM </code> option. </p> <p> For more information and examples, see <a class="xref" href="partitioning-selection.html" title="26.5 Partition Selection"> Section 26.5, “Partition Selection” </a> . </p> <h4> <a name="idm46045182926944"> </a> Auto-Increment Columns </h4> <p> If you delete the row containing the maximum value for an <code class="literal"> AUTO_INCREMENT </code> column, the value is not reused for a <code class="literal"> MyISAM </code> or <code class="literal"> InnoDB </code> table. If you delete all rows in the table with <code class="literal"> DELETE FROM <em class="replaceable"> <code> tbl_name </code> </em> </code> (without a <code class="literal"> WHERE </code> clause) in <a class="link" href="server-system-variables.html#sysvar_autocommit"> <code class="literal"> autocommit </code> </a> mode, the sequence starts over for all storage engines except <code class="literal"> InnoDB </code> and <code class="literal"> MyISAM </code> . There are some exceptions to this behavior for <code class="literal"> InnoDB </code> tables, as discussed in <a class="xref" href="innodb-auto-increment-handling.html" title="17.6.1.6 AUTO_INCREMENT Handling in InnoDB"> Section 17.6.1.6, “AUTO_INCREMENT Handling in InnoDB” </a> . </p> <p> For <code class="literal"> MyISAM </code> tables, you can specify an <code class="literal"> AUTO_INCREMENT </code> secondary column in a multiple-column key. In this case, reuse of values deleted from the top of the sequence occurs even for <code class="literal"> MyISAM </code> tables. See <a class="xref" href="example-auto-increment.html" title="5.6.9 Using AUTO_INCREMENT"> Section 5.6.9, “Using AUTO_INCREMENT” </a> . </p> <h4> <a name="idm46045182914240"> </a> Modifiers </h4> <p> The <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement supports the following modifiers: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> If you specify the <code class="literal"> LOW_PRIORITY </code> modifier, the server delays execution of the <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> until no other clients are reading from the table. This affects only storage engines that use only table-level locking (such as <code class="literal"> MyISAM </code> , <code class="literal"> MEMORY </code> , and <code class="literal"> MERGE </code> ). </p> <a class="indexterm" name="idm46045182906656"> </a> </li> <li class="listitem"> <p> For <code class="literal"> MyISAM </code> tables, if you use the <code class="literal"> QUICK </code> modifier, the storage engine does not merge index leaves during delete, which may speed up some kinds of delete operations. </p> <a class="indexterm" name="idm46045182902768"> </a> </li> <li class="listitem"> <p> The <code class="literal"> IGNORE </code> modifier causes MySQL to ignore ignorable errors during the process of deleting rows. (Errors encountered during the parsing stage are processed in the usual manner.) Errors that are ignored due to the use of <code class="literal"> IGNORE </code> are returned as warnings. For more information, see <a class="xref" href="sql-mode.html#ignore-effect-on-execution" title="The Effect of IGNORE on Statement Execution"> The Effect of IGNORE on Statement Execution </a> . </p> <a class="indexterm" name="idm46045182898000"> </a> </li> </ul> </div> <h4> <a name="idm46045182896256"> </a> Order of Deletion </h4> <p> If the <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement includes an <code class="literal"> ORDER BY </code> clause, rows are deleted in the order specified by the clause. This is useful primarily in conjunction with <code class="literal"> LIMIT </code> . For example, the following statement finds rows matching the <code class="literal"> WHERE </code> clause, sorts them by <code class="literal"> timestamp_column </code> , and deletes the first (oldest) one: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa12325379"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> somelog <span class="token keyword">WHERE</span> <span class="token keyword">user</span> <span class="token operator">=</span> <span class="token string">'jcole'</span> <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> timestamp_column <span class="token keyword">LIMIT</span> <span class="token number">1</span><span class="token punctuation">;</span></code></pre> </div> <p> <code class="literal"> ORDER BY </code> also helps to delete rows in an order required to avoid referential integrity violations. </p> <h4> <a name="idm46045182888688"> </a> InnoDB Tables </h4> <p> If you are deleting many rows from a large table, you may exceed the lock table size for an <code class="literal"> InnoDB </code> table. To avoid this problem, or simply to minimize the time that the table remains locked, the following strategy (which does not use <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> at all) might be helpful: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Select the rows <span class="emphasis"> <em> not </em> </span> to be deleted into an empty table that has the same structure as the original table: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa70242421"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t_copy <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t <span class="token keyword">WHERE</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Use <a class="link" href="rename-table.html" title="15.1.36 RENAME TABLE Statement"> <code class="literal"> RENAME TABLE </code> </a> to atomically move the original table out of the way and rename the copy to the original name: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa96192377"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">RENAME</span> <span class="token keyword">TABLE</span> t <span class="token keyword">TO</span> t_old<span class="token punctuation">,</span> t_copy <span class="token keyword">TO</span> t<span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Drop the original table: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa55171464"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DROP</span> <span class="token keyword">TABLE</span> t_old<span class="token punctuation">;</span></code></pre> </div> </li> </ol> </div> <p> No other sessions can access the tables involved while <a class="link" href="rename-table.html" title="15.1.36 RENAME TABLE Statement"> <code class="literal"> RENAME TABLE </code> </a> executes, so the rename operation is not subject to concurrency problems. See <a class="xref" href="rename-table.html" title="15.1.36 RENAME TABLE Statement"> Section 15.1.36, “RENAME TABLE Statement” </a> . </p> <h4> <a name="idm46045182874864"> </a> MyISAM Tables </h4> <p> In <code class="literal"> MyISAM </code> tables, deleted rows are maintained in a linked list and subsequent <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> operations reuse old row positions. To reclaim unused space and reduce file sizes, use the <a class="link" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> <code class="literal"> OPTIMIZE TABLE </code> </a> statement or the <a class="link" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> <span class="command"> <strong> myisamchk </strong> </span> </a> utility to reorganize tables. <a class="link" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> <code class="literal"> OPTIMIZE TABLE </code> </a> is easier to use, but <a class="link" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> <span class="command"> <strong> myisamchk </strong> </span> </a> is faster. See <a class="xref" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> Section 15.7.3.4, “OPTIMIZE TABLE Statement” </a> , and <a class="xref" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> Section 6.6.4, “myisamchk — MyISAM Table-Maintenance Utility” </a> . </p> <p> The <code class="literal"> QUICK </code> modifier affects whether index leaves are merged for delete operations. <code class="literal"> DELETE QUICK </code> is most useful for applications where index values for deleted rows are replaced by similar index values from rows inserted later. In this case, the holes left by deleted values are reused. </p> <p> <code class="literal"> DELETE QUICK </code> is not useful when deleted values lead to underfilled index blocks spanning a range of index values for which new inserts occur again. In this case, use of <code class="literal"> QUICK </code> can lead to wasted space in the index that remains unreclaimed. Here is an example of such a scenario: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Create a table that contains an indexed <code class="literal"> AUTO_INCREMENT </code> column. </p> </li> <li class="listitem"> <p> Insert many rows into the table. Each insert results in an index value that is added to the high end of the index. </p> </li> <li class="listitem"> <p> Delete a block of rows at the low end of the column range using <code class="literal"> DELETE QUICK </code> . </p> </li> </ol> </div> <p> In this scenario, the index blocks associated with the deleted index values become underfilled but are not merged with other index blocks due to the use of <code class="literal"> QUICK </code> . They remain underfilled when new inserts occur, because new rows do not have index values in the deleted range. Furthermore, they remain underfilled even if you later use <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> without <code class="literal"> QUICK </code> , unless some of the deleted index values happen to lie in index blocks within or adjacent to the underfilled blocks. To reclaim unused index space under these circumstances, use <a class="link" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> <code class="literal"> OPTIMIZE TABLE </code> </a> . </p> <p> If you are going to delete many rows from a table, it might be faster to use <code class="literal"> DELETE QUICK </code> followed by <a class="link" href="optimize-table.html" title="15.7.3.4 OPTIMIZE TABLE Statement"> <code class="literal"> OPTIMIZE TABLE </code> </a> . This rebuilds the index rather than performing many index block merge operations. </p> <h4> <a name="idm46045182848768"> </a> Multi-Table Deletes </h4> <p> You can specify multiple tables in a <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement to delete rows from one or more tables depending on the condition in the <code class="literal"> WHERE </code> clause. You cannot use <code class="literal"> ORDER BY </code> or <code class="literal"> LIMIT </code> in a multiple-table <code class="literal"> DELETE </code> . The <em class="replaceable"> <code> table_references </code> </em> clause lists the tables involved in the join, as described in <a class="xref" href="join.html" title="15.2.13.2 JOIN Clause"> Section 15.2.13.2, “JOIN Clause” </a> . </p> <p> For the first multiple-table syntax, only matching rows from the tables listed before the <code class="literal"> FROM </code> clause are deleted. For the second multiple-table syntax, only matching rows from the tables listed in the <code class="literal"> FROM </code> clause (before the <code class="literal"> USING </code> clause) are deleted. The effect is that you can delete rows from many tables at the same time and have additional tables that are used only for searching: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa59409999"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> t1<span class="token punctuation">,</span> t2 <span class="token keyword">FROM</span> t1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t3 <span class="token keyword">WHERE</span> t1<span class="token punctuation">.</span>id<span class="token operator">=</span>t2<span class="token punctuation">.</span>id <span class="token operator">AND</span> t2<span class="token punctuation">.</span>id<span class="token operator">=</span>t3<span class="token punctuation">.</span>id<span class="token punctuation">;</span></code></pre> </div> <p> Or: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa10044147"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> t1<span class="token punctuation">,</span> t2 <span class="token keyword">USING</span> t1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t3 <span class="token keyword">WHERE</span> t1<span class="token punctuation">.</span>id<span class="token operator">=</span>t2<span class="token punctuation">.</span>id <span class="token operator">AND</span> t2<span class="token punctuation">.</span>id<span class="token operator">=</span>t3<span class="token punctuation">.</span>id<span class="token punctuation">;</span></code></pre> </div> <p> These statements use all three tables when searching for rows to delete, but delete matching rows only from tables <code class="literal"> t1 </code> and <code class="literal"> t2 </code> . </p> <p> The preceding examples use <code class="literal"> INNER JOIN </code> , but multiple-table <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statements can use other types of join permitted in <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements, such as <code class="literal"> LEFT JOIN </code> . For example, to delete rows that exist in <code class="literal"> t1 </code> that have no match in <code class="literal"> t2 </code> , use a <code class="literal"> LEFT JOIN </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa46485770"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> t1 <span class="token keyword">FROM</span> t1 <span class="token keyword">LEFT</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">ON</span> t1<span class="token punctuation">.</span>id<span class="token operator">=</span>t2<span class="token punctuation">.</span>id <span class="token keyword">WHERE</span> t2<span class="token punctuation">.</span>id <span class="token operator">IS</span> <span class="token boolean">NULL</span><span class="token punctuation">;</span></code></pre> </div> <p> The syntax permits <code class="literal"> .* </code> after each <em class="replaceable"> <code> tbl_name </code> </em> for compatibility with <span class="command"> <strong> Access </strong> </span> . </p> <p> If you use a multiple-table <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> statement involving <code class="literal"> InnoDB </code> tables for which there are foreign key constraints, the MySQL optimizer might process tables in an order that differs from that of their parent/child relationship. In this case, the statement fails and rolls back. Instead, you should delete from a single table and rely on the <code class="literal"> ON DELETE </code> capabilities that <code class="literal"> InnoDB </code> provides to cause the other tables to be modified accordingly. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> If you declare an alias for a table, you must use the alias when referring to the table: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa96834083"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> t1 <span class="token keyword">FROM</span> test <span class="token keyword">AS</span> t1<span class="token punctuation">,</span> test2 <span class="token keyword">WHERE</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span></code></pre> </div> </div> <p> Table aliases in a multiple-table <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> should be declared only in the <em class="replaceable"> <code> table_references </code> </em> part of the statement. Elsewhere, alias references are permitted but not alias declarations. </p> <p> Correct: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57224180"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> a1<span class="token punctuation">,</span> a2 <span class="token keyword">FROM</span> t1 <span class="token keyword">AS</span> a1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">AS</span> a2 <span class="token keyword">WHERE</span> a1<span class="token punctuation">.</span>id<span class="token operator">=</span>a2<span class="token punctuation">.</span>id<span class="token punctuation">;</span> <span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> a1<span class="token punctuation">,</span> a2 <span class="token keyword">USING</span> t1 <span class="token keyword">AS</span> a1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">AS</span> a2 <span class="token keyword">WHERE</span> a1<span class="token punctuation">.</span>id<span class="token operator">=</span>a2<span class="token punctuation">.</span>id<span class="token punctuation">;</span></code></pre> </div> <p> Incorrect: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa83382532"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DELETE</span> t1 <span class="token keyword">AS</span> a1<span class="token punctuation">,</span> t2 <span class="token keyword">AS</span> a2 <span class="token keyword">FROM</span> t1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">WHERE</span> a1<span class="token punctuation">.</span>id<span class="token operator">=</span>a2<span class="token punctuation">.</span>id<span class="token punctuation">;</span> <span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">AS</span> a1<span class="token punctuation">,</span> t2 <span class="token keyword">AS</span> a2 <span class="token keyword">USING</span> t1 <span class="token keyword">INNER</span> <span class="token keyword">JOIN</span> t2 <span class="token keyword">WHERE</span> a1<span class="token punctuation">.</span>id<span class="token operator">=</span>a2<span class="token punctuation">.</span>id<span class="token punctuation">;</span></code></pre> </div> <p> Table aliases are also supported for single-table <code class="literal"> DELETE </code> statements. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/show-index.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="show-index"> </a> 15.7.7.23 SHOW INDEX Statement </h4> </div> </div> </div> <a class="indexterm" name="idm46045170215040"> </a> <a class="indexterm" name="idm46045170213136"> </a> <a class="indexterm" name="idm46045170212064"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa16796050"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SHOW</span> <span class="token punctuation">[</span><span class="token keyword">EXTENDED</span><span class="token punctuation">]</span> {<span class="token keyword">INDEX</span> <span class="token operator">|</span> <span class="token keyword">INDEXES</span> <span class="token operator">|</span> <span class="token keyword">KEYS</span>} {<span class="token keyword">FROM</span> <span class="token operator">|</span> <span class="token keyword">IN</span>} <em class="replaceable">tbl_name</em> <span class="token punctuation">[</span>{<span class="token keyword">FROM</span> <span class="token operator">|</span> <span class="token keyword">IN</span>} <em class="replaceable">db_name</em><span class="token punctuation">]</span> <span class="token punctuation">[</span><span class="token keyword">WHERE</span> <em class="replaceable">expr</em><span class="token punctuation">]</span></code></pre> </div> <p> <a class="link" href="show-index.html" title="15.7.7.23 SHOW INDEX Statement"> <code class="literal"> SHOW INDEX </code> </a> returns table index information. The format resembles that of the <code class="literal"> SQLStatistics </code> call in ODBC. This statement requires some privilege for any column in the table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa99024230"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">INDEX</span> <span class="token keyword">FROM</span> City\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> city Non_unique<span class="token punctuation">:</span> 0 Key_name<span class="token punctuation">:</span> PRIMARY Seq_in_index<span class="token punctuation">:</span> 1 Column_name<span class="token punctuation">:</span> ID Collation<span class="token punctuation">:</span> A Cardinality<span class="token punctuation">:</span> 4188 Sub_part<span class="token punctuation">:</span> NULL Packed<span class="token punctuation">:</span> NULL Null<span class="token punctuation">:</span> Index_type<span class="token punctuation">:</span> BTREE Comment<span class="token punctuation">:</span> Index_comment<span class="token punctuation">:</span> Visible<span class="token punctuation">:</span> YES Expression<span class="token punctuation">:</span> NULL <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 2. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> city Non_unique<span class="token punctuation">:</span> 1 Key_name<span class="token punctuation">:</span> CountryCode Seq_in_index<span class="token punctuation">:</span> 1 Column_name<span class="token punctuation">:</span> CountryCode Collation<span class="token punctuation">:</span> A Cardinality<span class="token punctuation">:</span> 232 Sub_part<span class="token punctuation">:</span> NULL Packed<span class="token punctuation">:</span> NULL Null<span class="token punctuation">:</span> Index_type<span class="token punctuation">:</span> BTREE Comment<span class="token punctuation">:</span> Index_comment<span class="token punctuation">:</span> Visible<span class="token punctuation">:</span> YES Expression<span class="token punctuation">:</span> NULL</span></code></pre> </div> <p> An alternative to <code class="literal"> <em class="replaceable"> <code> tbl_name </code> </em> FROM <em class="replaceable"> <code> db_name </code> </em> </code> syntax is <em class="replaceable"> <code> db_name </code> </em> . <em class="replaceable"> <code> tbl_name </code> </em> . These two statements are equivalent: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25708027"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SHOW</span> <span class="token keyword">INDEX</span> <span class="token keyword">FROM</span> mytable <span class="token keyword">FROM</span> mydb<span class="token punctuation">;</span> <span class="token keyword">SHOW</span> <span class="token keyword">INDEX</span> <span class="token keyword">FROM</span> mydb<span class="token punctuation">.</span>mytable<span class="token punctuation">;</span></code></pre> </div> <p> The optional <code class="literal"> EXTENDED </code> keyword causes the output to include information about hidden indexes that MySQL uses internally and are not accessible by users. </p> <p> The <code class="literal"> WHERE </code> clause can be given to select rows using more general conditions, as discussed in <a class="xref" href="extended-show.html" title="28.8 Extensions to SHOW Statements"> Section 28.8, “Extensions to SHOW Statements” </a> . </p> <p> <a class="link" href="show-index.html" title="15.7.7.23 SHOW INDEX Statement"> <code class="literal"> SHOW INDEX </code> </a> returns the following fields: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> Table </code> </p> <p> The name of the table. </p> </li> <li class="listitem"> <p> <code class="literal"> Non_unique </code> </p> <p> 0 if the index cannot contain duplicates, 1 if it can. </p> </li> <li class="listitem"> <p> <code class="literal"> Key_name </code> </p> <p> The name of the index. If the index is the primary key, the name is always <code class="literal"> PRIMARY </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> Seq_in_index </code> </p> <p> The column sequence number in the index, starting with 1. </p> </li> <li class="listitem"> <p> <code class="literal"> Column_name </code> </p> <p> The column name. See also the description for the <code class="literal"> Expression </code> column. </p> </li> <li class="listitem"> <p> <code class="literal"> Collation </code> </p> <a class="indexterm" name="idm46045170180224"> </a> <p> How the column is sorted in the index. This can have values <code class="literal"> A </code> (ascending), <code class="literal"> D </code> (descending), or <code class="literal"> NULL </code> (not sorted). </p> </li> <li class="listitem"> <p> <code class="literal"> Cardinality </code> </p> <a class="indexterm" name="idm46045170174256"> </a> <a class="indexterm" name="idm46045170172352"> </a> <p> An estimate of the number of unique values in the index. To update this number, run <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> or (for <code class="literal"> MyISAM </code> tables) <a class="link" href="myisamchk.html" title="6.6.4 myisamchk — MyISAM Table-Maintenance Utility"> <span class="command"> <strong> myisamchk -a </strong> </span> </a> . </p> <p> <code class="literal"> Cardinality </code> is counted based on statistics stored as integers, so the value is not necessarily exact even for small tables. The higher the cardinality, the greater the chance that MySQL uses the index when doing joins. </p> </li> <li class="listitem"> <p> <code class="literal"> Sub_part </code> </p> <p> The index prefix. That is, the number of indexed characters if the column is only partly indexed, <code class="literal"> NULL </code> if the entire column is indexed. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Prefix <span class="emphasis"> <em> limits </em> </span> are measured in bytes. However, prefix <span class="emphasis"> <em> lengths </em> </span> for index specifications in <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> , <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> , and <a class="link" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> <code class="literal"> CREATE INDEX </code> </a> statements are interpreted as number of characters for nonbinary string types ( <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> CHAR </code> </a> , <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> , <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> ) and number of bytes for binary string types ( <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> BINARY </code> </a> , <a class="link" href="binary-varbinary.html" title="13.3.3 The BINARY and VARBINARY Types"> <code class="literal"> VARBINARY </code> </a> , <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> ). Take this into account when specifying a prefix length for a nonbinary string column that uses a multibyte character set. </p> </div> <p> For additional information about index prefixes, see <a class="xref" href="column-indexes.html" title="10.3.5 Column Indexes"> Section 10.3.5, “Column Indexes” </a> , and <a class="xref" href="create-index.html" title="15.1.15 CREATE INDEX Statement"> Section 15.1.15, “CREATE INDEX Statement” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> Packed </code> </p> <p> Indicates how the key is packed. <code class="literal"> NULL </code> if it is not. </p> </li> <li class="listitem"> <p> <code class="literal"> Null </code> </p> <p> Contains <code class="literal"> YES </code> if the column may contain <code class="literal"> NULL </code> values and <code class="literal"> '' </code> if not. </p> </li> <li class="listitem"> <p> <code class="literal"> Index_type </code> </p> <p> The index method used ( <code class="literal"> BTREE </code> , <code class="literal"> FULLTEXT </code> , <code class="literal"> HASH </code> , <code class="literal"> RTREE </code> ). </p> </li> <li class="listitem"> <p> <code class="literal"> Comment </code> </p> <p> Information about the index not described in its own column, such as <code class="literal"> disabled </code> if the index is disabled. </p> </li> <li class="listitem"> <p> <code class="literal"> Index_comment </code> </p> <p> Any comment provided for the index with a <code class="literal"> COMMENT </code> attribute when the index was created. </p> </li> <li class="listitem"> <p> <code class="literal"> Visible </code> </p> <p> Whether the index is visible to the optimizer. See <a class="xref" href="invisible-indexes.html" title="10.3.12 Invisible Indexes"> Section 10.3.12, “Invisible Indexes” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> Expression </code> </p> <p> MySQL supports functional key parts (see <a class="xref" href="create-index.html#create-index-functional-key-parts" title="Functional Key Parts"> Functional Key Parts </a> ); this affects both the <code class="literal"> Column_name </code> and <code class="literal"> Expression </code> columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> For a nonfunctional key part, <code class="literal"> Column_name </code> indicates the column indexed by the key part and <code class="literal"> Expression </code> is <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <p> For a functional key part, <code class="literal"> Column_name </code> column is <code class="literal"> NULL </code> and <code class="literal"> Expression </code> indicates the expression for the key part. </p> </li> </ul> </div> </li> </ul> </div> <p> Information about table indexes is also available from the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-statistics-table.html" title="28.3.34 The INFORMATION_SCHEMA STATISTICS Table"> <code class="literal"> STATISTICS </code> </a> table. See <a class="xref" href="information-schema-statistics-table.html" title="28.3.34 The INFORMATION_SCHEMA STATISTICS Table"> Section 28.3.34, “The INFORMATION_SCHEMA STATISTICS Table” </a> . The extended information about hidden indexes is available only using <code class="literal"> SHOW EXTENDED INDEX </code> ; it cannot be obtained from the <a class="link" href="information-schema-statistics-table.html" title="28.3.34 The INFORMATION_SCHEMA STATISTICS Table"> <code class="literal"> STATISTICS </code> </a> table. </p> <p> You can list a table's indexes with the <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow -k <em class="replaceable"> <code> db_name </code> </em> <em class="replaceable"> <code> tbl_name </code> </em> </strong> </span> </a> command. </p> <p> <code class="literal"> SHOW INDEX </code> includes the table's generated invisible key, if it has one, by default. You can cause this information to be suppressed in the statement's output by setting <a class="link" href="server-system-variables.html#sysvar_show_gipk_in_create_table_and_information_schema"> <code class="literal"> show_gipk_in_create_table_and_information_schema = OFF </code> </a> . For more information, see <a class="xref" href="create-table-gipks.html" title="15.1.20.11 Generated Invisible Primary Keys"> Section 15.1.20.11, “Generated Invisible Primary Keys” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-file-instances-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-file-instances-table"> </a> 29.12.3.2 The file_instances Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073578448"> </a> <a class="indexterm" name="idm46045073576960"> </a> <p> The <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> table lists all the files seen by the Performance Schema when executing file I/O instrumentation. If a file on disk has never been opened, it is not shown in <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> . When a file is deleted from the disk, it is also removed from the <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> table. </p> <p> The <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> FILE_NAME </code> </p> <p> The file name. </p> </li> <li class="listitem"> <p> <code class="literal"> EVENT_NAME </code> </p> <p> The instrument name associated with the file. </p> </li> <li class="listitem"> <p> <code class="literal"> OPEN_COUNT </code> </p> <p> The count of open handles on the file. If a file was opened and then closed, it was opened 1 time, but <code class="literal"> OPEN_COUNT </code> is 0. To list all the files currently opened by the server, use <code class="literal"> WHERE OPEN_COUNT &gt; 0 </code> . </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> FILE_NAME </code> ) </p> </li> <li class="listitem"> <p> Index on ( <code class="literal"> EVENT_NAME </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is not permitted for the <a class="link" href="performance-schema-file-instances-table.html" title="29.12.3.2 The file_instances Table"> <code class="literal"> file_instances </code> </a> table. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/charset-mysql.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="charset-mysql"> </a> 12.2 Character Sets and Collations in MySQL </h2> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="charset-repertoire.html"> 12.2.1 Character Set Repertoire </a> </span> </dt> <dt> <span class="section"> <a href="charset-metadata.html"> 12.2.2 UTF-8 for Metadata </a> </span> </dt> </dl> </div> <p> MySQL Server supports multiple character sets, including several Unicode character sets. To display the available character sets, use the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-character-sets-table.html" title="28.3.4 The INFORMATION_SCHEMA CHARACTER_SETS Table"> <code class="literal"> CHARACTER_SETS </code> </a> table or the <a class="link" href="show-character-set.html" title="15.7.7.4 SHOW CHARACTER SET Statement"> <code class="literal"> SHOW CHARACTER SET </code> </a> statement. A partial listing follows. For more complete information, see <a class="xref" href="charset-charsets.html" title="12.10 Supported Character Sets and Collations"> Section 12.10, “Supported Character Sets and Collations” </a> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa2101057"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CHARACTER</span> <span class="token keyword">SET</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Charset <span class="token punctuation">|</span> Description <span class="token punctuation">|</span> Default collation <span class="token punctuation">|</span> Maxlen <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> big5 <span class="token punctuation">|</span> Big5 Traditional Chinese <span class="token punctuation">|</span> big5_chinese_ci <span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> binary <span class="token punctuation">|</span> Binary pseudo charset <span class="token punctuation">|</span> binary <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token output"><span class="token punctuation">|</span> latin1 <span class="token punctuation">|</span> cp1252 West European <span class="token punctuation">|</span> latin1_swedish_ci <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token output"><span class="token punctuation">|</span> ucs2 <span class="token punctuation">|</span> UCS<span class="token punctuation">-</span>2 Unicode <span class="token punctuation">|</span> ucs2_general_ci <span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token output"><span class="token punctuation">|</span> utf8mb3 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>8 Unicode <span class="token punctuation">|</span> utf8mb3_general_ci <span class="token punctuation">|</span> 3 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>8 Unicode <span class="token punctuation">|</span> utf8mb4_0900_ai_ci <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span></code></pre> </div> <p> By default, the <a class="link" href="show-character-set.html" title="15.7.7.4 SHOW CHARACTER SET Statement"> <code class="literal"> SHOW CHARACTER SET </code> </a> statement displays all available character sets. It takes an optional <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> or <code class="literal"> WHERE </code> clause that indicates which character set names to match. The following example shows some of the Unicode character sets (those based on Unicode Transformation Format): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25021910"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CHARACTER</span> <span class="token keyword">SET</span> <span class="token operator">LIKE</span> <span class="token string">'utf%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Charset <span class="token punctuation">|</span> Description <span class="token punctuation">|</span> Default collation <span class="token punctuation">|</span> Maxlen <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> utf16 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>16 Unicode <span class="token punctuation">|</span> utf16_general_ci <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf16le <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>16LE Unicode <span class="token punctuation">|</span> utf16le_general_ci <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf32 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>32 Unicode <span class="token punctuation">|</span> utf32_general_ci <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb3 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>8 Unicode <span class="token punctuation">|</span> utf8mb3_general_ci <span class="token punctuation">|</span> 3 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> UTF<span class="token punctuation">-</span>8 Unicode <span class="token punctuation">|</span> utf8mb4_0900_ai_ci <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> A given character set always has at least one collation, and most character sets have several. To list the display collations for a character set, use the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-collations-table.html" title="28.3.6 The INFORMATION_SCHEMA COLLATIONS Table"> <code class="literal"> COLLATIONS </code> </a> table or the <a class="link" href="show-collation.html" title="15.7.7.5 SHOW COLLATION Statement"> <code class="literal"> SHOW COLLATION </code> </a> statement. </p> <p> By default, the <a class="link" href="show-collation.html" title="15.7.7.5 SHOW COLLATION Statement"> <code class="literal"> SHOW COLLATION </code> </a> statement displays all available collations. It takes an optional <a class="link" href="string-comparison-functions.html#operator_like"> <code class="literal"> LIKE </code> </a> or <code class="literal"> WHERE </code> clause that indicates which collation names to display. For example, to see the collations for the default character set, <code class="literal"> utf8mb4 </code> , use this statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa77833063"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">COLLATION</span> <span class="token keyword">WHERE</span> <span class="token keyword">Charset</span> <span class="token operator">=</span> <span class="token string">'utf8mb4'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Collation <span class="token punctuation">|</span> Charset <span class="token punctuation">|</span> Id <span class="token punctuation">|</span> Default <span class="token punctuation">|</span> Compiled <span class="token punctuation">|</span> Sortlen <span class="token punctuation">|</span> Pad_attribute <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 255 <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_0900_as_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 305 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 278 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_0900_bin <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 309 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_bin <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 46 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_croatian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 245 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_cs_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 266 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_cs_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 289 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_czech_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 234 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_danish_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 235 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_da_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 267 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_da_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 290 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_de_pb_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 256 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_de_pb_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 279 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_eo_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 273 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_eo_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 296 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_esperanto_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 241 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_estonian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 230 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_es_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 263 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_es_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 286 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_es_trad_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 270 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_es_trad_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 293 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_et_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 262 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_et_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 285 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_general_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 45 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_german2_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 244 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_hr_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 275 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_hr_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 298 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_hungarian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 242 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_hu_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 274 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_hu_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 297 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_icelandic_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 225 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_is_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 257 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_is_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 280 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ja_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 303 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ja_0900_as_cs_ks <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 304 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 24 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_latvian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 226 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_la_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 271 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_la_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 294 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_lithuanian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 236 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_lt_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 268 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_lt_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 291 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_lv_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 258 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_lv_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 281 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_persian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 240 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_pl_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 261 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_pl_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 284 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_polish_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 229 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_romanian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 227 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_roman_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 239 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ro_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 259 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ro_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 282 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ru_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 306 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_ru_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 307 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sinhala_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 243 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sk_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 269 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sk_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 292 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_slovak_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 237 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_slovenian_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 228 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sl_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 260 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sl_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 283 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_spanish2_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 238 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_spanish_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 231 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sv_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 264 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_sv_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 287 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_swedish_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 232 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_tr_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 265 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_tr_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 288 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_turkish_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 233 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_unicode_520_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 246 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_unicode_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 224 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_vietnamese_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 247 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 8 <span class="token punctuation">|</span> PAD SPACE <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_vi_0900_ai_ci <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 277 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_vi_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 300 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> utf8mb4_zh_0900_as_cs <span class="token punctuation">|</span> utf8mb4 <span class="token punctuation">|</span> 308 <span class="token punctuation">|</span> <span class="token punctuation">|</span> Yes <span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> NO PAD <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For more information about those collations, see <a class="xref" href="charset-unicode-sets.html" title="12.10.1 Unicode Character Sets"> Section 12.10.1, “Unicode Character Sets” </a> . </p> <p> Collations have these general characteristics: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Two different character sets cannot have the same collation. </p> </li> <li class="listitem"> <p> Each character set has a <span class="emphasis"> <em> default collation </em> </span> . For example, the default collations for <code class="literal"> utf8mb4 </code> and <code class="literal"> latin1 </code> are <code class="literal"> utf8mb4_0900_ai_ci </code> and <code class="literal"> latin1_swedish_ci </code> , respectively. The <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-character-sets-table.html" title="28.3.4 The INFORMATION_SCHEMA CHARACTER_SETS Table"> <code class="literal"> CHARACTER_SETS </code> </a> table and the <a class="link" href="show-character-set.html" title="15.7.7.4 SHOW CHARACTER SET Statement"> <code class="literal"> SHOW CHARACTER SET </code> </a> statement indicate the default collation for each character set. The <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-collations-table.html" title="28.3.6 The INFORMATION_SCHEMA COLLATIONS Table"> <code class="literal"> COLLATIONS </code> </a> table and the <a class="link" href="show-collation.html" title="15.7.7.5 SHOW COLLATION Statement"> <code class="literal"> SHOW COLLATION </code> </a> statement have a column that indicates for each collation whether it is the default for its character set ( <code class="literal"> Yes </code> if so, empty if not). </p> </li> <li class="listitem"> <p> Collation names start with the name of the character set with which they are associated, generally followed by one or more suffixes indicating other collation characteristics. For additional information about naming conventions, see <a class="xref" href="charset-collation-names.html" title="12.3.1 Collation Naming Conventions"> Section 12.3.1, “Collation Naming Conventions” </a> . </p> </li> </ul> </div> <p> When a character set has multiple collations, it might not be clear which collation is most suitable for a given application. To avoid choosing an inappropriate collation, perform some comparisons with representative data values to make sure that a given collation sorts values the way you expect. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-events-stages-current-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-events-stages-current-table"> </a> 29.12.5.1 The events_stages_current Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073055680"> </a> <a class="indexterm" name="idm46045073054176"> </a> <p> The <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table contains current stage events. The table stores one row per thread showing the current status of the thread's most recent monitored stage event, so there is no system variable for configuring the table size. </p> <p> Of the tables that contain stage event rows, <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> is the most fundamental. Other tables that contain stage event rows are logically derived from the current events. For example, the <a class="link" href="performance-schema-events-stages-history-table.html" title="29.12.5.2 The events_stages_history Table"> <code class="literal"> events_stages_history </code> </a> and <a class="link" href="performance-schema-events-stages-history-long-table.html" title="29.12.5.3 The events_stages_history_long Table"> <code class="literal"> events_stages_history_long </code> </a> tables are collections of the most recent stage events that have ended, up to a maximum number of rows per thread and globally across all threads, respectively. </p> <p> For more information about the relationship between the three stage event tables, see <a class="xref" href="performance-schema-event-tables.html" title="29.9 Performance Schema Tables for Current and Historical Events"> Section 29.9, “Performance Schema Tables for Current and Historical Events” </a> . </p> <p> For information about configuring whether to collect stage events, see <a class="xref" href="performance-schema-stage-tables.html" title="29.12.5 Performance Schema Stage Event Tables"> Section 29.12.5, “Performance Schema Stage Event Tables” </a> . </p> <p> The <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> THREAD_ID </code> , <code class="literal"> EVENT_ID </code> </p> <p> The thread associated with the event and the thread current event number when the event starts. The <code class="literal"> THREAD_ID </code> and <code class="literal"> EVENT_ID </code> values taken together uniquely identify the row. No two rows have the same pair of values. </p> </li> <li class="listitem"> <p> <code class="literal"> END_EVENT_ID </code> </p> <p> This column is set to <code class="literal"> NULL </code> when the event starts and updated to the thread current event number when the event ends. </p> </li> <li class="listitem"> <p> <code class="literal"> EVENT_NAME </code> </p> <p> The name of the instrument that produced the event. This is a <code class="literal"> NAME </code> value from the <a class="link" href="performance-schema-setup-instruments-table.html" title="29.12.2.3 The setup_instruments Table"> <code class="literal"> setup_instruments </code> </a> table. Instrument names may have multiple parts and form a hierarchy, as discussed in <a class="xref" href="performance-schema-instrument-naming.html" title="29.6 Performance Schema Instrument Naming Conventions"> Section 29.6, “Performance Schema Instrument Naming Conventions” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> SOURCE </code> </p> <p> The name of the source file containing the instrumented code that produced the event and the line number in the file at which the instrumentation occurs. This enables you to check the source to determine exactly what code is involved. </p> </li> <li class="listitem"> <p> <code class="literal"> TIMER_START </code> , <code class="literal"> TIMER_END </code> , <code class="literal"> TIMER_WAIT </code> </p> <p> Timing information for the event. The unit for these values is picoseconds (trillionths of a second). The <code class="literal"> TIMER_START </code> and <code class="literal"> TIMER_END </code> values indicate when event timing started and ended. <code class="literal"> TIMER_WAIT </code> is the event elapsed time (duration). </p> <p> If an event has not finished, <code class="literal"> TIMER_END </code> is the current timer value and <code class="literal"> TIMER_WAIT </code> is the time elapsed so far ( <code class="literal"> TIMER_END </code> − <code class="literal"> TIMER_START </code> ). </p> <p> If an event is produced from an instrument that has <code class="literal"> TIMED = NO </code> , timing information is not collected, and <code class="literal"> TIMER_START </code> , <code class="literal"> TIMER_END </code> , and <code class="literal"> TIMER_WAIT </code> are all <code class="literal"> NULL </code> . </p> <p> For discussion of picoseconds as the unit for event times and factors that affect time values, see <a class="xref" href="performance-schema-timing.html" title="29.4.1 Performance Schema Event Timing"> Section 29.4.1, “Performance Schema Event Timing” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> WORK_COMPLETED </code> , <code class="literal"> WORK_ESTIMATED </code> </p> <p> These columns provide stage progress information, for instruments that have been implemented to produce such information. <code class="literal"> WORK_COMPLETED </code> indicates how many work units have been completed for the stage, and <code class="literal"> WORK_ESTIMATED </code> indicates how many work units are expected for the stage. For more information, see <a class="xref" href="performance-schema-stage-tables.html#stage-event-progress" title="Stage Event Progress Information"> Stage Event Progress Information </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> NESTING_EVENT_ID </code> </p> <p> The <code class="literal"> EVENT_ID </code> value of the event within which this event is nested. The nesting event for a stage event is usually a statement event. </p> </li> <li class="listitem"> <p> <code class="literal"> NESTING_EVENT_TYPE </code> </p> <p> The nesting event type. The value is <code class="literal"> TRANSACTION </code> , <code class="literal"> STATEMENT </code> , <code class="literal"> STAGE </code> , or <code class="literal"> WAIT </code> . </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> THREAD_ID </code> , <code class="literal"> EVENT_ID </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is permitted for the <a class="link" href="performance-schema-events-stages-current-table.html" title="29.12.5.1 The events_stages_current Table"> <code class="literal"> events_stages_current </code> </a> table. It removes the rows. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/dynindex-isolevel.html
<div id="docs-body"> <div class="index"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="dynindex-isolevel"> </a> Transaction Isolation Level Index </h2> </div> </div> </div> <p> <a name="isolevel-index-top"> </a> <a class="link" href="dynindex-isolevel.html#isolevel-index-R" title="R"> R </a> | <a class="link" href="dynindex-isolevel.html#isolevel-index-S" title="S"> S </a> </p> <div class="indexdiv"> <a name="isolevel-index-R"> </a> <h3 class="title"> R </h3> <p> [ <a class="link" href="dynindex-isolevel.html#isolevel-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> READ COMMITTED </h3> <dl> <dt> <a class="xref" href="innodb-consistent-read.html" title="17.7.2.3 Consistent Nonlocking Reads"> Section 17.7.2.3, “Consistent Nonlocking Reads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndbd-definition.html" title="25.4.3.6 Defining NDB Cluster Data Nodes"> Section 25.4.3.6, “Defining NDB Cluster Data Nodes” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndb-innodb-engines.html" title="25.2.6.1 Differences Between the NDB and InnoDB Storage Engines"> Section 25.2.6.1, “Differences Between the NDB and InnoDB Storage Engines” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-limitations.html" title="20.3.2 Group Replication Limitations"> Section 20.3.2, “Group Replication Limitations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-deadlocks-handling.html" title="17.7.5.3 How to Minimize and Handle Deadlocks"> Section 17.7.5.3, “How to Minimize and Handle Deadlocks” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-locking.html" title="17.7.1 InnoDB Locking"> Section 17.7.1, “InnoDB Locking” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-transactions.html" title="25.2.7.3 Limits Relating to Transaction Handling in NDB Cluster"> Section 25.2.7.3, “Limits Relating to Transaction Handling in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-locks-set.html" title="17.7.3 Locks Set by Different SQL Statements in InnoDB"> Section 17.7.3, “Locks Set by Different SQL Statements in InnoDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-general.html" title="A.1 MySQL 8.4 FAQ: General"> Section A.1, “MySQL 8.4 FAQ: General” </a> </dt> <dd> </dd> <dt> <a class="xref" href="faqs-mysql-cluster.html" title="A.10 MySQL 8.4 FAQ: NDB Cluster"> Section A.10, “MySQL 8.4 FAQ: NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-ndb-innodb-usage.html" title="25.2.6.3 NDB and InnoDB Feature Usage Summary"> Section 25.2.6.3, “NDB and InnoDB Feature Usage Summary” </a> </dt> <dd> </dd> <dt> <a class="xref" href="optimizing-innodb-transaction-management.html" title="10.5.2 Optimizing InnoDB Transaction Management"> Section 10.5.2, “Optimizing InnoDB Transaction Management” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-events-transactions-current-table.html" title="29.12.7.1 The events_transactions_current Table"> Section 29.12.7.1, “The events_transactions_current Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-transaction-isolation-levels.html" title="17.7.2.1 Transaction Isolation Levels"> Section 17.7.2.1, “Transaction Isolation Levels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> READ UNCOMMITTED </h3> <dl> <dt> <a class="xref" href="innodb-consistent-read.html" title="17.7.2.3 Consistent Nonlocking Reads"> Section 17.7.2.3, “Consistent Nonlocking Reads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-persistent-stats.html#innodb-persistent-stats-delete-marked" title="17.8.10.1.4 Including Delete-marked Records in Persistent Statistics Calculations"> Section 17.8.10.1.4, “Including Delete-marked Records in Persistent Statistics Calculations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-parameters.html" title="17.14 InnoDB Startup Options and System Variables"> Section 17.14, “InnoDB Startup Options and System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-transactions.html" title="25.2.7.3 Limits Relating to Transaction Handling in NDB Cluster"> Section 25.2.7.3, “Limits Relating to Transaction Handling in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-setting.html" title="7.4.4.2 Setting The Binary Log Format"> Section 7.4.4.2, “Setting The Binary Log Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-events-transactions-current-table.html" title="29.12.7.1 The events_transactions_current Table"> Section 29.12.7.1, “The events_transactions_current Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-transaction-isolation-levels.html" title="17.7.2.1 Transaction Isolation Levels"> Section 17.7.2.1, “Transaction Isolation Levels” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> READ-COMMITTED </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> READ-UNCOMMITTED </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> REPEATABLE READ </h3> <dl> <dt> <a class="xref" href="innodb-consistent-read.html" title="17.7.2.3 Consistent Nonlocking Reads"> Section 17.7.2.3, “Consistent Nonlocking Reads” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-limitations.html" title="20.3.2 Group Replication Limitations"> Section 20.3.2, “Group Replication Limitations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-locking.html" title="17.7.1 InnoDB Locking"> Section 17.7.1, “InnoDB Locking” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-transactions.html" title="25.2.7.3 Limits Relating to Transaction Handling in NDB Cluster"> Section 25.2.7.3, “Limits Relating to Transaction Handling in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-mixed.html" title="7.4.4.3 Mixed Binary Logging Format"> Section 7.4.4.3, “Mixed Binary Logging Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> Section 6.5.4, “mysqldump — A Database Backup Program” </a> </dt> <dd> </dd> <dt> <a class="xref" href="optimizing-innodb-transaction-management.html" title="10.5.2 Optimizing InnoDB Transaction Management"> Section 10.5.2, “Optimizing InnoDB Transaction Management” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-transaction-tables.html" title="29.12.7 Performance Schema Transaction Tables"> Section 29.12.7, “Performance Schema Transaction Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-purge-configuration.html" title="17.8.9 Purge Configuration"> Section 17.8.9, “Purge Configuration” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> Section 15.3.1, “START TRANSACTION, COMMIT, and ROLLBACK Statements” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-events-transactions-current-table.html" title="29.12.7.1 The events_transactions_current Table"> Section 29.12.7.1, “The events_transactions_current Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-transaction-isolation-levels.html" title="17.7.2.1 Transaction Isolation Levels"> Section 17.7.2.1, “Transaction Isolation Levels” </a> </dt> <dd> </dd> <dt> <a class="xref" href="xa.html" title="15.3.8 XA Transactions"> Section 15.3.8, “XA Transactions” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> REPEATABLE-READ </h3> <dl> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <a name="isolevel-index-S"> </a> <h3 class="title"> S </h3> <p> [ <a class="link" href="dynindex-isolevel.html#isolevel-index-top"> index top </a> ] </p> <dl> <dt> </dt> <dd> </dd> </dl> </div> <div class="indexdiv"> <h3 class="title"> SERIALIZABLE </h3> <dl> <dt> <a class="xref" href="grant-tables.html" title="8.2.3 Grant Tables"> Section 8.2.3, “Grant Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="group-replication-limitations.html" title="20.3.2 Group Replication Limitations"> Section 20.3.2, “Group Replication Limitations” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-locking.html" title="17.7.1 InnoDB Locking"> Section 17.7.1, “InnoDB Locking” </a> </dt> <dd> </dd> <dt> <a class="xref" href="mysql-cluster-limitations-transactions.html" title="25.2.7.3 Limits Relating to Transaction Handling in NDB Cluster"> Section 25.2.7.3, “Limits Relating to Transaction Handling in NDB Cluster” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-locks-set.html" title="17.7.3 Locks Set by Different SQL Statements in InnoDB"> Section 17.7.3, “Locks Set by Different SQL Statements in InnoDB” </a> </dt> <dd> </dd> <dt> <a class="xref" href="binary-log-mixed.html" title="7.4.4.3 Mixed Binary Logging Format"> Section 7.4.4.3, “Mixed Binary Logging Format” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-transaction-tables.html" title="29.12.7 Performance Schema Transaction Tables"> Section 29.12.7, “Performance Schema Transaction Tables” </a> </dt> <dd> </dd> <dt> <a class="xref" href="server-options.html" title="7.1.7 Server Command Options"> Section 7.1.7, “Server Command Options” </a> </dt> <dd> </dd> <dt> <a class="xref" href="set-transaction.html" title="15.3.7 SET TRANSACTION Statement"> Section 15.3.7, “SET TRANSACTION Statement” </a> </dt> <dd> </dd> <dt> <a class="xref" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> Section 15.3.1, “START TRANSACTION, COMMIT, and ROLLBACK Statements” </a> </dt> <dd> </dd> <dt> <a class="xref" href="performance-schema-events-transactions-current-table.html" title="29.12.7.1 The events_transactions_current Table"> Section 29.12.7.1, “The events_transactions_current Table” </a> </dt> <dd> </dd> <dt> <a class="xref" href="innodb-transaction-isolation-levels.html" title="17.7.2.1 Transaction Isolation Levels"> Section 17.7.2.1, “Transaction Isolation Levels” </a> </dt> <dd> </dd> <dt> <a class="xref" href="xa.html" title="15.3.8 XA Transactions"> Section 15.3.8, “XA Transactions” </a> </dt> <dd> </dd> </dl> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/spatial-relation-functions.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="spatial-relation-functions"> </a> 14.16.9 Functions That Test Spatial Relations Between Geometry Objects </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="spatial-relation-functions-object-shapes.html"> 14.16.9.1 Spatial Relation Functions That Use Object Shapes </a> </span> </dt> <dt> <span class="section"> <a href="spatial-relation-functions-mbr.html"> 14.16.9.2 Spatial Relation Functions That Use Minimum Bounding Rectangles </a> </span> </dt> </dl> </div> <p> The functions described in this section take two geometries as arguments and return a qualitative or quantitative relation between them. </p> <p> MySQL implements two sets of functions using function names defined by the OpenGIS specification. One set tests the relationship between two geometry values using precise object shapes, the other set uses object minimum bounding rectangles (MBRs). </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/create-function-loadable.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="create-function-loadable"> </a> 15.7.4.1 CREATE FUNCTION Statement for Loadable Functions </h4> </div> </div> </div> <a class="indexterm" name="idm46045171897968"> </a> <a class="indexterm" name="idm46045171896928"> </a> <a class="indexterm" name="idm46045171895440"> </a> <a class="indexterm" name="idm46045171893952"> </a> <a class="indexterm" name="idm46045171892464"> </a> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57009187"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token punctuation">[</span><span class="token keyword">AGGREGATE</span><span class="token punctuation">]</span> <span class="token keyword">FUNCTION</span> <span class="token punctuation">[</span><span class="token keyword">IF</span> <span class="token operator">NOT</span> <span class="token keyword">EXISTS</span><span class="token punctuation">]</span> <em class="replaceable">function_name</em> <span class="token keyword">RETURNS</span> {<span class="token keyword">STRING</span><span class="token operator">|</span><span class="token datatype">INTEGER</span><span class="token operator">|</span><span class="token datatype">REAL</span><span class="token operator">|</span><span class="token datatype">DECIMAL</span>} <span class="token keyword">SONAME</span> <em class="replaceable">shared_library_name</em></code></pre> </div> <p> This statement loads the loadable function named <em class="replaceable"> <code> function_name </code> </em> . ( <code class="literal"> CREATE FUNCTION </code> is also used to created stored functions; see <a class="xref" href="create-procedure.html" title="15.1.17 CREATE PROCEDURE and CREATE FUNCTION Statements"> Section 15.1.17, “CREATE PROCEDURE and CREATE FUNCTION Statements” </a> .) </p> <p> A loadable function is a way to extend MySQL with a new function that works like a native (built-in) MySQL function such as <a class="link" href="mathematical-functions.html#function_abs"> <code class="literal"> ABS() </code> </a> or <a class="link" href="string-functions.html#function_concat"> <code class="literal"> CONCAT() </code> </a> . See <a class="ulink" href="/doc/extending-mysql/8.4/en/adding-loadable-function.html" target="_top"> Adding a Loadable Function </a> . </p> <p> <em class="replaceable"> <code> function_name </code> </em> is the name that should be used in SQL statements to invoke the function. The <code class="literal"> RETURNS </code> clause indicates the type of the function's return value. <code class="literal"> DECIMAL </code> is a legal value after <code class="literal"> RETURNS </code> , but currently <code class="literal"> DECIMAL </code> functions return string values and should be written like <code class="literal"> STRING </code> functions. </p> <p> <code class="literal"> IF NOT EXISTS </code> prevents an error from occurring if there already exists a loadable function with the same name. It does <span class="emphasis"> <em> not </em> </span> prevent an error from occurring if there already exists a built-in function having the same name. <code class="literal"> IF NOT EXISTS </code> is also supported for <code class="literal"> CREATE FUNCTION </code> statements. See <a class="xref" href="function-resolution.html#function-name-resolution" title="Function Name Resolution"> Function Name Resolution </a> . </p> <p> The <code class="literal"> AGGREGATE </code> keyword, if given, signifies that the function is an aggregate (group) function. An aggregate function works exactly like a native MySQL aggregate function such as <a class="link" href="aggregate-functions.html#function_sum"> <code class="literal"> SUM() </code> </a> or <a class="link" href="aggregate-functions.html#function_count"> <code class="literal"> COUNT() </code> </a> . </p> <p> <em class="replaceable"> <code> shared_library_name </code> </em> is the base name of the shared library file containing the code that implements the function. The file must be located in the plugin directory. This directory is given by the value of the <a class="link" href="server-system-variables.html#sysvar_plugin_dir"> <code class="literal"> plugin_dir </code> </a> system variable. For more information, see <a class="xref" href="function-loading.html" title="7.7.1 Installing and Uninstalling Loadable Functions"> Section 7.7.1, “Installing and Uninstalling Loadable Functions” </a> . </p> <p> <a class="link" href="create-function-loadable.html" title="15.7.4.1 CREATE FUNCTION Statement for Loadable Functions"> <code class="literal"> CREATE FUNCTION </code> </a> requires the <a class="link" href="privileges-provided.html#priv_insert"> <code class="literal"> INSERT </code> </a> privilege for the <code class="literal"> mysql </code> system schema because it adds a row to the <code class="literal"> mysql.func </code> system table to register the function. </p> <p> <a class="link" href="create-function-loadable.html" title="15.7.4.1 CREATE FUNCTION Statement for Loadable Functions"> <code class="literal"> CREATE FUNCTION </code> </a> also adds the function to the Performance Schema <a class="link" href="performance-schema-user-defined-functions-table.html" title="29.12.22.10 The user_defined_functions Table"> <code class="literal"> user_defined_functions </code> </a> table that provides runtime information about installed loadable functions. See <a class="xref" href="performance-schema-user-defined-functions-table.html" title="29.12.22.10 The user_defined_functions Table"> Section 29.12.22.10, “The user_defined_functions Table” </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> Like the <code class="literal"> mysql.func </code> system table, the Performance Schema <a class="link" href="performance-schema-user-defined-functions-table.html" title="29.12.22.10 The user_defined_functions Table"> <code class="literal"> user_defined_functions </code> </a> table lists loadable functions installed using <a class="link" href="create-function-loadable.html" title="15.7.4.1 CREATE FUNCTION Statement for Loadable Functions"> <code class="literal"> CREATE FUNCTION </code> </a> . Unlike the <code class="literal"> mysql.func </code> table, the <a class="link" href="performance-schema-user-defined-functions-table.html" title="29.12.22.10 The user_defined_functions Table"> <code class="literal"> user_defined_functions </code> </a> table also lists loadable functions installed automatically by server components or plugins. This difference makes <a class="link" href="performance-schema-user-defined-functions-table.html" title="29.12.22.10 The user_defined_functions Table"> <code class="literal"> user_defined_functions </code> </a> preferable to <code class="literal"> mysql.func </code> for checking which loadable functions are installed. </p> </div> <p> During the normal startup sequence, the server loads functions registered in the <code class="literal"> mysql.func </code> table. If the server is started with the <a class="link" href="server-options.html#option_mysqld_skip-grant-tables"> <code class="option"> --skip-grant-tables </code> </a> option, functions registered in the table are not loaded and are unavailable. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> To upgrade the shared library associated with a loadable function, issue a <a class="link" href="drop-function-loadable.html" title="15.7.4.2 DROP FUNCTION Statement for Loadable Functions"> <code class="literal"> DROP FUNCTION </code> </a> statement, upgrade the shared library, and then issue a <a class="link" href="create-function-loadable.html" title="15.7.4.1 CREATE FUNCTION Statement for Loadable Functions"> <code class="literal"> CREATE FUNCTION </code> </a> statement. If you upgrade the shared library first and then use <a class="link" href="drop-function-loadable.html" title="15.7.4.2 DROP FUNCTION Statement for Loadable Functions"> <code class="literal"> DROP FUNCTION </code> </a> , the server may unexpectedly shut down. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/sys-schema-index-statistics.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="sys-schema-index-statistics"> </a> 30.4.3.25 The schema_index_statistics and x$schema_index_statistics Views </h4> </div> </div> </div> <a class="indexterm" name="idm46045062554000"> </a> <a class="indexterm" name="idm46045062552544"> </a> <a class="indexterm" name="idm46045062551040"> </a> <a class="indexterm" name="idm46045062549536"> </a> <p> These views provide index statistics. By default, rows are sorted by descending total index latency. </p> <p> The <a class="link" href="sys-schema-index-statistics.html" title="30.4.3.25 The schema_index_statistics and x$schema_index_statistics Views"> <code class="literal"> schema_index_statistics </code> </a> and <a class="link" href="sys-schema-index-statistics.html" title="30.4.3.25 The schema_index_statistics and x$schema_index_statistics Views"> <code class="literal"> x$schema_index_statistics </code> </a> views have these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> table_schema </code> </p> <p> The schema that contains the table. </p> </li> <li class="listitem"> <p> <code class="literal"> table_name </code> </p> <p> The table that contains the index. </p> </li> <li class="listitem"> <p> <code class="literal"> index_name </code> </p> <p> The name of the index. </p> </li> <li class="listitem"> <p> <code class="literal"> rows_selected </code> </p> <p> The total number of rows read using the index. </p> </li> <li class="listitem"> <p> <code class="literal"> select_latency </code> </p> <p> The total wait time of timed reads using the index. </p> </li> <li class="listitem"> <p> <code class="literal"> rows_inserted </code> </p> <p> The total number of rows inserted into the index. </p> </li> <li class="listitem"> <p> <code class="literal"> insert_latency </code> </p> <p> The total wait time of timed inserts into the index. </p> </li> <li class="listitem"> <p> <code class="literal"> rows_updated </code> </p> <p> The total number of rows updated in the index. </p> </li> <li class="listitem"> <p> <code class="literal"> update_latency </code> </p> <p> The total wait time of timed updates in the index. </p> </li> <li class="listitem"> <p> <code class="literal"> rows_deleted </code> </p> <p> The total number of rows deleted from the index. </p> </li> <li class="listitem"> <p> <code class="literal"> delete_latency </code> </p> <p> The total wait time of timed deletes from the index. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/connection-control-variables.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="connection-control-variables"> </a> 8.4.2.2 Connection-Control System and Status Variables </h4> </div> </div> </div> <p> This section describes the system and status variables that the <code class="literal"> CONNECTION_CONTROL </code> plugin provides to enable its operation to be configured and monitored. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="connection-control-variables.html#connection-control-plugin-system-variables" title="Connection-Control System Variables"> Connection-Control System Variables </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="connection-control-variables.html#connection-control-plugin-status-variables" title="Connection-Control Status Variables"> Connection-Control Status Variables </a> </p> </li> </ul> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="connection-control-plugin-system-variables"> </a> Connection-Control System Variables </h5> </div> </div> </div> <a class="indexterm" name="idm46045241965792"> </a> <p> If the <code class="literal"> CONNECTION_CONTROL </code> plugin is installed, it exposes these system variables: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a name="sysvar_connection_control_failed_connections_threshold"> </a> <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> </p> <a class="indexterm" name="idm46045241960464"> </a> <a class="indexterm" name="idm46045241959424"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connection_control_failed_connections_threshold"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connection-control-failed-connections-threshold=# </code> </td> </tr> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> connection_control_failed_connections_threshold </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 3 </code> </td> </tr> <tr> <th> Minimum Value </th> <td> <code class="literal"> 0 </code> </td> </tr> <tr> <th> Maximum Value </th> <td> <code class="literal"> 2147483647 </code> </td> </tr> </tbody> </table> </div> <p> The number of consecutive failed connection attempts permitted to accounts before the server adds a delay for subsequent connection attempts: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> If the variable has a nonzero value <em class="replaceable"> <code> N </code> </em> , the server adds a delay beginning with consecutive failed attempt <em class="replaceable"> <code> N </code> </em> +1. If an account has reached the point where connection responses are delayed, a delay also occurs for the next subsequent successful connection. </p> </li> <li class="listitem"> <p> Setting this variable to zero disables failed-connection counting. In this case, the server never adds delays. </p> </li> </ul> </div> <p> For information about how <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> interacts with other connection-control system and status variables, see <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> . </p> </li> <li class="listitem"> <p> <a name="sysvar_connection_control_max_connection_delay"> </a> <a class="link" href="connection-control-variables.html#sysvar_connection_control_max_connection_delay"> <code class="literal"> connection_control_max_connection_delay </code> </a> </p> <a class="indexterm" name="idm46045241923600"> </a> <a class="indexterm" name="idm46045241922560"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connection_control_max_connection_delay"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connection-control-max-connection-delay=# </code> </td> </tr> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="connection-control-variables.html#sysvar_connection_control_max_connection_delay"> connection_control_max_connection_delay </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 2147483647 </code> </td> </tr> <tr> <th> Minimum Value </th> <td> <code class="literal"> 1000 </code> </td> </tr> <tr> <th> Maximum Value </th> <td> <code class="literal"> 2147483647 </code> </td> </tr> <tr> <th> Unit </th> <td> milliseconds </td> </tr> </tbody> </table> </div> <p> The maximum delay in milliseconds for server response to failed connection attempts, if <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> is greater than zero. </p> <p> For information about how <a class="link" href="connection-control-variables.html#sysvar_connection_control_max_connection_delay"> <code class="literal"> connection_control_max_connection_delay </code> </a> interacts with other connection-control system and status variables, see <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> . </p> </li> <li class="listitem"> <p> <a name="sysvar_connection_control_min_connection_delay"> </a> <a class="link" href="connection-control-variables.html#sysvar_connection_control_min_connection_delay"> <code class="literal"> connection_control_min_connection_delay </code> </a> </p> <a class="indexterm" name="idm46045241886800"> </a> <a class="indexterm" name="idm46045241885760"> </a> <div class="informaltable"> <table frame="box" rules="all" summary="Properties for connection_control_min_connection_delay"> <colgroup> <col style="width: 30%"/> <col style="width: 70%"/> </colgroup> <tbody> <tr> <th> Command-Line Format </th> <td> <code class="literal"> --connection-control-min-connection-delay=# </code> </td> </tr> <tr> <th> System Variable </th> <td> <code class="literal"> <a class="link" href="connection-control-variables.html#sysvar_connection_control_min_connection_delay"> connection_control_min_connection_delay </a> </code> </td> </tr> <tr> <th> Scope </th> <td> Global </td> </tr> <tr> <th> Dynamic </th> <td> Yes </td> </tr> <tr> <th> <a class="link" href="optimizer-hints.html#optimizer-hints-set-var" title="Variable-Setting Hint Syntax"> <code class="literal"> SET_VAR </code> </a> Hint Applies </th> <td> No </td> </tr> <tr> <th> Type </th> <td> Integer </td> </tr> <tr> <th> Default Value </th> <td> <code class="literal"> 1000 </code> </td> </tr> <tr> <th> Minimum Value </th> <td> <code class="literal"> 1000 </code> </td> </tr> <tr> <th> Maximum Value </th> <td> <code class="literal"> 2147483647 </code> </td> </tr> <tr> <th> Unit </th> <td> milliseconds </td> </tr> </tbody> </table> </div> <p> The minimum delay in milliseconds for server response to failed connection attempts, if <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> is greater than zero. </p> <p> For information about how <a class="link" href="connection-control-variables.html#sysvar_connection_control_min_connection_delay"> <code class="literal"> connection_control_min_connection_delay </code> </a> interacts with other connection-control system and status variables, see <a class="xref" href="connection-control-installation.html" title="8.4.2.1 Connection-Control Plugin Installation"> Section 8.4.2.1, “Connection-Control Plugin Installation” </a> . </p> </li> </ul> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="connection-control-plugin-status-variables"> </a> Connection-Control Status Variables </h5> </div> </div> </div> <a class="indexterm" name="idm46045241850976"> </a> <p> If the <code class="literal"> CONNECTION_CONTROL </code> plugin is installed, it exposes this status variable: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a name="statvar_Connection_control_delay_generated"> </a> <a class="link" href="connection-control-variables.html#statvar_Connection_control_delay_generated"> <code class="literal"> Connection_control_delay_generated </code> </a> </p> <a class="indexterm" name="idm46045241845664"> </a> <a class="indexterm" name="idm46045241844624"> </a> <p> The number of times the server added a delay to its response to a failed connection attempt. This does not count attempts that occur before reaching the threshold defined by the <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> system variable. </p> <p> This variable provides a simple counter. For more detailed connection-control monitoring information, examine the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-connection-control-failed-login-attempts-table.html" title="28.6.2 The INFORMATION_SCHEMA CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS Table"> <code class="literal"> CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS </code> </a> table; see <a class="xref" href="information-schema-connection-control-failed-login-attempts-table.html" title="28.6.2 The INFORMATION_SCHEMA CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS Table"> Section 28.6.2, “The INFORMATION_SCHEMA CONNECTION_CONTROL_FAILED_LOGIN_ATTEMPTS Table” </a> . </p> <p> Assigning a value to <a class="link" href="connection-control-variables.html#sysvar_connection_control_failed_connections_threshold"> <code class="literal"> connection_control_failed_connections_threshold </code> </a> at runtime resets <a class="link" href="connection-control-variables.html#statvar_Connection_control_delay_generated"> <code class="literal"> Connection_control_delay_generated </code> </a> to zero. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/charset-unicode-utf32.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="charset-unicode-utf32"> </a> 12.9.7 The utf32 Character Set (UTF-32 Unicode Encoding) </h3> </div> </div> </div> <a class="indexterm" name="idm46045216550592"> </a> <p> The <code class="literal"> utf32 </code> character set is fixed length (like <code class="literal"> ucs2 </code> and unlike <code class="literal"> utf16 </code> ). <code class="literal"> utf32 </code> uses 32 bits for every character, unlike <code class="literal"> ucs2 </code> (which uses 16 bits for every character), and unlike <code class="literal"> utf16 </code> (which uses 16 bits for some characters and 32 bits for others). </p> <p> <code class="literal"> utf32 </code> takes twice as much space as <code class="literal"> ucs2 </code> and more space than <code class="literal"> utf16 </code> , but <code class="literal"> utf32 </code> has the same advantage as <code class="literal"> ucs2 </code> that it is predictable for storage: The required number of bytes for <code class="literal"> utf32 </code> equals the number of characters times 4. Also, unlike <code class="literal"> utf16 </code> , there are no tricks for encoding in <code class="literal"> utf32 </code> , so the stored value equals the code value. </p> <p> To demonstrate how the latter advantage is useful, here is an example that shows how to determine a <code class="literal"> utf8mb4 </code> value given the <code class="literal"> utf32 </code> code value: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa29355604"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token comment" spellcheck="true">/* Assume code value = 100cc LINEAR B WHEELED CHARIOT */</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> tmp <span class="token punctuation">(</span>utf32_col <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span> <span class="token keyword">CHARACTER</span> <span class="token keyword">SET</span> utf32<span class="token punctuation">,</span> utf8mb4_col <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span> <span class="token keyword">CHARACTER</span> <span class="token keyword">SET</span> utf8mb4<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> tmp <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">0x000100cc</span><span class="token punctuation">,</span><span class="token boolean">NULL</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">UPDATE</span> tmp <span class="token keyword">SET</span> utf8mb4_col <span class="token operator">=</span> utf32_col<span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token function">HEX</span><span class="token punctuation">(</span>utf32_col<span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token function">HEX</span><span class="token punctuation">(</span>utf8mb4_col<span class="token punctuation">)</span> <span class="token keyword">FROM</span> tmp<span class="token punctuation">;</span></code></pre> </div> <p> MySQL is very forgiving about additions of unassigned Unicode characters or private-use-area characters. There is in fact only one validity check for <code class="literal"> utf32 </code> : No code value may be greater than <code class="literal"> 0x10ffff </code> . For example, this is illegal: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa61509984"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token punctuation">(</span>utf32_column<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">0x110000</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment" spellcheck="true">/* illegal */</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-tls.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-cluster-tls"> </a> 25.6.15 TLS Link Encryption for NDB Cluster </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="mysql-cluster-tls-overview.html"> 25.6.15.1 Overview of TLS for NDB Cluster </a> </span> </dt> <dt> <span class="section"> <a href="mysql-cluster-tls-keys.html"> 25.6.15.2 Creating a CA and Keys </a> </span> </dt> <dt> <span class="section"> <a href="mysql-cluster-tls-using.html"> 25.6.15.3 Using TLS Connections </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045091204992"> </a> <a class="indexterm" name="idm46045091203536"> </a> <p> This section discusses the implementation and use of Transport Layer Security (TLS) to secure network communications in MySQL NDB Cluster. Topics covered include keys and certificates, key and certificate life cycles, authentication of certificates, and how these are reflected in the configuration of the cluster, as well as NDB Cluster support for the Internet Public Key Infrastructure (PKI) used to authenticate and encrypt connections between NDB nodes, and between the NDB management server and its clients. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> TLS for NDB Cluster on Linux requires compiled-in support for OpenSSL 1.1 or later. For this reason, it is not available for Enterprise Linux 7, which is built with OpenSSL 1.0. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-replication-two-channels.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-cluster-replication-two-channels"> </a> 25.7.7 Using Two Replication Channels for NDB Cluster Replication </h3> </div> </div> </div> <a class="indexterm" name="idm46045086048960"> </a> <a class="indexterm" name="idm46045086047504"> </a> <p> In a more complete example scenario, we envision two replication channels to provide redundancy and thereby guard against possible failure of a single replication channel. This requires a total of four replication servers, two source servers on the source cluster and two replica servers on the replica cluster. For purposes of the discussion that follows, we assume that unique identifiers are assigned as shown here: </p> <div class="table"> <a name="idm46045086045152"> </a> <p class="title"> <b> Table 25.45 NDB Cluster replication servers described in the text </b> </p> <div class="table-contents"> <table> <colgroup> <col style="width: 25%"/> <col style="width: 75%"/> </colgroup> <thead> <tr> <th> Server ID </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> 1 </td> <td> Source - primary replication channel ( <span class="emphasis"> <em> S </em> </span> ) </td> </tr> <tr> <td> 2 </td> <td> Source - secondary replication channel ( <span class="emphasis"> <em> S' </em> </span> ) </td> </tr> <tr> <td> 3 </td> <td> Replica - primary replication channel ( <span class="emphasis"> <em> R </em> </span> ) </td> </tr> <tr> <td> 4 </td> <td> replica - secondary replication channel ( <span class="emphasis"> <em> R' </em> </span> ) </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <p> Setting up replication with two channels is not radically different from setting up a single replication channel. First, the <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> processes for the primary and secondary replication source servers must be started, followed by those for the primary and secondary replicas. The replication processes can be initiated by issuing the <a class="link" href="start-replica.html" title="15.4.2.4 START REPLICA Statement"> <code class="literal"> START REPLICA </code> </a> statement on each of the replicas. The commands and the order in which they need to be issued are shown here: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Start the primary replication source: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa14814670"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal"><span class="token prompt">shell<em class="replaceable">S</em>&gt;</span><span class="token command"> mysqld</span> <span class="token property">--ndbcluster</span> <span class="token constant">--server-id</span><span class="token attr-value"><span class="token punctuation">=</span>1</span> \ <span class="token property">--log-bin</span> &amp;</code></pre> </div> </li> <li class="listitem"> <p> Start the secondary replication source: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa58196577"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">shell<em class="replaceable">S'</em>&gt; mysqld <span class="token property">--ndbcluster</span> <span class="token constant">--server-id</span><span class="token attr-value"><span class="token punctuation">=</span>2</span> \ <span class="token property">--log-bin</span> &amp;</code></pre> </div> </li> <li class="listitem"> <p> Start the primary replica server: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa27168405"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">shell<em class="replaceable">R</em>&gt; mysqld <span class="token property">--ndbcluster</span> <span class="token constant">--server-id</span><span class="token attr-value"><span class="token punctuation">=</span>3</span> \ <span class="token property">--skip-replica-start</span> &amp;</code></pre> </div> </li> <li class="listitem"> <p> Start the secondary replica server: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-terminal"><div class="docs-select-all right" id="sa54321663"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-terminal">shell<em class="replaceable">R'</em>&gt; mysqld <span class="token property">--ndbcluster</span> <span class="token constant">--server-id</span><span class="token attr-value"><span class="token punctuation">=</span>4</span> \ <span class="token property">--skip-replica-start</span> &amp;</code></pre> </div> </li> <li class="listitem"> <p> Finally, initiate replication on the primary channel by executing the <a class="link" href="start-replica.html" title="15.4.2.4 START REPLICA Statement"> <code class="literal"> START REPLICA </code> </a> statement on the primary replica as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa85061599"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql">mysql<em class="replaceable">R</em><span class="token operator">&gt;</span> <span class="token keyword">START</span> <span class="token keyword">REPLICA</span><span class="token punctuation">;</span></code></pre> </div> <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Warning </div> <p> Only the primary channel must be started at this point. The secondary replication channel needs to be started only in the event that the primary replication channel fails, as described in <a class="xref" href="mysql-cluster-replication-failover.html" title="25.7.8 Implementing Failover with NDB Cluster Replication"> Section 25.7.8, “Implementing Failover with NDB Cluster Replication” </a> . Running multiple replication channels simultaneously can result in unwanted duplicate records being created on the replicas. </p> </div> </li> </ol> </div> <p> As mentioned previously, it is not necessary to enable binary logging on the replicas. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/locking-issues.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="locking-issues"> </a> 10.11 Optimizing Locking Operations </h2> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="internal-locking.html"> 10.11.1 Internal Locking Methods </a> </span> </dt> <dt> <span class="section"> <a href="table-locking.html"> 10.11.2 Table Locking Issues </a> </span> </dt> <dt> <span class="section"> <a href="concurrent-inserts.html"> 10.11.3 Concurrent Inserts </a> </span> </dt> <dt> <span class="section"> <a href="metadata-locking.html"> 10.11.4 Metadata Locking </a> </span> </dt> <dt> <span class="section"> <a href="external-locking.html"> 10.11.5 External Locking </a> </span> </dt> </dl> </div> <p> MySQL manages contention for table contents using <a class="link" href="glossary.html#glos_locking" title="locking"> locking </a> : </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Internal locking is performed within the MySQL server itself to manage contention for table contents by multiple threads. This type of locking is internal because it is performed entirely by the server and involves no other programs. See <a class="xref" href="internal-locking.html" title="10.11.1 Internal Locking Methods"> Section 10.11.1, “Internal Locking Methods” </a> . </p> </li> <li class="listitem"> <p> External locking occurs when the server and other programs lock <a class="link" href="myisam-storage-engine.html" title="18.2 The MyISAM Storage Engine"> <code class="literal"> MyISAM </code> </a> table files to coordinate among themselves which program can access the tables at which time. See <a class="xref" href="external-locking.html" title="10.11.5 External Locking"> Section 10.11.5, “External Locking” </a> . </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-gr-memory-monitoring-ps-instruments.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="mysql-gr-memory-monitoring-ps-instruments"> </a> 20.7.9 Monitoring Group Replication Memory Usage with Performance Schema Memory Instrumentation </h3> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="mysql-gr-memory-monitoring-ps-instruments-enable.html"> 20.7.9.1 Enabling or Disabling Group Replication Instrumentation </a> </span> </dt> <dt> <span class="section"> <a href="mysql-gr-memory-monitoring-ps-sample-queries.html"> 20.7.9.2 Example Queries </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045131808416"> </a> <p> The MySQL <a class="link" href="performance-schema.html" title="Chapter 29 MySQL Performance Schema"> Performance Schema </a> provides instrumentation for performance monitoring of Group Replication memory usage. To view the available Group Replication instrumentation, issue the following query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa60181795"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">NAME</span><span class="token punctuation">,</span>ENABLED <span class="token keyword">FROM</span> performance_schema<span class="token punctuation">.</span>setup_instruments <span class="token keyword">WHERE</span> <span class="token keyword">NAME</span> <span class="token operator">LIKE</span> <span class="token string">'memory/group_rpl/%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> NAME <span class="token punctuation">|</span> ENABLED <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/write_set_encoded <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/certification_data <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/certification_data_gc <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/certification_info <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/transaction_data <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/sql_service_command_data <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/mysql_thread_queued_task <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/message_service_queue <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/message_service_received_message <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/group_member_info <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/consistent_members_that_must_prepare_transaction <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/consistent_transactions <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/consistent_transactions_prepared <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/consistent_transactions_waiting <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/consistent_transactions_delayed_view_change <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/GCS_XCom::xcom_cache <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> memory/group_rpl/Gcs_message_data::m_buffer <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For more information on Performance Schema's memory instrumentation and events, see <a class="xref" href="performance-schema-memory-summary-tables.html" title="29.12.20.10 Memory Summary Tables"> Section 29.12.20.10, “Memory Summary Tables” </a> . </p> <h4> <a name="idm46045131800176"> </a> Performance Schema Group Replication instruments memory allocation for Group Replication. </h4> <p> The <code class="literal"> memory/group_rpl/ </code> Performance Schema instrumentation contains the following instruments: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> write_set_encoded </code> : Memory allocated to encode the write set before it is broadcast to the group members. </p> </li> <li class="listitem"> <p> <code class="literal"> Gcs_message_data::m_buffer </code> : Memory allocated for the transaction data payload sent to the network. </p> </li> <li class="listitem"> <p> <code class="literal"> certification_data </code> : Memory allocated for certification of incoming transactions. </p> </li> <li class="listitem"> <p> <code class="literal"> certification_data_gc </code> : Memory allocated for the GTID_EXECUTED sent by each member for garbage collection. </p> </li> <li class="listitem"> <p> <code class="literal"> certification_info </code> : Memory allocated for storage of certification information allocated to resolve conflicts between concurrent transactions. </p> </li> <li class="listitem"> <p> <code class="literal"> transaction_data </code> : Memory allocated for incoming transactions queued for the plugin pipeline. </p> </li> <li class="listitem"> <p> <code class="literal"> message_service_received_message </code> : Memory allocated to receiving messages from Group Replication delivery message service. </p> </li> <li class="listitem"> <p> <code class="literal"> sql_service_command_data </code> : Memory allocated for processing the queue of internal SQL service commands. </p> </li> <li class="listitem"> <p> <code class="literal"> mysql_thread_queued_task </code> : Memory allocated when a MySQL-thread dependent task is added to the processing queue. </p> </li> <li class="listitem"> <p> <code class="literal"> message_service_queue </code> : Memory allocated for queued messages of the Group Replication delivery message service. </p> </li> <li class="listitem"> <p> <code class="literal"> GCS_XCom::xcom_cache </code> : Memory allocated to XCOM ache for messaging and metadata exchanged between group members as part of the consensus protocol. </p> </li> <li class="listitem"> <p> <code class="literal"> consistent_members_that_must_prepare_transaction </code> : Memory allocated to hold list of members preparing transaction for Group Replication transaction consistency guarantees. </p> </li> <li class="listitem"> <p> <code class="literal"> consistent_transactions </code> : Memory allocated to hold transaction and list of members that must prepare that transaction for Group Replication transaction consistency guarantees. </p> </li> <li class="listitem"> <p> <code class="literal"> consistent_transactions_prepared </code> : Memory allocated to hold list of transaction's info prepared for the Group Replication Transaction Consistency Guarantees. </p> </li> <li class="listitem"> <p> <code class="literal"> consistent_transactions_waiting </code> : Memory allocated to hold information on a list of transactions while preceding prepared transactions with consistency of <code class="literal"> AFTER </code> and <code class="literal"> BEFORE_AND_AFTER </code> are processed. </p> </li> <li class="listitem"> <p> <code class="literal"> consistent_transactions_delayed_view_change </code> : Memory allocated to hold list of view change events ( <code class="literal"> view_change_log_event </code> ) delayed by prepared consistent transactions waiting for prepare acknowledgement. </p> </li> <li class="listitem"> <p> <code class="literal"> group_member_info </code> : Memory allocated to hold the group member properties. Properties such as hostname, port, member weight and role, and so on. </p> </li> </ul> </div> <p> The following instruments in the <code class="literal"> memory/sql/ </code> grouping are also used to monitor Group Replication memory: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> Log_event </code> : Memory allocated for encoding transaction data into the binary log format; this is the same format in which Group Replication transmits data. </p> </li> <li class="listitem"> <p> <code class="literal"> write_set_extraction </code> : Memory allocated to the transaction's generated write set before it is committed. </p> </li> <li class="listitem"> <p> <code class="literal"> Gtid_set::to_string </code> : Memory allocated to stored the string representation of a GTID set. </p> </li> <li class="listitem"> <p> <code class="literal"> Gtid_set::Interval_chunk </code> : Memory allocated to store the GTID object. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-setup-actors-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-setup-actors-table"> </a> 29.12.2.1 The setup_actors Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073951328"> </a> <a class="indexterm" name="idm46045073949840"> </a> <p> The <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table contains information that determines whether to enable monitoring and historical event logging for new foreground server threads (threads associated with client connections). This table has a maximum size of 100 rows by default. To change the table size, modify the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_setup_actors_size"> <code class="literal"> performance_schema_setup_actors_size </code> </a> system variable at server startup. </p> <p> For each new foreground thread, the Performance Schema matches the user and host for the thread against the rows of the <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table. If a row from that table matches, its <code class="literal"> ENABLED </code> and <code class="literal"> HISTORY </code> column values are used to set the <code class="literal"> INSTRUMENTED </code> and <code class="literal"> HISTORY </code> columns, respectively, of the <a class="link" href="performance-schema-threads-table.html" title="29.12.22.8 The threads Table"> <code class="literal"> threads </code> </a> table row for the thread. This enables instrumenting and historical event logging to be applied selectively per host, user, or account (user and host combination). If there is no match, the <code class="literal"> INSTRUMENTED </code> and <code class="literal"> HISTORY </code> columns for the thread are set to <code class="literal"> NO </code> . </p> <p> For background threads, there is no associated user. <code class="literal"> INSTRUMENTED </code> and <code class="literal"> HISTORY </code> are <code class="literal"> YES </code> by default and <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> is not consulted. </p> <p> The initial contents of the <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table match any user and host combination, so monitoring and historical event collection are enabled by default for all foreground threads: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa48512846"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> performance_schema<span class="token punctuation">.</span>setup_actors<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> HOST <span class="token punctuation">|</span> USER <span class="token punctuation">|</span> ROLE <span class="token punctuation">|</span> ENABLED <span class="token punctuation">|</span> HISTORY <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> % <span class="token punctuation">|</span> % <span class="token punctuation">|</span> % <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For information about how to use the <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table to affect event monitoring, see <a class="xref" href="performance-schema-thread-filtering.html" title="29.4.6 Pre-Filtering by Thread"> Section 29.4.6, “Pre-Filtering by Thread” </a> . </p> <p> Modifications to the <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table affect only foreground threads created subsequent to the modification, not existing threads. To affect existing threads, modify the <code class="literal"> INSTRUMENTED </code> and <code class="literal"> HISTORY </code> columns of <a class="link" href="performance-schema-threads-table.html" title="29.12.22.8 The threads Table"> <code class="literal"> threads </code> </a> table rows. </p> <p> The <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> HOST </code> </p> <p> The host name. This should be a literal name, or <code class="literal"> '%' </code> to mean <span class="quote"> “ <span class="quote"> any host. </span> ” </span> </p> </li> <li class="listitem"> <p> <code class="literal"> USER </code> </p> <p> The user name. This should be a literal name, or <code class="literal"> '%' </code> to mean <span class="quote"> “ <span class="quote"> any user. </span> ” </span> </p> </li> <li class="listitem"> <p> <code class="literal"> ROLE </code> </p> <p> Unused. </p> </li> <li class="listitem"> <p> <code class="literal"> ENABLED </code> </p> <p> Whether to enable instrumentation for foreground threads matched by the row. The value is <code class="literal"> YES </code> or <code class="literal"> NO </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> HISTORY </code> </p> <p> Whether to log historical events for foreground threads matched by the row. The value is <code class="literal"> YES </code> or <code class="literal"> NO </code> . </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> HOST </code> , <code class="literal"> USER </code> , <code class="literal"> ROLE </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is permitted for the <a class="link" href="performance-schema-setup-actors-table.html" title="29.12.2.1 The setup_actors Table"> <code class="literal"> setup_actors </code> </a> table. It removes the rows. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/reusing-ssl-sessions.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="reusing-ssl-sessions"> </a> 8.3.5 Reusing SSL Sessions </h3> </div> </div> </div> <a class="indexterm" name="idm46045246476928"> </a> <a class="indexterm" name="idm46045246475440"> </a> <p> MySQL client programs may elect to resume a prior SSL session, provided that the server has the session in its runtime cache. This section describes the conditions that are favorable for SSL session reuse, the server variables used for managing and monitoring the session cache, and the client command-line options for storing and reusing session data. </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <a class="xref" href="reusing-ssl-sessions.html#ssl-session-cache-server-configuration" title="Server-Side Runtime Configuration and Monitoring for SSL Session Reuse"> Server-Side Runtime Configuration and Monitoring for SSL Session Reuse </a> </p> </li> <li class="listitem"> <p> <a class="xref" href="reusing-ssl-sessions.html#ssl-session-data-client-configuration" title="Client-Side Configuration for SSL Session Reuse"> Client-Side Configuration for SSL Session Reuse </a> </p> </li> </ul> </div> <p> Each full TLS exchange can be costly both in terms of computation and network overhead, less costly if TLSv1.3 is used. By extracting a session ticket from an established session and then submitting that ticket while establishing the next connection, the overall cost is reduced if the session can be reused. For example, consider the benefit of having web pages that can open multiple connections and generate faster. </p> <p> In general, the following conditions must be satisfied before SSL sessions can be reused: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The server must keep its session cache in memory. </p> </li> <li class="listitem"> <p> The server-side session cache timeout must not have expired. </p> </li> <li class="listitem"> <p> Each client has to maintain a cache of active sessions and keep it secure. </p> </li> </ul> </div> <p> C applications can use the C API capabilities to enable session reuse for encrypted connections (see <a class="ulink" href="/doc/c-api/8.4/en/c-api-ssl-session-reuse.html" target="_top"> SSL Session Reuse </a> ). </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="ssl-session-cache-server-configuration"> </a> Server-Side Runtime Configuration and Monitoring for SSL Session Reuse </h4> </div> </div> </div> <p> To create the initial TLS context, the server uses the values that the context-related system variables have at startup. To expose the context values, the server also initializes a set of corresponding status variables. The following table shows the system variables that define the server's runtime session cache and the corresponding status variables that expose the currently active session-cache values. </p> <div class="table"> <a name="ssl-session-cache-variables-table"> </a> <p class="title"> <b> Table 8.13 System and Status Variables for Session Reuse </b> </p> <div class="table-contents"> <table summary="The system variables that define caching for session reuse and the corresponding status variables that expose active session-cache values."> <colgroup> <col style="width: 45%"/> <col style="width: 55%"/> </colgroup> <thead> <tr> <th> System Variable Name </th> <th> Corresponding Status Variable Name </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="server-system-variables.html#sysvar_ssl_session_cache_mode"> <code class="literal"> ssl_session_cache_mode </code> </a> </td> <td> <a class="link" href="server-status-variables.html#statvar_Ssl_session_cache_mode"> <code class="literal"> Ssl_session_cache_mode </code> </a> </td> </tr> <tr> <td> <a class="link" href="server-system-variables.html#sysvar_ssl_session_cache_timeout"> <code class="literal"> ssl_session_cache_timeout </code> </a> </td> <td> <a class="link" href="server-status-variables.html#statvar_Ssl_session_cache_timeout"> <code class="literal"> Ssl_session_cache_timeout </code> </a> </td> </tr> </tbody> </table> </div> </div> <br class="table-break"/> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> When the value of the <a class="link" href="server-system-variables.html#sysvar_ssl_session_cache_mode"> <code class="literal"> ssl_session_cache_mode </code> </a> server variable is <code class="literal"> ON </code> , which is the default mode, the value of the <a class="link" href="server-status-variables.html#statvar_Ssl_session_cache_mode"> <code class="literal"> Ssl_session_cache_mode </code> </a> status variable is <code class="literal"> SERVER </code> . </p> </div> <p> SSL session cache variables apply to both the <code class="literal"> mysql_main </code> and <code class="literal"> mysql_admin </code> TLS channels. Their values are also exposed as properties in the Performance Schema <a class="link" href="performance-schema-tls-channel-status-table.html" title="29.12.22.9 The tls_channel_status Table"> <code class="literal"> tls_channel_status </code> </a> table, along with the properties for any other active TLS contexts. </p> <p> To reconfigure the SSL session cache at runtime, use this procedure: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Set each cache-related system variable that should be changed to its new value. For example, change the cache timeout value from the default (300 seconds) to 600 seconds: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa8339014"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">GLOBAL</span> ssl_session_cache_timeout <span class="token operator">=</span> <span class="token number">600</span><span class="token punctuation">;</span></code></pre> </div> <p> The members of each pair of system and status variables may have different values temporarily due to the way the reconfiguration procedure works. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa16517094"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">VARIABLES</span> <span class="token operator">LIKE</span> <span class="token string">'ssl_session_cache_timeout'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ssl_session_cache_timeout <span class="token punctuation">|</span> 600 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">STATUS</span> <span class="token operator">LIKE</span> <span class="token string">'Ssl_session_cache_timeout'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Ssl_session_cache_timeout <span class="token punctuation">|</span> 300 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> For additional information about setting variable values, see <a class="xref" href="set-variable.html#set-variable-system-variables" title="System Variable Assignment"> System Variable Assignment </a> . </p> </li> <li class="listitem"> <p> Execute <a class="link" href="alter-instance.html#alter-instance-reload-tls"> <code class="literal"> ALTER INSTANCE RELOAD TLS </code> </a> . This statement reconfigures the active TLS context from the current values of the cache-related system variables. It also sets the cache-related status variables to reflect the new active cache values. The statement requires the <a class="link" href="privileges-provided.html#priv_connection-admin"> <code class="literal"> CONNECTION_ADMIN </code> </a> privilege. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa97717974"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">INSTANCE</span> <span class="token keyword">RELOAD</span> <span class="token keyword">TLS</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.01 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">VARIABLES</span> <span class="token operator">LIKE</span> <span class="token string">'ssl_session_cache_timeout'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ssl_session_cache_timeout <span class="token punctuation">|</span> 600 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">STATUS</span> <span class="token operator">LIKE</span> <span class="token string">'Ssl_session_cache_timeout'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Variable_name <span class="token punctuation">|</span> Value <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Ssl_session_cache_timeout <span class="token punctuation">|</span> 600 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> New connections established after execution of <a class="link" href="alter-instance.html#alter-instance-reload-tls"> <code class="literal"> ALTER INSTANCE RELOAD TLS </code> </a> use the new TLS context. Existing connections remain unaffected. </p> </li> </ol> </div> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h4 class="title"> <a name="ssl-session-data-client-configuration"> </a> Client-Side Configuration for SSL Session Reuse </h4> </div> </div> </div> <p> All MySQL client programs are capable of reusing a prior session for new encrypted connections made to the same server, provided that you stored the session data while the original connection was still active. Session data are stored to a file and you specify this file when you invoke the client again. </p> <p> To store and reuse SSL session data, use this procedure: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Invoke <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> to establish an encrypted connection to a server running MySQL 8.4. </p> </li> <li class="listitem"> <p> Use the <span class="command"> <strong> ssl_session_data_print </strong> </span> command to specify the path to a file where you can store the currently active session data securely. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa95387962"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> ssl_session_data_print <span class="token operator">~</span><span class="token operator">/</span>private<span class="token operator">-</span>dir<span class="token operator">/</span><span class="token keyword">session</span><span class="token punctuation">.</span>txt</code></pre> </div> <p> Session data are obtained in the form of a null-terminated, PEM encoded ANSI string. If you omit the path and file name, the string prints to standard output. </p> </li> <li class="listitem"> <p> From the prompt of your command interpreter, invoke any MySQL client program to establish a new encrypted connection to the same server. To reuse the session data, specify the <a class="link" href="connection-options.html#option_general_ssl-session-data"> <code class="option"> --ssl-session-data </code> </a> command-line option and the file argument. </p> <p> For example, establish a new connection using <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-simple"><div class="docs-select-all right" id="sa58041187"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">mysql <span class="token operator">-</span>u admin <span class="token operator">-</span>p <span class="token operator">--</span>ssl<span class="token operator">-</span>session<span class="token operator">-</span>data<span class="token operator">=</span><span class="token operator">~</span><span class="token operator">/</span>private<span class="token operator">-</span>dir<span class="token operator">/</span>session<span class="token punctuation">.</span>txt</code></pre> </div> <p> and then <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow </strong> </span> </a> client: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-simple"><div class="docs-select-all right" id="sa3344291"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">mysqlshow <span class="token operator">-</span>u admin <span class="token operator">-</span>p <span class="token operator">--</span>ssl<span class="token operator">-</span>session<span class="token operator">-</span>data<span class="token operator">=</span><span class="token operator">~</span><span class="token operator">/</span>private<span class="token operator">-</span>dir<span class="token operator">/</span>session<span class="token punctuation">.</span>txt Enter password<span class="token operator">:</span> <span class="token operator">**</span><span class="token operator">**</span><span class="token operator">*</span> <span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span> <span class="token operator">|</span> Databases <span class="token operator">|</span> <span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span> <span class="token operator">|</span> information_schema <span class="token operator">|</span> <span class="token operator">|</span> mysql <span class="token operator">|</span> <span class="token operator">|</span> performance_schema <span class="token operator">|</span> <span class="token operator">|</span> sys <span class="token operator">|</span> <span class="token operator">|</span> world <span class="token operator">|</span> <span class="token operator">+</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">--</span><span class="token operator">+</span></code></pre> </div> <p> In each example, the client attempts to resume the original session while it establishes a new connection to the same server. </p> <p> To confirm whether <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> reused a session, see the output from the <code class="literal"> status </code> command. If the currently active <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> connection did resume the session, the status information includes <code class="literal"> SSL session reused: true </code> . </p> </li> </ol> </div> <p> In addition to <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> and <a class="link" href="mysqlshow.html" title="6.5.6 mysqlshow — Display Database, Table, and Column Information"> <span class="command"> <strong> mysqlshow </strong> </span> </a> , SSL session reuse applies to <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin </strong> </span> </a> , <a class="link" href="mysqlbinlog.html" title="6.6.9 mysqlbinlog — Utility for Processing Binary Log Files"> <span class="command"> <strong> mysqlbinlog </strong> </span> </a> , <a class="link" href="mysqlcheck.html" title="6.5.3 mysqlcheck — A Table Maintenance Program"> <span class="command"> <strong> mysqlcheck </strong> </span> </a> , <a class="link" href="mysqldump.html" title="6.5.4 mysqldump — A Database Backup Program"> <span class="command"> <strong> mysqldump </strong> </span> </a> , <a class="link" href="mysqlimport.html" title="6.5.5 mysqlimport — A Data Import Program"> <span class="command"> <strong> mysqlimport </strong> </span> </a> , <a class="link" href="mysqlslap.html" title="6.5.7 mysqlslap — A Load Emulation Client"> <span class="command"> <strong> mysqlslap </strong> </span> </a> , <span class="command"> <strong> mysqltest </strong> </span> , <a class="link" href="mysql-migrate-keyring.html" title="6.6.8 mysql_migrate_keyring — Keyring Key Migration Utility"> <span class="command"> <strong> mysql_migrate_keyring </strong> </span> </a> , and <a class="link" href="mysql-secure-installation.html" title="6.4.2 mysql_secure_installation — Improve MySQL Installation Security"> <span class="command"> <strong> mysql_secure_installation </strong> </span> </a> . </p> <p> Several conditions may prevent the successful retrieval of session data. For instance, if the session is not fully connected, it is not an SSL session, the server has not yet sent the session data, or the SSL session is simply not reusable. Even with properly stored session data, the server's session cache can time out. Regardless of the cause, an error is returned by default if you specify <a class="link" href="connection-options.html#option_general_ssl-session-data"> <code class="option"> --ssl-session-data </code> </a> but the session cannot be reused. For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-simple"><div class="docs-select-all right" id="sa27245484"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-simple">mysqlshow <span class="token operator">-</span>u admin <span class="token operator">-</span>p <span class="token operator">--</span>ssl<span class="token operator">-</span>session<span class="token operator">-</span>data<span class="token operator">=</span><span class="token operator">~</span><span class="token operator">/</span>private<span class="token operator">-</span>dir<span class="token operator">/</span>session<span class="token punctuation">.</span>txt Enter password<span class="token operator">:</span> <span class="token operator">**</span><span class="token operator">**</span><span class="token operator">*</span> ERROR<span class="token operator">:</span> <span class="token operator">--</span>ssl<span class="token operator">-</span>session<span class="token operator">-</span>data specified but the session was not reused<span class="token punctuation">.</span></code></pre> </div> <p> To suppress the error message, and to establish the connection by silently creating a new session instead, specify <a class="link" href="connection-options.html#option_general_ssl-session-data-continue-on-failed-reuse"> <code class="option"> --ssl-session-data-continue-on-failed-reuse </code> </a> on the command line, along with <a class="link" href="connection-options.html#option_general_ssl-session-data"> <code class="option"> --ssl-session-data </code> </a> . If the server's cache timeout has expired, you can store the session data again to the same file. The default server cache timeout can be extended (see <a class="xref" href="reusing-ssl-sessions.html#ssl-session-cache-server-configuration" title="Server-Side Runtime Configuration and Monitoring for SSL Session Reuse"> Server-Side Runtime Configuration and Monitoring for SSL Session Reuse </a> ). </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/create-table-secondary-indexes.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="create-table-secondary-indexes"> </a> 15.1.20.9 Secondary Indexes and Generated Columns </h4> </div> </div> </div> <a class="indexterm" name="idm46045184698016"> </a> <p> <code class="literal"> InnoDB </code> supports secondary indexes on virtual generated columns. Other index types are not supported. A secondary index defined on a virtual column is sometimes referred to as a <span class="quote"> “ <span class="quote"> virtual index </span> ” </span> . </p> <p> A secondary index may be created on one or more virtual columns or on a combination of virtual columns and regular columns or stored generated columns. Secondary indexes that include virtual columns may be defined as <code class="literal"> UNIQUE </code> . </p> <p> When a secondary index is created on a virtual generated column, generated column values are materialized in the records of the index. If the index is a <a class="link" href="glossary.html#glos_covering_index" title="covering index"> covering index </a> (one that includes all the columns retrieved by a query), generated column values are retrieved from materialized values in the index structure instead of computed <span class="quote"> “ <span class="quote"> on the fly </span> ” </span> . </p> <p> There are additional write costs to consider when using a secondary index on a virtual column due to computation performed when materializing virtual column values in secondary index records during <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> and <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> operations. Even with additional write costs, secondary indexes on virtual columns may be preferable to generated <span class="emphasis"> <em> stored </em> </span> columns, which are materialized in the clustered index, resulting in larger tables that require more disk space and memory. If a secondary index is not defined on a virtual column, there are additional costs for reads, as virtual column values must be computed each time the column's row is examined. </p> <p> Values of an indexed virtual column are MVCC-logged to avoid unnecessary recomputation of generated column values during rollback or during a purge operation. The data length of logged values is limited by the index key limit of 767 bytes for <code class="literal"> COMPACT </code> and <code class="literal"> REDUNDANT </code> row formats, and 3072 bytes for <code class="literal"> DYNAMIC </code> and <code class="literal"> COMPRESSED </code> row formats. </p> <p> Adding or dropping a secondary index on a virtual column is an in-place operation. </p> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="json-column-indirect-index"> </a> Indexing a Generated Column to Provide a JSON Column Index </h5> </div> </div> </div> <p> As noted elsewhere, <a class="link" href="json.html" title="13.5 The JSON Data Type"> <code class="literal"> JSON </code> </a> columns cannot be indexed directly. To create an index that references such a column indirectly, you can define a generated column that extracts the information that should be indexed, then create an index on the generated column, as shown in this example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa52640304"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> jemp <span class="token punctuation">(</span> <span class="token prompt"> -&gt;</span> c <span class="token datatype">JSON</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> g <span class="token datatype">INT</span> <span class="token keyword">GENERATED</span> <span class="token keyword">ALWAYS</span> <span class="token keyword">AS</span> <span class="token punctuation">(</span>c<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">"$.id"</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">INDEX</span> i <span class="token punctuation">(</span>g<span class="token punctuation">)</span> <span class="token prompt"> -&gt;</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.28 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> jemp <span class="token punctuation">(</span>c<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token operator">&gt;</span> <span class="token punctuation">(</span><span class="token string">'{"id": "1", "name": "Fred"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"id": "2", "name": "Wilma"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token operator">&gt;</span> <span class="token punctuation">(</span><span class="token string">'{"id": "3", "name": "Barney"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"id": "4", "name": "Betty"}'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 4 rows affected (0.04 sec)</span> <span class="token output">Records: 4 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> c<span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token keyword">AS</span> <span class="token keyword">name</span> <span class="token operator">&gt;</span> <span class="token keyword">FROM</span> jemp <span class="token keyword">WHERE</span> g <span class="token operator">&gt;</span> <span class="token number">2</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> Barney <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> Betty <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">2 rows in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> c<span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token keyword">AS</span> <span class="token keyword">name</span> <span class="token operator">&gt;</span> <span class="token keyword">FROM</span> jemp <span class="token keyword">WHERE</span> g <span class="token operator">&gt;</span> <span class="token number">2</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> id<span class="token punctuation">:</span> 1 select_type<span class="token punctuation">:</span> SIMPLE table<span class="token punctuation">:</span> jemp partitions<span class="token punctuation">:</span> NULL type<span class="token punctuation">:</span> range possible_keys<span class="token punctuation">:</span> i key<span class="token punctuation">:</span> i key_len<span class="token punctuation">:</span> 5 ref<span class="token punctuation">:</span> NULL rows<span class="token punctuation">:</span> 2 filtered<span class="token punctuation">:</span> 100.00 Extra<span class="token punctuation">:</span> Using where </span><span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Level<span class="token punctuation">:</span> Note Code<span class="token punctuation">:</span> 1003 Message<span class="token punctuation">:</span> /<span class="token punctuation">*</span> select#1 <span class="token punctuation">*</span>/ select json_unquote(json_extract(`test`.`jemp`.`c`,'$.name')) AS `name` from `test`.`jemp` where (`test`.`jemp`.`g` &gt; 2) </span><span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> (We have wrapped the output from the last statement in this example to fit the viewing area.) </p> <p> When you use <a class="link" href="explain.html" title="15.8.2 EXPLAIN Statement"> <code class="literal"> EXPLAIN </code> </a> on a <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> or other SQL statement containing one or more expressions that use the <code class="literal"> -&gt; </code> or <code class="literal"> -&gt;&gt; </code> operator, these expressions are translated into their equivalents using <code class="literal"> JSON_EXTRACT() </code> and (if needed) <code class="literal"> JSON_UNQUOTE() </code> instead, as shown here in the output from <a class="link" href="show-warnings.html" title="15.7.7.42 SHOW WARNINGS Statement"> <code class="literal"> SHOW WARNINGS </code> </a> immediately following this <code class="literal"> EXPLAIN </code> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa5265950"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> c<span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token operator">&gt;</span> <span class="token keyword">FROM</span> jemp <span class="token keyword">WHERE</span> g <span class="token operator">&gt;</span> <span class="token number">2</span> <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> c<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">"$.name"</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> id<span class="token punctuation">:</span> 1 select_type<span class="token punctuation">:</span> SIMPLE table<span class="token punctuation">:</span> jemp partitions<span class="token punctuation">:</span> NULL type<span class="token punctuation">:</span> range possible_keys<span class="token punctuation">:</span> i key<span class="token punctuation">:</span> i key_len<span class="token punctuation">:</span> 5 ref<span class="token punctuation">:</span> NULL rows<span class="token punctuation">:</span> 2 filtered<span class="token punctuation">:</span> 100.00 Extra<span class="token punctuation">:</span> Using where; Using filesort </span><span class="token output">1 row in set, 1 warning (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Level<span class="token punctuation">:</span> Note Code<span class="token punctuation">:</span> 1003 Message<span class="token punctuation">:</span> /<span class="token punctuation">*</span> select#1 <span class="token punctuation">*</span>/ select json_unquote(json_extract(`test`.`jemp`.`c`,'$.name')) AS `c-&gt;&gt;"$.name"` from `test`.`jemp` where (`test`.`jemp`.`g` &gt; 2) order by json_extract(`test`.`jemp`.`c`,'$.name') </span><span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> See the descriptions of the <a class="link" href="json-search-functions.html#operator_json-column-path"> <code class="literal"> -&gt; </code> </a> and <a class="link" href="json-search-functions.html#operator_json-inline-path"> <code class="literal"> -&gt;&gt; </code> </a> operators, as well as those of the <a class="link" href="json-search-functions.html#function_json-extract"> <code class="literal"> JSON_EXTRACT() </code> </a> and <a class="link" href="json-modification-functions.html#function_json-unquote"> <code class="literal"> JSON_UNQUOTE() </code> </a> functions, for additional information and examples. </p> <p> This technique also can be used to provide indexes that indirectly reference columns of other types that cannot be indexed directly, such as <code class="literal"> GEOMETRY </code> columns. </p> <p> It is also possible to create an index on a <a class="link" href="json.html" title="13.5 The JSON Data Type"> <code class="literal"> JSON </code> </a> column using the <a class="link" href="json-search-functions.html#function_json-value"> <code class="literal"> JSON_VALUE() </code> </a> function with an expression that can be used to optimize queries employing the expression. See the description of that function for more information and examples. </p> <h6> <a name="json-column-indirect-index-mysql-cluster"> </a> JSON columns and indirect indexing in NDB Cluster </h6> <p> <a class="indexterm" name="idm46045184643920"> </a> <a class="indexterm" name="idm46045184642432"> </a> <a class="indexterm" name="idm46045184640944"> </a> <a class="indexterm" name="idm46045184639456"> </a> It is also possible to use indirect indexing of JSON columns in MySQL NDB Cluster, subject to the following conditions: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> handles a <a class="link" href="json.html" title="13.5 The JSON Data Type"> <code class="literal"> JSON </code> </a> column value internally as a <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> BLOB </code> </a> . This means that any <code class="literal"> NDB </code> table having one or more JSON columns must have a primary key, else it cannot be recorded in the binary log. </p> </li> <li class="listitem"> <p> The <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> storage engine does not support indexing of virtual columns. Since the default for generated columns is <code class="literal"> VIRTUAL </code> , you must specify explicitly the generated column to which to apply the indirect index as <code class="literal"> STORED </code> . </p> </li> </ol> </div> <p> The <strong class="userinput"> <code> CREATE TABLE </code> </strong> statement used to create the table <code class="literal"> jempn </code> shown here is a version of the <code class="literal"> jemp </code> table shown previously, with modifications making it compatible with <code class="literal"> NDB </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa1195068"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> jempn <span class="token punctuation">(</span> a <span class="token datatype">BIGINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> c <span class="token datatype">JSON</span> <span class="token keyword">DEFAULT</span> <span class="token boolean">NULL</span><span class="token punctuation">,</span> g <span class="token datatype">INT</span> <span class="token keyword">GENERATED</span> <span class="token keyword">ALWAYS</span> <span class="token keyword">AS</span> <span class="token punctuation">(</span>c<span class="token operator">-</span><span class="token operator">&gt;</span><span class="token string">"$.id"</span><span class="token punctuation">)</span> <span class="token keyword">STORED</span><span class="token punctuation">,</span> <span class="token keyword">INDEX</span> i <span class="token punctuation">(</span>g<span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">ENGINE</span><span class="token operator">=</span><span class="token keyword">NDB</span><span class="token punctuation">;</span></code></pre> </div> <p> We can populate this table using the following <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa83736311"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> jempn <span class="token punctuation">(</span>c<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token string">'{"id": "1", "name": "Fred"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"id": "2", "name": "Wilma"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"id": "3", "name": "Barney"}'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token string">'{"id": "4", "name": "Betty"}'</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> Now <code class="literal"> NDB </code> can use index <code class="literal"> i </code> , as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa70937543"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">EXPLAIN</span> <span class="token keyword">SELECT</span> c<span class="token operator">-</span><span class="token operator">&gt;&gt;</span><span class="token string">"$.name"</span> <span class="token keyword">AS</span> <span class="token keyword">name</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">FROM</span> jempn <span class="token keyword">WHERE</span> g <span class="token operator">&gt;</span> <span class="token number">2</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> id<span class="token punctuation">:</span> 1 select_type<span class="token punctuation">:</span> SIMPLE table<span class="token punctuation">:</span> jempn partitions<span class="token punctuation">:</span> p0,p1,p2,p3 type<span class="token punctuation">:</span> range possible_keys<span class="token punctuation">:</span> i key<span class="token punctuation">:</span> i key_len<span class="token punctuation">:</span> 5 ref<span class="token punctuation">:</span> NULL rows<span class="token punctuation">:</span> 3 filtered<span class="token punctuation">:</span> 100.00 Extra<span class="token punctuation">:</span> Using pushed condition (`test`.`jempn`.`g` &gt; 2) </span><span class="token output">1 row in set, 1 warning (0.01 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">WARNINGS</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Level<span class="token punctuation">:</span> Note Code<span class="token punctuation">:</span> 1003 Message<span class="token punctuation">:</span> /<span class="token punctuation">*</span> select#1 <span class="token punctuation">*</span>/ select json_unquote(json_extract(`test`.`jempn`.`c`,'$.name')) AS `name` from `test`.`jempn` where (`test`.`jempn`.`g` &gt; 2) </span><span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <p> You should keep in mind that a stored generated column, as well as any index on such a column, uses <a class="link" href="mysql-cluster-ndbd-definition.html#ndbparam-ndbd-datamemory"> <code class="literal"> DataMemory </code> </a> . </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/validate-password-transitioning.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="validate-password-transitioning"> </a> 8.4.3.3 Transitioning to the Password Validation Component </h4> </div> </div> </div> <a class="indexterm" name="idm46045241087200"> </a> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> In MySQL 8.4, the <code class="literal"> validate_password </code> plugin was reimplemented as the <code class="literal"> validate_password </code> component. The <code class="literal"> validate_password </code> plugin is deprecated; expect it to be removed in a future version of MySQL. </p> </div> <p> MySQL installations that currently use the <code class="literal"> validate_password </code> plugin should make the transition to using the <code class="literal"> validate_password </code> component instead. To do so, use the following procedure. The procedure installs the component before uninstalling the plugin, to avoid having a time window during which no password validation occurs. (The component and plugin can be installed simultaneously. In this case, the server attempts to use the component, falling back to the plugin if the component is unavailable.) </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Install the <code class="literal"> validate_password </code> component: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa99034756"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">INSTALL</span> <span class="token keyword">COMPONENT</span> <span class="token string">'file://component_validate_password'</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Test the <code class="literal"> validate_password </code> component to ensure that it works as expected. If you need to set any <code class="literal"> validate_password. <em class="replaceable"> <code> xxx </code> </em> </code> system variables, you can do so at runtime using <code class="literal"> SET GLOBAL </code> . (Any option file changes that must be made are performed in the next step.) </p> </li> <li class="listitem"> <p> Adjust any references to the plugin system and status variables to refer to the corresponding component system and status variables. Suppose that previously you had configured the plugin at startup using an option file like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa40389639"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysqld]</span> <span class="token constant">validate-password</span><span class="token attr-value"><span class="token punctuation">=</span>FORCE_PLUS_PERMANENT</span> <span class="token constant">validate_password_dictionary_file</span><span class="token attr-value"><span class="token punctuation">=</span>/usr/share/dict/words</span> <span class="token constant">validate_password_length</span><span class="token attr-value"><span class="token punctuation">=</span>10</span> <span class="token constant">validate_password_number_count</span><span class="token attr-value"><span class="token punctuation">=</span>2</span></code></pre> </div> <p> Those settings are appropriate for the plugin, but must be modified to apply to the component. To adjust the option file, omit the <a class="link" href="validate-password-options-variables.html#option_mysqld_validate-password"> <code class="option"> --validate-password </code> </a> option (it applies only to the plugin, not the component), and modify the system variable references from no-dot names appropriate for the plugin to dotted names appropriate for the component: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-ini"><div class="docs-select-all right" id="sa98755711"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-ini"><span class="token selector">[mysqld]</span> <span class="token constant">validate_password.dictionary_file</span><span class="token attr-value"><span class="token punctuation">=</span>/usr/share/dict/words</span> <span class="token constant">validate_password.length</span><span class="token attr-value"><span class="token punctuation">=</span>10</span> <span class="token constant">validate_password.number_count</span><span class="token attr-value"><span class="token punctuation">=</span>2</span></code></pre> </div> <p> Similar adjustments are needed for applications that refer at runtime to <code class="literal"> validate_password </code> plugin system and status variables. Change the no-dot plugin variable names to the corresponding dotted component variable names. </p> </li> <li class="listitem"> <p> Uninstall the <code class="literal"> validate_password </code> plugin: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa39615810"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">UNINSTALL</span> <span class="token keyword">PLUGIN</span> validate_password<span class="token punctuation">;</span></code></pre> </div> <p> If the <code class="literal"> validate_password </code> plugin is loaded at server startup using a <a class="link" href="server-options.html#option_mysqld_plugin-load"> <code class="option"> --plugin-load </code> </a> or <a class="link" href="server-options.html#option_mysqld_plugin-load-add"> <code class="option"> --plugin-load-add </code> </a> option, omit that option from the server startup procedure. For example, if the option is listed in a server option file, remove it from the file. </p> </li> <li class="listitem"> <p> Restart the server. </p> </li> </ol> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/gis-class-multilinestring.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="gis-class-multilinestring"> </a> 13.4.2.11 MultiLineString Class </h4> </div> </div> </div> <p> A <code class="literal"> MultiLineString </code> is a <code class="literal"> MultiCurve </code> geometry collection composed of <code class="literal"> LineString </code> elements. </p> <p> <span class="bold"> <strong> <code class="literal"> MultiLineString </code> Examples </strong> </span> </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> On a region map, a <code class="literal"> MultiLineString </code> could represent a river system or a highway system. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-events-waits-history-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-events-waits-history-table"> </a> 29.12.4.2 The events_waits_history Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045073189680"> </a> <a class="indexterm" name="idm46045073188176"> </a> <p> The <a class="link" href="performance-schema-events-waits-history-table.html" title="29.12.4.2 The events_waits_history Table"> <code class="literal"> events_waits_history </code> </a> table contains the <em class="replaceable"> <code> N </code> </em> most recent wait events that have ended per thread. Wait events are not added to the table until they have ended. When the table contains the maximum number of rows for a given thread, the oldest thread row is discarded when a new row for that thread is added. When a thread ends, all its rows are discarded. </p> <p> The Performance Schema autosizes the value of <em class="replaceable"> <code> N </code> </em> during server startup. To set the number of rows per thread explicitly, set the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_events_waits_history_size"> <code class="literal"> performance_schema_events_waits_history_size </code> </a> system variable at server startup. </p> <p> The <a class="link" href="performance-schema-events-waits-history-table.html" title="29.12.4.2 The events_waits_history Table"> <code class="literal"> events_waits_history </code> </a> table has the same columns and indexing as <a class="link" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> <code class="literal"> events_waits_current </code> </a> . See <a class="xref" href="performance-schema-events-waits-current-table.html" title="29.12.4.1 The events_waits_current Table"> Section 29.12.4.1, “The events_waits_current Table” </a> . </p> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is permitted for the <a class="link" href="performance-schema-events-waits-history-table.html" title="29.12.4.2 The events_waits_history Table"> <code class="literal"> events_waits_history </code> </a> table. It removes the rows. </p> <p> For more information about the relationship between the three wait event tables, see <a class="xref" href="performance-schema-event-tables.html" title="29.9 Performance Schema Tables for Current and Historical Events"> Section 29.9, “Performance Schema Tables for Current and Historical Events” </a> . </p> <p> For information about configuring whether to collect wait events, see <a class="xref" href="performance-schema-wait-tables.html" title="29.12.4 Performance Schema Wait Event Tables"> Section 29.12.4, “Performance Schema Wait Event Tables” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-functions.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="information-functions"> </a> 14.15 Information Functions </h2> </div> </div> </div> <a class="indexterm" name="idm46045199035648"> </a> <a class="indexterm" name="idm46045199034576"> </a> <div class="table"> <a name="idm46045199033088"> </a> <p class="title"> <b> Table 14.20 Information Functions </b> </p> <div class="table-contents"> <table frame="box" rules="all" summary="A reference that lists information functions."> <colgroup> <col style="width: 28%"/> <col style="width: 71%"/> </colgroup> <thead> <tr> <th> Name </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK() </code> </a> </td> <td> Repeatedly execute an expression </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_charset"> <code class="literal"> CHARSET() </code> </a> </td> <td> Return the character set of the argument </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_coercibility"> <code class="literal"> COERCIBILITY() </code> </a> </td> <td> Return the collation coercibility value of the string argument </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_collation"> <code class="literal"> COLLATION() </code> </a> </td> <td> Return the collation of the string argument </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_connection-id"> <code class="literal"> CONNECTION_ID() </code> </a> </td> <td> Return the connection ID (thread ID) for the connection </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_current-role"> <code class="literal"> CURRENT_ROLE() </code> </a> </td> <td> Return the current active roles </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> , <code class="literal"> CURRENT_USER </code> </a> </td> <td> The authenticated user name and host name </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_database"> <code class="literal"> DATABASE() </code> </a> </td> <td> Return the default (current) database name </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> </td> <td> For a SELECT with a LIMIT clause, the number of rows that would be returned were there no LIMIT clause </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_icu-version"> <code class="literal"> ICU_VERSION() </code> </a> </td> <td> ICU library version </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> </td> <td> Value of the AUTOINCREMENT column for the last INSERT </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_roles-graphml"> <code class="literal"> ROLES_GRAPHML() </code> </a> </td> <td> Return a GraphML document representing memory role subgraphs </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> </td> <td> The number of rows updated </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_schema"> <code class="literal"> SCHEMA() </code> </a> </td> <td> Synonym for DATABASE() </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_session-user"> <code class="literal"> SESSION_USER() </code> </a> </td> <td> Synonym for USER() </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_system-user"> <code class="literal"> SYSTEM_USER() </code> </a> </td> <td> Synonym for USER() </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> </td> <td> The user name and host name provided by the client </td> </tr> <tr> <td> <a class="link" href="information-functions.html#function_version"> <code class="literal"> VERSION() </code> </a> </td> <td> Return a string that indicates the MySQL server version </td> </tr> </tbody> </table> </div> <div class="table-contents"> <table cellpadding="0" cellspacing="0" style="position: fixed; top: 0px; display: none; left: 401px; width: 739px;"> <thead> <tr> <th style="width: 208.719px;"> Name </th> <th style="width: 529.281px;"> Description </th> </tr> </thead> </table> </div> </div> <br class="table-break"/> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <a name="function_benchmark"> </a> <p> <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK( <em class="replaceable"> <code> count </code> </em> , <em class="replaceable"> <code> expr </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045198966272"> </a> <p> The <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK() </code> </a> function executes the expression <em class="replaceable"> <code> expr </code> </em> repeatedly <em class="replaceable"> <code> count </code> </em> times. It may be used to time how quickly MySQL processes the expression. The result value is <code class="literal"> 0 </code> , or <code class="literal"> NULL </code> for inappropriate arguments such as a <code class="literal"> NULL </code> or negative repeat count. </p> <p> The intended use is from within the <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> client, which reports query execution times: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa94397531"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">BENCHMARK</span><span class="token punctuation">(</span><span class="token number">1000000</span><span class="token punctuation">,</span><span class="token function">AES_ENCRYPT</span><span class="token punctuation">(</span><span class="token string">'hello'</span><span class="token punctuation">,</span><span class="token string">'goodbye'</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> BENCHMARK(1000000,AES_ENCRYPT('hello','goodbye')) <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (4.74 sec)</span></code></pre> </div> <p> The time reported is elapsed time on the client end, not CPU time on the server end. It is advisable to execute <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK() </code> </a> several times, and to interpret the result with regard to how heavily loaded the server machine is. </p> <p> <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK() </code> </a> is intended for measuring the runtime performance of scalar expressions, which has some significant implications for the way that you use it and interpret the results: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> Only scalar expressions can be used. Although the expression can be a subquery, it must return a single column and at most a single row. For example, <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK(10, (SELECT * FROM t)) </code> </a> fails if the table <code class="literal"> t </code> has more than one column or more than one row. </p> </li> <li class="listitem"> <p> Executing a <code class="literal"> SELECT <em class="replaceable"> <code> expr </code> </em> </code> statement <em class="replaceable"> <code> N </code> </em> times differs from executing <code class="literal"> SELECT BENCHMARK( <em class="replaceable"> <code> N </code> </em> , <em class="replaceable"> <code> expr </code> </em> ) </code> in terms of the amount of overhead involved. The two have very different execution profiles and you should not expect them to take the same amount of time. The former involves the parser, optimizer, table locking, and runtime evaluation <em class="replaceable"> <code> N </code> </em> times each. The latter involves only runtime evaluation <em class="replaceable"> <code> N </code> </em> times, and all the other components just once. Memory structures already allocated are reused, and runtime optimizations such as local caching of results already evaluated for aggregate functions can alter the results. Use of <a class="link" href="information-functions.html#function_benchmark"> <code class="literal"> BENCHMARK() </code> </a> thus measures performance of the runtime component by giving more weight to that component and removing the <span class="quote"> “ <span class="quote"> noise </span> ” </span> introduced by the network, parser, optimizer, and so forth. </p> </li> </ul> </div> </li> <li class="listitem"> <a name="function_charset"> </a> <p> <a class="link" href="information-functions.html#function_charset"> <code class="literal"> CHARSET( <em class="replaceable"> <code> str </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045198935440"> </a> <p> Returns the character set of the string argument, or <code class="literal"> NULL </code> if the argument is <code class="literal"> NULL </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa29937350"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CHARSET</span><span class="token punctuation">(</span><span class="token string">'abc'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'utf8mb3'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CHARSET</span><span class="token punctuation">(</span><span class="token function">CONVERT</span><span class="token punctuation">(</span><span class="token string">'abc'</span> <span class="token keyword">USING</span> latin1<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'latin1'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CHARSET</span><span class="token punctuation">(</span><span class="token function">USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'utf8mb3'</span></code></pre> </div> </li> <li class="listitem"> <a name="function_coercibility"> </a> <p> <a class="link" href="information-functions.html#function_coercibility"> <code class="literal"> COERCIBILITY( <em class="replaceable"> <code> str </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045198922256"> </a> <p> Returns the collation coercibility value of the string argument. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa84241396"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COERCIBILITY</span><span class="token punctuation">(</span><span class="token string">'abc'</span> <span class="token keyword">COLLATE</span> utf8mb4_swedish_ci<span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COERCIBILITY</span><span class="token punctuation">(</span><span class="token function">USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">3</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COERCIBILITY</span><span class="token punctuation">(</span><span class="token string">'abc'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">4</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COERCIBILITY</span><span class="token punctuation">(</span><span class="token number">1000</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">5</span></code></pre> </div> <p> The return values have the meanings shown in the following table. Lower values have higher precedence. </p> <div class="informaltable"> <table summary="Collation coercibility return values, the meaning of each value, and an example of each."> <colgroup> <col style="width: 15%"/> <col style="width: 15%"/> <col style="width: 70%"/> </colgroup> <thead> <tr> <th scope="col"> Coercibility </th> <th scope="col"> Meaning </th> <th scope="col"> Example </th> </tr> </thead> <tbody> <tr> <th scope="row"> <code class="literal"> 0 </code> </th> <td> Explicit collation </td> <td> Value with <code class="literal"> COLLATE </code> clause </td> </tr> <tr> <th scope="row"> <code class="literal"> 1 </code> </th> <td> No collation </td> <td> Concatenation of strings with different collations </td> </tr> <tr> <th scope="row"> <code class="literal"> 2 </code> </th> <td> Implicit collation </td> <td> Column value, stored routine parameter or local variable </td> </tr> <tr> <th scope="row"> <code class="literal"> 3 </code> </th> <td> System constant </td> <td> <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> return value </td> </tr> <tr> <th scope="row"> <code class="literal"> 4 </code> </th> <td> Coercible </td> <td> Literal string </td> </tr> <tr> <th scope="row"> <code class="literal"> 5 </code> </th> <td> Numeric </td> <td> Numeric or temporal value </td> </tr> <tr> <th scope="row"> <code class="literal"> 6 </code> </th> <td> Ignorable </td> <td> <code class="literal"> NULL </code> or an expression derived from <code class="literal"> NULL </code> </td> </tr> </tbody> </table> </div> <p> For more information, see <a class="xref" href="charset-collation-coercibility.html" title="12.8.4 Collation Coercibility in Expressions"> Section 12.8.4, “Collation Coercibility in Expressions” </a> . </p> </li> <li class="listitem"> <a name="function_collation"> </a> <p> <a class="link" href="information-functions.html#function_collation"> <code class="literal"> COLLATION( <em class="replaceable"> <code> str </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045198871792"> </a> <p> Returns the collation of the string argument. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa58366955"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COLLATION</span><span class="token punctuation">(</span><span class="token string">'abc'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'utf8mb4_0900_ai_ci'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COLLATION</span><span class="token punctuation">(</span>_utf8mb4<span class="token string">'abc'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'utf8mb4_0900_ai_ci'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">COLLATION</span><span class="token punctuation">(</span>_latin1<span class="token string">'abc'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'latin1_swedish_ci'</span></code></pre> </div> </li> <li class="listitem"> <a name="function_connection-id"> </a> <p> <a class="link" href="information-functions.html#function_connection-id"> <code class="literal"> CONNECTION_ID() </code> </a> </p> <a class="indexterm" name="idm46045198860336"> </a> <p> Returns the connection ID (thread ID) for the connection. Every connection has an ID that is unique among the set of currently connected clients. </p> <p> The value returned by <a class="link" href="information-functions.html#function_connection-id"> <code class="literal"> CONNECTION_ID() </code> </a> is the same type of value as displayed in the <code class="literal"> ID </code> column of the Information Schema <a class="link" href="information-schema-processlist-table.html" title="28.3.23 The INFORMATION_SCHEMA PROCESSLIST Table"> <code class="literal"> PROCESSLIST </code> </a> table, the <code class="literal"> Id </code> column of <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> output, and the <code class="literal"> PROCESSLIST_ID </code> column of the Performance Schema <a class="link" href="performance-schema-threads-table.html" title="29.12.22.8 The threads Table"> <code class="literal"> threads </code> </a> table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57406376"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CONNECTION_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">23786</span></code></pre> </div> <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Warning </div> <p> Changing the session value of the <a class="link" href="server-system-variables.html#sysvar_pseudo_thread_id"> <code class="literal"> pseudo_thread_id </code> </a> system variable changes the value returned by the <a class="link" href="information-functions.html#function_connection-id"> <code class="literal"> CONNECTION_ID() </code> </a> function. </p> </div> </li> <li class="listitem"> <a name="function_current-role"> </a> <p> <a class="link" href="information-functions.html#function_current-role"> <code class="literal"> CURRENT_ROLE() </code> </a> </p> <a class="indexterm" name="idm46045198839424"> </a> <p> Returns a <code class="literal"> utf8mb3 </code> string containing the current active roles for the current session, separated by commas, or <code class="literal"> NONE </code> if there are none. The value reflects the setting of the <a class="link" href="server-system-variables.html#sysvar_sql_quote_show_create"> <code class="literal"> sql_quote_show_create </code> </a> system variable. </p> <p> Suppose that an account is granted roles as follows: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa79431747"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">GRANT</span> <span class="token string">'r1'</span><span class="token punctuation">,</span> <span class="token string">'r2'</span> <span class="token keyword">TO</span> <span class="token string">'u1'</span>@<span class="token string">'localhost'</span><span class="token punctuation">;</span> <span class="token keyword">SET</span> <span class="token keyword">DEFAULT</span> <span class="token keyword">ROLE</span> <span class="token keyword">ALL</span> <span class="token keyword">TO</span> <span class="token string">'u1'</span>@<span class="token string">'localhost'</span><span class="token punctuation">;</span></code></pre> </div> <p> In sessions for <code class="literal"> u1 </code> , the initial <a class="link" href="information-functions.html#function_current-role"> <code class="literal"> CURRENT_ROLE() </code> </a> value names the default account roles. Using <a class="link" href="set-role.html" title="15.7.1.11 SET ROLE Statement"> <code class="literal"> SET ROLE </code> </a> changes that: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa25191225"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CURRENT_ROLE</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> CURRENT_ROLE() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> `r1`@`%`,`r2`@`%` <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token keyword">ROLE</span> <span class="token string">'r1'</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token function">CURRENT_ROLE</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> CURRENT_ROLE() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> `r1`@`%` <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> <li class="listitem"> <a name="function_current-user"> </a> <p> <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER </code> </a> , <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> </p> <a class="indexterm" name="idm46045198820000"> </a> <p> Returns the user name and host name combination for the MySQL account that the server used to authenticate the current client. This account determines your access privileges. The return value is a string in the <code class="literal"> utf8mb3 </code> character set. </p> <p> The value of <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> can differ from the value of <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa23916957"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'davida@localhost'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> mysql<span class="token punctuation">.</span><span class="token keyword">user</span><span class="token punctuation">;</span> <span class="token output">ERROR 1044<span class="token punctuation">:</span> Access denied for user ''@'localhost' to database 'mysql'</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">CURRENT_USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'@localhost'</span></code></pre> </div> <p> The example illustrates that although the client specified a user name of <code class="literal"> davida </code> (as indicated by the value of the <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> function), the server authenticated the client using an anonymous user account (as seen by the empty user name part of the <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> value). One way this might occur is that there is no account listed in the grant tables for <code class="literal"> davida </code> . </p> <p> Within a stored program or view, <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> returns the account for the user who defined the object (as given by its <code class="literal"> DEFINER </code> value) unless defined with the <code class="literal"> SQL SECURITY INVOKER </code> characteristic. In the latter case, <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> returns the object's invoker. </p> <p> Triggers and events have no option to define the <code class="literal"> SQL SECURITY </code> characteristic, so for these objects, <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> returns the account for the user who defined the object. To return the invoker, use <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> or <a class="link" href="information-functions.html#function_session-user"> <code class="literal"> SESSION_USER() </code> </a> . </p> <p> The following statements support use of the <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> function to take the place of the name of (and, possibly, a host for) an affected user or a definer; in such cases, <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> is expanded where and as needed: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> <a class="link" href="drop-user.html" title="15.7.1.5 DROP USER Statement"> <code class="literal"> DROP USER </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="rename-user.html" title="15.7.1.7 RENAME USER Statement"> <code class="literal"> RENAME USER </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="grant.html" title="15.7.1.6 GRANT Statement"> <code class="literal"> GRANT </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="revoke.html" title="15.7.1.8 REVOKE Statement"> <code class="literal"> REVOKE </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="create-function.html" title="15.1.14 CREATE FUNCTION Statement"> <code class="literal"> CREATE FUNCTION </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="create-procedure.html" title="15.1.17 CREATE PROCEDURE and CREATE FUNCTION Statements"> <code class="literal"> CREATE PROCEDURE </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="create-trigger.html" title="15.1.22 CREATE TRIGGER Statement"> <code class="literal"> CREATE TRIGGER </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="create-event.html" title="15.1.13 CREATE EVENT Statement"> <code class="literal"> CREATE EVENT </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="create-view.html" title="15.1.23 CREATE VIEW Statement"> <code class="literal"> CREATE VIEW </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="alter-event.html" title="15.1.3 ALTER EVENT Statement"> <code class="literal"> ALTER EVENT </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="alter-view.html" title="15.1.11 ALTER VIEW Statement"> <code class="literal"> ALTER VIEW </code> </a> </p> </li> <li class="listitem"> <p> <a class="link" href="set-password.html" title="15.7.1.10 SET PASSWORD Statement"> <code class="literal"> SET PASSWORD </code> </a> </p> </li> </ul> </div> <p> For information about the implications that this expansion of <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> has for replication, see <a class="xref" href="replication-features-current-user.html" title="19.5.1.8 Replication of CURRENT_USER()"> Section 19.5.1.8, “Replication of CURRENT_USER()” </a> . </p> <p> This function can be used for the default value of a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> column, as shown in the following <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa28418592"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span>c <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">288</span><span class="token punctuation">)</span> <span class="token function">DEFAULT</span> <span class="token punctuation">(</span><span class="token function">CURRENT_USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <a name="function_database"> </a> <p> <a class="link" href="information-functions.html#function_database"> <code class="literal"> DATABASE() </code> </a> </p> <a class="indexterm" name="idm46045198755616"> </a> <p> Returns the default (current) database name as a string in the <code class="literal"> utf8mb3 </code> character set. If there is no default database, <a class="link" href="information-functions.html#function_database"> <code class="literal"> DATABASE() </code> </a> returns <code class="literal"> NULL </code> . Within a stored routine, the default database is the database that the routine is associated with, which is not necessarily the same as the database that is the default in the calling context. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa43531241"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">DATABASE</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'test'</span></code></pre> </div> <p> If there is no default database, <a class="link" href="information-functions.html#function_database"> <code class="literal"> DATABASE() </code> </a> returns <code class="literal"> NULL </code> . </p> </li> <li class="listitem"> <a name="function_found-rows"> </a> <p> <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> </p> <a class="indexterm" name="idm46045198740528"> </a> <a class="indexterm" name="idm46045198739456"> </a> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> The <code class="literal"> SQL_CALC_FOUND_ROWS </code> query modifier and accompanying <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> function are deprecated; expect them to be removed in a future version of MySQL. Execute the query with <code class="literal"> LIMIT </code> , and then a second query with <a class="link" href="aggregate-functions.html#function_count"> <code class="literal"> COUNT(*) </code> </a> and without <code class="literal"> LIMIT </code> to determine whether there are additional rows. For example, instead of these queries: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36717409"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token keyword">SQL_CALC_FOUND_ROWS</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> id <span class="token operator">&gt;</span> <span class="token number">100</span> <span class="token keyword">LIMIT</span> <span class="token number">10</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token function">FOUND_ROWS</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> Use these queries instead: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa42086236"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> id <span class="token operator">&gt;</span> <span class="token number">100</span> <span class="token keyword">LIMIT</span> <span class="token number">10</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token function">COUNT</span><span class="token punctuation">(</span><span class="token operator">*</span><span class="token punctuation">)</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token keyword">WHERE</span> id <span class="token operator">&gt;</span> <span class="token number">100</span><span class="token punctuation">;</span></code></pre> </div> <p> <a class="link" href="aggregate-functions.html#function_count"> <code class="literal"> COUNT(*) </code> </a> is subject to certain optimizations. <code class="literal"> SQL_CALC_FOUND_ROWS </code> causes some optimizations to be disabled. </p> </div> <p> A <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement may include a <code class="literal"> LIMIT </code> clause to restrict the number of rows the server returns to the client. In some cases, it is desirable to know how many rows the statement would have returned without the <code class="literal"> LIMIT </code> , but without running the statement again. To obtain this row count, include an <code class="literal"> SQL_CALC_FOUND_ROWS </code> option in the <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement, and then invoke <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> afterward: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa18002774"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">SQL_CALC_FOUND_ROWS</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <em class="replaceable">tbl_name</em> <span class="token prompt"> -&gt;</span> <span class="token keyword">WHERE</span> id <span class="token operator">&gt;</span> <span class="token number">100</span> <span class="token keyword">LIMIT</span> <span class="token number">10</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">FOUND_ROWS</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> The second <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> returns a number indicating how many rows the first <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> would have returned had it been written without the <code class="literal"> LIMIT </code> clause. </p> <p> In the absence of the <code class="literal"> SQL_CALC_FOUND_ROWS </code> option in the most recent successful <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement, <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> returns the number of rows in the result set returned by that statement. If the statement includes a <code class="literal"> LIMIT </code> clause, <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> returns the number of rows up to the limit. For example, <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> returns 10 or 60, respectively, if the statement includes <code class="literal"> LIMIT 10 </code> or <code class="literal"> LIMIT 50, 10 </code> . </p> <p> The row count available through <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is transient and not intended to be available past the statement following the <code class="literal"> SELECT SQL_CALC_FOUND_ROWS </code> statement. If you need to refer to the value later, save it: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa4071419"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">SQL_CALC_FOUND_ROWS</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> <span class="token punctuation">.</span><span class="token punctuation">.</span><span class="token punctuation">.</span> <span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SET</span> <span class="token variable">@rows</span> <span class="token operator">=</span> <span class="token function">FOUND_ROWS</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> If you are using <code class="literal"> SELECT SQL_CALC_FOUND_ROWS </code> , MySQL must calculate how many rows are in the full result set. However, this is faster than running the query again without <code class="literal"> LIMIT </code> , because the result set need not be sent to the client. </p> <p> <code class="literal"> SQL_CALC_FOUND_ROWS </code> and <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> can be useful in situations when you want to restrict the number of rows that a query returns, but also determine the number of rows in the full result set without running the query again. An example is a Web script that presents a paged display containing links to the pages that show other sections of a search result. Using <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> enables you to determine how many other pages are needed for the rest of the result. </p> <p> The use of <code class="literal"> SQL_CALC_FOUND_ROWS </code> and <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is more complex for <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> statements than for simple <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements, because <code class="literal"> LIMIT </code> may occur at multiple places in a <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> . It may be applied to individual <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statements in the <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> , or global to the <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> result as a whole. </p> <p> The intent of <code class="literal"> SQL_CALC_FOUND_ROWS </code> for <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> is that it should return the row count that would be returned without a global <code class="literal"> LIMIT </code> . The conditions for use of <code class="literal"> SQL_CALC_FOUND_ROWS </code> with <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> are: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The <code class="literal"> SQL_CALC_FOUND_ROWS </code> keyword must appear in the first <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> of the <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> . </p> </li> <li class="listitem"> <p> The value of <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is exact only if <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION ALL </code> </a> is used. If <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> without <code class="literal"> ALL </code> is used, duplicate removal occurs and the value of <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is only approximate. </p> </li> <li class="listitem"> <p> If no <code class="literal"> LIMIT </code> is present in the <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> , <code class="literal"> SQL_CALC_FOUND_ROWS </code> is ignored and returns the number of rows in the temporary table that is created to process the <a class="link" href="union.html" title="15.2.18 UNION Clause"> <code class="literal"> UNION </code> </a> . </p> </li> </ul> </div> <p> Beyond the cases described here, the behavior of <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is undefined (for example, its value following a <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement that fails with an error). </p> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> <a class="link" href="information-functions.html#function_found-rows"> <code class="literal"> FOUND_ROWS() </code> </a> is not replicated reliably using statement-based replication. This function is automatically replicated using row-based replication. </p> </div> </li> <li class="listitem"> <a name="function_icu-version"> </a> <p> <a class="link" href="information-functions.html#function_icu-version"> <code class="literal"> ICU_VERSION() </code> </a> </p> <a class="indexterm" name="idm46045198649760"> </a> <p> The version of the International Components for Unicode (ICU) library used to support regular expression operations (see <a class="xref" href="regexp.html" title="14.8.2 Regular Expressions"> Section 14.8.2, “Regular Expressions” </a> ). This function is primarily intended for use in test cases. </p> </li> <li class="listitem"> <a name="function_last-insert-id"> </a> <p> <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> , <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID( <em class="replaceable"> <code> expr </code> </em> ) </code> </a> </p> <a class="indexterm" name="idm46045198640784"> </a> <p> With no argument, <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> returns a <code class="literal"> BIGINT UNSIGNED </code> (64-bit) value representing the first automatically generated value successfully inserted for an <code class="literal"> AUTO_INCREMENT </code> column as a result of the most recently executed <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement. The value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> remains unchanged if no rows are successfully inserted. </p> <p> With an argument, <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> returns an unsigned integer, or <code class="literal"> NULL </code> if the argument is <code class="literal"> NULL </code> . </p> <p> For example, after inserting a row that generates an <code class="literal"> AUTO_INCREMENT </code> value, you can get the value like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa32441872"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token number">195</span></code></pre> </div> <p> The currently executing statement does not affect the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> . Suppose that you generate an <code class="literal"> AUTO_INCREMENT </code> value with one statement, and then refer to <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> in a multiple-row <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement that inserts rows into a table with its own <code class="literal"> AUTO_INCREMENT </code> column. The value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> remains stable in the second statement; its value for the second and later rows is not affected by the earlier row insertions. (You should be aware that, if you mix references to <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> and <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID( <em class="replaceable"> <code> expr </code> </em> ) </code> </a> , the effect is undefined.) </p> <p> If the previous statement returned an error, the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> is undefined. For transactional tables, if the statement is rolled back due to an error, the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> is left undefined. For manual <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> ROLLBACK </code> </a> , the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> is not restored to that before the transaction; it remains as it was at the point of the <a class="link" href="commit.html" title="15.3.1 START TRANSACTION, COMMIT, and ROLLBACK Statements"> <code class="literal"> ROLLBACK </code> </a> . </p> <p> Within the body of a stored routine (procedure or function) or a trigger, the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> changes the same way as for statements executed outside the body of these kinds of objects. The effect of a stored routine or trigger upon the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> that is seen by following statements depends on the kind of routine: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> If a stored procedure executes statements that change the value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> , the changed value is seen by statements that follow the procedure call. </p> </li> <li class="listitem"> <p> For stored functions and triggers that change the value, the value is restored when the function or trigger ends, so statements coming after it do not see a changed value. </p> </li> </ul> </div> <p> The ID that was generated is maintained in the server on a <span class="emphasis"> <em> per-connection basis </em> </span> . This means that the value returned by the function to a given client is the first <code class="literal"> AUTO_INCREMENT </code> value generated for most recent statement affecting an <code class="literal"> AUTO_INCREMENT </code> column <span class="emphasis"> <em> by that client </em> </span> . This value cannot be affected by other clients, even if they generate <code class="literal"> AUTO_INCREMENT </code> values of their own. This behavior ensures that each client can retrieve its own ID without concern for the activity of other clients, and without the need for locks or transactions. </p> <p> The value of <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> is not changed if you set the <code class="literal"> AUTO_INCREMENT </code> column of a row to a non- <span class="quote"> “ <span class="quote"> magic </span> ” </span> value (that is, a value that is not <code class="literal"> NULL </code> and not <code class="literal"> 0 </code> ). </p> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> If you insert multiple rows using a single <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement, <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> returns the value generated for the <span class="emphasis"> <em> first </em> </span> inserted row <span class="emphasis"> <em> only </em> </span> . The reason for this is to make it possible to reproduce easily the same <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement against some other server. </p> </div> <p> For example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa40421048"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">USE</span> test<span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span> id <span class="token datatype">INT</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">,</span> <span class="token keyword">name</span> <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token string">'Bob'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> Bob <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> LAST_INSERT_ID() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token string">'Mary'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token string">'Jane'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token string">'Lisa'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> id <span class="token punctuation">|</span> name <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span> Bob <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span> Mary <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span> Jane <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 4 <span class="token punctuation">|</span> Lisa <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> LAST_INSERT_ID() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Although the second <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> statement inserted three new rows into <code class="literal"> t </code> , the ID generated for the first of these rows was <code class="literal"> 2 </code> , and it is this value that is returned by <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> for the following <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement. </p> <p> If you use <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT IGNORE </code> </a> and the row is ignored, the <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> remains unchanged from the current value (or 0 is returned if the connection has not yet performed a successful <code class="literal"> INSERT </code> ) and, for non-transactional tables, the <code class="literal"> AUTO_INCREMENT </code> counter is not incremented. For <code class="literal"> InnoDB </code> tables, the <code class="literal"> AUTO_INCREMENT </code> counter is incremented if <a class="link" href="innodb-parameters.html#sysvar_innodb_autoinc_lock_mode"> <code class="literal"> innodb_autoinc_lock_mode </code> </a> is set to <code class="literal"> 1 </code> or <code class="literal"> 2 </code> , as demonstrated in the following example: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa46062974"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">USE</span> test<span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token variable">@@innodb_autoinc_lock_mode</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> @@innodb_autoinc_lock_mode <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> <span class="token punctuation">`</span>t<span class="token punctuation">`</span> <span class="token punctuation">(</span> <span class="token punctuation">`</span>id<span class="token punctuation">`</span> <span class="token datatype">INT</span><span class="token punctuation">(</span><span class="token number">11</span><span class="token punctuation">)</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span><span class="token punctuation">,</span> <span class="token punctuation">`</span>val<span class="token punctuation">`</span> <span class="token datatype">INT</span><span class="token punctuation">(</span><span class="token number">11</span><span class="token punctuation">)</span> <span class="token keyword">DEFAULT</span> <span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span> <span class="token punctuation">(</span><span class="token punctuation">`</span>id<span class="token punctuation">`</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">UNIQUE</span> <span class="token keyword">KEY</span> <span class="token punctuation">`</span>i1<span class="token punctuation">`</span> <span class="token punctuation">(</span><span class="token punctuation">`</span>val<span class="token punctuation">`</span><span class="token punctuation">)</span> <span class="token punctuation">)</span> <span class="token keyword">ENGINE</span><span class="token operator">=</span>InnoDB<span class="token punctuation">;</span> <span class="token comment" spellcheck="true"># Insert two rows</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token punctuation">(</span>val<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token comment" spellcheck="true"># With auto_increment_offset=1, the inserted rows</span> <span class="token comment" spellcheck="true"># result in an AUTO_INCREMENT value of 3</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> t Create Table<span class="token punctuation">:</span> CREATE TABLE `t` ( `id` int(11) NOT NULL AUTO_INCREMENT, `val` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `i1` (`val`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci # LAST_INSERT_ID() returns the first automatically generated # value that is successfully inserted for the AUTO_INCREMENT column </span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> LAST_INSERT_ID() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token comment" spellcheck="true"># The attempted insertion of duplicate rows fail but errors are ignored</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">IGNORE</span> <span class="token keyword">INTO</span> t <span class="token punctuation">(</span>val<span class="token punctuation">)</span> <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (0.00 sec)</span> <span class="token output">Records: 2 Duplicates: 2 Warnings: 0</span> <span class="token comment" spellcheck="true"># With innodb_autoinc_lock_mode=1, the AUTO_INCREMENT counter</span> <span class="token comment" spellcheck="true"># is incremented for the ignored rows</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> t Create Table<span class="token punctuation">:</span> CREATE TABLE `t` ( `id` int(11) NOT NULL AUTO_INCREMENT, `val` int(11) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `i1` (`val`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci # The LAST_INSERT_ID is unchanged because the previous insert was unsuccessful </span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> LAST_INSERT_ID() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> For more information, see <a class="xref" href="innodb-auto-increment-handling.html" title="17.6.1.6 AUTO_INCREMENT Handling in InnoDB"> Section 17.6.1.6, “AUTO_INCREMENT Handling in InnoDB” </a> . </p> <a class="indexterm" name="idm46045198548288"> </a> <p> If <em class="replaceable"> <code> expr </code> </em> is given as an argument to <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> , the value of the argument is returned by the function and is remembered as the next value to be returned by <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> . This can be used to simulate sequences: </p> <div class="orderedlist"> <ol class="orderedlist" type="1"> <li class="listitem"> <p> Create a table to hold the sequence counter and initialize it: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa58073849"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> sequence <span class="token punctuation">(</span>id <span class="token datatype">INT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> sequence <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">0</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <p> Use the table to generate sequence numbers like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa11275530"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">UPDATE</span> sequence <span class="token keyword">SET</span> id<span class="token operator">=</span><span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span>id<span class="token operator">+</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">LAST_INSERT_ID</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> The <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> statement increments the sequence counter and causes the next call to <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> to return the updated value. The <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement retrieves that value. The <a class="ulink" href="/doc/c-api/8.4/en/mysql-insert-id.html" target="_top"> <code class="literal"> mysql_insert_id() </code> </a> C API function can also be used to get the value. See <a class="ulink" href="/doc/c-api/8.4/en/mysql-insert-id.html" target="_top"> mysql_insert_id() </a> . </p> </li> </ol> </div> <p> You can generate sequences without calling <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID() </code> </a> , but the utility of using the function this way is that the ID value is maintained in the server as the last automatically generated value. It is multi-user safe because multiple clients can issue the <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> statement and get their own sequence value with the <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement (or <a class="ulink" href="/doc/c-api/8.4/en/mysql-insert-id.html" target="_top"> <code class="literal"> mysql_insert_id() </code> </a> ), without affecting or being affected by other clients that generate their own sequence values. </p> <p> Note that <a class="ulink" href="/doc/c-api/8.4/en/mysql-insert-id.html" target="_top"> <code class="literal"> mysql_insert_id() </code> </a> is only updated after <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> and <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> statements, so you cannot use the C API function to retrieve the value for <a class="link" href="information-functions.html#function_last-insert-id"> <code class="literal"> LAST_INSERT_ID( <em class="replaceable"> <code> expr </code> </em> ) </code> </a> after executing other SQL statements like <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> or <a class="link" href="set-variable.html" title="15.7.6.1 SET Syntax for Variable Assignment"> <code class="literal"> SET </code> </a> . </p> </li> <li class="listitem"> <a name="function_roles-graphml"> </a> <p> <a class="link" href="information-functions.html#function_roles-graphml"> <code class="literal"> ROLES_GRAPHML() </code> </a> </p> <a class="indexterm" name="idm46045198511552"> </a> <p> Returns a <code class="literal"> utf8mb3 </code> string containing a GraphML document representing memory role subgraphs. The <a class="link" href="privileges-provided.html#priv_role-admin"> <code class="literal"> ROLE_ADMIN </code> </a> privilege (or the deprecated <a class="link" href="privileges-provided.html#priv_super"> <code class="literal"> SUPER </code> </a> privilege) is required to see content in the <code class="literal"> &lt;graphml&gt; </code> element. Otherwise, the result shows only an empty element: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa87070744"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROLES_GRAPHML</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ROLES_GRAPHML() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> &lt;?xml version="1.0" encoding="UTF<span class="token punctuation">-</span>8"?&gt;&lt;graphml /&gt; <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> </li> <li class="listitem"> <a name="function_row-count"> </a> <p> <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> </p> <a class="indexterm" name="idm46045198499008"> </a> <p> <code class="literal"> ROW_COUNT() </code> returns a value as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> DDL statements: 0. This applies to statements such as <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="drop-table.html" title="15.1.32 DROP TABLE Statement"> <code class="literal"> DROP TABLE </code> </a> . </p> </li> <li class="listitem"> <p> DML statements other than <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> : The number of affected rows. This applies to statements such as <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> , <a class="link" href="insert.html" title="15.2.7 INSERT Statement"> <code class="literal"> INSERT </code> </a> , or <a class="link" href="delete.html" title="15.2.2 DELETE Statement"> <code class="literal"> DELETE </code> </a> (as before), but now also to statements such as <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> and <a class="link" href="load-data.html" title="15.2.9 LOAD DATA Statement"> <code class="literal"> LOAD DATA </code> </a> . </p> </li> <li class="listitem"> <p> <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> : -1 if the statement returns a result set, or the number of rows <span class="quote"> “ <span class="quote"> affected </span> ” </span> if it does not. For example, for <code class="literal"> SELECT * FROM t1 </code> , <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> returns -1. For <code class="literal"> SELECT * FROM t1 INTO OUTFILE ' <em class="replaceable"> <code> file_name </code> </em> ' </code> , <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> returns the number of rows written to the file. </p> </li> <li class="listitem"> <p> <a class="link" href="signal.html" title="15.6.7.5 SIGNAL Statement"> <code class="literal"> SIGNAL </code> </a> statements: 0. </p> </li> </ul> </div> <p> For <a class="link" href="update.html" title="15.2.17 UPDATE Statement"> <code class="literal"> UPDATE </code> </a> statements, the affected-rows value by default is the number of rows actually changed. If you specify the <code class="literal"> CLIENT_FOUND_ROWS </code> flag to <a class="ulink" href="/doc/c-api/8.4/en/mysql-real-connect.html" target="_top"> <code class="literal"> mysql_real_connect() </code> </a> when connecting to <a class="link" href="mysqld.html" title="6.3.1 mysqld — The MySQL Server"> <span class="command"> <strong> mysqld </strong> </span> </a> , the affected-rows value is the number of rows <span class="quote"> “ <span class="quote"> found </span> ” </span> ; that is, matched by the <code class="literal"> WHERE </code> clause. </p> <p> For <a class="link" href="replace.html" title="15.2.12 REPLACE Statement"> <code class="literal"> REPLACE </code> </a> statements, the affected-rows value is 2 if the new row replaced an old row, because in this case, one row was inserted after the duplicate was deleted. </p> <p> For <a class="link" href="insert-on-duplicate.html" title="15.2.7.2 INSERT ... ON DUPLICATE KEY UPDATE Statement"> <code class="literal"> INSERT ... ON DUPLICATE KEY UPDATE </code> </a> statements, the affected-rows value per row is 1 if the row is inserted as a new row, 2 if an existing row is updated, and 0 if an existing row is set to its current values. If you specify the <code class="literal"> CLIENT_FOUND_ROWS </code> flag, the affected-rows value is 1 (not 0) if an existing row is set to its current values. </p> <p> The <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> value is similar to the value from the <a class="ulink" href="/doc/c-api/8.4/en/mysql-affected-rows.html" target="_top"> <code class="literal"> mysql_affected_rows() </code> </a> C API function and the row count that the <a class="link" href="mysql.html" title="6.5.1 mysql — The MySQL Command-Line Client"> <span class="command"> <strong> mysql </strong> </span> </a> client displays following statement execution. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa86548307"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t <span class="token keyword">VALUES</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 3 rows affected (0.00 sec)</span> <span class="token output">Records: 3 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROW_COUNT</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ROW_COUNT() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 3 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">DELETE</span> <span class="token keyword">FROM</span> t <span class="token keyword">WHERE</span> i <span class="token keyword">IN</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output">Query OK, 2 rows affected (0.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">ROW_COUNT</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ROW_COUNT() <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> <a class="link" href="information-functions.html#function_row-count"> <code class="literal"> ROW_COUNT() </code> </a> is not replicated reliably using statement-based replication. This function is automatically replicated using row-based replication. </p> </div> </li> <li class="listitem"> <a name="function_schema"> </a> <p> <a class="link" href="information-functions.html#function_schema"> <code class="literal"> SCHEMA() </code> </a> </p> <a class="indexterm" name="idm46045198446608"> </a> <p> This function is a synonym for <a class="link" href="information-functions.html#function_database"> <code class="literal"> DATABASE() </code> </a> . </p> </li> <li class="listitem"> <a name="function_session-user"> </a> <p> <a class="link" href="information-functions.html#function_session-user"> <code class="literal"> SESSION_USER() </code> </a> </p> <a class="indexterm" name="idm46045198437904"> </a> <p> <a class="link" href="information-functions.html#function_session-user"> <code class="literal"> SESSION_USER() </code> </a> is a synonym for <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> . </p> <p> Like <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> , this function can be used for the default value of a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> column, as shown in the following <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa8413093"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span>c <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">288</span><span class="token punctuation">)</span> <span class="token function">DEFAULT</span> <span class="token punctuation">(</span><span class="token function">SESSION_USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <a name="function_system-user"> </a> <p> <a class="link" href="information-functions.html#function_system-user"> <code class="literal"> SYSTEM_USER() </code> </a> </p> <a class="indexterm" name="idm46045198421520"> </a> <p> <a class="link" href="information-functions.html#function_system-user"> <code class="literal"> SYSTEM_USER() </code> </a> is a synonym for <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> The <a class="link" href="information-functions.html#function_system-user"> <code class="literal"> SYSTEM_USER() </code> </a> function is distinct from the <a class="link" href="privileges-provided.html#priv_system-user"> <code class="literal"> SYSTEM_USER </code> </a> privilege. The former returns the current MySQL account name. The latter distinguishes the system user and regular user account categories (see <a class="xref" href="account-categories.html" title="8.2.11 Account Categories"> Section 8.2.11, “Account Categories” </a> ). </p> </div> <p> Like <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> , this function can be used for the default value of a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> column, as shown in the following <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa69936447"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span>c <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">288</span><span class="token punctuation">)</span> <span class="token function">DEFAULT</span> <span class="token punctuation">(</span><span class="token function">SYSTEM_USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <a name="function_user"> </a> <p> <a class="link" href="information-functions.html#function_user"> <code class="literal"> USER() </code> </a> </p> <a class="indexterm" name="idm46045198400992"> </a> <p> Returns the current MySQL user name and host name as a string in the <code class="literal"> utf8mb3 </code> character set. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa46873651"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'davida@localhost'</span></code></pre> </div> <p> The value indicates the user name you specified when connecting to the server, and the client host from which you connected. The value can be different from that of <a class="link" href="information-functions.html#function_current-user"> <code class="literal"> CURRENT_USER() </code> </a> . </p> <p> This function can be used for the default value of a <a class="link" href="char.html" title="13.3.2 The CHAR and VARCHAR Types"> <code class="literal"> VARCHAR </code> </a> or <a class="link" href="blob.html" title="13.3.4 The BLOB and TEXT Types"> <code class="literal"> TEXT </code> </a> column, as shown in the following <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa27845520"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span>c <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">288</span><span class="token punctuation">)</span> <span class="token function">DEFAULT</span> <span class="token punctuation">(</span><span class="token function">USER</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> </li> <li class="listitem"> <a name="function_version"> </a> <p> <a class="link" href="information-functions.html#function_version"> <code class="literal"> VERSION() </code> </a> </p> <a class="indexterm" name="idm46045198383408"> </a> <p> Returns a string that indicates the MySQL server version. The string uses the <code class="literal"> utf8mb3 </code> character set. The value might have a suffix in addition to the version number. See the description of the <a class="link" href="server-system-variables.html#sysvar_version"> <code class="literal"> version </code> </a> system variable in <a class="xref" href="server-system-variables.html" title="7.1.8 Server System Variables"> Section 7.1.8, “Server System Variables” </a> . </p> <p> This function is unsafe for statement-based replication. A warning is logged if you use this function when <a class="link" href="replication-options-binary-log.html#sysvar_binlog_format"> <code class="literal"> binlog_format </code> </a> is set to <code class="literal"> STATEMENT </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa64511199"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token function">VERSION</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token prompt"> -&gt;</span> <span class="token string">'8.4.3-standard'</span></code></pre> </div> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-instrumentation-checking.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="performance-schema-instrumentation-checking"> </a> 29.4.10 Determining What Is Instrumented </h3> </div> </div> </div> <p> It is always possible to determine what instruments the Performance Schema includes by checking the <a class="link" href="performance-schema-setup-instruments-table.html" title="29.12.2.3 The setup_instruments Table"> <code class="literal"> setup_instruments </code> </a> table. For example, to see what file-related events are instrumented for the <code class="literal"> InnoDB </code> storage engine, use this query: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa11824150"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token keyword">NAME</span><span class="token punctuation">,</span> ENABLED<span class="token punctuation">,</span> TIMED <span class="token keyword">FROM</span> performance_schema<span class="token punctuation">.</span>setup_instruments <span class="token keyword">WHERE</span> <span class="token keyword">NAME</span> <span class="token operator">LIKE</span> <span class="token string">'wait/io/file/innodb/%'</span><span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> NAME <span class="token punctuation">|</span> ENABLED <span class="token punctuation">|</span> TIMED <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_tablespace_open_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_data_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_log_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_temp_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_arch_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> wait/io/file/innodb/innodb_clone_file <span class="token punctuation">|</span> YES <span class="token punctuation">|</span> YES <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> An exhaustive description of precisely what is instrumented is not given in this documentation, for several reasons: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> What is instrumented is the server code. Changes to this code occur often, which also affects the set of instruments. </p> </li> <li class="listitem"> <p> It is not practical to list all the instruments because there are hundreds of them. </p> </li> <li class="listitem"> <p> As described earlier, it is possible to find out by querying the <a class="link" href="performance-schema-setup-instruments-table.html" title="29.12.2.3 The setup_instruments Table"> <code class="literal"> setup_instruments </code> </a> table. This information is always up to date for your version of MySQL, also includes instrumentation for instrumented plugins you might have installed that are not part of the core server, and can be used by automated tools. </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-schema-innodb-buffer-page-lru-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="information-schema-innodb-buffer-page-lru-table"> </a> 28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table </h3> </div> </div> </div> <a class="indexterm" name="idm46045077602416"> </a> <p> The <a class="link" href="information-schema-innodb-buffer-page-lru-table.html" title="28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table"> <code class="literal"> INNODB_BUFFER_PAGE_LRU </code> </a> table provides information about the pages in the <code class="literal"> InnoDB </code> <a class="link" href="glossary.html#glos_buffer_pool" title="buffer pool"> buffer pool </a> ; in particular, how they are ordered in the LRU list that determines which pages to <a class="link" href="glossary.html#glos_eviction" title="eviction"> evict </a> from the buffer pool when it becomes full. </p> <p> The <a class="link" href="information-schema-innodb-buffer-page-lru-table.html" title="28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table"> <code class="literal"> INNODB_BUFFER_PAGE_LRU </code> </a> table has the same columns as the <a class="link" href="information-schema-innodb-buffer-page-table.html" title="28.4.2 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE Table"> <code class="literal"> INNODB_BUFFER_PAGE </code> </a> table with a few exceptions. It has <code class="literal"> LRU_POSITION </code> and <code class="literal"> COMPRESSED </code> columns instead of <code class="literal"> BLOCK_ID </code> and <code class="literal"> PAGE_STATE </code> columns, and it does not include and <code class="literal"> IS_STALE </code> column. </p> <p> For related usage information and examples, see <a class="xref" href="innodb-information-schema-buffer-pool-tables.html" title="17.15.5 InnoDB INFORMATION_SCHEMA Buffer Pool Tables"> Section 17.15.5, “InnoDB INFORMATION_SCHEMA Buffer Pool Tables” </a> . </p> <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Warning </div> <p> Querying the <a class="link" href="information-schema-innodb-buffer-page-lru-table.html" title="28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table"> <code class="literal"> INNODB_BUFFER_PAGE_LRU </code> </a> table can affect performance. Do not query this table on a production system unless you are aware of the performance impact and have determined it to be acceptable. To avoid impacting performance on a production system, reproduce the issue you want to investigate and query buffer pool statistics on a test instance. </p> </div> <p> The <a class="link" href="information-schema-innodb-buffer-page-lru-table.html" title="28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table"> <code class="literal"> INNODB_BUFFER_PAGE_LRU </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> POOL_ID </code> </p> <p> The buffer pool ID. This is an identifier to distinguish between multiple buffer pool instances. </p> </li> <li class="listitem"> <p> <code class="literal"> LRU_POSITION </code> </p> <p> The position of the page in the LRU list. </p> </li> <li class="listitem"> <p> <code class="literal"> SPACE </code> </p> <p> The tablespace ID; the same value as <code class="literal"> INNODB_TABLES.SPACE </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> PAGE_NUMBER </code> </p> <p> The page number. </p> </li> <li class="listitem"> <p> <code class="literal"> PAGE_TYPE </code> </p> <p> The page type. The following table shows the permitted values. </p> <div class="table"> <a name="innodb-information-schema-innodb_buffer_page_lru_table-page-type"> </a> <p class="title"> <b> Table 28.6 INNODB_BUFFER_PAGE_LRU.PAGE_TYPE Values </b> </p> <div class="table-contents"> <table summary="Mapping for interpreting INNODB_BUFFER_PAGE_LRU.PAGE_TYPE values."> <colgroup> <col style="width: 30%"/> <col style="width: 30%"/> </colgroup> <thead> <tr> <th> Page Type </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <code class="literal"> ALLOCATED </code> </td> <td> Freshly allocated page </td> </tr> <tr> <td> <code class="literal"> BLOB </code> </td> <td> Uncompressed BLOB page </td> </tr> <tr> <td> <code class="literal"> COMPRESSED_BLOB2 </code> </td> <td> Subsequent comp BLOB page </td> </tr> <tr> <td> <code class="literal"> COMPRESSED_BLOB </code> </td> <td> First compressed BLOB page </td> </tr> <tr> <td> <code class="literal"> ENCRYPTED_RTREE </code> </td> <td> Encrypted R-tree </td> </tr> <tr> <td> <code class="literal"> EXTENT_DESCRIPTOR </code> </td> <td> Extent descriptor page </td> </tr> <tr> <td> <code class="literal"> FILE_SPACE_HEADER </code> </td> <td> File space header </td> </tr> <tr> <td> <code class="literal"> FIL_PAGE_TYPE_UNUSED </code> </td> <td> Unused </td> </tr> <tr> <td> <code class="literal"> IBUF_BITMAP </code> </td> <td> Insert buffer bitmap </td> </tr> <tr> <td> <code class="literal"> IBUF_FREE_LIST </code> </td> <td> Insert buffer free list </td> </tr> <tr> <td> <code class="literal"> IBUF_INDEX </code> </td> <td> Insert buffer index </td> </tr> <tr> <td> <code class="literal"> INDEX </code> </td> <td> B-tree node </td> </tr> <tr> <td> <code class="literal"> INODE </code> </td> <td> Index node </td> </tr> <tr> <td> <code class="literal"> LOB_DATA </code> </td> <td> Uncompressed LOB data </td> </tr> <tr> <td> <code class="literal"> LOB_FIRST </code> </td> <td> First page of uncompressed LOB </td> </tr> <tr> <td> <code class="literal"> LOB_INDEX </code> </td> <td> Uncompressed LOB index </td> </tr> <tr> <td> <code class="literal"> PAGE_IO_COMPRESSED </code> </td> <td> Compressed page </td> </tr> <tr> <td> <code class="literal"> PAGE_IO_COMPRESSED_ENCRYPTED </code> </td> <td> Compressed and encrypted page </td> </tr> <tr> <td> <code class="literal"> PAGE_IO_ENCRYPTED </code> </td> <td> Encrypted page </td> </tr> <tr> <td> <code class="literal"> RSEG_ARRAY </code> </td> <td> Rollback segment array </td> </tr> <tr> <td> <code class="literal"> RTREE_INDEX </code> </td> <td> R-tree index </td> </tr> <tr> <td> <code class="literal"> SDI_BLOB </code> </td> <td> Uncompressed SDI BLOB </td> </tr> <tr> <td> <code class="literal"> SDI_COMPRESSED_BLOB </code> </td> <td> Compressed SDI BLOB </td> </tr> <tr> <td> <code class="literal"> SDI_INDEX </code> </td> <td> SDI index </td> </tr> <tr> <td> <code class="literal"> SYSTEM </code> </td> <td> System page </td> </tr> <tr> <td> <code class="literal"> TRX_SYSTEM </code> </td> <td> Transaction system data </td> </tr> <tr> <td> <code class="literal"> UNDO_LOG </code> </td> <td> Undo log page </td> </tr> <tr> <td> <code class="literal"> UNKNOWN </code> </td> <td> Unknown </td> </tr> <tr> <td> <code class="literal"> ZLOB_DATA </code> </td> <td> Compressed LOB data </td> </tr> <tr> <td> <code class="literal"> ZLOB_FIRST </code> </td> <td> First page of compressed LOB </td> </tr> <tr> <td> <code class="literal"> ZLOB_FRAG </code> </td> <td> Compressed LOB fragment </td> </tr> <tr> <td> <code class="literal"> ZLOB_FRAG_ENTRY </code> </td> <td> Compressed LOB fragment index </td> </tr> <tr> <td> <code class="literal"> ZLOB_INDEX </code> </td> <td> Compressed LOB index </td> </tr> </tbody> </table> </div> <div class="table-contents"> <table cellpadding="0" cellspacing="0" style="position: fixed; top: 0px; display: none; left: 431px; width: 709px;"> <thead> <tr> <th style="width: 365.062px;"> Page Type </th> <th style="width: 342.938px;"> Description </th> </tr> </thead> </table> </div> </div> <br class="table-break"/> </li> <li class="listitem"> <p> <code class="literal"> FLUSH_TYPE </code> </p> <p> The flush type. </p> </li> <li class="listitem"> <p> <code class="literal"> FIX_COUNT </code> </p> <p> The number of threads using this block within the buffer pool. When zero, the block is eligible to be evicted. </p> </li> <li class="listitem"> <p> <code class="literal"> IS_HASHED </code> </p> <p> Whether a hash index has been built on this page. </p> </li> <li class="listitem"> <p> <code class="literal"> NEWEST_MODIFICATION </code> </p> <p> The Log Sequence Number of the youngest modification. </p> </li> <li class="listitem"> <p> <code class="literal"> OLDEST_MODIFICATION </code> </p> <p> The Log Sequence Number of the oldest modification. </p> </li> <li class="listitem"> <p> <code class="literal"> ACCESS_TIME </code> </p> <p> An abstract number used to judge the first access time of the page. </p> </li> <li class="listitem"> <p> <code class="literal"> TABLE_NAME </code> </p> <p> The name of the table the page belongs to. This column is applicable only to pages with a <code class="literal"> PAGE_TYPE </code> value of <code class="literal"> INDEX </code> . The column is <code class="literal"> NULL </code> if the server has not yet accessed the table. </p> </li> <li class="listitem"> <p> <code class="literal"> INDEX_NAME </code> </p> <p> The name of the index the page belongs to. This can be the name of a clustered index or a secondary index. This column is applicable only to pages with a <code class="literal"> PAGE_TYPE </code> value of <code class="literal"> INDEX </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> NUMBER_RECORDS </code> </p> <p> The number of records within the page. </p> </li> <li class="listitem"> <p> <code class="literal"> DATA_SIZE </code> </p> <p> The sum of the sizes of the records. This column is applicable only to pages with a <code class="literal"> PAGE_TYPE </code> value of <code class="literal"> INDEX </code> . </p> </li> <li class="listitem"> <p> <code class="literal"> COMPRESSED_SIZE </code> </p> <p> The compressed page size. <code class="literal"> NULL </code> for pages that are not compressed. </p> </li> <li class="listitem"> <p> <code class="literal"> COMPRESSED </code> </p> <p> Whether the page is compressed. </p> </li> <li class="listitem"> <p> <code class="literal"> IO_FIX </code> </p> <p> Whether any I/O is pending for this page: <code class="literal"> IO_NONE </code> = no pending I/O, <code class="literal"> IO_READ </code> = read pending, <code class="literal"> IO_WRITE </code> = write pending. </p> </li> <li class="listitem"> <p> <code class="literal"> IS_OLD </code> </p> <p> Whether the block is in the sublist of old blocks in the LRU list. </p> </li> <li class="listitem"> <p> <code class="literal"> FREE_PAGE_CLOCK </code> </p> <p> The value of the <code class="literal"> freed_page_clock </code> counter when the block was the last placed at the head of the LRU list. The <code class="literal"> freed_page_clock </code> counter tracks the number of blocks removed from the end of the LRU list. </p> </li> </ul> </div> <h4> <a name="idm46045077443840"> </a> Example </h4> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa68868825"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>INNODB_BUFFER_PAGE_LRU <span class="token keyword">LIMIT</span> <span class="token number">1</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> POOL_ID<span class="token punctuation">:</span> 0 LRU_POSITION<span class="token punctuation">:</span> 0 SPACE<span class="token punctuation">:</span> 97 PAGE_NUMBER<span class="token punctuation">:</span> 1984 PAGE_TYPE<span class="token punctuation">:</span> INDEX FLUSH_TYPE<span class="token punctuation">:</span> 1 FIX_COUNT<span class="token punctuation">:</span> 0 IS_HASHED<span class="token punctuation">:</span> YES NEWEST_MODIFICATION<span class="token punctuation">:</span> 719490396 OLDEST_MODIFICATION<span class="token punctuation">:</span> 0 ACCESS_TIME<span class="token punctuation">:</span> 3378383796 TABLE_NAME<span class="token punctuation">:</span> `employees`.`salaries` INDEX_NAME<span class="token punctuation">:</span> PRIMARY NUMBER_RECORDS<span class="token punctuation">:</span> 468 DATA_SIZE<span class="token punctuation">:</span> 14976 COMPRESSED_SIZE<span class="token punctuation">:</span> 0 COMPRESSED<span class="token punctuation">:</span> NO IO_FIX<span class="token punctuation">:</span> IO_NONE IS_OLD<span class="token punctuation">:</span> YES FREE_PAGE_CLOCK<span class="token punctuation">:</span> 0</span></code></pre> </div> <h4> <a name="idm46045077440880"> </a> Notes </h4> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> This table is useful primarily for expert-level performance monitoring, or when developing performance-related extensions for MySQL. </p> </li> <li class="listitem"> <p> You must have the <a class="link" href="privileges-provided.html#priv_process"> <code class="literal"> PROCESS </code> </a> privilege to query this table. </p> </li> <li class="listitem"> <p> Use the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-columns-table.html" title="28.3.8 The INFORMATION_SCHEMA COLUMNS Table"> <code class="literal"> COLUMNS </code> </a> table or the <a class="link" href="show-columns.html" title="15.7.7.6 SHOW COLUMNS Statement"> <code class="literal"> SHOW COLUMNS </code> </a> statement to view additional information about the columns of this table, including data types and default values. </p> </li> <li class="listitem"> <p> Querying this table can require MySQL to allocate a large block of contiguous memory, more than 64 bytes times the number of active pages in the buffer pool. This allocation could potentially cause an out-of-memory error, especially for systems with multi-gigabyte buffer pools. </p> </li> <li class="listitem"> <p> Querying this table requires MySQL to lock the data structure representing the buffer pool while traversing the LRU list, which can reduce concurrency, especially for systems with multi-gigabyte buffer pools. </p> </li> <li class="listitem"> <p> When tables, table rows, partitions, or indexes are deleted, associated pages remain in the buffer pool until space is required for other data. The <a class="link" href="information-schema-innodb-buffer-page-lru-table.html" title="28.4.3 The INFORMATION_SCHEMA INNODB_BUFFER_PAGE_LRU Table"> <code class="literal"> INNODB_BUFFER_PAGE_LRU </code> </a> table reports information about these pages until they are evicted from the buffer pool. For more information about how the <code class="literal"> InnoDB </code> manages buffer pool data, see <a class="xref" href="innodb-buffer-pool.html" title="17.5.1 Buffer Pool"> Section 17.5.1, “Buffer Pool” </a> . </p> </li> </ul> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/innodb-analyze-table-complexity.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="innodb-analyze-table-complexity"> </a> 17.8.10.3 Estimating ANALYZE TABLE Complexity for InnoDB Tables </h4> </div> </div> </div> <p> <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> complexity for <code class="literal"> InnoDB </code> tables is dependent on: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The number of pages sampled, as defined by <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages"> <code class="literal"> innodb_stats_persistent_sample_pages </code> </a> . </p> </li> <li class="listitem"> <p> The number of indexed columns in a table </p> </li> <li class="listitem"> <p> The number of partitions. If a table has no partitions, the number of partitions is considered to be 1. </p> </li> </ul> </div> <p> Using these parameters, an approximate formula for estimating <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> complexity would be: </p> <p> The value of <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages"> <code class="literal"> innodb_stats_persistent_sample_pages </code> </a> * number of indexed columns in a table * the number of partitions </p> <p> Typically, the greater the resulting value, the greater the execution time for <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages"> <code class="literal"> innodb_stats_persistent_sample_pages </code> </a> defines the number of pages sampled at a global level. To set the number of pages sampled for an individual table, use the <code class="literal"> STATS_SAMPLE_PAGES </code> option with <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> or <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> . For more information, see <a class="xref" href="innodb-persistent-stats.html" title="17.8.10.1 Configuring Persistent Optimizer Statistics Parameters"> Section 17.8.10.1, “Configuring Persistent Optimizer Statistics Parameters” </a> . </p> <p> If <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent"> <code class="literal"> innodb_stats_persistent=OFF </code> </a> , the number of pages sampled is defined by <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_transient_sample_pages"> <code class="literal"> innodb_stats_transient_sample_pages </code> </a> . See <a class="xref" href="innodb-statistics-estimation.html" title="17.8.10.2 Configuring Non-Persistent Optimizer Statistics Parameters"> Section 17.8.10.2, “Configuring Non-Persistent Optimizer Statistics Parameters” </a> for additional information. </p> </div> <p> For a more in-depth approach to estimating <code class="literal"> ANALYZE TABLE </code> complexity, consider the following example. </p> <p> In <a class="ulink" href="http://en.wikipedia.org/wiki/Big_O_notation" target="_blank"> Big O notation </a> , <a class="link" href="analyze-table.html" title="15.7.3.1 ANALYZE TABLE Statement"> <code class="literal"> ANALYZE TABLE </code> </a> complexity is described as: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-none"><div class="docs-select-all right" id="sa23785459"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-none"> O(n_sample * (n_cols_in_uniq_i + n_cols_in_non_uniq_i + n_cols_in_pk * (1 + n_non_uniq_i)) * n_part)</code></pre> </div> <p> where: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> n_sample </code> is the number of pages sampled (defined by <a class="link" href="innodb-parameters.html#sysvar_innodb_stats_persistent_sample_pages"> <code class="literal"> innodb_stats_persistent_sample_pages </code> </a> ) </p> </li> <li class="listitem"> <p> <code class="literal"> n_cols_in_uniq_i </code> is total number of all columns in all unique indexes (not counting the primary key columns) </p> </li> <li class="listitem"> <p> <code class="literal"> n_cols_in_non_uniq_i </code> is the total number of all columns in all nonunique indexes </p> </li> <li class="listitem"> <p> <code class="literal"> n_cols_in_pk </code> is the number of columns in the primary key (if a primary key is not defined, <code class="literal"> InnoDB </code> creates a single column primary key internally) </p> </li> <li class="listitem"> <p> <code class="literal"> n_non_uniq_i </code> is the number of nonunique indexes in the table </p> </li> <li class="listitem"> <p> <code class="literal"> n_part </code> is the number of partitions. If no partitions are defined, the table is considered to be a single partition. </p> </li> </ul> </div> <p> Now, consider the following table (table <code class="literal"> t </code> ), which has a primary key (2 columns), a unique index (2 columns), and two nonunique indexes (two columns each): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa84666814"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t <span class="token punctuation">(</span> a <span class="token datatype">INT</span><span class="token punctuation">,</span> b <span class="token datatype">INT</span><span class="token punctuation">,</span> c <span class="token datatype">INT</span><span class="token punctuation">,</span> d <span class="token datatype">INT</span><span class="token punctuation">,</span> e <span class="token datatype">INT</span><span class="token punctuation">,</span> f <span class="token datatype">INT</span><span class="token punctuation">,</span> g <span class="token datatype">INT</span><span class="token punctuation">,</span> h <span class="token datatype">INT</span><span class="token punctuation">,</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span> <span class="token punctuation">(</span>a<span class="token punctuation">,</span> b<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">UNIQUE</span> <span class="token keyword">KEY</span> i1uniq <span class="token punctuation">(</span>c<span class="token punctuation">,</span> d<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">KEY</span> i2nonuniq <span class="token punctuation">(</span>e<span class="token punctuation">,</span> f<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">KEY</span> i3nonuniq <span class="token punctuation">(</span>g<span class="token punctuation">,</span> h<span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> For the column and index data required by the algorithm described above, query the <code class="literal"> mysql.innodb_index_stats </code> persistent index statistics table for table <code class="literal"> t </code> . The <code class="literal"> n_diff_pfx% </code> statistics show the columns that are counted for each index. For example, columns <code class="literal"> a </code> and <code class="literal"> b </code> are counted for the primary key index. For the nonunique indexes, the primary key columns (a,b) are counted in addition to the user defined columns. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> For additional information about the <code class="literal"> InnoDB </code> persistent statistics tables, see <a class="xref" href="innodb-persistent-stats.html" title="17.8.10.1 Configuring Persistent Optimizer Statistics Parameters"> Section 17.8.10.1, “Configuring Persistent Optimizer Statistics Parameters” </a> </p> </div> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa35920832"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> index_name<span class="token punctuation">,</span> stat_name<span class="token punctuation">,</span> stat_description <span class="token keyword">FROM</span> mysql<span class="token punctuation">.</span>innodb_index_stats <span class="token keyword">WHERE</span> database_name<span class="token operator">=</span><span class="token string">'test'</span> <span class="token operator">AND</span> <span class="token keyword">table_name</span><span class="token operator">=</span><span class="token string">'t'</span> <span class="token operator">AND</span> stat_name <span class="token operator">like</span> <span class="token string">'n_diff_pfx%'</span><span class="token punctuation">;</span> <span class="token output"> <span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"> <span class="token punctuation">|</span> index_name <span class="token punctuation">|</span> stat_name <span class="token punctuation">|</span> stat_description <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"> <span class="token punctuation">|</span> PRIMARY <span class="token punctuation">|</span> n_diff_pfx01 <span class="token punctuation">|</span> a <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> PRIMARY <span class="token punctuation">|</span> n_diff_pfx02 <span class="token punctuation">|</span> a,b <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i1uniq <span class="token punctuation">|</span> n_diff_pfx01 <span class="token punctuation">|</span> c <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i1uniq <span class="token punctuation">|</span> n_diff_pfx02 <span class="token punctuation">|</span> c,d <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i2nonuniq <span class="token punctuation">|</span> n_diff_pfx01 <span class="token punctuation">|</span> e <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i2nonuniq <span class="token punctuation">|</span> n_diff_pfx02 <span class="token punctuation">|</span> e,f <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i2nonuniq <span class="token punctuation">|</span> n_diff_pfx03 <span class="token punctuation">|</span> e,f,a <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i2nonuniq <span class="token punctuation">|</span> n_diff_pfx04 <span class="token punctuation">|</span> e,f,a,b <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i3nonuniq <span class="token punctuation">|</span> n_diff_pfx01 <span class="token punctuation">|</span> g <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i3nonuniq <span class="token punctuation">|</span> n_diff_pfx02 <span class="token punctuation">|</span> g,h <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i3nonuniq <span class="token punctuation">|</span> n_diff_pfx03 <span class="token punctuation">|</span> g,h,a <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">|</span> i3nonuniq <span class="token punctuation">|</span> n_diff_pfx04 <span class="token punctuation">|</span> g,h,a,b <span class="token punctuation">|</span></span> <span class="token output"> <span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <p> Based on the index statistics data shown above and the table definition, the following values can be determined: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> n_cols_in_uniq_i </code> , the total number of all columns in all unique indexes not counting the primary key columns, is 2 ( <code class="literal"> c </code> and <code class="literal"> d </code> ) </p> </li> <li class="listitem"> <p> <code class="literal"> n_cols_in_non_uniq_i </code> , the total number of all columns in all nonunique indexes, is 4 ( <code class="literal"> e </code> , <code class="literal"> f </code> , <code class="literal"> g </code> and <code class="literal"> h </code> ) </p> </li> <li class="listitem"> <p> <code class="literal"> n_cols_in_pk </code> , the number of columns in the primary key, is 2 ( <code class="literal"> a </code> and <code class="literal"> b </code> ) </p> </li> <li class="listitem"> <p> <code class="literal"> n_non_uniq_i </code> , the number of nonunique indexes in the table, is 2 ( <code class="literal"> i2nonuniq </code> and <code class="literal"> i3nonuniq </code> )) </p> </li> <li class="listitem"> <p> <code class="literal"> n_part </code> , the number of partitions, is 1. </p> </li> </ul> </div> <p> You can now calculate <code class="literal"> innodb_stats_persistent_sample_pages </code> * (2 + 4 + 2 * (1 + 2)) * 1 to determine the number of leaf pages that are scanned. With <code class="literal"> innodb_stats_persistent_sample_pages </code> set to the default value of <code class="literal"> 20 </code> , and with a default page size of 16 <code class="literal"> KiB </code> ( <a class="link" href="innodb-parameters.html#sysvar_innodb_page_size"> <code class="literal"> innodb_page_size </code> </a> =16384), you can then estimate that 20 * 12 * 16384 <code class="literal"> bytes </code> are read for table <code class="literal"> t </code> , or about 4 <code class="literal"> MiB </code> . </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> All 4 <code class="literal"> MiB </code> may not be read from disk, as some leaf pages may already be cached in the buffer pool. </p> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/tracing-example.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="tracing-example"> </a> 10.15.12 Example </h3> </div> </div> </div> <p> Here we take an example from the test suite. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa68191585"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token comment" spellcheck="true">#</span> <span class="token comment" spellcheck="true"># Tracing of ORDER BY &amp; GROUP BY simplification.</span> <span class="token comment" spellcheck="true">#</span> <span class="token keyword">SET</span> optimizer_trace<span class="token operator">=</span><span class="token string">"enabled=on"</span><span class="token punctuation">,</span>end_markers_in_json<span class="token operator">=</span><span class="token keyword">on</span><span class="token punctuation">;</span> <span class="token comment" spellcheck="true"># make readable</span> <span class="token keyword">SET</span> optimizer_trace_max_mem_size<span class="token operator">=</span><span class="token number">1000000</span><span class="token punctuation">;</span> <span class="token comment" spellcheck="true"># avoid small default</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span> pk <span class="token datatype">INT</span><span class="token punctuation">,</span> col_int_key <span class="token datatype">INT</span><span class="token punctuation">,</span> col_varchar_key <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span> col_varchar_nokey <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t1 <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">11</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">12</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">13</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">14</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">15</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">16</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">17</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">18</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'a'</span><span class="token punctuation">,</span><span class="token string">'a'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">19</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">21</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">22</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">23</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">24</span><span class="token punctuation">,</span><span class="token number">204</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">25</span><span class="token punctuation">,</span><span class="token number">224</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">26</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'e'</span><span class="token punctuation">,</span><span class="token string">'e'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">27</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">28</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">29</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token punctuation">(</span> pk <span class="token datatype">INT</span><span class="token punctuation">,</span> col_int_key <span class="token datatype">INT</span><span class="token punctuation">,</span> col_varchar_key <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span> col_varchar_nokey <span class="token datatype">VARCHAR</span><span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span> <span class="token punctuation">(</span>pk<span class="token punctuation">)</span> <span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t2 <span class="token keyword">VALUES</span> <span class="token punctuation">(</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'e'</span><span class="token punctuation">,</span><span class="token string">'e'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">,</span><span class="token number">188</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">11</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">12</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">13</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">14</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">15</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">16</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">17</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">18</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">19</span><span class="token punctuation">,</span><span class="token number">231</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">21</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">22</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">23</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">24</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">25</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">26</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">27</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">28</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">29</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">30</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">31</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">32</span><span class="token punctuation">,</span><span class="token number">194</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">33</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">,</span><span class="token string">'i'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">34</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">35</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">36</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">37</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">38</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">39</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'a'</span><span class="token punctuation">,</span><span class="token string">'a'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">40</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">41</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">42</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">43</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">44</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">,</span><span class="token string">'r'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">45</span><span class="token punctuation">,</span><span class="token number">98</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">46</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">47</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">48</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">49</span><span class="token punctuation">,</span><span class="token number">189</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">50</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">51</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">52</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">53</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">54</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">55</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">56</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">,</span><span class="token string">'n'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">57</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">58</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">59</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">,</span><span class="token string">'s'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">60</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">,</span><span class="token string">'j'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">61</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">62</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">63</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">64</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">65</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">,</span><span class="token string">'f'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">66</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">67</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">68</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">69</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">,</span><span class="token string">'x'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">70</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">71</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">72</span><span class="token punctuation">,</span><span class="token number">120</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">,</span><span class="token string">'q'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">73</span><span class="token punctuation">,</span><span class="token number">25</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">74</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">,</span><span class="token string">'g'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">75</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">,</span><span class="token string">'l'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">76</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">,</span><span class="token string">'w'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">77</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">,</span><span class="token string">'h'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">78</span><span class="token punctuation">,</span><span class="token number">153</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">79</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">80</span><span class="token punctuation">,</span><span class="token number">9</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">81</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">,</span><span class="token string">'v'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">82</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">83</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">,</span><span class="token string">'d'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">84</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">,</span><span class="token string">'p'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">85</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">86</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">87</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">88</span><span class="token punctuation">,</span><span class="token number">3</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">,</span><span class="token string">'y'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">89</span><span class="token punctuation">,</span><span class="token number">8</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">90</span><span class="token punctuation">,</span><span class="token number">4</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">,</span><span class="token string">'c'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">91</span><span class="token punctuation">,</span><span class="token number">6</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">,</span><span class="token string">'z'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">92</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">93</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">94</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">95</span><span class="token punctuation">,</span><span class="token number">0</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">,</span><span class="token string">'t'</span><span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token number">96</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">,</span><span class="token string">'k'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">97</span><span class="token punctuation">,</span><span class="token number">7</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">,</span><span class="token string">'u'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">98</span><span class="token punctuation">,</span><span class="token number">2</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">,</span><span class="token string">'b'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">99</span><span class="token punctuation">,</span><span class="token number">1</span><span class="token punctuation">,</span><span class="token string">'m'</span><span class="token punctuation">,</span><span class="token string">'m'</span><span class="token punctuation">)</span><span class="token punctuation">,</span><span class="token punctuation">(</span><span class="token number">100</span><span class="token punctuation">,</span><span class="token number">5</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">,</span><span class="token string">'o'</span><span class="token punctuation">)</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> <span class="token function">SUM</span><span class="token punctuation">(</span>alias2<span class="token punctuation">.</span>col_varchar_nokey<span class="token punctuation">)</span> <span class="token keyword">AS</span> c1<span class="token punctuation">,</span> alias2<span class="token punctuation">.</span>pk <span class="token keyword">AS</span> c2 <span class="token keyword">FROM</span> t1 <span class="token keyword">AS</span> alias1 <span class="token keyword">STRAIGHT_JOIN</span> t2 <span class="token keyword">AS</span> alias2 <span class="token keyword">ON</span> alias2<span class="token punctuation">.</span>pk <span class="token operator">=</span> alias1<span class="token punctuation">.</span>col_int_key <span class="token keyword">WHERE</span> alias1<span class="token punctuation">.</span>pk <span class="token keyword">GROUP</span> <span class="token keyword">BY</span> c2 <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> alias1<span class="token punctuation">.</span>col_int_key<span class="token punctuation">,</span> alias2<span class="token punctuation">.</span>pk<span class="token punctuation">;</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> c1 <span class="token punctuation">|</span> c2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 1 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 2 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 3 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 4 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 5 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 6 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 7 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">|</span> 0 <span class="token punctuation">|</span> 9 <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span></code></pre> </div> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> For reference, the complete trace is shown uninterrupted at the end of this section. </p> </div> <p> Now we can examine the trace, whose first column ( <code class="literal"> QUERY </code> ), containing the original statement to be traced, is shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa58180463"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>OPTIMIZER_TRACE\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> QUERY<span class="token punctuation">:</span> SELECT SUM(alias2.col_varchar_nokey) AS c1, alias2.pk AS c2 FROM t1 AS alias1 STRAIGHT_JOIN t2 AS alias2 ON alias2.pk = alias1.col_int_key WHERE alias1.pk GROUP BY c2 ORDER BY alias1.col_int_key, alias2.pk</span></code></pre> </div> <p> This can be useful mark when several traces are stored. </p> <p> The <code class="literal"> TRACE </code> column begins by showing that execution of the statement is made up of discrete steps, like this: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa97257171"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"><span class="token property">"steps"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span></code></pre> </div> <p> This is followed by the preparation of the join for the first (and only) <code class="literal"> SELECT </code> in the statement being traced, as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa79360040"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"><span class="token property">"steps"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"expanded_query"</span><span class="token operator">:</span> "/* select#<span class="token number">1</span> */ select \ sum(`test`.`alias2`.`col_varchar_nokey`<span class="token punctuation">)</span> AS \ `SUM(alias2.col_varchar_nokey<span class="token punctuation">)</span>`<span class="token punctuation">,</span>`test`.`alias2`.`pk` AS `field2` \ from (`test`.`t1` `alias1` straight_join `test`.`t2` `alias2` \ on((`test`.`alias2`.`pk` = `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">)</span> \ where `test`.`alias1`.`pk` \ group by `test`.`alias2`.`pk` \ order by `test`.`alias1`.`col_int_key`<span class="token punctuation">,</span>`test`.`alias2`.`pk`" <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* steps */ <span class="token punctuation">}</span> /* join_preparation */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> The output just shown displays the query as it is used for preparing the join; all columns (fields) have been resolved to their databases and tables, and each <code class="literal"> SELECT </code> is annotated with a sequence number, which can be useful when studying subqueries. </p> <p> The next portion of the trace shows how the join is optimized, starting with condition processing: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa38669054"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"join_optimization"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"select#"</span><span class="token operator">:</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token property">"steps"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"condition_processing"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"condition"</span><span class="token operator">:</span> <span class="token string">"WHERE"</span><span class="token punctuation">,</span> <span class="token property">"original_condition"</span><span class="token operator">:</span> "(`test`.`alias1`.`pk` and \ (`test`.`alias2`.`pk` = `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span><span class="token punctuation">)</span>"<span class="token punctuation">,</span> <span class="token property">"steps"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"transformation"</span><span class="token operator">:</span> <span class="token string">"equality_propagation"</span><span class="token punctuation">,</span> <span class="token property">"resulting_condition"</span><span class="token operator">:</span> "(`test`.`alias1`.`pk` and \ multiple equal(`test`.`alias2`.`pk`<span class="token punctuation">,</span> \ `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span><span class="token punctuation">)</span>" <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"transformation"</span><span class="token operator">:</span> <span class="token string">"constant_propagation"</span><span class="token punctuation">,</span> <span class="token property">"resulting_condition"</span><span class="token operator">:</span> "(`test`.`alias1`.`pk` and \ multiple equal(`test`.`alias2`.`pk`<span class="token punctuation">,</span> \ `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span><span class="token punctuation">)</span>" <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"transformation"</span><span class="token operator">:</span> <span class="token string">"trivial_condition_removal"</span><span class="token punctuation">,</span> <span class="token property">"resulting_condition"</span><span class="token operator">:</span> "(`test`.`alias1`.`pk` and \ multiple equal(`test`.`alias2`.`pk`<span class="token punctuation">,</span> \ `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span><span class="token punctuation">)</span>" <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* steps */ <span class="token punctuation">}</span> /* condition_processing */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> Next, the optimizer checks for possible <code class="literal"> ref </code> accesses, and identifies one: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa88339953"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"ref_optimizer_key_uses"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias2"</span><span class="token punctuation">,</span> <span class="token property">"field"</span><span class="token operator">:</span> <span class="token string">"pk"</span><span class="token punctuation">,</span> <span class="token property">"equals"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias1`.`col_int_key`"</span><span class="token punctuation">,</span> <span class="token property">"null_rejecting"</span><span class="token operator">:</span> <span class="token boolean">true</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* ref_optimizer_key_uses */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> A <code class="literal"> ref </code> access which rejects <code class="literal"> NULL </code> has been identified: no <code class="literal"> NULL </code> in <code class="literal"> test.alias1.col_int_key </code> can have a match. (Observe that it could have a match, were the operator a null-safe equals <a class="link" href="comparison-operators.html#operator_equal-to"> <code class="literal"> &lt;=&gt; </code> </a> ). </p> <p> Next, for every table in the query, we estimate the cost of, and number of records returned by, a table scan or a range access. </p> <p> We need to find an optimal order for the tables. Normally, greedy search is used, but since the statement uses a straight join, only the requested order is explored, and one or more access methods are selected. As shown in this portion of the trace, we can choose a table scan: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa1430566"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"records_estimation"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias1"</span><span class="token punctuation">,</span> <span class="token property">"const_keys_added"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"keys"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">]</span> /* keys */<span class="token punctuation">,</span> <span class="token property">"cause"</span><span class="token operator">:</span> <span class="token string">"group_by"</span> <span class="token punctuation">}</span> /* const_keys_added */<span class="token punctuation">,</span> <span class="token property">"range_analysis"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"table_scan"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"records"</span><span class="token operator">:</span> <span class="token number">20</span><span class="token punctuation">,</span> <span class="token property">"cost"</span><span class="token operator">:</span> <span class="token number">8.1977</span> <span class="token punctuation">}</span> /* table_scan */ <span class="token punctuation">}</span> /* range_analysis */ <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias2"</span><span class="token punctuation">,</span> <span class="token property">"const_keys_added"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"keys"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token string">"PRIMARY"</span> <span class="token punctuation">]</span> /* keys */<span class="token punctuation">,</span> <span class="token property">"cause"</span><span class="token operator">:</span> <span class="token string">"group_by"</span> <span class="token punctuation">}</span> /* const_keys_added */<span class="token punctuation">,</span> <span class="token property">"range_analysis"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"table_scan"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"records"</span><span class="token operator">:</span> <span class="token number">100</span><span class="token punctuation">,</span> <span class="token property">"cost"</span><span class="token operator">:</span> <span class="token number">24.588</span> <span class="token punctuation">}</span> /* table_scan */<span class="token punctuation">,</span> <span class="token property">"potential_range_indices"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"index"</span><span class="token operator">:</span> <span class="token string">"PRIMARY"</span><span class="token punctuation">,</span> <span class="token property">"usable"</span><span class="token operator">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span> <span class="token property">"key_parts"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token string">"pk"</span> <span class="token punctuation">]</span> /* key_parts */ <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* potential_range_indices */<span class="token punctuation">,</span> <span class="token property">"setup_range_conditions"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">]</span> /* setup_range_conditions */<span class="token punctuation">,</span> <span class="token property">"group_index_range"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"chosen"</span><span class="token operator">:</span> <span class="token boolean">false</span><span class="token punctuation">,</span> <span class="token property">"cause"</span><span class="token operator">:</span> <span class="token string">"not_single_table"</span> <span class="token punctuation">}</span> /* group_index_range */ <span class="token punctuation">}</span> /* range_analysis */ <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* records_estimation */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> As just shown in the second portion of the range analysis, it is not possible to use <code class="literal"> GROUP_MIN_MAX </code> because it accepts only one table, and we have two in the join. This means that no range access is possible. </p> <p> The optimizer estimates that reading the first table, and applying any required conditions to it, yields 20 rows: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa40664465"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"considered_execution_plans"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias1"</span><span class="token punctuation">,</span> <span class="token property">"best_access_path"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"considered_access_paths"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"access_type"</span><span class="token operator">:</span> <span class="token string">"scan"</span><span class="token punctuation">,</span> <span class="token property">"records"</span><span class="token operator">:</span> <span class="token number">20</span><span class="token punctuation">,</span> <span class="token property">"cost"</span><span class="token operator">:</span> <span class="token number">2.0977</span><span class="token punctuation">,</span> <span class="token property">"chosen"</span><span class="token operator">:</span> <span class="token boolean">true</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* considered_access_paths */ <span class="token punctuation">}</span> /* best_access_path */<span class="token punctuation">,</span> <span class="token property">"cost_for_plan"</span><span class="token operator">:</span> <span class="token number">6.0977</span><span class="token punctuation">,</span> <span class="token property">"records_for_plan"</span><span class="token operator">:</span> <span class="token number">20</span><span class="token punctuation">,</span></code></pre> </div> <p> For <code class="literal"> alias2 </code> , we choose <code class="literal"> ref </code> access on the primary key rather than a table scan, because the number of records returned by the latter (75) is far greater than that returned by <code class="literal"> ref </code> access (1), as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa24685888"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token property">"rest_of_plan"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias2"</span><span class="token punctuation">,</span> <span class="token property">"best_access_path"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"considered_access_paths"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"access_type"</span><span class="token operator">:</span> <span class="token string">"ref"</span><span class="token punctuation">,</span> <span class="token property">"index"</span><span class="token operator">:</span> <span class="token string">"PRIMARY"</span><span class="token punctuation">,</span> <span class="token property">"records"</span><span class="token operator">:</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token property">"cost"</span><span class="token operator">:</span> <span class="token number">20.2</span><span class="token punctuation">,</span> <span class="token property">"chosen"</span><span class="token operator">:</span> <span class="token boolean">true</span> <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"access_type"</span><span class="token operator">:</span> <span class="token string">"scan"</span><span class="token punctuation">,</span> <span class="token property">"using_join_cache"</span><span class="token operator">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span> <span class="token property">"records"</span><span class="token operator">:</span> <span class="token number">75</span><span class="token punctuation">,</span> <span class="token property">"cost"</span><span class="token operator">:</span> <span class="token number">7.4917</span><span class="token punctuation">,</span> <span class="token property">"chosen"</span><span class="token operator">:</span> <span class="token boolean">false</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* considered_access_paths */ <span class="token punctuation">}</span> /* best_access_path */<span class="token punctuation">,</span> <span class="token property">"cost_for_plan"</span><span class="token operator">:</span> <span class="token number">30.098</span><span class="token punctuation">,</span> <span class="token property">"records_for_plan"</span><span class="token operator">:</span> <span class="token number">20</span><span class="token punctuation">,</span> <span class="token property">"chosen"</span><span class="token operator">:</span> <span class="token boolean">true</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* rest_of_plan */ <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* considered_execution_plans */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> Now that the order of tables is fixed, we can split the <code class="literal"> WHERE </code> condition into chunks which can be tested early (pushdown of conditions down the join tree): </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa57014511"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"attaching_conditions_to_tables"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"original_condition"</span><span class="token operator">:</span> "((`test`.`alias2`.`pk` = \ `test`.`alias1`.`col_int_key`<span class="token punctuation">)</span> and `test`.`alias1`.`pk`<span class="token punctuation">)</span>"<span class="token punctuation">,</span> <span class="token property">"attached_conditions_computation"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">]</span> /* attached_conditions_computation */<span class="token punctuation">,</span> <span class="token property">"attached_conditions_summary"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias1"</span><span class="token punctuation">,</span> <span class="token property">"attached"</span><span class="token operator">:</span> "(`test`.`alias1`.`pk` and \ (`test`.`alias1`.`col_int_key` is not <span class="token null">null</span><span class="token punctuation">)</span><span class="token punctuation">)</span>" <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> This condition can be tested on rows of <code class="literal"> alias1 </code> without reading rows from <code class="literal"> alias2 </code> . </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa88207034"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias2"</span><span class="token punctuation">,</span> <span class="token property">"attached"</span><span class="token operator">:</span> <span class="token null">null</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* attached_conditions_summary */ <span class="token punctuation">}</span> /* attaching_conditions_to_tables */ <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span></code></pre> </div> <p> Now we try to simplify the <code class="literal"> ORDER BY </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa34065964"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token property">"clause_processing"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"clause"</span><span class="token operator">:</span> <span class="token string">"ORDER BY"</span><span class="token punctuation">,</span> <span class="token property">"original_clause"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias1`.`col_int_key`,`test`.`alias2`.`pk`"</span><span class="token punctuation">,</span> <span class="token property">"items"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"item"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias1`.`col_int_key`"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"item"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias2`.`pk`"</span><span class="token punctuation">,</span> <span class="token property">"eq_ref_to_preceding_items"</span><span class="token operator">:</span> <span class="token boolean">true</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* items */<span class="token punctuation">,</span></code></pre> </div> <p> Because the <code class="literal"> WHERE </code> clause contains <code class="literal"> alias2.pk=alias1.col_int_key </code> , ordering by both columns is unnecessary; we can order by the first column alone, since the second column is always equal to it. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa20005114"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token property">"resulting_clause_is_simple"</span><span class="token operator">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span> <span class="token property">"resulting_clause"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias1`.`col_int_key`"</span> <span class="token punctuation">}</span> /* clause_processing */ <span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre> </div> <p> The shorter <code class="literal"> ORDER BY </code> clause (which is not visible in in the output of <a class="link" href="explain.html" title="15.8.2 EXPLAIN Statement"> <code class="literal"> EXPLAIN </code> </a> ) can be implemented as an index scan, since it uses only a single column of one table. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa87546427"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token punctuation">{</span> <span class="token property">"clause_processing"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"clause"</span><span class="token operator">:</span> <span class="token string">"GROUP BY"</span><span class="token punctuation">,</span> <span class="token property">"original_clause"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias2`.`pk`"</span><span class="token punctuation">,</span> <span class="token property">"items"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"item"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias2`.`pk`"</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* items */<span class="token punctuation">,</span> <span class="token property">"resulting_clause_is_simple"</span><span class="token operator">:</span> <span class="token boolean">false</span><span class="token punctuation">,</span> <span class="token property">"resulting_clause"</span><span class="token operator">:</span> <span class="token string">"`test`.`alias2`.`pk`"</span> <span class="token punctuation">}</span> /* clause_processing */ <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"refine_plan"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias1"</span><span class="token punctuation">,</span> <span class="token property">"scan_type"</span><span class="token operator">:</span> <span class="token string">"table"</span> <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span> <span class="token property">"database"</span><span class="token operator">:</span> <span class="token string">"test"</span><span class="token punctuation">,</span> <span class="token property">"table"</span><span class="token operator">:</span> <span class="token string">"alias2"</span> <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* refine_plan */ <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* steps */ <span class="token punctuation">}</span> /* join_optimization */ <span class="token punctuation">}</span><span class="token punctuation">,</span> <span class="token punctuation">{</span></code></pre> </div> <p> Now the join is executed: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-json"><div class="docs-select-all right" id="sa31884331"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-json"> <span class="token property">"join_execution"</span><span class="token operator">:</span> <span class="token punctuation">{</span> <span class="token property">"select#"</span><span class="token operator">:</span> <span class="token number">1</span><span class="token punctuation">,</span> <span class="token property">"steps"</span><span class="token operator">:</span> <span class="token punctuation">[</span> <span class="token punctuation">]</span> /* steps */ <span class="token punctuation">}</span> /* join_execution */ <span class="token punctuation">}</span> <span class="token punctuation">]</span> /* steps */ <span class="token punctuation">}</span> <span class="token number">0</span> <span class="token number">0</span></code></pre> </div> <p> All traces have the same basic structure. If a statement uses subqueries, there can be mutliple preparations, optimizations, and executions, as well as subquery-specific transformations. </p> <p> The complete trace is shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa89973585"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>OPTIMIZER_TRACE\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> QUERY<span class="token punctuation">:</span> SELECT SUM(alias2.col_varchar_nokey) AS c1, alias2.pk AS c2 FROM t1 AS alias1 STRAIGHT_JOIN t2 AS alias2 ON alias2.pk = alias1.col_int_key WHERE alias1.pk GROUP BY c2 ORDER BY alias1.col_int_key, alias2.pk TRACE<span class="token punctuation">:</span> { "steps"<span class="token punctuation">:</span> [ { "join_preparation"<span class="token punctuation">:</span> { "select#"<span class="token punctuation">:</span> 1, "steps"<span class="token punctuation">:</span> [ { "expanded_query"<span class="token punctuation">:</span> "/<span class="token punctuation">*</span> select#1 <span class="token punctuation">*</span>/ select sum(`alias2`.`col_varchar_nokey`) AS `c1`,`alias2`.`pk` AS `c2` from (`t1` `alias1` straight_join `t2` `alias2` on((`alias2`.`pk` = `alias1`.`col_int_key`))) where (0 &lt;&gt; `alias1`.`pk`) group by `c2` order by `alias1`.`col_int_key`,`alias2`.`pk`" }, { "transformations_to_nested_joins"<span class="token punctuation">:</span> { "transformations"<span class="token punctuation">:</span> [ "JOIN_condition_to_WHERE", "parenthesis_removal" ] /<span class="token punctuation">*</span> transformations <span class="token punctuation">*</span>/, "expanded_query"<span class="token punctuation">:</span> "/<span class="token punctuation">*</span> select#1 <span class="token punctuation">*</span>/ select sum(`alias2`.`col_varchar_nokey`) AS `c1`,`alias2`.`pk` AS `c2` from `t1` `alias1` straight_join `t2` `alias2` where ((0 &lt;&gt; `alias1`.`pk`) and (`alias2`.`pk` = `alias1`.`col_int_key`)) group by `c2` order by `alias1`.`col_int_key`,`alias2`.`pk`" } /<span class="token punctuation">*</span> transformations_to_nested_joins <span class="token punctuation">*</span>/ }, { "functional_dependencies_of_GROUP_columns"<span class="token punctuation">:</span> { "all_columns_of_table_map_bits"<span class="token punctuation">:</span> [ 1 ] /<span class="token punctuation">*</span> all_columns_of_table_map_bits <span class="token punctuation">*</span>/, "columns"<span class="token punctuation">:</span> [ "test.alias2.pk", "test.alias1.col_int_key" ] /<span class="token punctuation">*</span> columns <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> functional_dependencies_of_GROUP_columns <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> join_preparation <span class="token punctuation">*</span>/ }, { "join_optimization"<span class="token punctuation">:</span> { "select#"<span class="token punctuation">:</span> 1, "steps"<span class="token punctuation">:</span> [ { "condition_processing"<span class="token punctuation">:</span> { "condition"<span class="token punctuation">:</span> "WHERE", "original_condition"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and (`alias2`.`pk` = `alias1`.`col_int_key`))", "steps"<span class="token punctuation">:</span> [ { "transformation"<span class="token punctuation">:</span> "equality_propagation", "resulting_condition"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and multiple equal(`alias2`.`pk`, `alias1`.`col_int_key`))" }, { "transformation"<span class="token punctuation">:</span> "constant_propagation", "resulting_condition"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and multiple equal(`alias2`.`pk`, `alias1`.`col_int_key`))" }, { "transformation"<span class="token punctuation">:</span> "trivial_condition_removal", "resulting_condition"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and multiple equal(`alias2`.`pk`, `alias1`.`col_int_key`))" } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> condition_processing <span class="token punctuation">*</span>/ }, { "substitute_generated_columns"<span class="token punctuation">:</span> { } /<span class="token punctuation">*</span> substitute_generated_columns <span class="token punctuation">*</span>/ }, { "table_dependencies"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t1` `alias1`", "row_may_be_null"<span class="token punctuation">:</span> false, "map_bit"<span class="token punctuation">:</span> 0, "depends_on_map_bits"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> depends_on_map_bits <span class="token punctuation">*</span>/ }, { "table"<span class="token punctuation">:</span> "`t2` `alias2`", "row_may_be_null"<span class="token punctuation">:</span> false, "map_bit"<span class="token punctuation">:</span> 1, "depends_on_map_bits"<span class="token punctuation">:</span> [ 0 ] /<span class="token punctuation">*</span> depends_on_map_bits <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> table_dependencies <span class="token punctuation">*</span>/ }, { "ref_optimizer_key_uses"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t2` `alias2`", "field"<span class="token punctuation">:</span> "pk", "equals"<span class="token punctuation">:</span> "`alias1`.`col_int_key`", "null_rejecting"<span class="token punctuation">:</span> true } ] /<span class="token punctuation">*</span> ref_optimizer_key_uses <span class="token punctuation">*</span>/ }, { "rows_estimation"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t1` `alias1`", "table_scan"<span class="token punctuation">:</span> { "rows"<span class="token punctuation">:</span> 20, "cost"<span class="token punctuation">:</span> 0.25 } /<span class="token punctuation">*</span> table_scan <span class="token punctuation">*</span>/ }, { "table"<span class="token punctuation">:</span> "`t2` `alias2`", "const_keys_added"<span class="token punctuation">:</span> { "keys"<span class="token punctuation">:</span> [ "PRIMARY" ] /<span class="token punctuation">*</span> keys <span class="token punctuation">*</span>/, "cause"<span class="token punctuation">:</span> "group_by" } /<span class="token punctuation">*</span> const_keys_added <span class="token punctuation">*</span>/, "range_analysis"<span class="token punctuation">:</span> { "table_scan"<span class="token punctuation">:</span> { "rows"<span class="token punctuation">:</span> 100, "cost"<span class="token punctuation">:</span> 12.35 } /<span class="token punctuation">*</span> table_scan <span class="token punctuation">*</span>/, "potential_range_indexes"<span class="token punctuation">:</span> [ { "index"<span class="token punctuation">:</span> "PRIMARY", "usable"<span class="token punctuation">:</span> true, "key_parts"<span class="token punctuation">:</span> [ "pk" ] /<span class="token punctuation">*</span> key_parts <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> potential_range_indexes <span class="token punctuation">*</span>/, "setup_range_conditions"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> setup_range_conditions <span class="token punctuation">*</span>/, "group_index_skip_scan"<span class="token punctuation">:</span> { "chosen"<span class="token punctuation">:</span> false, "cause"<span class="token punctuation">:</span> "not_single_table" } /<span class="token punctuation">*</span> group_index_skip_scan <span class="token punctuation">*</span>/, "skip_scan_range"<span class="token punctuation">:</span> { "chosen"<span class="token punctuation">:</span> false, "cause"<span class="token punctuation">:</span> "not_single_table" } /<span class="token punctuation">*</span> skip_scan_range <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> range_analysis <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> rows_estimation <span class="token punctuation">*</span>/ }, { "considered_execution_plans"<span class="token punctuation">:</span> [ { "plan_prefix"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> plan_prefix <span class="token punctuation">*</span>/, "table"<span class="token punctuation">:</span> "`t1` `alias1`", "best_access_path"<span class="token punctuation">:</span> { "considered_access_paths"<span class="token punctuation">:</span> [ { "rows_to_scan"<span class="token punctuation">:</span> 20, "filtering_effect"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> filtering_effect <span class="token punctuation">*</span>/, "final_filtering_effect"<span class="token punctuation">:</span> 0.9, "access_type"<span class="token punctuation">:</span> "scan", "resulting_rows"<span class="token punctuation">:</span> 18, "cost"<span class="token punctuation">:</span> 2.25, "chosen"<span class="token punctuation">:</span> true } ] /<span class="token punctuation">*</span> considered_access_paths <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> best_access_path <span class="token punctuation">*</span>/, "condition_filtering_pct"<span class="token punctuation">:</span> 100, "rows_for_plan"<span class="token punctuation">:</span> 18, "cost_for_plan"<span class="token punctuation">:</span> 2.25, "rest_of_plan"<span class="token punctuation">:</span> [ { "plan_prefix"<span class="token punctuation">:</span> [ "`t1` `alias1`" ] /<span class="token punctuation">*</span> plan_prefix <span class="token punctuation">*</span>/, "table"<span class="token punctuation">:</span> "`t2` `alias2`", "best_access_path"<span class="token punctuation">:</span> { "considered_access_paths"<span class="token punctuation">:</span> [ { "access_type"<span class="token punctuation">:</span> "eq_ref", "index"<span class="token punctuation">:</span> "PRIMARY", "rows"<span class="token punctuation">:</span> 1, "cost"<span class="token punctuation">:</span> 6.3, "chosen"<span class="token punctuation">:</span> true, "cause"<span class="token punctuation">:</span> "clustered_pk_chosen_by_heuristics" }, { "rows_to_scan"<span class="token punctuation">:</span> 100, "filtering_effect"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> filtering_effect <span class="token punctuation">*</span>/, "final_filtering_effect"<span class="token punctuation">:</span> 1, "access_type"<span class="token punctuation">:</span> "scan", "using_join_cache"<span class="token punctuation">:</span> true, "buffers_needed"<span class="token punctuation">:</span> 1, "resulting_rows"<span class="token punctuation">:</span> 100, "cost"<span class="token punctuation">:</span> 180.25, "chosen"<span class="token punctuation">:</span> false } ] /<span class="token punctuation">*</span> considered_access_paths <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> best_access_path <span class="token punctuation">*</span>/, "condition_filtering_pct"<span class="token punctuation">:</span> 100, "rows_for_plan"<span class="token punctuation">:</span> 18, "cost_for_plan"<span class="token punctuation">:</span> 8.55, "chosen"<span class="token punctuation">:</span> true } ] /<span class="token punctuation">*</span> rest_of_plan <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> considered_execution_plans <span class="token punctuation">*</span>/ }, { "attaching_conditions_to_tables"<span class="token punctuation">:</span> { "original_condition"<span class="token punctuation">:</span> "((`alias2`.`pk` = `alias1`.`col_int_key`) and (0 &lt;&gt; `alias1`.`pk`))", "attached_conditions_computation"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> attached_conditions_computation <span class="token punctuation">*</span>/, "attached_conditions_summary"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t1` `alias1`", "attached"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and (`alias1`.`col_int_key` is not null))" }, { "table"<span class="token punctuation">:</span> "`t2` `alias2`", "attached"<span class="token punctuation">:</span> "(`alias2`.`pk` = `alias1`.`col_int_key`)" } ] /<span class="token punctuation">*</span> attached_conditions_summary <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> attaching_conditions_to_tables <span class="token punctuation">*</span>/ }, { "optimizing_distinct_group_by_order_by"<span class="token punctuation">:</span> { "simplifying_order_by"<span class="token punctuation">:</span> { "original_clause"<span class="token punctuation">:</span> "`alias1`.`col_int_key`,`alias2`.`pk`", "items"<span class="token punctuation">:</span> [ { "item"<span class="token punctuation">:</span> "`alias1`.`col_int_key`" }, { "item"<span class="token punctuation">:</span> "`alias2`.`pk`", "eq_ref_to_preceding_items"<span class="token punctuation">:</span> true } ] /<span class="token punctuation">*</span> items <span class="token punctuation">*</span>/, "resulting_clause_is_simple"<span class="token punctuation">:</span> true, "resulting_clause"<span class="token punctuation">:</span> "`alias1`.`col_int_key`" } /<span class="token punctuation">*</span> simplifying_order_by <span class="token punctuation">*</span>/, "simplifying_group_by"<span class="token punctuation">:</span> { "original_clause"<span class="token punctuation">:</span> "`c2`", "items"<span class="token punctuation">:</span> [ { "item"<span class="token punctuation">:</span> "`alias2`.`pk`" } ] /<span class="token punctuation">*</span> items <span class="token punctuation">*</span>/, "resulting_clause_is_simple"<span class="token punctuation">:</span> false, "resulting_clause"<span class="token punctuation">:</span> "`c2`" } /<span class="token punctuation">*</span> simplifying_group_by <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> optimizing_distinct_group_by_order_by <span class="token punctuation">*</span>/ }, { "finalizing_table_conditions"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t1` `alias1`", "original_table_condition"<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and (`alias1`.`col_int_key` is not null))", "final_table_condition "<span class="token punctuation">:</span> "((0 &lt;&gt; `alias1`.`pk`) and (`alias1`.`col_int_key` is not null))" }, { "table"<span class="token punctuation">:</span> "`t2` `alias2`", "original_table_condition"<span class="token punctuation">:</span> "(`alias2`.`pk` = `alias1`.`col_int_key`)", "final_table_condition "<span class="token punctuation">:</span> null } ] /<span class="token punctuation">*</span> finalizing_table_conditions <span class="token punctuation">*</span>/ }, { "refine_plan"<span class="token punctuation">:</span> [ { "table"<span class="token punctuation">:</span> "`t1` `alias1`" }, { "table"<span class="token punctuation">:</span> "`t2` `alias2`" } ] /<span class="token punctuation">*</span> refine_plan <span class="token punctuation">*</span>/ }, { "considering_tmp_tables"<span class="token punctuation">:</span> [ { "adding_tmp_table_in_plan_at_position"<span class="token punctuation">:</span> 2, "write_method"<span class="token punctuation">:</span> "continuously_update_group_row" }, { "adding_sort_to_table"<span class="token punctuation">:</span> "" } /<span class="token punctuation">*</span> filesort <span class="token punctuation">*</span>/ ] /<span class="token punctuation">*</span> considering_tmp_tables <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> join_optimization <span class="token punctuation">*</span>/ }, { "join_execution"<span class="token punctuation">:</span> { "select#"<span class="token punctuation">:</span> 1, "steps"<span class="token punctuation">:</span> [ { "temp_table_aggregate"<span class="token punctuation">:</span> { "select#"<span class="token punctuation">:</span> 1, "steps"<span class="token punctuation">:</span> [ { "creating_tmp_table"<span class="token punctuation">:</span> { "tmp_table_info"<span class="token punctuation">:</span> { "table"<span class="token punctuation">:</span> "&lt;temporary&gt;", "in_plan_at_position"<span class="token punctuation">:</span> 2, "columns"<span class="token punctuation">:</span> 3, "row_length"<span class="token punctuation">:</span> 18, "key_length"<span class="token punctuation">:</span> 4, "unique_constraint"<span class="token punctuation">:</span> false, "makes_grouped_rows"<span class="token punctuation">:</span> true, "cannot_insert_duplicates"<span class="token punctuation">:</span> false, "location"<span class="token punctuation">:</span> "TempTable" } /<span class="token punctuation">*</span> tmp_table_info <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> creating_tmp_table <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> temp_table_aggregate <span class="token punctuation">*</span>/ }, { "sorting_table"<span class="token punctuation">:</span> "&lt;temporary&gt;", "filesort_information"<span class="token punctuation">:</span> [ { "direction"<span class="token punctuation">:</span> "asc", "expression"<span class="token punctuation">:</span> "`alias1`.`col_int_key`" } ] /<span class="token punctuation">*</span> filesort_information <span class="token punctuation">*</span>/, "filesort_priority_queue_optimization"<span class="token punctuation">:</span> { "usable"<span class="token punctuation">:</span> false, "cause"<span class="token punctuation">:</span> "not applicable (no LIMIT)" } /<span class="token punctuation">*</span> filesort_priority_queue_optimization <span class="token punctuation">*</span>/, "filesort_execution"<span class="token punctuation">:</span> [ ] /<span class="token punctuation">*</span> filesort_execution <span class="token punctuation">*</span>/, "filesort_summary"<span class="token punctuation">:</span> { "memory_available"<span class="token punctuation">:</span> 262144, "key_size"<span class="token punctuation">:</span> 9, "row_size"<span class="token punctuation">:</span> 26, "max_rows_per_buffer"<span class="token punctuation">:</span> 7710, "num_rows_estimate"<span class="token punctuation">:</span> 18446744073709551615, "num_rows_found"<span class="token punctuation">:</span> 8, "num_initial_chunks_spilled_to_disk"<span class="token punctuation">:</span> 0, "peak_memory_used"<span class="token punctuation">:</span> 32832, "sort_algorithm"<span class="token punctuation">:</span> "std<span class="token punctuation">:</span><span class="token punctuation">:</span>sort", "unpacked_addon_fields"<span class="token punctuation">:</span> "skip_heuristic", "sort_mode"<span class="token punctuation">:</span> "&lt;fixed_sort_key, additional_fields&gt;" } /<span class="token punctuation">*</span> filesort_summary <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } /<span class="token punctuation">*</span> join_execution <span class="token punctuation">*</span>/ } ] /<span class="token punctuation">*</span> steps <span class="token punctuation">*</span>/ } MISSING_BYTES_BEYOND_MAX_MEM_SIZE<span class="token punctuation">:</span> 0 INSUFFICIENT_PRIVILEGES<span class="token punctuation">:</span> 0</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/alter-table-examples.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="alter-table-examples"> </a> 15.1.9.3 ALTER TABLE Examples </h4> </div> </div> </div> <p> Begin with a table <code class="literal"> t1 </code> created as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa22194175"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>a <span class="token datatype">INTEGER</span><span class="token punctuation">,</span> b <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">10</span><span class="token punctuation">)</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> To rename the table from <code class="literal"> t1 </code> to <code class="literal"> t2 </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa3933792"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t1 <span class="token keyword">RENAME</span> t2<span class="token punctuation">;</span></code></pre> </div> <p> To change column <code class="literal"> a </code> from <a class="link" href="integer-types.html" title="13.1.2 Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT"> <code class="literal"> INTEGER </code> </a> to <code class="literal"> TINYINT NOT NULL </code> (leaving the name the same), and to change column <code class="literal"> b </code> from <code class="literal"> CHAR(10) </code> to <code class="literal"> CHAR(20) </code> as well as renaming it from <code class="literal"> b </code> to <code class="literal"> c </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa74948819"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">MODIFY</span> a <span class="token datatype">TINYINT</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span><span class="token punctuation">,</span> <span class="token keyword">CHANGE</span> b c <span class="token datatype">CHAR</span><span class="token punctuation">(</span><span class="token number">20</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> To add a new <a class="link" href="datetime.html" title="13.2.2 The DATE, DATETIME, and TIMESTAMP Types"> <code class="literal"> TIMESTAMP </code> </a> column named <code class="literal"> d </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa5282018"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">ADD</span> d <span class="token datatype">TIMESTAMP</span><span class="token punctuation">;</span></code></pre> </div> <p> To add an index on column <code class="literal"> d </code> and a <code class="literal"> UNIQUE </code> index on column <code class="literal"> a </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa34594166"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">ADD</span> <span class="token keyword">INDEX</span> <span class="token punctuation">(</span>d<span class="token punctuation">)</span><span class="token punctuation">,</span> <span class="token keyword">ADD</span> <span class="token keyword">UNIQUE</span> <span class="token punctuation">(</span>a<span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> To remove column <code class="literal"> c </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-sql"><div class="docs-select-all right" id="sa90927908"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">DROP</span> <span class="token keyword">COLUMN</span> c<span class="token punctuation">;</span></code></pre> </div> <p> To add a new <code class="literal"> AUTO_INCREMENT </code> integer column named <code class="literal"> c </code> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa14857502"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">ADD</span> c <span class="token datatype">INT</span> <span class="token keyword">UNSIGNED</span> <span class="token operator">NOT</span> <span class="token boolean">NULL</span> <span class="token keyword">AUTO_INCREMENT</span><span class="token punctuation">,</span> <span class="token keyword">ADD</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span> <span class="token punctuation">(</span>c<span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre> </div> <p> We indexed <code class="literal"> c </code> (as a <code class="literal"> PRIMARY KEY </code> ) because <code class="literal"> AUTO_INCREMENT </code> columns must be indexed, and we declare <code class="literal"> c </code> as <code class="literal"> NOT NULL </code> because primary key columns cannot be <code class="literal"> NULL </code> . </p> <p> For <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> tables, it is also possible to change the storage type used for a table or column. For example, consider an <a class="link" href="mysql-cluster.html" title="Chapter 25 MySQL NDB Cluster 8.4"> <code class="literal"> NDB </code> </a> table created as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa14612817"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1 <span class="token punctuation">(</span>c1 <span class="token datatype">INT</span><span class="token punctuation">)</span> <span class="token keyword">TABLESPACE</span> ts_1 <span class="token keyword">ENGINE</span> <span class="token keyword">NDB</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (1.27 sec)</span></code></pre> </div> <p> To convert this table to disk-based storage, you can use the following <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa18317559"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t1 <span class="token keyword">TABLESPACE</span> ts_1 <span class="token keyword">STORAGE</span> <span class="token keyword">DISK</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (2.99 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t1\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> t1 Create Table<span class="token punctuation">:</span> CREATE TABLE `t1` ( `c1` int(11) DEFAULT NULL ) /<span class="token punctuation">*</span>!50100 TABLESPACE ts_1 STORAGE DISK <span class="token punctuation">*</span>/ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci </span><span class="token output">1 row in set (0.01 sec)</span></code></pre> </div> <p> It is not necessary that the tablespace was referenced when the table was originally created; however, the tablespace must be referenced by the <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa41171675"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token punctuation">(</span>c1 <span class="token datatype">INT</span><span class="token punctuation">)</span> ts_1 <span class="token keyword">ENGINE</span> <span class="token keyword">NDB</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (1.00 sec)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">STORAGE</span> <span class="token keyword">DISK</span><span class="token punctuation">;</span> <span class="token output">ERROR 1005 (HY000)<span class="token punctuation">:</span> Can't create table 'c.#sql-1750_3' (errno<span class="token punctuation">:</span> 140)</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">TABLESPACE</span> ts_1 <span class="token keyword">STORAGE</span> <span class="token keyword">DISK</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (3.42 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span> <span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> t1 Create Table<span class="token punctuation">:</span> CREATE TABLE `t2` ( `c1` int(11) DEFAULT NULL ) /<span class="token punctuation">*</span>!50100 TABLESPACE ts_1 STORAGE DISK <span class="token punctuation">*</span>/ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci </span><span class="token output">1 row in set (0.01 sec)</span></code></pre> </div> <p> To change the storage type of an individual column, you can use <code class="literal"> ALTER TABLE ... MODIFY [COLUMN] </code> . For example, suppose you create an NDB Cluster Disk Data table with two columns, using this <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa84584268"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t3 <span class="token punctuation">(</span>c1 <span class="token datatype">INT</span><span class="token punctuation">,</span> c2 <span class="token datatype">INT</span><span class="token punctuation">)</span> <span class="token prompt"> -&gt;</span> <span class="token keyword">TABLESPACE</span> ts_1 <span class="token keyword">STORAGE</span> <span class="token keyword">DISK</span> <span class="token keyword">ENGINE</span> <span class="token keyword">NDB</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (1.34 sec)</span></code></pre> </div> <p> To change column <code class="literal"> c2 </code> from disk-based to in-memory storage, include a <code class="literal"> STORAGE MEMORY </code> clause in the column definition used by the <code class="literal"> ALTER TABLE </code> statement, as shown here: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa31028319"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t3 <span class="token keyword">MODIFY</span> c2 <span class="token datatype">INT</span> <span class="token keyword">STORAGE</span> <span class="token keyword">MEMORY</span><span class="token punctuation">;</span> <span class="token output">Query OK, 0 rows affected (3.14 sec)</span> <span class="token output">Records: 0 Duplicates: 0 Warnings: 0</span></code></pre> </div> <p> You can make an in-memory column into a disk-based column by using <code class="literal"> STORAGE DISK </code> in a similar fashion. </p> <p> Column <code class="literal"> c1 </code> uses disk-based storage, since this is the default for the table (determined by the table-level <code class="literal"> STORAGE DISK </code> clause in the <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statement). However, column <code class="literal"> c2 </code> uses in-memory storage, as can be seen here in the output of <a class="link" href="show-create-table.html" title="15.7.7.11 SHOW CREATE TABLE Statement"> <code class="literal"> SHOW CREATE TABLE </code> </a> : </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa26410411"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SHOW</span> <span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t3\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> Table<span class="token punctuation">:</span> t3 Create Table<span class="token punctuation">:</span> CREATE TABLE `t3` ( `c1` int(11) DEFAULT NULL, `c2` int(11) /<span class="token punctuation">*</span>!50120 STORAGE MEMORY <span class="token punctuation">*</span>/ DEFAULT NULL ) /<span class="token punctuation">*</span>!50100 TABLESPACE ts_1 STORAGE DISK <span class="token punctuation">*</span>/ ENGINE=ndbcluster DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci </span><span class="token output">1 row in set (0.02 sec)</span></code></pre> </div> <p> When you add an <code class="literal"> AUTO_INCREMENT </code> column, column values are filled in with sequence numbers automatically. For <code class="literal"> MyISAM </code> tables, you can set the first sequence number by executing <code class="literal"> SET INSERT_ID= <em class="replaceable"> <code> value </code> </em> </code> before <a class="link" href="alter-table.html" title="15.1.9 ALTER TABLE Statement"> <code class="literal"> ALTER TABLE </code> </a> or by using the <code class="literal"> AUTO_INCREMENT= <em class="replaceable"> <code> value </code> </em> </code> table option. </p> <p> With <code class="literal"> MyISAM </code> tables, if you do not change the <code class="literal"> AUTO_INCREMENT </code> column, the sequence number is not affected. If you drop an <code class="literal"> AUTO_INCREMENT </code> column and then add another <code class="literal"> AUTO_INCREMENT </code> column, the numbers are resequenced beginning with 1. </p> <p> When replication is used, adding an <code class="literal"> AUTO_INCREMENT </code> column to a table might not produce the same ordering of the rows on the replica and the source. This occurs because the order in which the rows are numbered depends on the specific storage engine used for the table and the order in which the rows were inserted. If it is important to have the same order on the source and replica, the rows must be ordered before assigning an <code class="literal"> AUTO_INCREMENT </code> number. Assuming that you want to add an <code class="literal"> AUTO_INCREMENT </code> column to the table <code class="literal"> t1 </code> , the following statements produce a new table <code class="literal"> t2 </code> identical to <code class="literal"> t1 </code> but with an <code class="literal"> AUTO_INCREMENT </code> column: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa50918407"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token punctuation">(</span>id <span class="token datatype">INT</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">)</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> col1<span class="token punctuation">,</span> col2<span class="token punctuation">;</span></code></pre> </div> <p> This assumes that the table <code class="literal"> t1 </code> has columns <code class="literal"> col1 </code> and <code class="literal"> col2 </code> . </p> <p> This set of statements also produces a new table <code class="literal"> t2 </code> identical to <code class="literal"> t1 </code> , with the addition of an <code class="literal"> AUTO_INCREMENT </code> column: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa89608731"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">CREATE</span> <span class="token keyword">TABLE</span> t2 <span class="token operator">LIKE</span> t1<span class="token punctuation">;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">ADD</span> id <span class="token datatype">INT</span> <span class="token keyword">AUTO_INCREMENT</span> <span class="token keyword">PRIMARY</span> <span class="token keyword">KEY</span><span class="token punctuation">;</span> <span class="token keyword">INSERT</span> <span class="token keyword">INTO</span> t2 <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> t1 <span class="token keyword">ORDER</span> <span class="token keyword">BY</span> col1<span class="token punctuation">,</span> col2<span class="token punctuation">;</span></code></pre> </div> <div class="important" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Important </div> <p> To guarantee the same ordering on both source and replica, <span class="emphasis"> <em> all </em> </span> columns of <code class="literal"> t1 </code> must be referenced in the <code class="literal"> ORDER BY </code> clause. </p> </div> <p> Regardless of the method used to create and populate the copy having the <code class="literal"> AUTO_INCREMENT </code> column, the final step is to drop the original table and then rename the copy: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa36954513"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">DROP</span> <span class="token keyword">TABLE</span> t1<span class="token punctuation">;</span> <span class="token keyword">ALTER</span> <span class="token keyword">TABLE</span> t2 <span class="token keyword">RENAME</span> t1<span class="token punctuation">;</span></code></pre> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-shell-tutorial-javascript-table-update.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysql-shell-tutorial-javascript-table-update"> </a> 22.3.4.3 Update Tables </h4> </div> </div> </div> <a class="indexterm" name="idm46045127493872"> </a> <p> You can use the <code class="literal"> update() </code> method to modify one or more records in a table. The <code class="literal"> update() </code> method works by filtering a query to include only the records to be updated and then applying the operations you specify to those records. </p> <p> To replace a city name in the city table, pass to the <code class="literal"> set() </code> method the new city name. Then, pass to the <code class="literal"> where() </code> method the city name to locate and replace. The following example replaces the city Peking with Beijing. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting one-line language-mysqlsh"><div class="docs-select-all right" id="sa6959271"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">update</span><span class="token punctuation">(</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token keyword">set</span><span class="token punctuation">(</span><span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"Beijing"</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span><span class="token string">"Name = 'Peking'"</span><span class="token punctuation">)</span></code></pre> </div> <p> Use the <code class="literal"> select() </code> method to verify the change. </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-mysqlsh"><div class="docs-select-all right" id="sa61078826"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-mysqlsh"><span class="token prompt">mysql-js&gt;</span> db<span class="token punctuation">.</span>city<span class="token punctuation">.</span><span class="token function">select</span><span class="token punctuation">(</span><span class="token punctuation">[</span><span class="token string">"ID"</span><span class="token punctuation">,</span> <span class="token string">"Name"</span><span class="token punctuation">,</span> <span class="token string">"CountryCode"</span><span class="token punctuation">,</span> <span class="token string">"District"</span><span class="token punctuation">,</span> <span class="token string">"Info"</span><span class="token punctuation">]</span><span class="token punctuation">)</span><span class="token punctuation">.</span><span class="token function">where</span><span class="token punctuation">(</span><span class="token string">"Name = 'Beijing'"</span><span class="token punctuation">)</span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> ID <span class="token punctuation">|</span> Name <span class="token punctuation">|</span> CountryCode <span class="token punctuation">|</span> District <span class="token punctuation">|</span> Info <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output"><span class="token punctuation">|</span> 1891 <span class="token punctuation">|</span> Beijing <span class="token punctuation">|</span> CHN <span class="token punctuation">|</span> Peking <span class="token punctuation">|</span> {"Population": 7472000} <span class="token punctuation">|</span></span> <span class="token output"><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">-</span><span class="token punctuation">+</span></span> <span class="token output">1 row in set (0.00 sec)</span></code></pre> </div> <div class="simplesect"> <div class="titlepage"> <div> <div class="simple"> <h5 class="title"> <a name="idm46045127483312"> </a> Related Information </h5> </div> </div> </div> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> See <a class="ulink" href="/doc/x-devapi-userguide/en/crud-ebnf-table-crud-functions.html#crud-ebnf-tableupdatefunction" target="_top"> TableUpdateFunction </a> for the full syntax definition. </p> </li> </ul> </div> </div> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/performance-schema-processlist-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="performance-schema-processlist-table"> </a> 29.12.22.7 The processlist Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045067377648"> </a> <a class="indexterm" name="idm46045067376160"> </a> <a class="indexterm" name="idm46045067374672"> </a> <p> The MySQL process list indicates the operations currently being performed by the set of threads executing within the server. The <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table is one source of process information. For a comparison of this table with other sources, see <a class="xref" href="processlist-access.html#processlist-sources" title="Sources of Process Information"> Sources of Process Information </a> . </p> <p> The <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table can be queried directly. If you have the <a class="link" href="privileges-provided.html#priv_process"> <code class="literal"> PROCESS </code> </a> privilege, you can see all threads, even those belonging to other users. Otherwise (without the <a class="link" href="privileges-provided.html#priv_process"> <code class="literal"> PROCESS </code> </a> privilege), nonanonymous users have access to information about their own threads but not threads for other users, and anonymous users have no access to thread information. </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> If the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_show_processlist"> <code class="literal"> performance_schema_show_processlist </code> </a> system variable is enabled, the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table also serves as the basis for an alternative implementation underlying the <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> statement. For details, see later in this section. </p> </div> <p> The <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table contains a row for each server process: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57296847"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token prompt">mysql&gt;</span> <span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> performance_schema<span class="token punctuation">.</span><span class="token keyword">processlist</span>\G <span class="token output"><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 1. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> ID<span class="token punctuation">:</span> 5 USER<span class="token punctuation">:</span> event_scheduler HOST<span class="token punctuation">:</span> localhost DB<span class="token punctuation">:</span> NULL COMMAND<span class="token punctuation">:</span> Daemon TIME<span class="token punctuation">:</span> 137 STATE<span class="token punctuation">:</span> Waiting on empty queue INFO<span class="token punctuation">:</span> NULL <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 2. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> ID<span class="token punctuation">:</span> 9 USER<span class="token punctuation">:</span> me HOST<span class="token punctuation">:</span> localhost<span class="token punctuation">:</span>58812 DB<span class="token punctuation">:</span> NULL COMMAND<span class="token punctuation">:</span> Sleep TIME<span class="token punctuation">:</span> 95 STATE<span class="token punctuation">:</span> INFO<span class="token punctuation">:</span> NULL <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> 3. row <span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span><span class="token punctuation">*</span> ID<span class="token punctuation">:</span> 10 USER<span class="token punctuation">:</span> me HOST<span class="token punctuation">:</span> localhost<span class="token punctuation">:</span>58834 DB<span class="token punctuation">:</span> test COMMAND<span class="token punctuation">:</span> Query TIME<span class="token punctuation">:</span> 0 STATE<span class="token punctuation">:</span> executing INFO<span class="token punctuation">:</span> SELECT <span class="token punctuation">*</span> FROM performance_schema.processlist ...</span></code></pre> </div> <p> The <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> ID </code> </p> <p> The connection identifier. This is the same value displayed in the <code class="literal"> Id </code> column of the <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> statement, displayed in the <code class="literal"> PROCESSLIST_ID </code> column of the Performance Schema <a class="link" href="performance-schema-threads-table.html" title="29.12.22.8 The threads Table"> <code class="literal"> threads </code> </a> table, and returned by the <a class="link" href="information-functions.html#function_connection-id"> <code class="literal"> CONNECTION_ID() </code> </a> function within the thread. </p> </li> <li class="listitem"> <p> <code class="literal"> USER </code> </p> <p> The MySQL user who issued the statement. A value of <code class="literal"> system user </code> refers to a nonclient thread spawned by the server to handle tasks internally, for example, a delayed-row handler thread or an I/O or SQL thread used on replica hosts. For <code class="literal"> system user </code> , there is no host specified in the <code class="literal"> Host </code> column. <code class="literal"> unauthenticated user </code> refers to a thread that has become associated with a client connection but for which authentication of the client user has not yet occurred. <code class="literal"> event_scheduler </code> refers to the thread that monitors scheduled events (see <a class="xref" href="event-scheduler.html" title="27.4 Using the Event Scheduler"> Section 27.4, “Using the Event Scheduler” </a> ). </p> <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"> <div class="admon-title"> Note </div> <p> A <code class="literal"> USER </code> value of <code class="literal"> system user </code> is distinct from the <a class="link" href="privileges-provided.html#priv_system-user"> <code class="literal"> SYSTEM_USER </code> </a> privilege. The former designates internal threads. The latter distinguishes the system user and regular user account categories (see <a class="xref" href="account-categories.html" title="8.2.11 Account Categories"> Section 8.2.11, “Account Categories” </a> ). </p> </div> </li> <li class="listitem"> <p> <code class="literal"> HOST </code> </p> <p> The host name of the client issuing the statement (except for <code class="literal"> system user </code> , for which there is no host). The host name for TCP/IP connections is reported in <code class="literal"> <em class="replaceable"> <code> host_name </code> </em> : <em class="replaceable"> <code> client_port </code> </em> </code> format to make it easier to determine which client is doing what. </p> </li> <li class="listitem"> <p> <code class="literal"> DB </code> </p> <p> The default database for the thread, or <code class="literal"> NULL </code> if none has been selected. </p> </li> <li class="listitem"> <p> <code class="literal"> COMMAND </code> </p> <p> The type of command the thread is executing on behalf of the client, or <code class="literal"> Sleep </code> if the session is idle. For descriptions of thread commands, see <a class="xref" href="thread-information.html" title="10.14 Examining Server Thread (Process) Information"> Section 10.14, “Examining Server Thread (Process) Information” </a> . The value of this column corresponds to the <code class="literal"> COM_ <em class="replaceable"> <code> xxx </code> </em> </code> commands of the client/server protocol and <code class="literal"> Com_ <em class="replaceable"> <code> xxx </code> </em> </code> status variables. See <a class="xref" href="server-status-variables.html" title="7.1.10 Server Status Variables"> Section 7.1.10, “Server Status Variables” </a> </p> </li> <li class="listitem"> <p> <code class="literal"> TIME </code> </p> <p> The time in seconds that the thread has been in its current state. For a replica SQL thread, the value is the number of seconds between the timestamp of the last replicated event and the real time of the replica host. See <a class="xref" href="replication-threads.html" title="19.2.3 Replication Threads"> Section 19.2.3, “Replication Threads” </a> . </p> </li> <li class="listitem"> <p> <code class="literal"> STATE </code> </p> <p> An action, event, or state that indicates what the thread is doing. For descriptions of <code class="literal"> STATE </code> values, see <a class="xref" href="thread-information.html" title="10.14 Examining Server Thread (Process) Information"> Section 10.14, “Examining Server Thread (Process) Information” </a> . </p> <p> Most states correspond to very quick operations. If a thread stays in a given state for many seconds, there might be a problem that needs to be investigated. </p> </li> <li class="listitem"> <p> <code class="literal"> INFO </code> </p> <p> The statement the thread is executing, or <code class="literal"> NULL </code> if it is executing no statement. The statement might be the one sent to the server, or an innermost statement if the statement executes other statements. For example, if a <code class="literal"> CALL </code> statement executes a stored procedure that is executing a <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement, the <code class="literal"> INFO </code> value shows the <a class="link" href="select.html" title="15.2.13 SELECT Statement"> <code class="literal"> SELECT </code> </a> statement. </p> </li> <li class="listitem"> <p> <code class="literal"> EXECUTION_ENGINE </code> </p> <p> The query execution engine. The value is either <code class="literal"> PRIMARY </code> or <code class="literal"> SECONDARY </code> . For use with HeatWave Service and HeatWave, where the <code class="literal"> PRIMARY </code> engine is <code class="literal"> InnoDB </code> and the <code class="literal"> SECONDARY </code> engine is HeatWave ( <code class="literal"> RAPID </code> ). For MySQL Community Edition Server, MySQL Enterprise Edition Server (on-premise), and HeatWave Service without HeatWave, the value is always <code class="literal"> PRIMARY </code> . </p> </li> </ul> </div> <p> The <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table has these indexes: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Primary key on ( <code class="literal"> ID </code> ) </p> </li> </ul> </div> <p> <a class="link" href="truncate-table.html" title="15.1.37 TRUNCATE TABLE Statement"> <code class="literal"> TRUNCATE TABLE </code> </a> is not permitted for the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table. </p> <p> As mentioned previously, if the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_show_processlist"> <code class="literal"> performance_schema_show_processlist </code> </a> system variable is enabled, the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table serves as the basis for an alternative implementation of other process information sources: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> The <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> statement. </p> </li> <li class="listitem"> <p> The <a class="link" href="mysqladmin.html" title="6.5.2 mysqladmin — A MySQL Server Administration Program"> <span class="command"> <strong> mysqladmin processlist </strong> </span> </a> command (which uses <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> statement). </p> </li> </ul> </div> <p> The default <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> implementation iterates across active threads from within the thread manager while holding a global mutex. This has negative performance consequences, particularly on busy systems. The alternative <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> implementation is based on the Performance Schema <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table. This implementation queries active thread data from the Performance Schema rather than the thread manager and does not require a mutex. </p> <p> MySQL configuration affects <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table contents as follows: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> Minimum required configuration: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> The MySQL server must be configured and built with thread instrumentation enabled. This is true by default; it is controlled using the <a class="link" href="source-configuration-options.html#option_cmake_disable_psi_thread"> <code class="option"> DISABLE_PSI_THREAD </code> </a> <span class="command"> <strong> CMake </strong> </span> option. </p> </li> <li class="listitem"> <p> The Performance Schema must be enabled at server startup. This is true by default; it is controlled using the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema"> <code class="literal"> performance_schema </code> </a> system variable. </p> </li> </ul> </div> <p> With that configuration satisfied, <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_show_processlist"> <code class="literal"> performance_schema_show_processlist </code> </a> enables or disables the alternative <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> implementation. If the minimum configuration is not satisfied, the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table (and thus <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> ) may not return all data. </p> </li> <li class="listitem"> <p> Recommended configuration: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: circle; "> <li class="listitem"> <p> To avoid having some threads ignored: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: square; "> <li class="listitem"> <p> Leave the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_max_thread_instances"> <code class="literal"> performance_schema_max_thread_instances </code> </a> system variable set to its default or set it at least as great as the <a class="link" href="server-system-variables.html#sysvar_max_connections"> <code class="literal"> max_connections </code> </a> system variable. </p> </li> <li class="listitem"> <p> Leave the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_max_thread_classes"> <code class="literal"> performance_schema_max_thread_classes </code> </a> system variable set to its default. </p> </li> </ul> </div> </li> <li class="listitem"> <p> To avoid having some <code class="literal"> STATE </code> column values be empty, leave the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_max_stage_classes"> <code class="literal"> performance_schema_max_stage_classes </code> </a> system variable set to its default. </p> </li> </ul> </div> <p> The default for those configuration parameters is <code class="literal"> -1 </code> , which causes the Performance Schema to autosize them at server startup. With the parameters set as indicated, the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> table (and thus <a class="link" href="show-processlist.html" title="15.7.7.31 SHOW PROCESSLIST Statement"> <code class="literal"> SHOW PROCESSLIST </code> </a> ) produce complete process information. </p> </li> </ul> </div> <p> The preceding configuration parameters affect the contents of the <code class="literal"> processlist </code> table. For a given configuration, however, the <a class="link" href="performance-schema-processlist-table.html" title="29.12.22.7 The processlist Table"> <code class="literal"> processlist </code> </a> contents are unaffected by the <a class="link" href="performance-schema-system-variables.html#sysvar_performance_schema_show_processlist"> <code class="literal"> performance_schema_show_processlist </code> </a> setting. </p> <p> The alternative process list implementation does not apply to the <code class="literal"> INFORMATION_SCHEMA </code> <a class="link" href="information-schema-processlist-table.html" title="28.3.23 The INFORMATION_SCHEMA PROCESSLIST Table"> <code class="literal"> PROCESSLIST </code> </a> table or the <code class="literal"> COM_PROCESS_INFO </code> command of the MySQL client/server protocol. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/group-replication-requirements-and-limitations.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h2 class="title"> <a name="group-replication-requirements-and-limitations"> </a> 20.3 Requirements and Limitations </h2> </div> </div> </div> <div class="toc"> <dl class="toc"> <dt> <span class="section"> <a href="group-replication-requirements.html"> 20.3.1 Group Replication Requirements </a> </span> </dt> <dt> <span class="section"> <a href="group-replication-limitations.html"> 20.3.2 Group Replication Limitations </a> </span> </dt> </dl> </div> <a class="indexterm" name="idm46045133924128"> </a> <p> This section lists and explains the requirements and limitations of Group Replication. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/mysql-cluster-ndbinfo-files.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="mysql-cluster-ndbinfo-files"> </a> 25.6.17.36 The ndbinfo files Table </h4> </div> </div> </div> <a class="indexterm" name="idm46045089241312"> </a> <p> The <code class="literal"> files </code> tables provides information about files and other objects used by <code class="literal"> NDB </code> disk data tables, and contains the columns listed here: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> id </code> </p> <p> Object ID </p> </li> <li class="listitem"> <p> <code class="literal"> type </code> </p> <p> The type of object; one of <code class="literal"> Log file group </code> , <code class="literal"> Tablespace </code> , <code class="literal"> Undo file </code> , or <code class="literal"> Data file </code> </p> </li> <li class="listitem"> <p> <code class="literal"> name </code> </p> <p> The name of the object </p> </li> <li class="listitem"> <p> <code class="literal"> parent </code> </p> <p> ID of the parent object </p> </li> <li class="listitem"> <p> <code class="literal"> parent_name </code> </p> <p> Name of the parent object </p> </li> <li class="listitem"> <p> <code class="literal"> free_extents </code> </p> <p> Number of free extents </p> </li> <li class="listitem"> <p> <code class="literal"> total_extents </code> </p> <p> Total number of extents </p> </li> <li class="listitem"> <p> <code class="literal"> extent_size </code> </p> <p> Extent size (MB) </p> </li> <li class="listitem"> <p> <code class="literal"> initial_size </code> </p> <p> Initial size (bytes) </p> </li> <li class="listitem"> <p> <code class="literal"> maximum_size </code> </p> <p> Maximum size (bytes) </p> </li> <li class="listitem"> <p> <code class="literal"> autoextend_size </code> </p> <p> Autoextend size (bytes) </p> </li> </ul> </div> <p> For log file groups and tablespaces, <code class="literal"> parent </code> is always <code class="literal"> 0 </code> , and the <code class="literal"> parent_name </code> , <code class="literal"> free_extents </code> , <code class="literal"> total_extents </code> , <code class="literal"> extent_size </code> , <code class="literal"> initial_size </code> , <code class="literal"> maximum_size </code> , and <code class="literal"> autoentend_size </code> columns are all <code class="literal"> NULL </code> . </p> <p> The <code class="literal"> files </code> table is empty if no disk data objects have been created in <code class="literal"> NDB </code> . See <a class="xref" href="mysql-cluster-disk-data-objects.html" title="25.6.11.1 NDB Cluster Disk Data Objects"> Section 25.6.11.1, “NDB Cluster Disk Data Objects” </a> , for more information. </p> <p> See also <a class="xref" href="information-schema-files-table.html" title="28.3.15 The INFORMATION_SCHEMA FILES Table"> Section 28.3.15, “The INFORMATION_SCHEMA FILES Table” </a> . </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/information-schema-keywords-table.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h3 class="title"> <a name="information-schema-keywords-table"> </a> 28.3.17 The INFORMATION_SCHEMA KEYWORDS Table </h3> </div> </div> </div> <a class="indexterm" name="idm46045079533344"> </a> <p> The <a class="link" href="information-schema-keywords-table.html" title="28.3.17 The INFORMATION_SCHEMA KEYWORDS Table"> <code class="literal"> KEYWORDS </code> </a> table lists the words considered keywords by MySQL and, for each one, indicates whether it is reserved. Reserved keywords may require special treatment in some contexts, such as special quoting when used as identifiers (see <a class="xref" href="keywords.html" title="11.3 Keywords and Reserved Words"> Section 11.3, “Keywords and Reserved Words” </a> ). This table provides applications a runtime source of MySQL keyword information. </p> <p> The <a class="link" href="information-schema-keywords-table.html" title="28.3.17 The INFORMATION_SCHEMA KEYWORDS Table"> <code class="literal"> KEYWORDS </code> </a> table has these columns: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> <code class="literal"> WORD </code> </p> <p> The keyword. </p> </li> <li class="listitem"> <p> <code class="literal"> RESERVED </code> </p> <p> An integer indicating whether the keyword is reserved (1) or nonreserved (0). </p> </li> </ul> </div> <p> These queries lists all keywords, all reserved keywords, and all nonreserved keywords, respectively: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa34552608"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> <span class="token operator">*</span> <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>KEYWORDS<span class="token punctuation">;</span> <span class="token keyword">SELECT</span> WORD <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>KEYWORDS <span class="token keyword">WHERE</span> RESERVED <span class="token operator">=</span> <span class="token number">1</span><span class="token punctuation">;</span> <span class="token keyword">SELECT</span> WORD <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>KEYWORDS <span class="token keyword">WHERE</span> RESERVED <span class="token operator">=</span> <span class="token number">0</span><span class="token punctuation">;</span></code></pre> </div> <p> The latter two queries are equivalent to: </p> <div class="copytoclipboard-wrapper"> <pre class="programlisting language-sql"><div class="docs-select-all right" id="sa57767059"><div class="copy-help left">Press ⌘+C to copy</div> <div class="right"><button class="clipboard-btn" title="Copy to Clipboard"><span class="icon-clipboard"></span></button></div></div><code class="language-sql"><span class="token keyword">SELECT</span> WORD <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>KEYWORDS <span class="token keyword">WHERE</span> RESERVED<span class="token punctuation">;</span> <span class="token keyword">SELECT</span> WORD <span class="token keyword">FROM</span> INFORMATION_SCHEMA<span class="token punctuation">.</span>KEYWORDS <span class="token keyword">WHERE</span> <span class="token operator">NOT</span> RESERVED<span class="token punctuation">;</span></code></pre> </div> <a class="indexterm" name="idm46045079520144"> </a> <a class="indexterm" name="idm46045079519056"> </a> <p> If you build MySQL from source, the build process generates a <code class="filename"> keyword_list.h </code> header file containing an array of keywords and their reserved status. This file can be found in the <code class="filename"> sql </code> directory under the build directory. This file may be useful for applications that require a static source for the keyword list. </p> </div> <br/> </div>
https://dev.mysql.com/doc/refman/8.4/en/replication-features-charset.html
<div id="docs-body"> <div class="section"> <div class="titlepage"> <div> <div> <h4 class="title"> <a name="replication-features-charset"> </a> 19.5.1.3 Replication and Character Sets </h4> </div> </div> </div> <a class="indexterm" name="idm46045135949280"> </a> <a class="indexterm" name="idm46045135947792"> </a> <p> The following applies to replication between MySQL servers that use different character sets: </p> <div class="itemizedlist"> <ul class="itemizedlist" style="list-style-type: disc; "> <li class="listitem"> <p> If the source has databases with a character set different from the global <a class="link" href="server-system-variables.html#sysvar_character_set_server"> <code class="literal"> character_set_server </code> </a> value, you should design your <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statements so that they do not implicitly rely on the database default character set. A good workaround is to state the character set and collation explicitly in <a class="link" href="create-table.html" title="15.1.20 CREATE TABLE Statement"> <code class="literal"> CREATE TABLE </code> </a> statements. </p> </li> </ul> </div> </div> <br/> </div>