SQL> create or replace function isnumeric ( p_string in varchar2) return boolean as v_check number; begin v_check := p_string; return TRUE; exception when others then return FALSE; end; /
Bowo --- In [email protected], "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > Dear members, > > Di Oracle ada nggak fungsi IsNumeric, yg memberi True bila argumennya bisa > dirubah ke numeric ? > Kalo bikin fungsi sendiri, bgmn yah caranya ? > > TIA > Salam > Ariefn. > ------------------------ Yahoo! Groups Sponsor --------------------~--> Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life. http://us.click.yahoo.com/KIlPFB/vlQLAA/TtwFAA/PhFolB/TM --------------------------------------------------------------------~-> -- -----------I.N.D.O - O.R.A.C.L.E--------------- Keluar: [EMAIL PROTECTED] Website: http://indo-oracle.lizt.org (NEW) ----------------------------------------------- Bergabung dengan Indonesia Thin Client User Groups, Terminal Server, Citrix, New Moon Caneveral, di: http://indo-thin.vze.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/indo-oracle/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

