程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle數據庫在存儲過程中經常出現的若干問題

Oracle數據庫在存儲過程中經常出現的若干問題

編輯:Oracle數據庫基礎

以下的文章主要是對Oracle數據庫在存儲過程中出現的若干問題的深入討論,如果你想對Oracle數據庫在存儲過程中出現的若干問題有個詳細了解的話,以下就是詳細內容的描述,希望在你今後的學習中會有所幫助。

1.在Oracle中,數據表別名不能加as,如:

  1. select a.appname from appinfo a; 

正確

  1. select a.appname from appinfo as a; 

錯誤。也許,是怕和Oracle中的存儲過程中的關鍵字as沖突的問題吧

2.在存儲過程中,select某一字段時,後面必須緊跟into,如果select整個記錄,利用游標的話就另當別論了。

  1. select af.keynode into kn from APPFOUNDATION af where 
    af.appid=aid and af.foundationid=fid

有into,正確編譯

  1. select af.keynode from APPFOUNDATION af where 
    af.appid=aid and af.foundationid=fid

沒有into,編譯報錯,提示:Compilation

  1. Error: PLS-00428: an INTO clause is expected in this Select statement 

3.在利用select...into...語法時,必須先確保Oracle數據庫中有該條記錄,否則會報出"no data found"異常。

可以在該語法之前,先利用select count(*) from 查看數據庫中是否存在該記錄,如果存在,再利用select...into...

4.在存儲過程中,別名不能和字段名稱相同,否則雖然編譯可以通過,但在運行階段會報錯

  1. select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid

正確運行

  1. select af.keynode into kn from APPFOUNDATION af where af.appid=appid and af.foundationid=foundationid; 

運行階段報錯,提示

  1. orA-01422:exact fetch returns more than requested number of rows 

5.在存儲過程中,關於出現null的問題

假設有一個表A,定義如下:

  1. create table A(  
  2. id varchar2(50) primary key not null,  
  3. vcount number(8) not null,  
  4. bid varchar2(50) not null   

外鍵

);如果在存儲過程中,使用如下語句:

select sum(vcount) into fcount from A where bid='xxxxxx';如果A表中不存在bid="xxxxxx"的記錄,則fcount=null(即使fcount定義時設置了默認值,如:fcount number(8):=0依然無效,fcount還是會變成null),這樣以後使用fcount時就可能有問題,所以在這裡最好先判斷一下:

  1. if fcount is null then  
  2. fcount:=0;  

end if;這樣就一切ok了。

6.Hibernate調用Oracle存儲過程

  1. this.pnumberManager.getHibernateTemplate().execute(  
  2. new HibernateCallback() ...{  
  3. public Object doInHibernate(Session session)  
  4. throws HibernateException, SQLException ...{  
  5. CallableStatement cs = session 
  6. .connection()  
  7. .prepareCall("{call modifyapppnumber_remain(?)}");  
  8. cs.setString(1, foundationid);  
  9. cs.execute();  
  10. return null;  
  11. }  
  12. });  

延伸閱讀:

詳細講解 DB2 9存儲過程的規劃和實施技

Oracle數據庫與SQL Server選型時注意的三個差異

Oracle 10g ASM 的一點經驗

Oracle 9i和10g在create index和rebuild index的統計信息的區別

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved