explain.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "EXPLAIN" {bold} " This command outputs details about the supplied query. The default output is the computed query cost. The cost value is only meaningful to the optimizer in comparing various query plans. 
  2. VERBOSE displays the full query plan and cost to your screen, and pretty-prints the plan to the postmaster log file. 
  3. " {} "Synopsis" {bold} "
  4. " {} "
  5. EXPLAIN [ VERBOSE ] query 
  6. " {code} "Usage" {bold} "
  7. To show a query plan for a simple query: 
  8. " {} "
  9. postgres=> explain select * from foo;
  10. NOTICE:  QUERY PLAN:
  11. Seq Scan on foo  (cost=0.00 rows=0 width=4)
  12. EXPLAIN
  13. " {code} "Notes" {bold} "
  14. There is only sparse documentation on the optimizer's use of cost information in Postgres. General information on cost estimation for query optimization can be found in database textbooks.
  15. Refer to the Programmer's Guide in the chapters on indexes and the genetic query optimizer for more 
  16. information."