summaryrefslogtreecommitdiff
path: root/src/tutorial/README
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1996-07-09 06:22:35 +0000
committerMarc G. Fournier <scrappy@hub.org>1996-07-09 06:22:35 +0000
commitd31084e9d1118b25fd16580d9d8c2924b5740dff (patch)
tree3179e66307d54df9c7b966543550e601eb55e668 /src/tutorial/README
downloadpostgresql-d31084e9d1118b25fd16580d9d8c2924b5740dff.tar.gz
Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01
Diffstat (limited to 'src/tutorial/README')
-rw-r--r--src/tutorial/README24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/tutorial/README b/src/tutorial/README
new file mode 100644
index 0000000000..b35f7b2b07
--- /dev/null
+++ b/src/tutorial/README
@@ -0,0 +1,24 @@
+This directory contains SQL tutorial scripts. To look at them, first do a
+ % make
+to compile all the scripts and C files for the user-defined functions
+and types. (make needs to be GNU make and may be named something
+different on your system)
+
+Then, change to the object directory
+ % cd obj
+
+and run psql with the -s flag:
+ % psql -s
+
+Welcome to the POSTGRES95 interactive sql monitor:
+
+ type \? for help on slash commands
+ type \q to quit
+ type \g or terminate with semicolon to execute query
+ You are currently connected to the database: jolly
+
+jolly==>
+
+From within psql, you can try each individual script file by using
+the \i <filename> psql command.
+