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

数据库系统

开发平台:

Unix_Linux

  1. <refentry id="SQL-GRANT">
  2.  <refmeta>
  3.   <refentrytitle>
  4.    GRANT
  5.   </refentrytitle>
  6.   <refmiscinfo>SQL - Language Statements</refmiscinfo>
  7.  </refmeta>
  8.  <refnamediv>
  9.   <refname>
  10.    GRANT
  11.   </refname>
  12.   <refpurpose>
  13.    Grants access privilege to a user, a group or all users
  14.   </refpurpose>
  15.  </refnamediv>
  16.  <refsynopsisdiv>
  17.   <refsynopsisdivinfo>
  18.    <date>1998-09-23</date>
  19.   </refsynopsisdivinfo>
  20.   <synopsis>
  21. GRANT <replaceable class="PARAMETER">privilege</replaceable> [, ...] ON <replaceable class="PARAMETER">object</replaceable> [, ...]
  22.     TO { PUBLIC | GROUP <replaceable class="PARAMETER">group</replaceable> | <replaceable class="PARAMETER">username</replaceable> }
  23.   </synopsis>
  24.     
  25.   <refsect2 id="R2-SQL-GRANT-1">
  26.    <refsect2info>
  27.     <date>1998-09-23</date>
  28.    </refsect2info>
  29.    <title>
  30.     Inputs
  31.    </title>
  32.    <para>
  33.     <variablelist>
  34.      <varlistentry>
  35.       <term><replaceable class="PARAMETER">privilege</replaceable></term>
  36.       <listitem>
  37.        <para>
  38. The possible privileges are:
  39. <variablelist>
  40.  <varlistentry>
  41.   <term>SELECT</term>
  42.   <listitem>
  43.    <para>
  44.     Access all of the columns of a specific
  45.     table/view.
  46.    </para>
  47.   </listitem>
  48.  </varlistentry>
  49.  <varlistentry>
  50.   <term>INSERT</term>
  51.   <listitem>
  52.    <para>
  53.     Insert data into all columns of a
  54.     specific table.
  55.    </para>
  56.   </listitem>
  57.  </varlistentry>
  58.  <varlistentry>
  59.   <term>UPDATE</term>
  60.   <listitem>
  61.    <para>
  62.     Update all columns of a specific
  63.     table.
  64.    </para>
  65.   </listitem>
  66.  </varlistentry>
  67.  <varlistentry>
  68.   <term>DELETE</term>
  69.   <listitem>
  70.    <para>
  71.     Delete rows from a specific table.
  72.    </para>
  73.   </listitem>
  74.  </varlistentry>
  75.  <varlistentry>
  76.   <term>RULE</term>
  77.   <listitem>
  78.    <para>
  79.     Define rules on the table/view
  80.     (See CREATE RULE statement).
  81.    </para>
  82.   </listitem>
  83.  </varlistentry>
  84.  <varlistentry>
  85.   <term>ALL</term>
  86.   <listitem>
  87.    <para>
  88.     Grant all privileges.
  89.    </para>
  90.   </listitem>
  91.  </varlistentry>
  92. </variablelist>
  93.        </para>
  94.       </listitem>
  95.      </varlistentry>
  96.      <varlistentry>
  97.       <term><replaceable class="PARAMETER">object</replaceable></term>
  98.       <listitem>
  99.        <para>
  100. The name of an object to which to grant access.
  101. The possible objects are:
  102. <itemizedlist spacing="compact" mark="bullet">
  103.  <listitem>
  104.   <para>
  105.    table 
  106.   </para>
  107.  </listitem>
  108.  <listitem>
  109.   <para>
  110.    view 
  111.   </para>
  112.  </listitem>
  113.  <listitem>
  114.   <para>
  115.    sequence
  116.   </para>
  117.  </listitem>
  118.  <listitem>
  119.   <para>
  120.    index
  121.   </para>
  122.  </listitem>
  123. </itemizedlist>
  124.        </para>
  125.       </listitem>
  126.      </varlistentry>
  127.      <varlistentry>
  128.       <term>PUBLIC</term>
  129.       <listitem>
  130.        <para>
  131. A short form representing all users.
  132.        </para>
  133.       </listitem>
  134.      </varlistentry>
  135.      <varlistentry>
  136.       <term>GROUP <replaceable class="PARAMETER">group</replaceable></term>
  137.       <listitem>
  138.        <para>
  139. A <replaceable class="PARAMETER">group</replaceable> to whom to grant privileges.
  140. In the current release, the group must be created explicitly as described below.
  141.        </para>
  142.       </listitem>
  143.      </varlistentry>
  144.      <varlistentry>
  145.       <term>
  146.        <replaceable class="PARAMETER">username</replaceable>
  147.       </term>
  148.       <listitem>
  149.        <para>
  150. The name of a user to whom grant privileges. PUBLIC is a short form
  151. representing all users.
  152.        </para>
  153.       </listitem>
  154.      </varlistentry>
  155.     </variablelist>
  156.    </para>
  157.   </refsect2>
  158.   <refsect2 id="R2-SQL-GRANT-2">
  159.    <refsect2info>
  160.     <date>1998-09-23</date>
  161.    </refsect2info>
  162.    <title>
  163.     Outputs
  164.    </title>
  165.    <para>
  166.     <variablelist>
  167.      <varlistentry>
  168.       <term><computeroutput>
  169. CHANGE
  170.        </computeroutput></term>
  171.       <listitem>
  172.        <para>
  173. Message returned if successful.
  174.        </para>
  175.       </listitem>
  176.      </varlistentry>
  177.      <varlistentry>
  178.       <term><computeroutput>
  179. ERROR:  ChangeAcl: class "<replaceable class="PARAMETER">object</replaceable>" not found
  180.        </computeroutput></term>
  181.       <listitem>
  182.        <para>
  183. Message returned if the specified object is not available or 
  184. if it is impossible
  185. to give privileges to the specified group or users.
  186.        </para>
  187.       </listitem>
  188.      </varlistentry>
  189.     </variablelist>
  190.    </para>
  191.   </refsect2>
  192.  </refsynopsisdiv>
  193.  <refsect1 id="R1-SQL-GRANT-1">
  194.   <refsect1info>
  195.    <date>1998-09-23</date>
  196.   </refsect1info>
  197.   <title>
  198.    Description
  199.   </title>
  200.   <para>
  201.    <command>GRANT</command> allows the creator of an object to give specific permissions to
  202.    all users (PUBLIC) or to a certain user or group. 
  203.    Users other than the creator don't have any access permission 
  204.    unless the creator GRANTs permissions, after the object
  205.    is created.
  206.   </para>
  207.   <para>
  208.    Once a user has a privilege on an object, he is enabled to exercise
  209.    that privilege.
  210.    There is no need to GRANT privileges to the creator of 
  211.    an object, the creator automatically holds ALL privileges, and can 
  212.    also drop the object. 
  213.   </para>
  214.   <refsect2 id="R2-SQL-GRANT-3">
  215.    <refsect2info>
  216.     <date>1998-09-23</date>
  217.    </refsect2info>
  218.    <title>
  219.     Notes
  220.    </title>
  221.    <para>
  222.     Currently, to grant privileges in <productname>Postgres</productname>
  223.     to only few columns, you must
  224.     create a view having desired columns and then grant privileges
  225.     to that view.
  226.    </para>
  227.    <para>
  228.     Use <command>psql z</command>
  229.     for further information about permissions 
  230.     on existing objects:
  231.     <programlisting>
  232.   Database    = lusitania
  233.    +------------------+---------------------------------------------+
  234.    |  Relation        |        Grant/Revoke Permissions             |
  235.    +------------------+---------------------------------------------+
  236.    | mytable          | {"=rw","miriam=arwR","group todos=rw"}      |
  237.    +------------------+---------------------------------------------+
  238.    Legend:
  239.          uname=arwR -- privileges granted to a user
  240.    group gname=arwR -- privileges granted to a GROUP
  241.               =arwR -- privileges granted to PUBLIC
  242.                   r -- SELECT
  243.                   w -- UPDATE/DELETE
  244.                   a -- INSERT
  245.                   R -- RULE
  246.                arwR -- ALL
  247.     </programlisting>
  248.     <tip>
  249.      <para>
  250.       Currently, to create a GROUP you have to insert 
  251.       data manually into table pg_group as:
  252.       <programlisting>
  253. INSERT INTO pg_group VALUES ('todos');
  254. CREATE USER miriam IN GROUP todos;
  255.       </programlisting>
  256.      </para>
  257.     </tip>
  258.    </para>
  259.    <para>
  260.     Refer to REVOKE statements to revoke access privileges.
  261.    </para>
  262.   </refsect2>
  263.  </refsect1>
  264.  <refsect1 id="R1-SQL-GRANT-2">
  265.   <title>
  266.    Usage
  267.   </title>
  268.   <para>
  269.    Grant insert privilege to all users on table films:
  270.    <programlisting>
  271. GRANT INSERT ON films TO PUBLIC;
  272.    </programlisting>
  273.   </para>
  274.   <para>
  275.    Grant all privileges to user manuel on view kinds:
  276.    <programlisting>
  277. GRANT ALL ON kinds TO manuel;
  278.    </programlisting>
  279.   </para>
  280.  </refsect1>
  281.  <refsect1 id="R1-SQL-GRANT-3">
  282.   <title>
  283.    Compatibility
  284.   </title>
  285.   <para>
  286.   </para>
  287.     
  288.   <refsect2 id="R2-SQL-GRANT-4">
  289.    <refsect2info>
  290.     <date>1998-09-23</date>
  291.    </refsect2info>
  292.    <title>
  293.     SQL92
  294.    </title>
  295.    <para>
  296.     The <acronym>SQL92</acronym> syntax for GRANT allows setting privileges 
  297.     for individual columns
  298.     within a table, and allows setting a privilege to grant
  299.     the same privileges to others:
  300.     <synopsis>
  301. GRANT <replaceable class="PARAMETER">privilege</replaceable> [, ...]
  302.     ON <replaceable class="PARAMETER">object</replaceable> [ ( <replaceable class="PARAMETER">column</replaceable> [, ...] ) ] [, ...]
  303.     TO { PUBLIC | <replaceable class="PARAMETER">username</replaceable> [, ...] } [ WITH GRANT OPTION ]
  304.     </synopsis>
  305.    </para>
  306.    <para>
  307.     Fields are compatible with the those in the <acronym>Postgres</acronym>
  308.     implementation, with the following additions:
  309.     <variablelist>
  310.      <varlistentry>
  311.       <term><replaceable class="PARAMETER">privilege</replaceable></term>
  312.       <listitem>
  313.        <para>
  314. <acronym>SQL92</acronym> permits additional privileges to be specified:
  315. <variablelist>
  316.  <varlistentry>
  317.   <term>SELECT</term>
  318.   <listitem>
  319.    <para>
  320.    </para>
  321.   </listitem>
  322.  </varlistentry>
  323.  <varlistentry>
  324.   <term>REFERENCES</term>
  325.   <listitem>
  326.    <para>
  327.     Allowed to reference some or all of the columns of a specific
  328.     table/view in integrity constraints.
  329.    </para>
  330.   </listitem>
  331.  </varlistentry>
  332.  <varlistentry>
  333.   <term>USAGE</term>
  334.   <listitem>
  335.    <para>
  336.     Allowed to use a domain, character set, collation
  337.     or translation.
  338.     If an object specifies anything other than a table/view,
  339.     <replaceable class="PARAMETER">privilege</replaceable>
  340.     must specify only USAGE.
  341.    </para>
  342.   </listitem>
  343.  </varlistentry>
  344. </variablelist>
  345.        </para>
  346.       </listitem>
  347.      </varlistentry>
  348.      <varlistentry>
  349.       <term><replaceable class="PARAMETER">object</replaceable></term>
  350.       <listitem>
  351.        <para>
  352. <variablelist>
  353.  <varlistentry>
  354.   <term>[ TABLE ] <replaceable class="PARAMETER">table</replaceable></term>
  355.   <listitem>
  356.    <para>
  357.     <acronym>SQL92</acronym> allows the additional
  358.     non-functional keyword <literal>TABLE</literal>.
  359.    </para>
  360.   </listitem>
  361.  </varlistentry>
  362.  <varlistentry>
  363.   <term>CHARACTER SET</term>
  364.   <listitem>
  365.    <para>
  366.     Allowed to use the specified character set.
  367.    </para>
  368.   </listitem>
  369.  </varlistentry>
  370.  <varlistentry>
  371.   <term>COLLATION</term>
  372.   <listitem>
  373.    <para>
  374.     Allowed to use the specified collation sequence.
  375.    </para>
  376.   </listitem>
  377.  </varlistentry>
  378.  <varlistentry>
  379.   <term>TRANSLATION</term>
  380.   <listitem>
  381.    <para>
  382.     Allowed to use the specified character set translation.
  383.    </para>
  384.   </listitem>
  385.  </varlistentry>
  386.  <varlistentry>
  387.   <term>DOMAIN</term>
  388.   <listitem>
  389.    <para>
  390.     Allowed to use the specified domain.
  391.    </para>
  392.   </listitem>
  393.  </varlistentry>
  394.  <varlistentry>
  395.   <term>WITH GRANT OPTION</term>
  396.   <listitem>
  397.    <para>
  398.     Allowed to grant the same privilege to others.
  399.    </para>
  400.   </listitem>
  401.  </varlistentry>
  402. </variablelist>
  403.        </para>
  404.       </listitem>
  405.      </varlistentry>
  406.     </variablelist>
  407.    </para>
  408.   </refsect2>
  409.  </refsect1>
  410. </refentry>
  411. <!-- Keep this comment at the end of the file
  412. Local variables:
  413. mode: sgml
  414. sgml-omittag:nil
  415. sgml-shorttag:t
  416. sgml-minimize-attributes:nil
  417. sgml-always-quote-attributes:t
  418. sgml-indent-step:1
  419. sgml-indent-data:t
  420. sgml-parent-document:nil
  421. sgml-default-dtd-file:"../reference.ced"
  422. sgml-exposed-tags:nil
  423. sgml-local-catalogs:"/usr/lib/sgml/catalog"
  424. sgml-local-ecat-files:nil
  425. End:
  426. -->