Archive | September 2010

Seperti hewan aku di dekat-Mu…

Baru-baru ini saya membeli sepasang hamster winter untuk dipelihara. Ini adalah hewan peliharaan pertama saya.  Ternyata susah juga ya mengerti kemauan hamster. Pas nyari hamster untuk dibeli, sewaktu saya memasukkan tangan ke kandang hamsternya, salah satu hamster tersebut langsung naik ke tangan saya. Jarang-jarang kan hamster naik ke tangan orang. Akhirnya saya beli yg itu dan 1 lagi pasangannya. Tapi sekarang kalau saya kasi tangan saya, dia malah pegang2 lalu digigit. Dikira makanan kali ya.. hehee..

Kemudian saya jadi teringat khotbah dari Ko Ronald Oroh pas PD Rabu GKY. Pada saat itu membahas tentang mazmur Asaf (Mazmur 73). Saya jadi terpikir tentang ayat 22: “aku dungu dan tidak mengerti, seperti hewan aku di dekat-Mu.” Mungkin seperti hamster itu, saya sering tidak mengerti kebaikan Tuhan. Saat hamster itu mau dielus-elus, malah digigit. Saat mau dipegang, malah lari. Hamster itu juga senang kalau dikasih popcorn. Saat diberikan, langsung dimakan dan pemberinya dicuekin.

Yang ga bener dari perbandingan ini adalah saya tidak mengerti kemauan hamster saya. Sedangkan Tuhan sangat mengerti saya, bahkan lebih dari saya mengerti diri sendiri. Ayat berikutnya merupakan ayat yang sangat menghibur. Ay 23-24: “Tetapi aku tetap di dekat-Mu; Engkau memegang tangan kananku. Dengan nasihat-Mu Engkau menuntun aku, dan kemudian Engkau mengangkat aku ke dalam kemuliaan.” Walaupun saya dungu dan tidak mengerti, Tuhan tetap di dekat saya dan membimbing saya.

Amazing grace how sweet the sound
That saved a wretch like me…

ORA-01031: insufficient privileges, when using sqlplus / as sysdba

If you are trying to access Oracle Database using

sqlplus / as sysdba

and getting error
ERROR:
ORA-01031: insufficient privileges

Open your sqlnet.ora file in $ORACLE_HOME/network/admin and add this:

SQLNET.AUTHENTICATION_SERVICES = (NTS)

How to completely disable DEP in Windows Server 2003

Data Execution Prevention (DEP) is a set of hardware and software technologies that perform additional checks on memory to help prevent malicious code from running on a system. In Microsoft Windows XP Service Pack 2 (SP2) and Microsoft Windows XP Tablet PC Edition 2005, DEP is enforced by hardware and by software.

The primary benefit of DEP is to help prevent code execution from data pages. Typically, code is not executed from the default heap and the stack. Hardware-enforced DEP detects code that is running from these locations and raises an exception when execution occurs. Software-enforced DEP can help prevent malicious code from taking advantage of exception-handling mechanisms in Windows.

Quoted from http://support.microsoft.com/kb/875352

Sometimes DEP block some program to run. To Add exception to DEP, you can go to:

  1. Klik Start, right click on My Computer and choose Properties.
  2. Go to Advanced tab and click Settings in Performance block.
  3. Go to Data Execution Prevention tab, click Add to add exception to specific program to run.

If you want to completely turn DEP off, you can do this:

  1. Explore C:\
  2. Click Tools >> Folder Option >> Views
  3. Uncheck Hide Protected operating system files (Recommended) and Hide extensions for known file types
  4. Click Apply >> OK.
  5. Edit Boot.ini file.
  6. Modify the  /noexecute= to /noexecute=alwaysoff to disasble DEP entirely
  7. Save and reboot your computer.