oralce和db2兼容開發(fā)注意事項
數(shù)據(jù)庫兼容,在開發(fā)項目過程中,難免會遇到 更改數(shù)據(jù)庫,或者后期 項目升級,也可能會遇到這種情況,這里就說明下oralce和db2兼容開發(fā)注意事項。
兼容oralce、db2開發(fā)注意事項(前提是db2版本是9.7,且是開啟PLSQL編譯選項之后創(chuàng)建的數(shù)據(jù)庫):
1. 在like 之后若使用了表字段,應統(tǒng)一改成使用locate函數(shù)
如:
oralce寫法:
select * from fw_right a where '03' like a.rightid||'%';
兼容寫法:
select * from fw_right a where locate('03',a.rightid) = 1;
oralce寫法:
select * from fw_right a where '03' like '%'||a.rightid||'%';
兼容寫法:
select * from fw_right a where locate('03',a.rightid) > 0;
2. 視圖中使用的別名不應該與當前表字段同名
如以下語句,在Oracle中不會有問題,但在db2中會報"SQL0153N"錯誤:
e.g: CREATE OR REPLACE VIEW V_WF_TODOLIST AS select c.process_def_id, c.process_def_name, a.action_def_id, a.work_item_id, a.bae007, a.action_def_name, a.state, a.pre_wi_id, a.work_type, a.operid, a.x_oprator_ids, b.process_key_info, to_char(to_date(a.start_time, 'yyyymmddhh24miss'),'yyyy-mm-dd hh24:mi:ss') as start_time, to_char(to_date(a.complete_time,'yyyymmddhh24miss'),'yyyy-mm-dd hh24:mi:ss') as complete_time, a.filter_opr, a.memo,a.bae002,a.bae003, a.bae006,c.x_action_def_ids from wf_work_item a, wf_process_instance b, wf_action_def c where a.action_def_id = c.action_def_id and b.process_def_id = c.process_def_id and a.bae007 = b.bae007 and a.state in('0','2')
兼容寫法:
CREATE OR REPLACE VIEW V_WF_TODOLIST AS select c.process_def_id, c.process_def_name, a.action_def_id, a.work_item_id, a.bae007, a.action_def_name, a.state, a.pre_wi_id, a.work_type, a.operid, a.x_oprator_ids, b.process_key_info, to_char(to_date(a.start_time, 'yyyymmddhh24miss'),'yyyy-mm-dd hh24:mi:ss') as start_time_0, to_char(to_date(a.complete_time,'yyyymmddhh24miss'),'yyyy-mm-dd hh24:mi:ss') as complete_time_0, a.filter_opr, a.memo,a.bae002,a.bae003, a.bae006,c.x_action_def_ids from wf_work_item a, wf_process_instance b, wf_action_def c where a.action_def_id = c.action_def_id and b.process_def_id = c.process_def_id and a.bae007 = b.bae007 and a.state in('0','2')
3.在下列情況下不允許 ORDER BY 或 FETCH FIRST n ROWS ONLY:
* 外層全查詢視圖
* "SQL 表函數(shù)"的 RETURN 語句中的外層全查詢
* 具體化查詢表定義
* 未用圓括號括起來的子查詢
否則會報"SQL20211N 規(guī)范 ORDER BY 或 FETCH FIRST n ROWS ONLY 無效。"錯誤.
e.g:
oralce寫法:
CREATE OR REPLACE VIEW V_FW_BLANK_BULLETIN as select id, bae001, operunitid, operunittype, unitsubtype, ifergency, title, content, digest, duetime, validto, aae100, bae006, bae002, bae003, id as colid, substr(digest,1,20) as digest2 from fw_bulletin where duetime <= to_char(sysdate,'yyyymmddhh24miss') and (to_char(validto) >= to_char(sysdate,'yyyymmddhh24miss') or validto is null) and aae100 ='1' order by ifergency desc, id desc, duetime desc
兼容寫法:
CREATE OR REPLACE VIEW V_FW_BLANK_BULLETIN as select * from (select id, bae001, operunitid, operunittype, unitsubtype, ifergency, title, content, digest, duetime, validto, aae100, bae006, bae002, bae003, id as colid, substr(digest,1,20) as digest2 from fw_bulletin where duetime <= to_char(sysdate,'yyyymmddhh24miss') and (to_char(validto) >= to_char(sysdate,'yyyymmddhh24miss') or validto is null) and aae100 ='1' order by ifergency desc, id desc, duetime desc)
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
相關(guān)文章
Informatica bulk與normal模式的深入詳解
本篇文章是對Informatica bulk與normal模式進行了詳細的分析介紹,需要的朋友參考下2013-05-05Windows系統(tǒng)下Oracle?12c安裝保姆級圖文教程詳解
這篇文章主要給大家介紹了關(guān)于Windows系統(tǒng)下Oracle?12c安裝保姆級圖文教程的相關(guān)資料,Oracle數(shù)據(jù)庫12c的安裝是一個復雜的過程,但通過正確的安裝前置條件的準備,精心的安裝過程確實可以讓Oracle?12c穩(wěn)定、高效地運行在各類操作系統(tǒng)中,需要的朋友可以參考下2023-09-09