SQL DBA Certification

SQL DBA Certification

People choose to get certified for a variety of reasons. Many IT Professionals get certified to update their skills and give their resume the automatic boost that comes with certification. Other technology users may choose to get certified to become more well-rounded...
MySQL Error Invalid lost+found Schema

MySQL Error Invalid lost+found Schema

If within a MySQL instance a schema name such as “#mysql#lost+found” or “#lost+found” is listed when the “show schemas” or “show databases” command is run, it’s not a true schema but will appear when MySQL is installed in a...
MySQL User With wildcard and localhost Hosts

MySQL User With wildcard and localhost Hosts

There’s often confusion over why MySQL users are created with a host of localhost in addition to a user created with wildcard, %, for their host. create user ‘some_user’@’localhost’ identified by ‘some_password_here’; create...