Hints : DRIVING_SITE
The DRIVING_SITE hint forces query execution to be done at a different site than that
selected by Oracle. This hint can be used with either rule-based or cost-based
optimization. Table is the name or alias for the table at which site the execution should
take place.
SELECT /*+ DRIVING_SITE(DEPT) */ *
FROM EMP,
WHERE EMP.DEPTNO = DEPT.DEPTNO;
If this query is executed without the hint, rows from DEPT will be sent to the local site
and the join will be executed there. With the hint, the rows from EMP will be sent to the
remote site and the query will be executed there, returning the result to the local site.
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-988771/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- WITH AS and materialize hints
- Oracle HintsOracle
- 【譯】Resource Hints
- Oracle hint之DRIVING_SITEOracle
- DRIVING_SITE Hint (R1)
- Using hints for PostgresqlSQL
- Oracle Hints詳解Oracle
- oracle hints的使用Oracle
- Oracle Hints的用法Oracle
- oracle hints index格式OracleIndex
- Oracle使用提示(Hints)Oracle
- MySQL index hints 使用MySqlIndex
- HTTP Client Hints 介紹HTTPclient
- Common LISP Hints 中文Lisp
- oracle hints用法總結Oracle
- hints提示總結 zt
- Oracle Hints語句的用法Oracle
- oracle hints的那點事Oracle
- How to use hints in Oracle sql for performanceOracleSQLORM
- oracle hints ? use_hash ? ordered ?Oracle
- oracle效能優化之--hintsOracle優化
- oracle sql tunning all hintsOracleSQL
- zt_Oracle hint driving_site Hint的用法Oracle
- Pycharm,Python 3 與 Type HintsPyCharmPython
- Python -型別提示 Type HintsPython型別
- UVa340 - Master-Mind HintsAST
- Oracle leading vs. ordered hintsOracle
- 【最佳化】hints之/*+append*/作業APP
- oracle 體系 & hints的用法總結(轉)Oracle
- 轉載--常見hints的基礎用法
- DBLINK HINT /*+ driving_site(org) */ 最佳化策略和思路
- DB Link因 driving_site導致的效能問題
- driving_site:Oracle 跨庫關聯資料時速度問題Oracle
- 分散式資料庫查詢中 DRIVING_SITE 的疑問分散式資料庫
- Python Type Hints 從入門到實踐Python
- 前端效能優化 - Resource Hints 資源預載入前端優化
- 加快insert into select速度with hints and nologging
- SQL優化--用各種hints優化一條SQLSQL優化