Search Results
                    
                    
            https://dev.mysql.com/doc/ndbapi/en/ndb-start-compiler-options.html
                                In order to compile source files that use the NDB API, you must ensure that the necessary header files can be found. Header files specific to the NDB and MGM APIs are installed in the following subdirectories of the MySQL include directory, ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-j-usagenotes-spring-config-jdbctemplate.html
                                The template classes handle obtaining and releasing a connection for data access when one is needed. The next example shows how to use NamedParameterJdbcTemplate inside of a DAO (Data Access Object) class to retrieve a random city given a country ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-mysql-enterprise-backup.html
                                This information includes the MySQL Enterprise Backup configuration backup profiles, job scheduling, backup operations, and data. Establishes a backup profile to define what should be backed up, where the backup should be stored, and when (the ...
                                            
                https://dev.mysql.com/doc/internals/en/guided-tour-majordir-myisam.html
                                But the files in those directories are mostly analogues of what's in the myisam directory, and the myisam directory is sort of a 'template'. On the myisam directory, you'll find the programs that do file I/O. Notice that the file names begin with ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/disk-issues.html
                                However, it is possible to place InnoDB data and log files on different physical disks. You can also set the parameters for the file system that the database uses: If you do not need to know when files were last accessed (which is not really useful ... This section describes ways to configure storage devices when you can devote more and faster storage hardware to the database ...For ...
                                            
                https://dev.mysql.com/doc/ndbapi/en/overview-selecting-tc.html
                                 The default method is to select the transaction coordinator (TC) determined to be the "nearest" data node, using a heuristic for proximity based on the type of transporter connection. Optionally, you may set the method for TC selection to ...In ...
                                            
                https://dev.mysql.com/doc/workbench/en/wb-documenting-sakila.html
                                A PNG File of the sakila Database Find following an EER diagram showing the tables in the sakila database.  This chapter demonstrates the capabilities of MySQL Workbench as a documentation tool by using the sakila database, which is a database ...An ...Identifying and non-identifying relationships are indicated by solid and broken lines ...
                                            
                https://dev.mysql.com/doc/refman/8.4/en/check-table.html
                                The latter should be used when you are in a hurry and can take the very small risk that QUICK does not find an error in the data file. (In most cases, under normal usage, MySQL should find any error in the data file. When an InnoDB table is stored ...CHECK TABLE Output Checking Version Compatibility Checking Data Consistency CHECK TABLE Usage Notes for InnoDB Tables CHECK TABLE Usage Notes for MyISAM Tables CHECK TABLE Output CHECK TABLE returns a result set with the columns shown in the following ...
                                            
                https://dev.mysql.com/doc/internals/en/transactions-current-situation.html
                                Administrative and status-information statements don't modify engine data, so they don't start a statement transaction and they don't affect a normal transaction. Even though they cause writes to the binary log, (and the binary log is by and large ... Nowadays a statement transaction is started for each statement that accesses transactional tables or uses the binary ...
                                            
                https://dev.mysql.com/doc/connectors/en/connector-net-async-methods.html
                                 The Task-based Asynchronous Pattern (TAP) is a pattern for asynchrony in the .NET Framework. It is based on the Task and Task<TResult> types in the System.Threading.Tasks namespace, which are used to represent arbitrary asynchronous operations. The ...Returning Task is like having a void method, but you should not use async void if your method is not a top-level access method like an ...