Blogs Aisha Bukar in Blogs A Beginners Guide to MySQL Replication Part 3: Multi-Source Replication Welcome back to the world of MySQL Replication! If you’ve been following this series, thank you for your support! And... 18 July 2023 11 min read
Robert Sheldon Working with MySQL transactions MySQL transactions provide an effective method for executing multiple statements as a single unit, making it possible to safely modify... 15 June 2023 19 min read
MySQL Lukas Vileikis in MySQL Optimizing MySQL: Adding Data to Tables Welcome back to the MySQL optimization series! In case you haven’t been following this series, in the past couple of... 22 May 2023 21 min read
MySQL Robert Sheldon in MySQL Importing data into a MySQL database using LOAD DATA Database and development teams often load data from plain text files into their MySQL databases. The files might be used... 04 May 2023 24 min read
Blogs Aisha Bukar in Blogs A Beginners Guide To MySQL Replication Part 2: Configuring Source and Replica Servers In the first part of this series, we spoke about MySQL Replication, the different types, replication formats, benefits, and downsides,... 10 April 2023 8 min read
MySQL Robert Sheldon in MySQL Modifying MySQL data from within Python In the previous article in this series, I introduced you to how to access MySQL data from within a Python... 03 April 2023 21 min read
Blogs Aisha Bukar in Blogs A Beginners Guide to MySQL Replication Part 1: Introduction to MySQL Replication MySQL Replication is a process where data from one MySQL database known as the source (formerly called “master”) is copied... 30 March 2023 9 min read
MySQL Robert Sheldon in MySQL Retrieving MySQL data from within Python Applications of all types commonly access MySQL to retrieve, add, update, or delete data. The applications might be written in... 02 March 2023 18 min read
MySQL Lukas Vileikis in MySQL Optimizing Queries in MySQL: Optimizing Reads Optimizing read operations is one of the most prominent problems concerning any database administrator. No matter what kind of database... 31 January 2023 28 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL common table expression As with many relational database management systems, MySQL provides a variety of methods for combining data in a data manipulation... 05 January 2023 23 min read
MySQL Robert Sheldon in MySQL Subqueries in MySQL A subquery is a type of query that is embedded—or nested—into a data manipulation language (DML) statement. The data returned... 02 December 2022 22 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL DELETE statement In the last few articles in this series, you learned about three important data manipulation language (DML) statements: SELECT, INSERT,... 12 November 2022 17 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL UPDATE statement In the previous two articles in this series, you learned about SELECT and INSERT, two important data manipulation language (DML)... 28 October 2022 21 min read
MySQL Lukas Vileikis in MySQL Backing up MySQL Part 1: mysqldump mysqldump is one of the most popular database backup tools in the MySQL world. The tool is prevalent partly because... 14 October 2022 11 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL INSERT statement In the previous article in this series, I introduced you to the SELECT statement, one of several SQL statements that... 07 October 2022 22 min read
MySQL Robert Sheldon in MySQL Introducing the MySQL SELECT statement Use SELECT statements to query a MySQL database. In this article, Robert Sheldon explains how. … 15 June 2022 18 min read
MySQL Lukas Vileikis in MySQL Security in MySQL: Part Two There’s more to security in MySQL than user account privileges. In this article, Lukas Vileikis explains the other components of... 27 May 2022 10 min read
MySQL Lukas Vileikis in MySQL Security in MySQL: Part One There are several tools available to keep a MySQL database secure. In this article Lukas Vileikis discuses access control and... 20 May 2022 8 min read
MySQL Robert Sheldon in MySQL Working with MySQL stored functions Stored functions in MySQL return a scalar value and can be used in a SQL statement. In this article, Robert... 09 May 2022 17 min read
MySQL Lukas Vileikis in MySQL Optimizing my.cnf for MySQL performance Database systems often need tuning for best performance. Lukas Vileikis explains to how to optimize my.cnf for MySQL performance.… 02 May 2022 13 min read