Oracle Deterministic Function
Specify DETERMINISTIC to indicate that the function returns the same result value whenever it is called with the same values for its arguments.
You must specify this keyword if you intend to call the function in the expression of a function-based index or from the query of a materialized view that is marked REFRESH FAST or ENABLE QUERY REWRITE. When Oracle Database encounters a deterministic function in one of these contexts, it attempts to use previously calculated results when possible rather than re-executing the function. If you subsequently change the semantics of the function, you must manually rebuild all dependent function-based indexes and materialized views.
Do not specify this clause to define a function that uses package variables or that accesses the database in any way that might affect the return result of the function. The results of doing so will not be captured if Oracle Database chooses not to reexecute the functi
You must specify this keyword if you intend to call the function in the expression of a function-based index or from the query of a materialized view that is marked REFRESH FAST or ENABLE QUERY REWRITE. When Oracle Database encounters a deterministic function in one of these contexts, it attempts to use previously calculated results when possible rather than re-executing the function. If you subsequently change the semantics of the function, you must manually rebuild all dependent function-based indexes and materialized views.
Do not specify this clause to define a function that uses package variables or that accesses the database in any way that might affect the return result of the function. The results of doing so will not be captured if Oracle Database chooses not to reexecute the functi
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/638844/viewspace-1062134/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Deterministic Policy Gradient AlgorithmsGo
- Oracle vs PostgreSQL Develop(28) - function overloadOracleSQLdevFunction
- Oracle vs PostgreSQL Develop(24) - subquery with agg functionOracleSQLdevFunction
- javascript 中function(){},new function(),new Function(),Function 摘錄JavaScriptFunction
- Loss FunctionFunction
- [Bash] functionFunction
- python FunctionPythonFunction
- JavaScript FunctionJavaScriptFunction
- 深度強化學習第十二章——Deep Deterministic Policy Gradient(DDPG)強化學習
- java.util.function 中的 Function、Predicate、ConsumerJavaFunction
- TypeError: stringWidth is not a functionErrorFunction
- Function pointers and callbacksFunction
- DMSQL WITH FUNCTION子句SQLFunction
- JavaScript Function物件JavaScriptFunction物件
- A.Calculating FunctionFunction
- Function型別Function型別
- addEventListener("touchend", function ()_devFunction
- flask 裝飾器 AssertionError: View function mapping is overwriting an existing endpoint functionFlaskErrorViewFunctionAPP
- [Vue] Use render functionVueFunction
- drools中使用functionFunction
- jasmine.any(Function)ASMFunction
- python - function list generatorPythonFunction
- JavaScript中的 FunctionJavaScriptFunction
- C++ function pointersC++Function
- bypass disable_functionFunction
- JavaScript function 函式JavaScriptFunction函式
- (function($,window,document){.......})用法Function
- Function.prototype.callFunction
- Uncaught TypeError: i is not a functionErrorFunction
- [Javascript] Why need arrow function?JavaScriptFunction
- Lambda Function, Callable, Optional in PythonFunctionPython
- std::function用法學習Function
- TypeError: loaderContext.getOptions is not a functionErrorContextFunction
- G. D-FunctionFunction
- CF1098F Ж-functionFunction
- Important SAP APO Function Modules!ImportFunction
- 關於 HANA CE FunctionFunction
- await is only valid in async functionAIFunction
- class中的arrow functionFunction