存储过程与Oracle中常见的数据字典的用法
Posted Magic_Li
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程与Oracle中常见的数据字典的用法相关的知识,希望对你有一定的参考价值。
一个简单的存储过程:
create or replace procedure
insert_user_procedure (id in number,name in varchar2,salary in number,result out varchar2)
is begin
insert into t_user values(id,name,salary);
result:=‘调用存储过程成功‘;
Exception
when others then
result:= ‘调用存储过程出错: ‘ || SQLERRM;
end;
call insert_user_procedure(?,?,?,?)
通过数据字典查询:
select table_name from user_tables;//查询表
select sequence_name from user_sequences;//查询序列
select index_name from user_indexs;//查询索引
以上是关于存储过程与Oracle中常见的数据字典的用法的主要内容,如果未能解决你的问题,请参考以下文章