Ver Mensaje Individual
  #4 (permalink)  
Antiguo 16/12/2010, 06:56
jc3000
 
Fecha de Ingreso: junio-2007
Mensajes: 891
Antigüedad: 16 años, 10 meses
Puntos: 43
Respuesta: saber si es numero o no en PL/SQL

function ES_NUMBER(str in varchar2) return BOOLEAN IS
N number;
begin
N := TO_NUMBER(str);
return (TRUE);
Exception WHEN OTHERS then
return (FALSE);
end;