使用bulk collect實現cursor 批量fetch!
declare
cursor c1 is select * from t_depart;
v_depart t_depart%rowtype ;
type v_code_type is table of t_depart.depart_code%type ;
v_code v_code_type ;
type v_name_type is table of t_depart.depart_name%type ;
v_name v_name_type ;
begin
open c1;
fetch c1 bulk collect into v_code , v_name ;
for i in 1..v_code.count loop
dbms_output.put_line(v_code(i)||' '||v_name(i));
end loop;
close c1;
end;
--========================================
通過上面的列子發現如果列很多的話,為每一列定義一個集合似乎有些繁瑣,可以把集合和%rowtype結合起來一起使用簡化程式!
declare
cursor c1 is select * from t_depart;
type v_depart_type is table of t_depart%rowtype ;
v_depart v_depart_type ;
begin
open c1;
fetch c1 bulk collect into v_depart ;
for i in 1..v_depart.count loop
dbms_output.put_line(v_depart(i).depart_code||' '||
v_depart(i).depart_name);
end loop;
close c1;
end;
--======================================
在輸出結果時既可以使用集合的count屬性和可以使用first和last,在引用%rowtype型別的內容時還有一個需要注意的地方是v_depart(i).depart_code,而不是v_depart.depart_code(i),當然沒有這樣的寫法,即使有意義也不一樣,大家可以仔細思考
declare
cursor c1 is select * from t_depart;
type v_depart_type is table of t_depart%rowtype ;
v_depart v_depart_type ;
begin
open c1;
fetch c1 bulk collect into v_depart ;
for i in v_depart.first..v_depart.last loop
dbms_output.put_line(v_depart(i).depart_code||' '||
v_depart(i).depart_name);
end loop;
close c1;
end;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/19602/viewspace-61753/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle中巧用bulk collect實現cursor批次fetchOracle
- 使用BULK COLLECT+FORALL加速批量提交
- 使用oracle bulk collect 提高select FETCH LOOP的速度OracleOOP
- 使用Bulk Collect提高Oracle查詢效率Oracle
- Oracle 的 bulk collect用法Oracle
- Oracle資料庫的BULK COLLECT用法之批量增刪改<轉>Oracle資料庫
- 【PL/SQL】初試 bulk collectSQL
- 轉摘plsql高階程式設計_table_array_for all_bulk collect into_fetchSQL程式設計
- BULK COLLECT FAILS WITH ORA-04030AI
- pl/sql中bulk collect的用法SQL
- 使用Forall 與bulk collect的快速複製表資料
- APPEND,bulk collect,正常插入比較APP
- PL/SQL LOB和檔案操作,bulk collectSQL
- 多行資料的批處理之bulk collect
- 用BULK COLLECT 減小LOOP的開銷(1)OOP
- mongodb批量操作, bulk_write,MongoDB
- 資訊批量提取工具bulk-extractor
- [20180110]Oracle Bulk Collect and LimitOracleMIT
- oracle中bulk collect into用法 (批次效率提取遊標資料)Oracle
- Fetch 實現 abort
- 遊標+bulk collect into limit的不同方法查詢資料MIT
- oracle10g_plsql_rercursor_type_table of_小引例_bulk collect intoOracleSQL
- 使用PrepareStatement實現批量插入操作REST
- [20180111]Oracle Bulk Collect and Limit2OracleMIT
- ElasticSearch7.4批量匯入_bulkElasticsearch
- 一次遷移思考的記錄--bulk_collect的limit用法MIT
- Dynamics CRM 如何使用XrmToolBox中的Bulk Workflow Execution批量更新資料
- SQL Server Bulk Insert批量資料匯入SQLServer
- 使用 OPEN CURSOR 和 FETCH NEXT CURSOR 對 SAP 資料庫表進行分塊讀寫試讀版資料庫
- React中使用fetch實現檔案上傳下載React
- elasticsearch bulk資料--ES批量匯入json資料ElasticsearchJSON
- bulk_collect結合dbms_application_info監控資料處理進度APP
- 利用fetch方法實現Ajax請求
- 解析Fetch實現請求資料
- Cursor使用
- Elasticsearch的Bulk API使用ElasticsearchAPI
- Go 語言中的 collect 使用Go
- 談談 Promise 以及實現 Fetch 的思路Promise