Installation and Basic Configuration of MySQL 5.7 on Linux
Introduction
Data is stored in various formats including text, images, and video, which computers interpret as binary or hexadecimal machine language. Depending on the importance and complexity of the information, different management strategies are required. Databases are best suited for storing critical data with complex relationships.
Datab ...
Posted on Sun, 21 Jun 2026 16:51:12 +0000 by misterph
Comprehensive Workflow for Deploying and Administering MySQL 8.0 on Windows
Environment Variable Configuration
Establish system paths to execute utilities globally from any directory. Access System Properties through the control panel or desktop shortcuts. Navigate to Advanced settings followed by Environment Variables. Within the System variables section, create a new entry named MYSQL_INSTALL_DIR assigning it to your ...
Posted on Tue, 16 Jun 2026 16:28:30 +0000 by sprinkles
Greenplum Automatic Partition Management: A Comprehensive Guide
Greenplum 6 provides robust partitioning capabilities that allow for efficient data management. This guide presents an enhanced automatic partitioning solution that supports daily, monthly, and yearly partitioning strategies with dynamic future partition creation.
Partition Management Function
The following function automates partition creatio ...
Posted on Wed, 10 Jun 2026 16:14:27 +0000 by leetee
Deploying Oracle Database 11g Release 2 on CentOS Linux Systems
System Preparation and Kernel Tuning
Establish dedicated system accounts and directory structures before initiating the deployment. Use a privileged terminal session to execute the following group and user provisioning commands:
groupadd dbadmin_grp
groupadd dboper_grp
useradd -g dbadmin_grp -G dboper_grp -m odbsvc
passwd odbsvc
id odbsvc
Desi ...
Posted on Thu, 04 Jun 2026 16:19:30 +0000 by anikin
Essential MySQL Command Parameters
1. Common mysql Command Options
1. --auto-rehash (tab completion for table names and fields)
# mysql -u root --auto-rehash
# vim my.cnf
[mysql]
auto-rehash
2. -B (disable history file, non-interactive mode)
# mysql -uroot -D test -e "show tables;" -B
3. -E (vertical output for query results)
# mysql -uroot -D test -e "sho ...
Posted on Wed, 03 Jun 2026 16:33:41 +0000 by Vinze
Understanding the Oracle 'db file sequential read' Wait Event
The db file sequential read wait event represents time spent waiting for single-block I/O operations. Unlike db file scattered read, which fetches multiple blocks into non-contiguous SGA buffers, sequential reads target one block at a time—typically into contiguous memory locations within the process workspace. It commonly arises when accessing ...
Posted on Tue, 02 Jun 2026 18:18:10 +0000 by jrd
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
Analyzing and Optimizing MySQL Table Space Usage
-- Identify databases with unused space
SELECT
table_schema AS database_name,
table_name,
data_free,
ENGINE
FROM information_schema.tables
WHERE table_schema NOT IN ('sys', 'mysql', 'performance_schema', 'information_schema', 'test')
AND data_free > 0;
-- Calculate total storage per database
SELECT
table_schema AS dat ...
Posted on Fri, 15 May 2026 13:26:36 +0000 by huszi001
Mastering MySQL Binary Logs: Management, Inspection, and Selective Recovery
Core Operational Controls
The binary log captures server-side data modifications and schema changes, acting as the backbone for asynchronous replication, crash recovery, and auditing. Effective administration requires precise control over log generation, retention, and extraction workflows.
-- Query active log files along with current disk util ...
Posted on Sun, 10 May 2026 16:11:51 +0000 by skeener
Restoring MySQL Master-Slave Replication Consistency Without Downtime or Locking
This procedure assumes that binary logging (bin-log) is already enabled on the master server, as it is a prerequisite for replication recovery.First, create a dedicated user with appropriate privileges to facilitate the data backup process:[root@server]# mysql -uroot -p
mysql> GRANT ALL PRIVILEGES ON *.* TO 'backup_admin'@'192.168.10.5' IDENTIF ...
Posted on Sun, 10 May 2026 02:45:03 +0000 by Bodhies