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

数据库系统

开发平台:

Unix_Linux

  1.  <chapter id="manage-ag">
  2.   <title>Managing a Database</title>
  3.   <para>
  4.    If the <productname>Postgres</productname>
  5.    <application>postmaster</application> is up and running we can create
  6.    some databases  to  experiment  with.  Here, we describe the
  7.    basic commands for managing a database.
  8.   </para>
  9.   <sect1>
  10.    <title>Creating a Database</title>
  11.    <para>
  12.     Let's say you want to create  a  database  named  mydb.
  13.     You can do this with the following command:
  14.     <programlisting>
  15. % createdb <replaceable class="parameter">dbname</replaceable>
  16.     </programlisting>
  17.     <productname>Postgres</productname>  allows  you to create 
  18.     any number of databases
  19.     at a  given  site  and  you  automatically  become  the
  20.     database  administrator  of  the database you just created.  
  21.     Database names must  have  an  alphabetic  first
  22.     character and are limited to 16 characters in length.
  23.     Not  every  user has authorization to become a database
  24.     administrator.  If <productname>Postgres</productname> 
  25.     refuses to create databases
  26.     for you, then the site administrator needs to grant you
  27.     permission to  create  databases.   Consult  your  site
  28.     administrator if this occurs.
  29.    </para>
  30.   </sect1>
  31.   <sect1>
  32.    <title>Accessing a Database</title>
  33.    <para>
  34.     Once you have constructed a database, you can access it
  35.     by:
  36.     <itemizedlist spacing="compact" mark="bullet">
  37.      <listitem>
  38.       <para>
  39.        running the <productname>Postgres</productname>  terminal  monitor  program 
  40.        (<application>psql</application>) which allows you to interactively
  41.        enter, edit, and execute <acronym>SQL</acronym> commands.
  42.       </para>
  43.      </listitem>
  44.      <listitem>
  45.       <para>
  46.        writing a  C  program  using  the  <literal>libpq</literal>  subroutine
  47.        library.   This  allows  you  to submit <acronym>SQL</acronym> commands
  48.        from C and get answers and status messages  back  to
  49.        your  program.   This interface is discussed further
  50.        in the <citetitle>PostgreSQL Programmer's Guide</citetitle>.
  51.       </para>
  52.      </listitem>
  53.     </itemizedlist>
  54.     You might want to start up <application>psql</application>, 
  55.     to try out  the  examples  in  this manual. It can be activated for the
  56.     <replaceable class="parameter">dbname</replaceable> database by typing the command:
  57.     <programlisting>
  58. % psql <replaceable class="parameter">dbname</replaceable>
  59.     </programlisting>
  60.     You will be greeted with the following message:
  61.     <programlisting>
  62. Welcome to the Postgres interactive sql monitor:
  63.   type ? for help on slash commands
  64.   type q to quit
  65.   type g or terminate with semicolon to execute query
  66. You are currently connected to the database: <replaceable>dbname</replaceable>
  67. <replaceable>dbname</replaceable>=&gt;
  68.     </programlisting>
  69.    </para>
  70.    <para>
  71.     This prompt indicates that the terminal monitor is listening  
  72.     to you and that you can type <acronym>SQL</acronym> queries into a
  73.     workspace maintained by the terminal monitor.
  74.     The <application>psql</application> program responds to escape
  75.     codes  that  begin
  76.     with  the  backslash  character, "".  For example, you
  77.     can get help on the syntax of various 
  78.     <productname>Postgres</productname> <acronym>SQL</acronym> commands by typing:
  79.     <programlisting>
  80. <replaceable>dbname</replaceable>=> h
  81.     </programlisting>
  82.     Once  you  have finished entering your queries into the
  83.     workspace, you can pass the contents of  the  workspace
  84.     to the <productname>Postgres</productname> server by typing:
  85.     <programlisting>
  86. <replaceable>dbname</replaceable>=> g
  87.     </programlisting>
  88.     This  tells  the  server  to process the query.  If you
  89.     terminate your query with a semicolon, the  backslash-g is  not
  90.     necessary.   <application>psql</application> will automatically 
  91.     process semicolon terminated queries.
  92.     To read queries from a file,  instead  of
  93.     entering them interactively, type:
  94.     <programlisting>
  95. <replaceable>dbname</replaceable>=> i <replaceable class="parameter">filename</replaceable>
  96.     </programlisting>
  97.     To get out of <application>psql</application> and return to UNIX, type
  98.     <programlisting>
  99. <replaceable>dbname</replaceable>=&gt; q
  100.     </programlisting>
  101.     and  <application>psql</application>  will  quit  and  return  
  102.     you to your command shell. (For more escape codes, type
  103.     backslash-h at  the  monitor prompt.)
  104.     White  space  (i.e.,  spaces, tabs and newlines) may be
  105.     used freely in <acronym>SQL</acronym> queries.  
  106.     Single-line comments  are  denoted  by two dashes
  107.     (<quote>--</quote>).   Everything  after the dashes up to the end of the
  108.     line is ignored. Multiple-line comments, and comments within a line,
  109.     are denoted by <quote>/* ... */</quote>, a convention borrowed
  110.     from <productname>Ingres</productname>.
  111.    </para>
  112.   </sect1>
  113.      
  114.   <sect1>
  115.    <title>Destroying a Database</title>
  116.    <para>
  117.     If you are the database administrator for the  database
  118.     mydb,  you can destroy it using the following UNIX command:
  119.     <programlisting>
  120. % destroydb <replaceable class="parameter">dbname</replaceable>
  121.     </programlisting>
  122.     This action physically removes all of  the  UNIX  files
  123.     associated  with  the database and cannot be undone, so
  124.     this should only be done with a  great  deal  of  forethought.
  125.    </para>
  126.    <para>
  127.     It is also possible to destroy a database from within an
  128.     <acronym>SQL</acronym> session by using
  129.     <programlisting>
  130. &gt; drop database <replaceable class="parameter">dbname</replaceable>
  131.     </programlisting>
  132.    </para>
  133.   </sect1>
  134.   <sect1>
  135.    <title>Backup and Restore</title>
  136.    <caution>
  137.     <para>
  138.      Every database should be backed up on a regular basis. Since
  139.      <productname>Postgres</productname> manages it's own files in the
  140.      file system, it is <emphasis>not advisable</emphasis> to rely on
  141.      system backups of your file system for your database backups;
  142.      there is no guarantee that the files will be in a usable,
  143.      consistant state after restoration.
  144.     </para>
  145.    </caution>
  146.    <para>
  147.     <productname>Postgres</productname> provides two utilities to
  148.     backup your system: <application>pg_dump</application> to backup
  149.     individual databases and
  150.     <application>pg_dumpall</application> to backup your installation
  151.     in one step.
  152.    </para>
  153.    <para>
  154.     An individual database can be backed up using the following
  155.     command:
  156.     <programlisting>
  157. % pg_dump <replaceable class="parameter">dbname</replaceable> &gt; <replaceable class="parameter">dbname</replaceable>.pgdump
  158.     </programlisting>
  159.     and can be restored using
  160.     <programlisting>
  161. cat <replaceable class="parameter">dbname</replaceable>.pgdump | psql <replaceable class="parameter">dbname</replaceable>
  162.     </programlisting>
  163.    </para>
  164.    <para>
  165.     This technique can be used to move databases to new
  166.     locations, and to rename existing databases.
  167.    </para>
  168.    <sect2>
  169.     <title>Large Databases</title>
  170.     <note>
  171.      <title>Author</title>
  172.      <para>
  173.       Written by <ulink url="hannu@trust.ee">Hannu Krosing</ulink> on
  174.       1999-06-19.
  175.      </para>
  176.     </note>
  177.     <para>
  178.      Since <productname>Postgres</productname> allows tables larger
  179.      than the maximum file size on your system, it can be problematic
  180.      to dump the table to a file, since the resulting file will likely 
  181.      be larger than the maximum size allowed by your system.</para>
  182.     <para>
  183.      As <application>pg_dump</application> writes to stdout,
  184.      you can just use standard *nix tools 
  185.      to work around this possible problem:
  186.      <itemizedlist>
  187.       <listitem>
  188.        <para>
  189. Use compressed dumps:
  190. <programlisting>
  191. % pg_dump <replaceable class="parameter">dbname</replaceable> | gzip > <replaceable class="parameter">filename</replaceable>.dump.gz
  192. </programlisting>
  193. reload with
  194. <programlisting>
  195. % createdb <replaceable class="parameter">dbname</replaceable>
  196. % gunzip -c <replaceable class="parameter">filename</replaceable>.dump.gz | psql <replaceable class="parameter">dbname</replaceable>
  197. </programlisting>
  198. or
  199. <programlisting>
  200. % cat <replaceable class="parameter">filename</replaceable>.dump.gz | gunzip | psql <replaceable class="parameter">dbname</replaceable>
  201. </programlisting>
  202.        </para>
  203.       </listitem>
  204.       <listitem>
  205.        <para>
  206. Use split:
  207. <programlisting>
  208. % pg_dump <replaceable class="parameter">dbname</replaceable> | split -b 1m - <replaceable class="parameter">filename</replaceable>.dump.
  209. </programlisting>
  210. reload with
  211. <programlisting>
  212. % createdb <replaceable class="parameter">dbname</replaceable>
  213. % cat <replaceable class="parameter">filename</replaceable>.dump.* | pgsql <replaceable class="parameter">dbname</replaceable>
  214. </programlisting>
  215.        </para>
  216.       </listitem>
  217.      </itemizedlist>
  218.     </para>
  219.     <para>
  220.      Of course, the name of the file
  221.      (<replaceable class="parameter">filename</replaceable>) and the
  222.      content of the <application>pg_dump</application> output need not 
  223.      match the name of the database. Also, the restored database can
  224.      have an arbitrary new name, so this mechanism is also suitable
  225.      for renaming databases.
  226.     </para>
  227.    </sect2>
  228.   </sect1>
  229. </chapter>
  230. <!-- Keep this comment at the end of the file
  231. Local variables:
  232. mode: sgml
  233. sgml-omittag:nil
  234. sgml-shorttag:t
  235. sgml-minimize-attributes:nil
  236. sgml-always-quote-attributes:t
  237. sgml-indent-step:1
  238. sgml-indent-data:t
  239. sgml-parent-document:nil
  240. sgml-default-dtd-file:"./reference.ced"
  241. sgml-exposed-tags:nil
  242. sgml-local-catalogs:"/usr/lib/sgml/CATALOG"
  243. sgml-local-ecat-files:nil
  244. End:
  245. -->