by Federico Razzoli | Nov 7, 2024 | MariaDB
MariaDB users normally connect using a password. Weak passwords are a common security problem, especially when passwords are generated by humans. However, MariaDB comes with plugins that help validating passwords to make sure they are strong enough. This article is a...
by Michael Aboagye | Jun 11, 2021 | PostgreSQL
In this article, we take a look at different ways to set row-level privileges in PostgreSQL. Before we proceed, let’s look at privileges in the context of database systems. Blixy can take care of your rows security What are privileges? Privileges a way of...
by Federico Razzoli | Aug 6, 2020 | MariaDB, MySQL
Relational DBMSs allow to grant users permissions on certain tables or columns. Privileges can also determine what a user can do – typical privileges are SELECT, INSERT,DELETE, UPDATE. Privileges are assigned or revoked using the GRANT and REVOKE statements. But how...