WELCOME!

What is Pinoy? It's a slang for Filipino, a person who comes from the Republic of the Philippines, or commonly known as the Philippine Islands (PI). I am a Filipino and works as an Oracle DBA in the United States. Whenever an issue arises or just for experiments, I usually forget what I did to solve/conduct them. There must be a central location where I can put everything. Thus, this blog was born. It's a collection of ideas, tips and tricks, scripts, or anything interesting that happened to me on an Oracle database or any other stuff.

The simpler, the better! has always been my motto. You don't have to complicate things. Simple things, for me, is always easier, just like my site.

FYI, anything that is written here is based on my personal experiences and is not endorsed by any other party. Also, I will not be held liable for issues that can arise by following whatever I did. Just like any other good DBA would say... ALWAYS TEST!

Hope you can find this site helpful in whatever you need and remember, I am not a guru.

Aug 19, 2009

MySQL: db Express Error: Invalid Username/Password

The company assigned me to be the DBA of a new project. However, it will be using MySQL. One of their requirements is to have the ERD in the database. Being a newbie with MySQL, I searched the internet for software that would create an ERD. Luckily, MySQL has DB Designer 4.

After installing it and creating an ERD, I tried to save it in the database but I got an error message:

dbexpress Error: Invalid username/password

Researching again, all the documents say it has something to do with the versions of Designer4 and the database (we were using MySQL 5.1). But they suggested to reset the password using the OLD_PASSWORD function. Thus, after issuing the command:

mysql> set password for  ‘username’@'hostname’=OLD_PASSWORD(’password’);

The ERD was successfully saved in the database.

No comments:

Post a Comment