Permalink for this post Trackback URL for this post Comments for this post in RSS format 

MySQL database creation

Setting up a database and creating a user to have access to it is quite a simple job.

(more…)

Permalink for this post Trackback URL for this post Comments for this post in RSS format 

DBA skills

I managed to get the 8i DBA course completed from Learning Tree and have not yet upgraded. I work mostly with 10g and 9i now, so I suppose I should really get to it.

Permalink for this post Trackback URL for this post Comments for this post in RSS format 

Change a users password

Changing a users password without a GUI in Oracle is pretty straight forward.

ALTER USER <username> IDENTIFIED BY <new password>;

Note the lack of quotes.

For MySQL its similar

update user set password=PASSWORD("<new password>") where User='<username>';

You will need to flush the privileges to make this effective.

flush privileges;