我正在編程使用Apache Derby的Java應用程序,我正在尋找「explain」語句(例如爲mySQL工作)的等價物。它不在德比工作。有類似的東西嗎?apache derby - 解釋select
7
A
回答
10
也有類似的東西:首先,有derby.language.logQueryPlan = true,它將查詢計劃信息寫入日誌文件:http://db.apache.org/derby/docs/10.8/ref/rrefproper43414.html。其次,還有RUNTIMESTATISTICS功能,可以根據需要將統計信息捕獲到您的程序中:http://db.apache.org/derby/docs/10.8/ref/rrefsqlj38831.html。第三,有XPLAIN樣式,它將查詢計劃信息捕獲到數據庫本身的一組表中:http://db.apache.org/derby/docs/10.8/ref/rref_xplain_tables.html。
您應該也可以花些時間閱讀:http://db.apache.org/derby/docs/10.8/tuning/ctundepth13055.html
相關問題
- 1. Apache Derby錯誤
- 2. apache derby + jpa
- 3. Apache mod_rewrite解釋
- 4. SELECT DISTINCT。請解釋?
- 5. 使用Apache Derby的INET_ATON?
- 6. Apache Derby Lexical Error on#-sign?
- 7. Apache Derby中的SQL查詢
- 8. 對Apache Derby使用LDAP
- 9. 解釋MySQL的SELECT語句
- 10. 在rails中解釋SELECT 3.2.5
- 11. 將Apache OFBiz從Apache Derby遷移到mysql
- 12. 如何在Eclipse 4.5.1中創建Apache Derby?
- 13. 恢復Apache Derby數據庫
- 14. Java DB/Apache Derby與Android
- 15. Apache derby多用戶控件?
- 16. 禁用Apache Derby的緩存
- 17. PHP連接到Apache Derby的
- 18. Apache Derby的搜索引擎
- 19. netbeans和Apache Derby Embedded + spring
- 20. 列出Apache Derby Active Connections
- 21. Php不解釋由Apache
- 22. Apache Derby的分組或總誤差:
- 23. 的Apache Derby掛斷執行查詢
- 24. 替換Apache Derby中的字符串
- 25. Apache Derby和Java - 優化插入
- 26. Apache Derby - 它是否支持'WITH'
- 27. apache derby中的位運算符
- 28. 如何在Apache Derby中使用SEQUENCE?
- 29. Java Apache Derby數據庫恢復錯誤
- 30. JDBC Apache derby SYSCOLUMNS表不顯示信息
謝謝,它幫助 – planky 2011-05-14 10:58:01