Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8ddb046b
Commit
8ddb046b
authored
Jun 21, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update examples of create/drop scripts.
parent
4c2d3ccf
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
24 deletions
+9
-24
doc/src/sgml/ref/createdb.sgml
doc/src/sgml/ref/createdb.sgml
+2
-6
doc/src/sgml/ref/createuser.sgml
doc/src/sgml/ref/createuser.sgml
+1
-4
doc/src/sgml/ref/dropdb.sgml
doc/src/sgml/ref/dropdb.sgml
+2
-4
doc/src/sgml/ref/dropuser.sgml
doc/src/sgml/ref/dropuser.sgml
+2
-4
doc/src/sgml/start.sgml
doc/src/sgml/start.sgml
+2
-6
No files found.
doc/src/sgml/ref/createdb.sgml
View file @
8ddb046b
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/createdb.sgml,v 1.4
5 2007/06/04 10:02:40
petere Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/createdb.sgml,v 1.4
6 2007/06/21 10:43:09
petere Exp $
PostgreSQL documentation
-->
...
...
@@ -265,10 +265,7 @@ PostgreSQL documentation
database server:
<screen>
<prompt>$ </prompt><userinput>createdb demo</userinput>
<computeroutput>CREATE DATABASE</computeroutput>
</screen>
The response is the same as you would have gotten from running the
<command>CREATE DATABASE</command> <acronym>SQL</acronym> command.
</para>
<para>
...
...
@@ -278,8 +275,7 @@ PostgreSQL documentation
underlying command:
<screen>
<prompt>$ </prompt><userinput>createdb -p 5000 -h eden -E LATIN1 -e demo</userinput>
<computeroutput>CREATE DATABASE "demo" WITH ENCODING = 'LATIN1'</computeroutput>
<computeroutput>CREATE DATABASE</computeroutput>
<computeroutput>CREATE DATABASE demo ENCODING 'LATIN1';</computeroutput>
</screen>
</para>
</refsect1>
...
...
doc/src/sgml/ref/createuser.sgml
View file @
8ddb046b
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/createuser.sgml,v 1.4
8 2007/06/04 10:02:40
petere Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/createuser.sgml,v 1.4
9 2007/06/21 10:43:09
petere Exp $
PostgreSQL documentation
-->
...
...
@@ -358,7 +358,6 @@ PostgreSQL documentation
<computeroutput>Shall the new role be a superuser? (y/n) </computeroutput><userinput>n</userinput>
<computeroutput>Shall the new role be allowed to create databases? (y/n) </computeroutput><userinput>n</userinput>
<computeroutput>Shall the new role be allowed to create more new roles? (y/n) </computeroutput><userinput>n</userinput>
<computeroutput>CREATE USER</computeroutput>
</screen>
</para>
...
...
@@ -369,7 +368,6 @@ PostgreSQL documentation
<screen>
<prompt>$ </prompt><userinput>createuser -h eden -p 5000 -S -D -R -e joe</userinput>
<computeroutput>CREATE ROLE joe NOSUPERUSER NOCREATEDB NOCREATEROLE INHERIT LOGIN;</computeroutput>
<computeroutput>CREATE ROLE</computeroutput>
</screen>
</para>
...
...
@@ -381,7 +379,6 @@ PostgreSQL documentation
<computeroutput>Enter password for new role: </computeroutput><userinput>xyzzy</userinput>
<computeroutput>Enter it again: </computeroutput><userinput>xyzzy</userinput>
<computeroutput>CREATE ROLE joe PASSWORD 'xyzzy' SUPERUSER CREATEDB CREATEROLE INHERIT LOGIN;</computeroutput>
<computeroutput>CREATE ROLE</computeroutput>
</screen>
In the above example, the new password isn't actually echoed when typed,
but we show what was typed for clarity. However the password
...
...
doc/src/sgml/ref/dropdb.sgml
View file @
8ddb046b
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/dropdb.sgml,v 1.3
2 2007/06/04 10:02:40
petere Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/dropdb.sgml,v 1.3
3 2007/06/21 10:43:09
petere Exp $
PostgreSQL documentation
-->
...
...
@@ -192,7 +192,6 @@ PostgreSQL documentation
database server:
<screen>
<prompt>$ </prompt><userinput>dropdb demo</userinput>
<computeroutput>DROP DATABASE</computeroutput>
</screen>
</para>
...
...
@@ -204,8 +203,7 @@ PostgreSQL documentation
<prompt>$ </prompt><userinput>dropdb -p 5000 -h eden -i -e demo</userinput>
<computeroutput>Database "demo" will be permanently deleted.
Are you sure? (y/n) </computeroutput><userinput>y</userinput>
<computeroutput>DROP DATABASE "demo"
DROP DATABASE</computeroutput>
<computeroutput>DROP DATABASE demo;</computeroutput>
</screen>
</para>
</refsect1>
...
...
doc/src/sgml/ref/dropuser.sgml
View file @
8ddb046b
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.3
7 2007/06/04 10:02:40
petere Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/dropuser.sgml,v 1.3
8 2007/06/21 10:43:09
petere Exp $
PostgreSQL documentation
-->
...
...
@@ -195,7 +195,6 @@ PostgreSQL documentation
server:
<screen>
<prompt>$ </prompt><userinput>dropuser joe</userinput>
<computeroutput>DROP ROLE</computeroutput>
</screen>
</para>
...
...
@@ -207,8 +206,7 @@ PostgreSQL documentation
<prompt>$ </prompt><userinput>dropuser -p 5000 -h eden -i -e joe</userinput>
<computeroutput>Role "joe" will be permanently removed.
Are you sure? (y/n) </computeroutput><userinput>y</userinput>
<computeroutput>DROP ROLE "joe"
DROP ROLE</computeroutput>
<computeroutput>DROP ROLE joe;</computeroutput>
</screen>
</para>
</refsect1>
...
...
doc/src/sgml/start.sgml
View file @
8ddb046b
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.4
4 2007/01/31 20:56:19 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.4
5 2007/06/21 10:43:09 petere
Exp $ -->
<chapter id="tutorial-start">
<title>Getting Started</title>
...
...
@@ -154,11 +154,7 @@
<screen>
<prompt>$</prompt> <userinput>createdb mydb</userinput>
</screen>
This should produce as response:
<screen>
CREATE DATABASE
</screen>
If so, this step was successful and you can skip over the
If this produces no response then this step was successful and you can skip over the
remainder of this section.
</para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment