Search Results
https://dev.mysql.com/doc/heatwave/en/mys-hwaml-onnx-import-overview.html
The models require string serialization and conversion to Base64 encoding before you use the ML_MODEL_IMPORT routine. You cannot directly load models in ONNX format (.onnx) into a MySQL table. MySQL HeatWave AutoML supports the following ONNX model ...
https://dev.mysql.com/doc/mysql-ai/9.5/en/mys-ai-aml-onnx-import-overview.html
The models require string serialization and conversion to Base64 encoding before you use the ML_MODEL_IMPORT routine. You cannot directly load models in ONNX format (.onnx) into a MySQL table. AutoML supports the following ONNX model types: An ONNX ...
https://dev.mysql.com/doc/connectors/en/connector-cpp-apps-windows-notes.html
The following sections provide additional detail about several aspects of building Connector/C++ applications: Application Build Configuration Must Match Connector/C++ Linking Connector/C++ to Applications Building Connector/C++ Applications with ...
https://dev.mysql.com/doc/heatwave-aws/en/heatwave-aws-relnotes.html
2025-04-25: Server Release, Deprecation, and Upgrade Schedule Learn here about the schedule of support for MySQL Server versions by MySQL HeatWave on AWS, the version deprecation and unavailable dates, and other important information on the subject.
https://dev.mysql.com/doc/relnotes/mysql/8.4/en/news-8-4-0.html
(Bug #36118809) C API Notes Important Change: The following MySQL C API functions, removed in MySQL 8.3, have been reimplemented and restored in MySQL 8.4.0: mysql_kill(): In place of COM_PROCESS_KILL (removed), this function has been reimplemented ...(Bug #36301441) Audit log filtering by type, using error as the type, did not work ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-tpch-quickstart.html
The tpch Analytics Quickstart shows how to import data into the DB System using the MySQL Shell Parallel Table Import Utility, manually loading data into MySQL HeatWave Cluster, and running queries. This quickstart contains the following sections: ...We recommend that you always run the latest version of MySQL Shell, which is currently MySQL version ...
Connectors and APIs Manual :: 3.5.12.4 Connecting Using Web Authentication (WebAuthn) Authentication
https://dev.mysql.com/doc/connectors/en/connector-j-WebAuthn-authentication.html
Web Authentication (WebAuthn) enables user authentication for MySQL Server using devices such as smart cards, security keys, and biometric readers. WebAuthn enables passwordless authentication, and can be used for MySQL accounts that use ...
https://dev.mysql.com/doc/connector-j/en/connector-j-WebAuthn-authentication.html
Web Authentication (WebAuthn) enables user authentication for MySQL Server using devices such as smart cards, security keys, and biometric readers. WebAuthn enables passwordless authentication, and can be used for MySQL accounts that use ...
https://dev.mysql.com/doc/refman/8.4/en/load-xml.html
All three formats can be used in the same XML file; the import routine automatically detects the format for each row and interprets it correctly. If the file cannot be found, the following error results: ERROR 2 (HY000): File '/person.xml' not found ...The tagname in the optional ROWS IDENTIFIED BY clause must also be given as a literal string, and must be surrounded by angle brackets (< and ...
https://dev.mysql.com/doc/refman/8.4/en/optimizing-innodb-bulk-data-loading.html
When importing data into InnoDB, turn off autocommit mode, because it performs a log flush to disk for every insert. To disable autocommit during your import operation, surround it with SET autocommit and COMMIT statements: SET autocommit=0; ...