PL/SQL SQL Coding Guideline 34 - Avoid procedure or function calls between a SQL operation and an implicit cursor
條款三十四,避免在 SQL 語句運行與 implicit cursor 中間使用 procedure 或是 function。 ...
條款三十四,避免在 SQL 語句運行與 implicit cursor 中間使用 procedure 或是 function。 ...
條款三十三,總是關閉開啟的游標。 ...
條款三十二,當使用 BULK 與 LIMIT 操作時,避免直接在後面用 %NOTFOUND 判斷是否有資料處理,應改用 COUNT() 判斷。 ...
條款三十一,Always use %NOTFOUND instead of NOT %FOUND to check whether a cursor was successful。 ...
條款二十九,Try to use anchored records as targets for your cursors。 ...
條款二十八,如果 Oracle 版本支援,請使用 ANSI-Join。 ...
條款二十七,當使用多個來源做搜尋時,總是使用資料表別名。 ...
條款二十六,運行插入命令時總是指定塞入的欄位。 ...
條款二十五,避免使用 LONG 與 LONG RAW 型態。 ...
條款二十四,當值只有兩種狀態時,試著使用 Boolean 型態。 ...