Showing entries 841 to 850 of 44807
« 10 Newer Entries | 10 Older Entries »
Running External Scripts in MySQL Shell

MySQl Shell offer many features to make life easier for DBAs and developers. In this post we talk about how to execute external JavaScript, Python, or SQL files indie MySQL Shell.

Executing System Commands in MySQL Shell

Over the last few years, I have become quite smitten with MySQL Shell. For those who may not be familiar with MySQL Shell, it is a new(ish) command line interface (CLI) for connecting to and managing MySQL instances. During a recent episode of Inside MySQL: Sakila Speaks, Fred and I talked to Miguel Araujo about many of the helpful […]

Where can you find MySQL during June – August 2024

It’s a time to announce a list of conferences and events where you can find the MySQL Community and the MySQL team during June – August 2024 plus one conference at the end of May. See the list below. May 2024: June 2024: July 2024: August 2024:  

Where can you find MySQL during June - August 2024

Where is MySQL, 6-9, 2024

Making my MySQL InnoDB Cluster safe from naughtiness

TL;DR: Make sure to run “SET persist_only disabled_storage_engines=’MyISAM’, persist sql_generate_invisible_primary_key=ON;” on all instances and restart each one in your MySQL InnoDB Cluster.

Ok, what does “safe from naughtiness” mean?:
– Anyone creating tables that aren’t InnoDB, as this doesn’t make sense, after all, it is an “InnoDB” cluster.
– Making sure all tables have a Primary Key (invisible or not).
– Making sure that my (invisible) primary keys are visible to the cluster as it will rightfully complain if they aren’t!

This basically means that once you’ve got it all up and running you won’t run into those horrible situations whereby someone, somewhere, creates a MyISAM table that didn’t have a Primary Key and thus leave you with a broken cluster.

Eg.

MySQL rtnode-01:3306 ssl JS > vlc.status()
{
 "clusterName": "VLC",
 "clusterRole": "PRIMARY", …
[Read more]
Using Oracle Analytics Cloud with MySQL HeatWave

MySQL HeatWave is the MySQL DBaaS provided by Oracle in OCI and some other clouds. Compared to the vanilla MySQL, one of the key features of the service is that it allows you to run analytics queries (aka OLAP) very quickly using the HeatWave cluster. You can also run such queries on files using LakeHouse. […]

Using Oracle Analytics Cloud with MySQL HeatWave

In this article, we will see how to connect OAC to MySQL HeatWave in OCI.

Using Oracle Analytics Cloud with MySQL HeatWave

MySQL HeatWave is the MySQL DBaaS provided by Oracle in OCI and some other clouds. Compared to the vanilla MySQL, one of the key features of the service is that it allows you to run analytics queries (aka OLAP) very quickly using the HeatWave cluster. You can also run such queries on files using LakeHouse.

When we talk about analytics, we also think about data visualization solutions. In OCI, you can use Oracle Analytics Cloud.

In this article, we explore the procedure to establish a connection between Oracle Analytics Cloud (OAC) and a MySQL HeatWave DB instance within Oracle Cloud Infrastructure (OCI).

Deploying OAC

We consider that you already have a DB System up and running in OCI. The first step is then to deploy an Analytics …

[Read more]
MySQL NDB Cluster 8.4 – What’s new

The MySQL NDB Cluster Development team is happy to announce MySQL NDB Cluster 8.4 (LTS) is available for download. This release includes new features made available under Innovation Releases – 8.1, 8.2 and 8.3 – and new features released under 8.4 which are described below. MySQL NDB Cluster binary and source packages are available to […]

Debugging JavaScript Stored Functions in MySQL

MySQL Enterprise and MySQL HeatWave now support writing stored functions and procedures using JavaScript. In this post we show how to debug JavaScript code used to create stored functions.

Showing entries 841 to 850 of 44807
« 10 Newer Entries | 10 Older Entries »