Rich Shepard <rshepard@xxxxxxxxxxxxxxx> writes: > When installing the application I specified the database name as 'contacts' > (not very innovative or clever, but descriptive). When I open the database > with 'psql contacts' and ask to have the tables dumped (with \d), they go > streaming by on the display. Of course, the bash 'tee' or 'less' commands > don't work to allow me to capture the stream to a file or page through the > output. You can either use 'pg_dump --schema-only' as another poster suggested, or use the '\o' command in psql. -Doug