Search Results
https://dev.mysql.com/doc/connectors/en/connector-j-support-bug-report.html
The normal place to report bugs is http://bugs.mysql.com/, which is the address for our bugs database. If you have a repeatable bug report, please report it to the bugs database at http://bugs.mysql.com/. It is faster and less troublesome to write ...This database is public, and can be browsed and searched by ...If you find a sensitive security bug in MySQL Server, please let us know ...
https://dev.mysql.com/doc/mysql-enterprise-backup/8.4/en/mysqlbackup.verify.html
240426 13:09:04 MAIN INFO: Source Image Path = /home/meb/mysql/backups/testback3.mbi mysqlbackup completed OK! Furthermore, you can also verify that your backup has been successful by restoring the backup data on a different server and run the MySQL ... You can check the integrity of your backup using the validate ...Oracle ...
https://dev.mysql.com/doc/refman/8.4/en/security.html
The data files, log files, and the all the application files of your installation should be protected to ensure that they are not readable or writable by unauthorized parties. These include choosing good passwords, not granting unnecessary ... When ...For more information, see Section 8.2, “Access Control and Account ...
https://dev.mysql.com/doc/workbench/en/wb-forward-engineering-sql-scripts.html
9.4.1.1.2 Altering a Schema The menu item for creating an ALTER Script File is Database, Synchronize With Any Source. The script to create a database is similar to the one created using the mysqldump db_name command. 9.4.1.1.1 Creating a Schema With ... Forward engineering enables you to create a script of your database ...Generate DROP SCHEMA Sort Tables Alphabetically When this ...
https://dev.mysql.com/doc/refman/8.4/en/stored-programs-logging.html
See Section 15.1.17, “CREATE PROCEDURE and CREATE FUNCTION Statements”.) When you create a stored function, you must declare either that it is deterministic or that it does not modify data. To relax the preceding conditions on function creation ... The binary log contains information about SQL statements that modify database ...
https://dev.mysql.com/doc/ndbapi/en/ndb-examples-blobs-basic.html
*/ for (Uint64 j= 0; j < chunk_length; j++) buffer[j]= toupper(buffer[j]); if (-1 == myBlobHandle->setPos(pos)) APIERROR(myBlobHandle->getNdbError()); if (-1 == myBlobHandle->writeData(buffer, chunk_length)) APIERROR(myBlobHandle->getNdbError()); /* ...The source code can be found can be found in the file storage/ndb/ndbapi-examples/ndbapi_blob/ndbapi_blob.cpp in the NDB Cluster source ...
https://dev.mysql.com/doc/internals/en/synchronization-pattern.html
This is done to allow the thread to be interrupted (killed) from its sleep. Another thread can find the condition variable to signal and mutex to use for synchronization in this thread's THD::mysys_var. thd->exit_cond() unregisters the condition ...
https://dev.mysql.com/doc/workbench/en/wb-creating-eer-diagram.html
To create an EER diagram for the sakila database, first add an EER diagram by double-clicking the Add Diagram icon in the EER Diagrams panel to create and open a new EER Diagram editor. (To view all the relationships in the sakila database, see ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/working-with-document-ids.html
// using a book's unique ISBN as the object ID myColl.add( { _id: "978-1449374020", title: "MySQL Cookbook: Solutions for Database Developers and Administrators" }).execute(); Use find() to fetch the newly inserted book from the collection by its ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/working-with-document-ids.html
// using a book's unique ISBN as the object ID myColl.add( { _id: "978-1449374020", title: "MySQL Cookbook: Solutions for Database Developers and Administrators" }).execute(); Use find() to fetch the newly inserted book from the collection by its ...