Showing entries 1003 to 1012 of 44804
« 10 Newer Entries | 10 Older Entries »
Using the Oracle Cloud TypeScript SDK Part 2 - Managing MySQL HeatWave Instances

In this post we will discuss how to use the OCI TypeScript/JavaScript SDK to retrieve information about a specific MySQL HeatWave instance and how to start/stop that instance programatically.

MySQL InnoDB: Primary Key always included in secondary indexes as the right-most columns… or not

Recently during the Swedish MySQL User Group (SMUG), I presented a session dedicated to MySQL InnoDB Primary Keys.

I forgot to mention a detail that many people are not aware, but Jeremy Cole has pointed out.

Primary Key always included in secondary indexes at the right-most column

When we define a secondary index, the secondary index includes the Primary Key as the right-most column of the index. It’s silently added, meaning that it’s not visible but it’s used to point back to the record in the clustered index.

This is an example with a table having a Primary Key composed of multiple columns:

CREATE TABLE `t1` (
`a` int NOT NULL,
`b` int NOT NULL, 
`c` int NOT NULL,
`d` int NOT NULL,
`e` int …
[Read more]
Using the component_keyring_encrypted_file Encrypted File-Based Keyring Component in MySQL

This is the third article in the series dedicated on transition from keyring plugins to keyring components. In the previous article we have discussed component_keyring_file (file-based keyring component), how different is it from the keyring_file plugin and how to install it using a manifest and configuration file. In this post we will be discussing component_keyring_encrypted_file […]

Using the Oracle Cloud TypeScript SDK Part 2 – Managing MySQL HeatWave Instances

This post is the second in a series that will demonstrate how to view and manage MySQL HeatWave instances in Oracle Cloud Infrastructure (OCI). Oracle offers several SDKs that can be used to view and manage resources in OCI. In this post, we will discuss how to leverage the TypeScript/JavaScript SDK to retrieve information about a single MySQL HeatWave instance and how we […]

Using the component_keyring_file File-Based Keyring Component in MySQL

This is the second article in the series dedicated on transition from keyring plugins to keyring components. In the previous article we have discussed MySQL’s effort in transitioning from keyring plugins to keyring components, the advantages of keyring components over keyring plugins and how to migrate from a keyring plugin to a keyring component. In […]

MySQL Shorts – Episode #56 Released

The latest Episode of MySQL Shorts is now available! Check out Episode 56 on the MySQL YouTube Channel to learn how to return tabular data as a list.

MySQL Shorts - Episode #56 Released

Episode #56 of MySQL Shorts in now available!

Using the Oracle Cloud TypeScript SDK Part 1 – Listing MySQL HeatWave Instances

This post is the first in a series that will demonstrate how to view and manage MySQL HeatWave instances in Oracle Cloud Infrastructure (OCI). Oracle offers several SDKs that can be used to view and manage resources in OCI. In this post, we will discuss how to leverage the TypeScript/JavaScript SDK to retrieve a list of MySQL HeatWave instances for a given compartment. […]

Using the Oracle Cloud TypeScript SDK Part 1 - Listing MySQL HeatWave Instances

Oracle offers a variety of SDKs for interacting with Oracle Cloud Infrastructure resources. In this post we discuss how to list the MySQL HeatWave instances for a given compartment.

Unveiling the Highlights: A Look Back at MySQL Belgian Days 2024

Our MySQL Belgian Days were a complete success. With 120 participants, the room was packed throughout the 2 days from the first to the last session. A record for this event ! The audience was made up of customers (some from very far away), users, contributors, community members and, of course, old friends. The atmosphere […]

Showing entries 1003 to 1012 of 44804
« 10 Newer Entries | 10 Older Entries »