oracle自定义函数的执行时间
2007-06-02 16:09:08 来源:WEB开发网if (len = 15) then
-- 检查是否全为数字,否则转换操作会抛异常,导致程序崩溃,ascii('0') = 48, ascii('9') = '57'
--for i in 1 .. 15 loop
WHILE i <= 15 LOOP
--ch := substr(id, i, 1); -- 非数字会报错
c := ascii(substr(id, i, 1));
if c < 48 or c > 57 then
exit;
end if;
i := i + 1;
end loop; IF i = 16 THEN
trans := TRUE;
ret := '19' || substr(id, 7, 2);
END IF;
end if;
if (len = 18) then
-- 2006-10-18 luocm
-- 检查是否全为数字,否则转换操作会抛异常,导致程序崩溃,ascii('0') = 48, ascii('9') = '57'
--for i in 1 .. 17 loop
WHILE i <= 17 LOOP
--ch := substr(id, i, 1); -- 非数字会报错
c := ascii(substr(id, i, 1));
if c < 48 or c > 57 then
exit;
end if;
i := i + 1;
end loop;
c := ascii(substr(id, 18, 1));
--if i <> 18 OR (c <> 88 AND c <> 120) OR c < 48 or c > 57 THEN -- 第18位为[0-9xX]
if i = 18 AND (c = 88 OR c = 120 OR c >= 48 or c <= 57) THEN -- 第18位为[0-9xX]
trans := TRUE;
ret := substr(id, 7, 4);
end if;
end if;
IF trans = FALSE THEN
i := 1;
WHILE i <= 8 LOOP
c := ascii(substr(birthday, i, 1));
if c < 48 or c > 57 then
exit;
end if;
i := i + 1;
end loop;
IF i > 8 THEN
yyyy := substr(ltrim(rtrim(birthday)), 1, 4);
IF yyyy < 1900 OR yyyy > 2000 THEN
ret := '';
ELSE
ret := yyyy;
END IF;
ELSE
ret := yyyy;
END IF;
END IF;
RETURN ret;
end f_extract_birthday;
- ››oracle 中 UPDATE nowait 的使用方法
- ››Oracle ORA-12560解决方法
- ››Oracle 10g RAC 常用维护命令
- ››Oracle如何在ASM中定位文件的分布
- ››Oracle的DBMS_RANDOM.STRING 的用法
- ››oracle 外部表导入时间日期类型数据,多字段导入
- ››Oracle中查找重复记录
- ››oracle修改用户登录密码
- ››Oracle创建删除用户、角色、表空间、导入导出等命...
- ››Oracle中登陆时报ORA-28000: the account is lock...
- ››Oracle数据库在配置文件中更改最大连接数
- ››Oracle中在pl/sql developer修改表的两种方式
更多精彩
赞助商链接