Skip to content

Commit

Permalink
0000900: Add grant information to User's Guide for PostreSQL when a d…
Browse files Browse the repository at this point in the history
…ifferent schema is involved.
  • Loading branch information
mhanes committed Nov 6, 2012
1 parent 1197f70 commit 887ef00
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion symmetric-assemble/src/docbook/databases.xml
Expand Up @@ -325,7 +325,11 @@ CREATE TRUSTED PROCEDURAL LANGUAGE plpgsql
<programlisting><![CDATA[
alter user {user name} set search_path to {schema name};
]]></programlisting>

In addition, you will likely need the follow privelegdes as well:
<programlisting><![CDATA[
GRANT USAGE ON SCHEMA {schema name} TO {user name};
GRANT CREATE ON SCHEMA {schema name} TO {user name};
]]></programlisting>
</para>
</section>
<section id="ap02-greenplum">
Expand Down

0 comments on commit 887ef00

Please sign in to comment.