MySQL Database Operations: Creation, Modification, and Querying Techniques
Creating a Practice Database and Tables
The standard MySQL database for common operations is db_school, while db_practice serves as a learning environment. Understanding how to create tables, modify their structure, and define constraints is fundamental for effective database management.
Setting Up the Practice Environment
# Remove existing ...
Posted on Sun, 17 May 2026 15:11:41 +0000 by billybathgate
Querying All Records from a MySQL Table Using JDBC
Database Table Setup
First, create a sample MySQL table for demonstration:
DROP TABLE IF EXISTS products;
CREATE TABLE products (
id INT PRIMARY KEY AUTO_INCREMENT,
product_name VARCHAR(50),
vendor_name VARCHAR(50),
price INT,
details VARCHAR(200),
available INT
);
INSERT INTO products (product_name, vendor_name, price ...
Posted on Sun, 17 May 2026 10:31:06 +0000 by edwardtilbury
MySQL Performance Stress Testing Tool: mysqlslap
Overview
The mysqlslap tool is a built-in MySQL benchmark utility that has been available since version 5.1.4. It simulates multiple concurrent clients accessing MySQL to execute stress tests, providing detailed performance reports on SQL execution. The tool is particularly useful for comparing different storage engines (such as MyISAM, InnoDB) ...
Posted on Sun, 17 May 2026 06:30:42 +0000 by ranbla
Installing MariaDB on Ubuntu Systems
MariaDB Installation Process
Execute the following command to install both server and client components:
sudo apt-get install mariadb-server mariadb-client
Verifying Installation Status
Checking Version
mysql --version
Example output:
mysql Ver 15.1 Distrib 10.1.29-MariaDB, for debian-linux-gnu (x86_64)
Checking Service Status
sudo service m ...
Posted on Sun, 17 May 2026 05:44:59 +0000 by TheFilmGod
Architecting a Campus E-Auction Platform with Spring Boot and Vue.js
System Architecture Overview
A digital campus auction platform requires a strict separation between client-side rendering, backend service orchestration, and relational data persistence. The implementation utilizes Spring Boot for RESTful API delivery, Vue.js for a reactive single-page application frontend, and MySQL to maintain transactional i ...
Posted on Sun, 17 May 2026 03:18:56 +0000 by Uzm
Database Operations Fundamentals
Data Definition Language (DDL)
Database Operations
Creating Databases
-- Create a new database
CREATE DATABASE db_name;
-- Create database only if it doesn't exist
CREATE DATABASE IF NOT EXISTS db_name;
-- Create database with specific character set
CREATE DATABASE db_name CHARACTER SET charset_name;
-- Example: Create db4 with gbk charset ...
Posted on Sat, 16 May 2026 23:49:13 +0000 by object
Automated MySQL Backup Strategy Using Shell Scripting and Remote Synchronization
Data integrity is a critical component of server administration. Relying on manual intervention often leads to inconsistent recovery points. To mitigate this risk, an automated solution utilizing a Bash script provides a reliable mechanism for performing consistent dumps, compressing the output, and securely replicating archives to a remote ser ...
Posted on Sat, 16 May 2026 22:41:12 +0000 by treilad
Understanding MySQL Online DDL Mechanics
MySQL Online DDL Mechanics
Table of Contents- MySQL Online DDL Mechanics - Introduction - Usage - Algorithm Options - Suitable Scenarios (from 8.0) - Unsupported DDLs - Execution Flow - Summary
Introduction
Data Definition Language (DDL) operations in MySQL, such as adding or removing columns and indexes, traditionally required a full table rec ...
Posted on Sat, 16 May 2026 22:03:06 +0000 by papacostas
Automated Data Ingestion Pipeline Using Kubernetes and Docker Containers
Infrastructure Setup
Prerequisites
Ensure the cluster infrastructure is active on CentOS 7 hosts. The node toploogy includes:
Role
IP Address
Master Node
192.168.138.110
Slave Node 1
192.168.138.111
Slave Node 2
192.138.138.112
1. Database Provisioning
1.1 Resource Isolation
Define a dedicated namespace to isolate database resourc ...
Posted on Sat, 16 May 2026 21:18:39 +0000 by Gregg
Implementing Multiple Data Sources in Spring Boot with AOP
Implementing Multiple Data Sources in Spring Boot with AOP
In this article, we'll explore how to configure a Spring Boot application with multiple database connections using Aspect-Oriented Programming (AOP). We'll use HikariCP as the connection pool, MybatisPlus as the ORM framework, and demonstrate connections to both MySQL and SQL Server dat ...
Posted on Sat, 16 May 2026 17:23:36 +0000 by mk_silence