Search Results
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-authentication.html
These plugins will be loaded at connection initialization and can be used together with their sever-side counterparts for authenticating users, unless they are disabled in the connection property 'disabledAuthenticationPlugins'. By default, ...If ...
https://dev.mysql.com/doc/connector-j/en/connector-j-connp-props-connection.html
Setting "connectionAttributes=none" will cause connection attribute processing to be bypassed for situations where Connection creation/initialization speed is critical. connectionAttributes A comma-delimited list of user-defined "key:value" pairs, ...
https://dev.mysql.com/doc/refman/8.4/en/alter-logfile-group.html
ALTER LOGFILE GROUP logfile_group ADD UNDOFILE 'file_name' [INITIAL_SIZE [=] size] [WAIT] ENGINE [=] engine_name This statement adds an UNDO file named 'file_name' to an existing log file group logfile_group. The optional INITIAL_SIZE parameter ...
https://dev.mysql.com/doc/refman/8.4/en/bug-reports.html
It is faster and less troublesome to write a couple more lines in your report than to wait longer for the answer if we must ask you to provide information that was missing from the initial report. This is a very easy way to get the definition of any ... Before posting a bug report about a problem, please try to verify that it is a bug and that it has not been reported already: Start by searching the MySQL online manual at ...
https://dev.mysql.com/doc/refman/8.4/en/call.html
(If you are calling the procedure from within another stored procedure or function, you can also pass a routine parameter or local routine variable as an IN or INOUT parameter.) For an INOUT parameter, initialize its value before passing it to the ... CALL sp_name([parameter[,...]]) CALL sp_name[()] The CALL statement invokes a stored procedure that was defined previously with CREATE ...
https://dev.mysql.com/doc/refman/8.4/en/charset-connection.html
These session system variable values are initialized at connect time, but can be changed within the session. A “connection” is what a client program makes when it connects to the server, to begin a session within which it interacts with the ...
https://dev.mysql.com/doc/refman/8.4/en/clone-plugin-installation.html
For example: mysql> SELECT PLUGIN_NAME, PLUGIN_STATUS FROM INFORMATION_SCHEMA.PLUGINS WHERE PLUGIN_NAME = 'clone'; +------------------------+---------------+ | PLUGIN_NAME | PLUGIN_STATUS | +------------------------+---------------+ | clone | ACTIVE ... This section describes how to install and configure the clone ...
https://dev.mysql.com/doc/refman/8.4/en/clone-plugin-replication.html
This data permits initiating replication at a consistent position in the replication stream. To initiate replication, the binary logs required for the recipient to catch up to the donor must not be purged between the time that the data is cloned and ...In addition to cloning data, a cloning operation extracts replication coordinates from the donor and transfers them to the recipient, which enables using the clone plugin for provisioning Group Replication members and ...
https://dev.mysql.com/doc/refman/8.4/en/collation-diagnostics.html
For example, the following message results if a collation definition contains a <aaa> tag: [Warning] Buffered warning: Unknown LDML tag: 'charsets/charset/collation/rules/aaa' If collation initialization is not possible, the server reports an ...
https://dev.mysql.com/doc/refman/8.4/en/create-procedure.html
Its initial value is NULL within the procedure, and its value is visible to the caller when the procedure returns. An INOUT parameter is initialized by the caller, can be modified by the procedure, and any change made by the procedure is visible to ...By default, a stored routine is associated with the default ...