me,myself,english and programming..

Archive for March, 2010

Test post using blackberry wordpress app

Thursday, March 25th, 2010

This is a test post using blackberry wordpress apps.

I’m still find a way on how to upload image..just give a test first and we will see the result. :)

Thanks to ridz.sg . I came across your blog and find the link to Blackberry WordPress Apps

wordpress apps

How to connect to Internet using your Laptop with BlackBerry device

Sunday, March 14th, 2010

First, you need to have BlackBerry Desktop Manager, connect your BlackBerry to your laptop and go to IP Modem menu.

connect1

(more…)

Error: ORA-01033 ORACLE initialization or shutdown in progress

Thursday, March 11th, 2010

For some reason which I don’t know why, my oracle give me that kind of error.

Googling give me for below solution. And here I post for my future reference, and also for you if you got this same problem . ;)

Run this command first in console.

sqlplus /nolog

And after that, use these commands :

SQL> connect / as sysdba
Connected.
SQL> shutdown abort
ORACLE instance shut down
SQL> startup nomount
ORACLE instance started.
SQL> alter database mount;
SQL> alter database open;

(more…)

Drop table if Exists in Oracle

Tuesday, March 2nd, 2010

In MySQL, we can easily drop table and check whether it is exist or not using this statement.

DROP TABLE IF EXISTS MyTable

In Oracle, you can’t do that.

Solution that I found is to create a procedure and execute it.

As for my reference and others (if any) here is the script to create that procedure.

(more…)