有关Oracle存储过程的相关问题

 我来答
机器1718
2022-11-13 · TA获得超过6769个赞
知道小有建树答主
回答量:2805
采纳率:99%
帮助的人:155万
展开全部

  详细讲解有关Oracle存储过程的相关问题

   在Oracle数据库中 数据表别名是不能加as的 例如

  select a appname from appinfo a —— 正确

  select a appname from appinfo as a —— 错误

  注释 这可能是为了防止和Oracle数据库中的存储过程中的关键字as冲突的问题

   在存储过程中 select某一字段时 后面必须紧跟into 假如select整个记录 利用游标的话就另当别论了

  

  select af keynode into kn from APPFOUNDATION af where af appid=aid and af foundationid=fid; 有into 正确编译 select af keynode from APPFOUNDATION af where af appid=aid and af foundationid=fid; 没有into 编译报错 提示 Compilation Error: PLS : an INTO clause is expected in this SELECT statement

   在我们利用select……into……语法时 必须先确保数据库中有该条记录 否则会报出 no data found 异常

  可以在该语法之前 先利用select count(*) from 查看数据库中是否存在该记录 如果存在 再利用select……into……

   请注意 在存储过程中 别名不能和字段名称相同 否则虽然编译可以通过 但在运行的阶段会报错

  

  select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid; 正确运行 select af keynode into kn from APPFOUNDATION af where af appid=appid and af foundationid=foundationid; 运行阶段报错 提示 ORA :exact fetch returns more than requested number of rows

   在存储过程中 关于出现null的问题

  假如有一个表X 定义如下

   create table X(id varchar ( ) primary key not null vcount number( ) not null bid varchar ( ) not null 外键 );

  假如在存储过程中 使用如下语句

  select sum(vcount) into fcount from X where bid= xxxxxx 如果X表中不存在bid= xxxxxx 的记录 则fcount=null(即使fcount定义时设置了默认值 例如 fcount number( ) = 依然无效 fcount还是会变成null) 这样以后使用fcount时就可能会出现问题 所以在这里我们最好先判断一下

  

  if fcount is null then fcount:= ; end if;

   Hibernate调用Oracle的存储过程

  

  this pnumberManager getHibernateTemplate() execute( new HibernateCallback() { public Object doInHibernate(Session session) throws HibernateException SQLException { CallableStatement cs = nnection() prepareCall( {call modifyapppnumber_remain(?)} ); cs setString( foundationid); cs execute(); return null; } });

lishixinzhi/Article/program/Oracle/201311/17685

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
TableDI
2024-07-18 广告
`VLOOKUP` 匹配出错误的数据通常是由于以下几个原因:1. **查找值错误**:输入的查找值与数据源中的值不匹配,可能是因为拼写错误、大小写不一致或存在不可见的字符。2. **查找区域设置错误**:查找区域的首列必须包含要查找的值,且... 点击进入详情页
本回答由TableDI提供
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式