Search Results
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-download.html
To download the latest MySQL Enterprise Edition for Linux x86-64 generic binary package, perform the following steps. If you already have the latest package, you can skip this procedure. On the Oracle Software Delivery Cloud page: Select Release ...
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-install.html
This section covers installation prerequisites, creating the mysql user and group, and unpacking the distribution. Installation Prerequisites Creating the mysql User and Group Unpacking the Distribution Installation Prerequisites The installation ...
https://dev.mysql.com/doc/mysql-secure-deployment-guide/8.0/en/secure-deployment-verify-package.html
To import the build key into your personal public GPG keyring, use the gpg --import command. After downloading the MySQL package and before attempting to install it, ensure that the package is intact and has not been tampered with. There are two ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/collection-indexing.html
If present, they are used as parameters for ST_GeomFromGeoJSON() when converting GEOJSON data into MySQL native GEOMETRY values. To make large collections of documents more efficient to navigate you can create an index based on one or more fields ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-js/en/method-chaining.html
X DevAPI supports a number of modern practices to make working with CRUD operations easier and to fit naturally into modern development environments. This section explains how to use method chaining instead of working with SQL strings of JSON ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/collection-indexing.html
If present, they are used as parameters for ST_GeomFromGeoJSON() when converting GEOJSON data into MySQL native GEOMETRY values. To make large collections of documents more efficient to navigate you can create an index based on one or more fields ...
https://dev.mysql.com/doc/x-devapi-userguide-shell-python/en/method-chaining.html
X DevAPI supports a number of modern practices to make working with CRUD operations easier and to fit naturally into modern development environments. This section explains how to use method chaining instead of working with SQL strings of JSON ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-advisor-auto-encoding.html
mysql> SELECT log->>"$.sql" AS "SQL Script" FROM sys.heatwave_autopilot_report WHERE type = "sql" ORDER BY id; To concatenate generated DDL statements into a single string that can be copied and pasted for execution, issue the statements that follow. Using the right string column encodings can reduce the amount of memory required on MySQL HeatWave nodes and improve query ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-advisor-report-table.html
From MySQL version 8.0.32 onwards, the heatwave_advisor_report table, is deprecated and replaced with the heatwave_autopilot_report table in the sys schema. When MySQL runs Advisor, it sends detailed output to the heatwave_advisor_report table in ...
https://dev.mysql.com/doc/heatwave/en/mys-hw-async-exec-prepared-stmt.html
Syntax Example mysql> CALL mysql_tasks.execute_prepared_stmt_async('DO SLEEP(5); SELECT JSON_OBJECT("Async Task completed at", now()) into @task_result', NULL, 'DemoAsyncTask', NULL, @task_id); In this example, the first SQL statement DO SLEEP(5) ...