What does the Broadcom acquisition mean for VMware’s future?ASDF_MEDIAshutterstock

What does the Broadcom acquisition mean for VMware’s future?

Even after the Broadcom acquisition, VMware remains a cornerstone of virtualisation and private cloud technology. But what strategic advantages does it provide for businesses? This article delves into the benefits of continuing with VMware and how Broadcom Pinnacle Partners like…

Read more
How to set up a MariaDB Galera cluster on Ubuntu 20.04

How to set up a MariaDB Galera cluster on Ubuntu 20.04

A MariaDB Galera cluster is a highly available and distributed database cluster that uses Galera technology for data replication. All nodes in the cluster are of equal value and can process read and write operations simultaneously. Thanks to multi-master replication and automatic…

Read more
How to use SHOW TABLES in MariaDBGorodenkoffshutterstock

How to use SHOW TABLES in MariaDB

With SHOW TABLES, MariaDB allows you to list all tables within a database, making it easier to access or delete tables. In this article, we’ll take a look at the structure of this MariaDB statement and how to use it. Using simple examples, we’ll also show you how to filter…

Read more
How to permanently delete tables using MariaDB DROP TABLEStock-Assoshutterstock

How to permanently delete tables using MariaDB DROP TABLE

To permanently delete one or more tables in MariaDB, the `DROP TABLE` command can be used. Because the command irrevocably removes specified tables, it should only be accessible to authorized users. In this dedicated article, we will explain more about the command and its options…

Read more
What are the different data types in MariaDB?

What are the different data types in MariaDB?

MariaDB data types can be divided into five categories. While numeric data types and time and date specifications are for numbers, strings can contain various characters. The database management system also allows geometric data types and some types of data that do not fall into…

Read more
How to query and merge records using MariaDB JOINMaksim Kabakoushutterstock

How to query and merge records using MariaDB JOIN

When working with several tables, it’s often necessary to combine data records. In MariaDB, you can use the JOIN statement to do this. In this article, we explain how the command works and how the different variants INNER JOIN, LEFT OUTER JOIN and RIGHT OUTER JOIN differ from…

Read more
How to permanently delete a database using DROP DATABASE in MariaDBMr. Kosalshutterstock

How to permanently delete a database using DROP DATABASE in MariaDB

If a database is no longer required, it’s advisable to delete it from the server. In MariaDB, the command to do this is DROP DATABASE. Since this command permanently removes the database, it should only be used after thorough consideration, as it will also delete all tables and…

Read more
How to use MariaDB CREATE DATABASEREDPIXEL.PLShutterstock

How to use MariaDB CREATE DATABASE

If you want to create a new database using the free and open-source relational database management system MariaDB, you can use the CREATE DATABASE command. This article provides a detailed explanation of how the command functions and explores various optional parameters that can…

Read more
How to use MariaDB CREATE TABLENDAB Creativityshutterstock

How to use MariaDB CREATE TABLE

If you want to create a new table, you can use CREATE TABLE in MariaDB to do so. The statement not only means that a new table is created, but also creates the individual columns and the data types permitted in them. In this article, we explain exactly how CREATE TABLE works in…

Read more
How to use CREATE USER in MariaDB

How to use CREATE USER in MariaDB

To create a new account, you can use the CREATE USER command in MariaDB. In this article, we’ll not only explain step by step how to use the command and create a new user, but also show you which user rights you can assign to users. We’ll also explore different clauses you can…

Read more
Page top