oracle sql優化相關整理

2021-08-02 09:15:32 字數 490 閱讀 5654



當乙個oracle例項接收到一條sql後,執行過程如下:

1) create  a cursor  建立游標

2) parse the statement 分析語句

3)  describe results of a query 描述查詢的結果集

4)define output of a query 定義查詢的輸出資料

5)bind any variables 繫結變數

6)parallelize the statement 並行執行語句

7)run the statement 執行語句

8)fetch rows of a query 取查詢結果

9)close the cursor 關閉游標

參考:

常用sql語句及案例(oracle)

oracle sql 優化相關

1 oracle net 單次獲取結果集 預設10條 可修改array size,jdbc fetchsize 2 針對大統計 union all 等改為分析函式提公升效能 3 既然null是可以進復合索引的,在我們需要對null進行索引時,就可以構造乙個 偽復合索引 create index my...

Oracle Sql相關記錄

1.批量增加資料 insert into fasp t carolemenu guid,roleguid,menuguid select sys guid guid,43b3bf934c324381892fe59f3d244629 from fasp t carole where length pr...

oracle sql相關語法

case when 簡單case函式 case when 1 then 男 when 2 then 女 else 其他 end case搜尋函式 case when 1 then 男 when 2 then 女 else 其他 end這兩種方式,可以實現相同的功能。簡單case函式的寫法相對比較簡潔...