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

数据库系统

开发平台:

Unix_Linux

  1. <!--
  2. $Header: /usr/local/cvsroot/pgsql/doc/src/sgml/user.sgml,v 1.12 1999/06/03 04:21:51 thomas Exp $
  3. Postgres User's Manual.
  4. Derived from postgres.sgml.
  5. thomas 1998-02-24
  6. $Log: user.sgml,v $
  7. Revision 1.12  1999/06/03 04:21:51  thomas
  8. Markup changes for v6.5 release.
  9. Clean out duplicate stuff in odbc.sgml resulting from a faulty patch.
  10. Revision 1.11  1999/05/26 17:30:30  thomas
  11. Add chapters on CVS access, MVCC, SQL theory to the docs.
  12. Add an appendix with more details on date/time attributes and handling.
  13. Update most references to Postgres version numbers to 6.5,
  14.  *except* for the porting list which will require a report
  15.  from a successful installation to be updated.
  16. Revision 1.10  1999/05/22 02:27:25  thomas
  17. Finish initial markup of cvs.sgml, and include it in the programmer's guide
  18.  and the integrated doc. Clean up other markup.
  19. Revision 1.9  1999/05/20 05:39:29  thomas
  20. Rearrange and consolidate the Admin Guide.
  21. Add reference pages for utilities and remove standalone chapters for same.
  22. Add material for an appendix on date/time properties, but not yet
  23.  integrated with the User's Guide.
  24. Break up the former chapter on pg_options
  25.  into Admin and Programmer's Guides.
  26. Revision 1.8  1999/05/04 02:26:06  thomas
  27. Include new introductory chapter on SQL from Stefan S.
  28. Should this be in the tutorial instead?
  29. Revision 1.7  1998/10/30 19:37:16  thomas
  30. Minor editing and markup changes as a result of preparing the Postscript
  31.  documentation for v6.4.
  32. Bigger updates to the installation instructions (install and config).
  33. Revision 1.6  1998/09/30 05:41:54  thomas
  34. Clean up pages. Add information for operator precedence.
  35. Split introduction sections into separate files to allow the legal notice
  36.  and notation sections appear in all documents without having the history
  37.  show up everplace too.
  38. Add full list of reserved and non-reserved key words in syntax.sgml.
  39. Add a separate chapter to the admin guide on security.
  40. Revision 1.5  1998/08/17 16:20:32  thomas
  41. Move SQL reference pages up into the User's Guide.
  42. -->
  43. <!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
  44. <!entity about    SYSTEM "about.sgml">
  45. <!entity history  SYSTEM "history.sgml">
  46. <!entity info     SYSTEM "info.sgml">
  47. <!entity legal    SYSTEM "legal.sgml">
  48. <!entity notation SYSTEM "notation.sgml">
  49. <!entity y2k      SYSTEM "y2k.sgml">
  50. <!entity advanced SYSTEM "advanced.sgml">
  51. <!entity array    SYSTEM "array.sgml">
  52. <!entity biblio   SYSTEM "biblio.sgml">
  53. <!entity datatype SYSTEM "datatype.sgml">
  54. <!entity datetime SYSTEM "datetime.sgml">
  55. <!entity environ  SYSTEM "environ.sgml">
  56. <!entity func     SYSTEM "func.sgml">
  57. <!entity inherit  SYSTEM "inherit.sgml">
  58. <!entity intro    SYSTEM "intro.sgml">
  59. <!entity keys     SYSTEM "keys.sgml">
  60. <!entity manage   SYSTEM "manage.sgml">
  61. <!entity mvcc     SYSTEM "mvcc.sgml">
  62. <!entity oper     SYSTEM "oper.sgml">
  63. <!entity storage  SYSTEM "storage.sgml">
  64. <!entity syntax   SYSTEM "syntax.sgml">
  65. <!entity typeconv SYSTEM "typeconv.sgml">
  66. <!-- reference pages -->
  67. <!entity % allfiles SYSTEM "allfiles.sgml">
  68. %allfiles;
  69. ]>
  70. <Book Id="user">
  71. <!-- Title information -->
  72.  <Title>PostgreSQL User's Guide</Title>
  73.  <BookInfo>
  74.   <ReleaseInfo>Covering v6.5 for general release</ReleaseInfo>
  75.   <BookBiblio>
  76.    <AuthorGroup>
  77.     <CorpAuthor>The PostgreSQL Development Team</CorpAuthor>
  78.    </AuthorGroup>
  79. <!-- editor in authorgroup is not supported
  80.   <AuthorGroup>
  81. -->
  82.    <Editor>
  83.     <FirstName>Thomas</FirstName>
  84.     <SurName>Lockhart</SurName>
  85.     <Affiliation>
  86.      <OrgName>Caltech/JPL</OrgName>
  87.     </Affiliation>
  88.    </Editor>
  89. <!--
  90.   </AuthorGroup>
  91. -->
  92.  
  93. <!--
  94.   <AuthorInitials>TGL</AuthorInitials>
  95. -->
  96.    <Date>(last updated 1999-06-01)</Date>
  97.   </BookBiblio>
  98.   <LegalNotice>
  99.    <Para>
  100.     <ProductName>PostgreSQL</ProductName> is Copyright &copy; 1996-9
  101.     by the Postgres Global Development Group.
  102.    </Para>
  103.   </LegalNotice>
  104.  </BookInfo>
  105. <!--
  106. <TOC> </TOC>
  107. <LOT> </LOT>
  108. -->
  109. <!--
  110. <Dedication>
  111. <Para>
  112. Your name here...
  113. </Para>
  114. </Dedication>
  115. -->
  116.  <preface id="preface">
  117.   <Title>Summary</Title>
  118.   <Para>
  119.    <ProductName>Postgres</ProductName>, 
  120.    developed originally in the UC Berkeley Computer Science Department,
  121.    pioneered many of the object-relational concepts
  122.    now becoming available in some commercial databases.
  123.    It provides SQL92/SQL3 language support,
  124.    transaction integrity, and type extensibility.
  125.    <ProductName>PostgreSQL</ProductName> is a public-domain, open source descendant
  126.    of this original Berkeley code.
  127.   </Para>
  128.  </Preface>
  129.  &intro;
  130.  &syntax;
  131.  &datatype;
  132.  &oper;
  133.  &func;
  134.  &typeconv;
  135.  &keys;
  136.  &array;
  137.  &inherit;
  138.  &mvcc;
  139.  &environ;
  140.  &manage;
  141.  &storage;
  142.  &commands;
  143.  <!-- appendices -->
  144.  &datetime;
  145.  <!--
  146.  &contacts;
  147.  -->
  148.  &biblio;
  149. <!--
  150. <index Id="index">
  151. </index>
  152. -->
  153. </Book>
  154. <!-- Keep this comment at the end of the file
  155. Local variables:
  156. mode: sgml
  157. sgml-omittag:nil
  158. sgml-shorttag:t
  159. sgml-minimize-attributes:nil
  160. sgml-always-quote-attributes:t
  161. sgml-indent-step:1
  162. sgml-indent-data:t
  163. sgml-parent-document:nil
  164. sgml-default-dtd-file:"./reference.ced"
  165. sgml-exposed-tags:nil
  166. sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
  167. sgml-local-ecat-files:nil
  168. End:
  169. -->