Installing MySQL 5.7.28 on CentOS 7

MySQL is a widely used open-source relational database. Installation steps can vary between versions; this guide details the process for MySQL 5.7.28. Obtain MySQL 5.7.28 from the official archives. Download the 64-bit Linux version: wget https://downloads.mysql.com/archives/community/mysql-5.7.28-linux-glibc2.12-x86_64.tar.gz Remove exist ...

Posted on Mon, 01 Jun 2026 00:02:44 +0000 by michaelphipps

SQL Index Usage Patterns and Performance Optimization Techniques

Full Value Matching When all columns in a composite index are specified with exact values, the index can be fully utilized. CREATE TABLE vendor_data ( vendor_id VARCHAR(100) PRIMARY KEY, vendor_name VARCHAR(100), vendor_alias VARCHAR(50), vendor_password VARCHAR(60), vendor_status VARCHAR(1), vendor_location VARCHAR(100) ...

Posted on Sun, 31 May 2026 19:52:24 +0000 by Masterchief07

Practical Techniques for Creating and Managing MySQL Indexes

Creating Indexes in MySQL Sample Table Definition DROP TABLE IF EXISTS tag_info; CREATE TABLE tag_info ( rec_id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Record ID', creator VARCHAR(64) DEFAULT '' COMMENT 'Creator', create_ts DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', updater VARCHAR(64) DEFAULT ...

Posted on Sat, 30 May 2026 22:51:38 +0000 by frost

Setting Up a Collaborative Wiki with MediaWiki and Docker

This guide walks through deploying MediaWiki in a Docker environment to create a shared wiki platform accessible to team members. Whether you're working within a local network or using a cloud server, Docker simplifies the installation process significantly. Prerequisites Before starting, ensure you have basic familiarity with MySQL database op ...

Posted on Sat, 30 May 2026 19:33:17 +0000 by mslinuz

Key Differences Between MySQL Storage Engines and Performance Optimization Techniques

MySQL Storage Engine Characteristics Storage engines operate at the table level. MyISAM Lacks transaction support but ensures atomicity for single operations. Does not enforce foreign keys. Uses table-level locking: read locks permit concurrent reads but block writes; write locks block both reads and writes. Write requests take precedence over ...

Posted on Sat, 30 May 2026 18:53:44 +0000 by pazzy

MySQL 5.7 Portable Version Configuration Guide for Windows

Downloading the Software Obtain MySQL 5.7.29 64-bit from the official MySQL archives or a trusted mirror. This guide uses the portable (zip) distribution which does not require installation wizard. Configuration Steps 1. Extracting the Archive Extract the downloaded zip file to your preferred installation directory. For example: E:\Database\mys ...

Posted on Thu, 28 May 2026 20:27:22 +0000 by fogofogo

Data Consistency Verification and Repair Between MySQL Primary and Replica Using Percona Toolkit

pt-table-checksum Prerequisites (Must Verify Before Running Checks) Only a single host can be specified, and it must be the IP address of the primary database. The tool adds S (shared) locks on tables during the check. If the binary log format on the primary or replica is not STATEMENT, you must use the --no-check-binlog-format option. Before ...

Posted on Thu, 28 May 2026 19:46:17 +0000 by jack bro

Differences in NULL and Empty String Handling Between Oracle and MySQL

Oracle Database Behavior In Oracle databases, the distinction between an empty string ('') and a NULL value is effectively nonexistent; the database engine interprets them identically. This behavior differs significantly from other relational database systems. To demonstrate this, we can create a test table and observe how Oracle processes thes ...

Posted on Thu, 28 May 2026 18:49:26 +0000 by gp177

Understanding MySQL Architecture and Storage Engines

MySQL System Architecture The MySQL server can be divided into four layers: Connection Layer – Includes client connections, connection pooling (authentication, caching), and thread pool management. Service Layer – Contains SQL interface, query parser, optimizer, caches/buffers, management tools, and built-in functions. It parses queries, creat ...

Posted on Wed, 27 May 2026 23:10:22 +0000 by freebie

Building a LAMP Stack on Amazon Linux AMI 2015.09 (HVM)

Restart MySQL: ServerTokens OS → ServerTokens Prod (suppress OS name in error pages) ServerSignature On → ServerSignature Off (hide Apache version in error pages) DirectoryIndex index.html index.html.var → DirectoryIndex index.html index.htm Default.html Default.htm index.php Default.php index.html.var (add index.php to default index ...

Posted on Wed, 27 May 2026 16:01:25 +0000 by shauns2007