Home about IT Motivation Course Sales Project About Me

Tuesday, January 01, 2013

transaction not connected on oracle and PowerBuilder 9

sometime we got message when develop login form use Powerbuilder 9 and oracle11g database:
At this issue: the PC installed Oracle11g & PB9 both.
open lgin form from PB is ok , but when open application file (exe file). Got message:

"Transaction not connected"

no detail information about it;
please check below:
(1) make sure that PB...90.DLL not double in that PC.
(2) if have double PB...90.DLL please going to control panel - system - environment - path
(3) then check the path only pointed to ONE LOCATION of PB...90. DLL

hope this help you

he he he

set monitor selalu on di ubuntu server 8.10

kadang kala kita ingin monitor display selalu on ( tidak save mode) untuk keperluan memonitor jaringan.
Berikut caranya:

pada terminal ketik:
# setterm -powersave off - blank 0

 Tapi , ketika server di shutdown, maka kembali ke kondisi semula ( auto save mode).
agar kondisi diatas bisa selalu on. maka script tadi harus di auto run tiap booting.
baca berikut caranya.

script auto run tiap booting di Ubuntu server 8.10

berikut cara membuat script agar otomatis jalan setiap booting;
(1). buka  # nano /etc/init.d
(2). buat scriptnya, misal script agar display monitor selalu on ( tidak save mode):
       setterm -powersave off - blank 0
(3)  simpan nama filenya: misal sebagai:  skrip.sh
(4) buat script tadi agar bisa di execusi:
# sudo chmod +x /etc/init.d/skrip.sh
(5) buat agar script tadi bisa di strat ketika boot up

            # sudo update-rc.d skrip.sh defaults
(6) selesai. dan coba shutdown
          # sudo shutdown -h now
(7)  untuk melihat isi semua file di direktory tersebut,:
         # ls /etc/init.d/

di sarikan dari berbagai sumber.