Tag: Open Source

Community

Roles on MySQL 8.0

(Gabriela D’Ávila) This is a feature that will make life the many DevOps and DBAs easier. Believe it or not, a lot of people control access to the database by sharing the same username and password. Which is completely insecure for a number of reasons:

Community

Varchar fields on MySQL 5.7

(Gabriela D’Ávila) VARCHAR and CHAR are used to store strings. VARCHAR stores varying length and CHAR always use the same exact size no matter the size of the string. For example, CHAR(4) will always store 4 bytes, whereas VARCHAR(4) will store up to 5 bytes. See documentation.