Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/proxy-users.html
                                The plugin that authenticates a given connection may request that the connecting (external) user be treated as a different user for privilege-checking purposes. This enables the external user to be a proxy for the second user; that is, to assume the ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/range-optimization.html
                                 The range access method uses a single index to retrieve a subset of table rows that are contained within one or several index value intervals. The following sections describe conditions under which the optimizer uses range access. Additionally, for ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-mode-change-online-verify-transactions.html
                                 This section explains how to monitor a replication topology and verify that all anonymous transactions have been replicated. This is helpful when changing the replication mode online as you can verify that it is safe to change to GTID transactions. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/replication-multi-source-provision-replica.html
                                 If the sources in the multi-source replication topology have existing data, it can save time to provision the replica with the relevant data before starting replication. In a multi-source replication topology, cloning or copying of the data ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/select.html
                                 SELECT [ALL | DISTINCT | DISTINCTROW ] [HIGH_PRIORITY] [STRAIGHT_JOIN] [SQL_SMALL_RESULT] [SQL_BIG_RESULT] [SQL_BUFFER_RESULT] [SQL_NO_CACHE] [SQL_CALC_FOUND_ROWS] select_expr [, select_expr] ... [into_option] [FROM table_references [PARTITION ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/server-options.html
                                 When you start the mysqld server, you can specify program options using any of the methods described in Section 6.2.2, “Specifying Program Options”. The most common methods are to provide options in an option file or on the command line. 
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sql-mode.html
                                 The MySQL server can operate in different SQL modes, and can apply these modes differently for different clients, depending on the value of the sql_mode system variable. DBAs can set the global SQL mode to match site server operating requirements, ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/stored-program-restrictions.html
                                Some of the restrictions noted here apply to all stored routines; that is, both to stored procedures and stored functions. There are also some restrictions specific to stored functions but not to stored procedures. The restrictions for stored ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/sys-ps-trace-thread.html
                                 Dumps all Performance Schema data for an instrumented thread to a .dot formatted graph file (for the DOT graph description language). Each result set returned from the procedure should be used for a complete graph. This procedure disables binary ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/with.html
                                 A common table expression (CTE) is a named temporary result set that exists within the scope of a single statement and that can be referred to later within that statement, possibly multiple times. The following discussion describes how to write ...