
IF YOU HAVE THE MEANS: Please consider donating $10 to the American Cancer Society's RELAY FOR LIFE! The 2010 Drive Ends April 10.
The purpose for doing this most likely would be; you added several tables to an existing schema, then you developed some software system to use those new tables. Once you get the system working and bug free in dev, you want to package up just the changes to ship as a script for your production release.
/usr/local/pgsql/bin/pg_dump -t truncate_tasks \
-t truncate_list \
-t summary_hour_memory \
-t summary_minute_memory \
-t sumry_events_task \
-t sumry_evnts_ident_ap_dy \
-t sumry_evnts_ident_rel_dy \
-t sumry_evnts_mh_ap_pid_dy \
-t sumry_evnts_mh_ap_pid_hr \
-t sumry_evnts_mh_ap_pid_min \
-s -U postgres test-db
What do each of the commands mean?