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

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/show.l,v 1.5 1998/10/14 02:36:45 momjian Exp $
  4. .TH SHOW SQL 05/14/97 PostgreSQL PostgreSQL
  5. .SH NAME
  6. show - show run-time parameters for session
  7. .SH SYNOPSIS
  8. .nf
  9. fBshowfR variable
  10. .fi
  11. .SH DESCRIPTION
  12. .BR Show
  13. will display the current configuration parameters for
  14. .IR variable 
  15. during a session.
  16. .PP
  17. The session can be configured using
  18. .IR set(l),
  19. and values can be restored to the defaults using
  20. .IR reset(l).
  21. Parameters and values are case-insensitive.
  22. .PP
  23. See
  24. .IR set(l)
  25. for more information on available variables.
  26. .SH EXAMPLES
  27. .nf
  28. tgl=> show DateStyle;
  29. NOTICE:DateStyle is Postgres with US (NonEuropean) conventions
  30. SHOW VARIABLE
  31. tgl=> show GEQO;
  32. NOTICE:GEQO is ON
  33. SHOW VARIABLE
  34. .fi
  35. .SH "SEE ALSO"
  36. reset(l),
  37. set(l).
  38. .SH BUGS
  39. TBD