You can now create tables and enter queries. Notice that if someone else has already done the create statements, then the tables will be there for you to use. If not, you can paste them in from this file. Use the little green arrow to get the system to process what you have typed in.
You can find quite good documentation in the SQL Server Online Books.
( in csh/tcsh ) setenv PATH ${PATH}:/uns/pgsql/bin setenv LD_LIBRARY_PATH /uns/pgsql/libThis is where your database will be created:
setenv PGDATA ~/databases
initdb -l /uns/pgsql/lib/
postmaster &
createdb cse544
psql -d cse544
You are now in a SQL frontend to PostgresQL, you can create your tables (by pasting in this file - notice it is different from the one used for SQL Server) and enter your queries.
More documentation can be found at http://www.postgresql.org/, along with the source code. Notice that you need a ';' (semicolon) after each line in order for it to be processed.
Send me (bart@cs) mail if you have troubles or questions.