Search Results
                    
                    
            https://dev.mysql.com/doc/refman/8.4/en/replication-solutions.html
                                 Replication can be used in many different environments for a range of purposes. This section provides general notes and advice on using replication for specific solution types. For information on using replication in a backup environment, including ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/resignal.html
                                RESIGNAL may change some or all information before passing it on. RESIGNAL is related to SIGNAL, but instead of originating a condition as SIGNAL does, RESIGNAL relays existing condition information, possibly after modifying it. RESIGNAL makes it ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/show-replica-status.html
                                 SHOW REPLICA STATUS [FOR CHANNEL channel] This statement provides status information on essential parameters of the replica threads. The statement requires the REPLICATION CLIENT privilege (or the deprecated SUPER privilege). When run concurrently ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/source-configuration-options.html
                                 The CMake program provides a great deal of control over how you configure a MySQL source distribution. Typically, you do this using options on the CMake command line. For information about options supported by CMake, run either of these commands in ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/stored-programs-logging.html
                                 The binary log contains information about SQL statements that modify database contents. This information is stored in the form of “events” that describe the modifications. (Binary log events differ from scheduled event stored objects.) The ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/switchable-optimizations.html
                                Its value is a set of flags, each of which has a value of on or off to indicate whether the corresponding optimizer behavior is enabled or disabled. This variable has global and session values and can be changed at runtime. To see the current set of ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/thread-pool-operation.html
                                 The thread pool consists of a number of thread groups, each of which manages a set of client connections. As connections are established, the thread pool assigns them to thread groups in round-robin fashion. The thread pool exposes system variables ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/view-restrictions.html
                                 The maximum number of tables that can be referenced in the definition of a view is 61. View processing is not optimized: It is not possible to create an index on a view. Indexes can be used for views processed using the merge algorithm. However, a ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/window-functions-frames.html
                                 The definition of a window used with a window function can include a frame clause. A frame is a subset of the current partition and the frame clause specifies how to define the subset. Frames are determined with respect to the current row, which ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/window-functions-usage.html
                                However, whereas an aggregate operation groups query rows into a single result row, a window function produces a result for each query row: The row for which function evaluation occurs is called the current row. The query rows related to the current ...