Oracle学习笔记:判断表是否存在函数is_table_exists

更新时间:2023-06-14 06:06:58 阅读: 评论:0

Oracle学习笔记:判断表是否存在函数is_table_exists
在 Oracle 中可以利⽤系统表 ur_tables 和 all_talbes 判断表是否存在,但有时在存储过程中确认表是否存在并不⽅便,因此有必要封装⼀个函数,进⾏调⽤。
下⾯是函数的内容:
-- 判断表是否存在
create or replace function temp_is_table_exists(is_table_name varchar2, is_owner_name varchar2 default null)
return boolean is
vcproc_name varchar2(100) := 'TEMP_IS_TABLE_EXISTS';
vncount number(10);
vnerr_code number;
vcerr_text varchar2(2000);
vcowner_name varchar2(1000);
vctable_name varchar2(1000);
begin
vncount := 0;
vcowner_name := is_owner_name;
vctable_name := is_table_name;
if vcowner_name is null then
lect count(1) into vncount
from ur_tables
trtc
where table_name = upper(vctable_name);
英语论坛
digitalplaygroundel
steel door上海维丽娅lect count(1) into vncount
酒吧侍者
from all_tables
where owner = upper(vcowner_name)
and table_name = upper(vctable_name);
true love歌词end if;door
if vncount > 0 then
return true;
el
return fal;
end if;
exception
when others then
vnerr_code := sqlcode;
vcerr_text := sqlerrm;
-- 记录异常以备查
pro_cwh_test(vcproc_name, vctable_name, vnerr_code, vcerr_text);
rollback;
commit;
rumpend temp_is_table_exists;
其中,⼊参为:表名 + ⽤户名,⽤户名可缺省。
最后⾯ exception 为异常抛出部分,记录进⽇志表。
-- 异常抛出
exception when others then
-- sqlcode 异常编码  -12170
-- sqlerrm 信号字符串  ORA-12170: TNS:Connect timeout occurred
经测试验证,return 为布尔型的函数不能够直接通过 lect 执⾏。
神奇
lect is_table_exists('temp_cwh_city') from dual;
-- 报错
所以,该函数只能⽤于存储过程中。迪斯尼神奇英语全集

本文发布于:2023-06-14 06:06:58,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/78/950392.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:是否   记录   函数
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图