Wednesday, December 28, 2011

ORACLE - CHECK DATABASE SIZE

TO CHECK DATABASE SIZE, USE THIS SQL IN TOAD OR SQLPLUS : select ROUND( ( a.data_size + b.temp_size + c.redo_size + d.cf_size + e.bct_size) /1024/1024/1024 ) "total_GB_size" from ( select SUM(bytes) data_size from v$datafile) a, ( select NVL(sum(bytes),0) temp_size from v$tempfile) b, ( select SUM(bytes) redo_size from v$log) c, ( select SUM(block_size*file_size_blks) cf_size from v$controlfile) d, ( select NVL(bytes,0) bct_size from v$block_change_tracking) e  total_GB_size = 215 select a.data_size+b.temp_size+c.redo_size "total_size" from...

Oracle - DISPLAY LOCK ACCOUNT

This is how you select all the LOCKED account in your oracle database : SELECT username, account_status FROM dba_users where account_status = 'LOCK...

Sunday, December 18, 2011

KURSUS COLDFUSION

Saya telah mengendalikan satu kursus Latihan Pembangunan Web Applikasi menggunakan Adobe Coldfusion For Beginners pada 14 dan 15 Disember 2011 dibantu oleh Puan Masita bertempat di Makmal Komputer, Pejabat Teknologi Maklumat, UiTM Shah Alam. Pembelajaran ada dalam kaedah Virtual Box dengan OS Windows XP untuk memudahkan peserta. Berminat untuk sebarang kursus Adobe Coldfusion? email saya di hairekahfi@gmail.com Modul...

Thursday, October 6, 2011

Aku Maafkan Kamu - Malique Feat. Jamal Abdillah

Lagu ni baru dengar dekat ERA atau HOTFM... menarik, tertarik meme da bomb kata org alqaeda... jamal punya part tu memang power laa.... Tajuk: AKU MAAFKAN KAMUArtis Malique featuring Jamal AbdillahLirik: MaliqueLagu : TripdiszDikerluarkan oleh : Malique for Qarma MusiqLirik Lagu Malique Aku Maafkan Kamu Feat. Jamal AbdillahAku minta maaf di atas segala perbuatanku.Ternyata kamu lebih suci dari apa yang kubayangkanAda teratak di hujung kampungBawah...

Saturday, September 10, 2011

Photobook Easy to PDF

Assalamualaikum... Buat rakan rakan yang rajin design photobook untuk diprint... setelah penat berphotoshoot lepas raya...download aje ini program dari HP... terbaek dan mudah... output terus ke PDF...  combine dan boleh hantar ke mana mana kedai...  http://www.hp.com/global/us/en/consumer/digital_photography/free/software/photo-creations.html?jumpid=ex_r602_go/hppcstudio Bila dah buat.. jangan lupa install PDF printer... untuk jadikan...

Friday, September 9, 2011

Selamat Hari Raya Dari Kami Seisi Keluarga....

Pantun Raya Banjar untuk Semua.... Memarut ninyor sagan mengga-ngan, pemarut di-injam dirumah kulaan, tuhok hudah kita begurauan, wayahnya kini kita bemaapan "Selamat Hari Raya untuk semua rakan rakan dan semua umat manusia seantero dunia... Dari Kami Seisi Keluarga.... Jemput Datang Ke Rumah pada sepanjang Syawal tahun ini ke Syawal tahun depan... Di Alamat : No 3, Jalan Meranti 9C/KU 10, Taman Desa Permai, Meru...

Thursday, August 18, 2011

Connecting to Oracle 10G, when you have Oracle 11G Installed in your PC

When you want to connect to Oracle 10G,  when you have Oracle 11G already Installed in your PC...  you will get something like whut the hell i cannot connect to 10G now? the trick is... the Environment Path in windows will set the pirority to 11G so your 10G will be left out and get rotten suck. to solve it... just alter the environment  and set the path again so 10G is the first pirority : C:\oracle\product\10.2.0\client_1\bin;c:\app\product\11.2.0\dbhome_1\bin; how...

Wednesday, August 10, 2011

oracle timestamp tak sama dengan sysdate

jika anda select CURRENT_TIMESTAMP  dan tak sama dengan SYSDATE, maknanya setting time zone tak betul. untuk betulkan sila run berikut ( kl adalah minus 8, bukan plus 8 la ok dalam oracle nie ):          ALTER SESSION SET TIME_ZONE = '-8:0'; dah select semula disini :          SELECT CURRENT_TIMESTAMP, SYSTIMESTAMP, sysdate FROM DUAL;     haaa... kan dah sama... terbaekk...

Wednesday, August 3, 2011

Oracle Wrapping / Obfuscating

The advantages of obfuscating, or hiding, the source code of PL/SQL units with the wrap utility or wrap subprograms of the DBMS_DDL package are: It is difficult for other developers to misuse your application, or business competitors to see your algorithms. Your source code is not visible through the USER_SOURCE, ALL_SOURCE, or DBA_SOURCE data dictionary views. SQL*Plus can process the obfuscated source...

Friday, July 22, 2011

Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item

Kalau korang dpt error yang fening dan hampeh macam ni... "Windows cannot access the specified device, path, or file. You may not have the appropriate permissions to access the item." Senang aje... follow solution ini... On the Windows 2003 server, go to add/remove windows components, then uninstall the Internet Explorer Enhanced Security compone...

Thursday, June 23, 2011

Bagaimana nak panggil Satu Query Dari Coldfusion ke Oracle

contoh nak panggil package procedure dari oracle contoh ini akan tarik query... so processing adalah dari database server bukan web server... jimattttttt create or replace package test_sel_query as type cursorType is ref cursor; function test_func return cursorType; end; / create or replace package body test_sel_query as function test_func return cursorType as cursor_v cursorType; begin /* Put whatever SQL and/or processing here. I use the Oracle dictionary table ...

Monday, May 23, 2011

Dell Precision T3500 Suck!

Dell Precision T3500 Suck Big Time... Baru pakai kejap aje dan kong hardisk... bodoh punya dell, lain kali jangan pakai westerndigital@kaput punya harddisk la... dalam 3 bulan nie... dah 2 workstation jenis ni kong hardisk... nak salahkan siapa?  nasib baik aku ada buat backup sikit sikit... kalau tak... menangis tak berlaku la nasibnya... moralnya... jangan beli pc dell laa... bodoh punya pc yang menyusahkan orang... stick with HP......

Friday, May 6, 2011

ORACLE - DATE WHERE FILTER

Dalam oracle ni, senang aje kalau nak filter by date secara manual...  contoh filter secara manual dengan tarikh dan masa dimasukkan ikut suka hati sendiri aje. SELECT  COUNT(DISTINCT AUD_LOGINID) AS TOTAL FROM   AUDIT_LOGIN WHERE     DATE_LOGIN > TO_TIMESTAMP('24/03/2011 01:01:01', 'DD/MM/YYYY HH24:MI:SS') contoh filter  kalau nak ambik data yang semalam punya SELECT  COUNT(DISTINCT AUD_LOGINID)...

Friday, April 1, 2011

Coldfusion 9 Free Version - Percuma aje tak kena bayar pun....

Gambar ni takde kena mengena pun laa.... Buat mereka mereka yang sukakan benda benda free...  Coldfusion sekarang boleh dipakai secara percuma... untuk pelajar pelajar , staf dan yang terlibat dalam Universiti dan sewaktu dengannya... Kalau nak dapat percuma, kena la buat kerja sikit... scan kad matrix atau kad staf... dan kemudian hantar... tunggu aje la untuk dptkan licence coldfusion... I don't hate PHP, but I love COLDFUSION more.......