新聞中心
以下的文章主要是對(duì)Oracle存儲(chǔ)過程中易出現(xiàn)的若干問題的探討,Oracle存儲(chǔ)過程在實(shí)際中的應(yīng)用比例還是占為多數(shù)的,如果你對(duì)這一技術(shù),心存好奇的話,以下的文章將會(huì)揭開它的神秘面紗。希望你在瀏覽完之后會(huì)有所收獲。

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供大名網(wǎng)站建設(shè)、大名做網(wǎng)站、大名網(wǎng)站設(shè)計(jì)、大名網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、大名企業(yè)網(wǎng)站模板建站服務(wù),10余年大名做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
1.在Oracle中,數(shù)據(jù)表別名不能加as,如:
- select a.appname from appinfo a;
正確
- select a.appname from appinfo as a;
錯(cuò)誤
也許,是怕和Oracle存儲(chǔ)過程中的關(guān)鍵字as沖突的問題吧
2.在存儲(chǔ)過程中,select某一字段時(shí),后面必須緊跟into,如果select整個(gè)記錄,利用游標(biāo)的話就另當(dāng)別論了。
- 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,編譯報(bào)錯(cuò),提示:Compilation
- Error: PLS-00428: an INTO clause is expected in this Select statement
3.在利用select...into...語法時(shí),必須先確保數(shù)據(jù)庫中有該條記錄,否則會(huì)報(bào)出"no data found"異常。
可以在該語法之前,先利用select count(*) from 查看數(shù)據(jù)庫中是否存在該記錄,如果存在,再利用select...into...
4.在Oracle存儲(chǔ)過程中,別名不能和字段名稱相同,否則雖然編譯可以通過,但在運(yùn)行階段會(huì)報(bào)錯(cuò)
- select keynode into kn from APPFOUNDATION where appid=aid and foundationid=fid;
正確運(yùn)行
- select af.keynode into kn from APPFOUNDATION af where af.appid=appid and af.foundationid=foundationid;
運(yùn)行階段報(bào)錯(cuò),提示
- orA-01422:exact fetch returns more than requested number of rows
5.在存儲(chǔ)過程中,關(guān)于出現(xiàn)null的問題
假設(shè)有一個(gè)表A,定義如下:
- create table A(
- id varchar2(50) primary key not null,
- vcount number(8) not null,
- bid varchar2(50) not null
外鍵
);如果在Oracle存儲(chǔ)過程中,使用如下語句:
select sum(vcount) into fcount from A where bid='xxxxxx';如果A表中不存在bid="xxxxxx"的記錄,則fcount=null(即使fcount定義時(shí)設(shè)置了默認(rèn)值,如:fcount number(8):=0依然無效,fcount還是會(huì)變成null),這樣以后使用fcount時(shí)就可能有問題,所以在這里最好先判斷一下:
- if fcount is null then
- fcount:=0;
end if;這樣就一切ok了。
6.Hibernate調(diào)用Oracle存儲(chǔ)過程
- this.pnumberManager.getHibernateTemplate().execute(
- new HibernateCallback() ...{
- public Object doInHibernate(Session session)
- throws HibernateException, SQLException ...{
- CallableStatement cs = session
- .connection()
- .prepareCall("{call modifyapppnumber_remain(?)}");
- cs.setString(1, foundationid);
- cs.execute();
- return null;
- }
- });
延伸閱讀:
詳細(xì)講解 DB2 9存儲(chǔ)過程的規(guī)劃和實(shí)施技
Oracle與SQL Server選型時(shí)注意的三個(gè)差異
Oracle 10g ASM 的一點(diǎn)經(jīng)驗(yàn)
Oracle 9i和10g在create index和rebuild index的統(tǒng)計(jì)信息的區(qū)別
網(wǎng)站欄目:Oracle存儲(chǔ)過程中易出現(xiàn)的若干問題的探討
轉(zhuǎn)載源于:http://www.dlmjj.cn/article/djeggjd.html


咨詢
建站咨詢
