Showing entries 606 to 615 of 44803
« 10 Newer Entries | 10 Older Entries »
SQL Statement Management

It’s very difficult explaining to students new to relational databases how SQL works. There are many parts that seem intuitive and then there are others that confuse and confound.

For beginners, the idea that a SQL statement is simply a text string that you must dispatch to a SQL statement processing engine is new. That’s because they use an Integrated Development Environment (IDE) that hides, or abstracts the complexity, of how SQL executes.

I start my core SQL class by demonstrating how to run a text literal query without a FROM clause in MySQL Workbench, like this:

SELECT 'Hello World!' AS "Output";

After writing the query, I highlight everything except the semicolon and click the lightening bolt that dispatches the static string to the SQL statement engine. They see this result:

Then, I launch a mysql Monitor session and write the query with a semicolon to dispatch the SQL …

[Read more]
Installing Example Databases on HeatWave Using Cloud Shell and MySQL Shell

Installing Example Databases on HeatWave Using Cloud Shell and MySQL Shell

Using Airbyte to migrate data to Oracle HeatWave on OCI

Recently I was asked by one of our HeatWave users about using Airbyte to synchronize data to HeatWave in Oracle Cloud Infrastructure (OCI), specifically I was asked to provide guidance to build a test environment to test out moving data from one source to a target in HeatWave on OCI.  Based on my research on Airbyte, I chose to use the […]

Installing Example Databases on HeatWave Using Cloud Shell and MySQL Shell

Now that you have a new HeatWave DB system and want to experiment with it, but there is no data, and you’re not ready to upload your production data, you may want to install one of the example databases available on the MySQL Documentation site. But where do you begin, and how do you get […]

MySQL NDB Cluster replication: Filter replica updates

A new feature to MySQL NDB Cluster replication allows the NDB data nodes to skip sending unnecessary updates to subscribing MySQL Server nodes. These updates reflect changes that occurred in the NDB cluster, and some subscribing MySQL Servers are configured to discard changes applied by a replica or that are not to be written to binary log at all. Instead of having MySQL Servers discarding changes, the NDB data nodes do such work for them saving computing resources for the whole cluster.

How to Connect to a MySQL Database

You can connect to MySQL Server using MySQL Client (the command-line utility) and GUI tools. This article will review each method in detail.

The post How to Connect to a MySQL Database appeared first on Devart Blog.

How to Migrate MySQL Database to Amazon RDS or Aurora

In this guide, we are going to walk you through the process of transferring a database from a local machine or a traditional server to AWS with the help of the command line as well as with a convenient GUI - dbForge Studio for MySQL.

The post How to Migrate MySQL Database to Amazon RDS or Aurora appeared first on Devart Blog.

Deploying Galera Cluster on Kubernetes Webinar

Join us for an in-depth webinar where we introduce the new Helm Chart for Galera Cluster for MySQL, now available from Codership (read the blog).

In this session, we’ll guide you through the process of deploying a high-availability MySQL cluster using Galera Cluster on Kubernetes (live demo!). You’ll learn how Helm Charts can simplify Kubernetes application management, including installation and upgrades, while ensuring robust deployment automation.

This webinar is ideal for database administrators, DevOps engineers, and anyone looking to streamline their MySQL high availability deployments on Kubernetes, whether on cloud platforms like Amazon EKS, Google GKE, or on-premises solutions. We’ll cover best practices for configuration, deployment, and scaling of your Galera Cluster, and offer insights on how to …

[Read more]
Understanding Return Codes of pt-upgrade: A quick guide

Interpreting the results and exit codes of your upgrade tests is essential for assessing the process’s outcome. In this blog, we’ll explore the significance of pt-upgrade return codes and how…

The post Understanding Return Codes of pt-upgrade: A quick guide first appeared on Change Is Inevitable.

HeatWave MySQL – Quick guide: Enabling Automatic storage expansion

HeatWave MySQL now supports Automatic Storage Expansion. HeatWave Automatic Storage Expansion dynamically adjusts storage capacity to accommodate increasing database workloads, ensuring continuous operation without any downtime.  In the past, for databases which were sized correctly with initial storage capacity,  you needed to manually allocate storage capacity based on application  storage needs. Insufficient provisioning could lead […]

Showing entries 606 to 615 of 44803
« 10 Newer Entries | 10 Older Entries »