My Blog

All about my activities, Ideas and everything.

Month: August, 2009

Tutorial : DB2 V9 MERGE (A.K.A UPSERT)

Well, I am not a DBA and I don’t know something like this very much. But my company encourage me to take a course on DB2 V.9. And I have one command that I wanted to remember and I know that it will benefit me later on. MERGE So, basically, you have to table and [...]

One asian in Britain.

In the economic down turn, I have an interesting idea at least for me to experiment on how one asian man can be living in the UK. I know that this is the the right time, it is not always the right time actually. I don’t know. I hope that everybody could have at least [...]

How-to : Install tomcat6 Ubuntu

1. 1sudo apt-get install tomcat6 2. Insert this lines into /var/lib/tomcat6/conf/tomcat-users.xml 12345678910<tomcat-users>     <role rolename="admin"/>     <role rolename="manager"/>     <role rolename="tomcat"/>     <role rolename="role1"/>     <user username="admin" password="your_password" roles="manager,admin"/>     <user username="tomcat" password="tomcat" roles="tomcat"/>     <user username="role1" password="tomcat" roles="role1"/>     <user username="both" password="tomcat" roles="tomcat,role1"/> </tomcat-users> 3. Restart [...]