Damon,
> Is it possible to determine which column(s), if any, are constrained> with PRIMARY KEY?
From psql, use:
\d table_name
You will get a list of table characteristics, including any constraints.
-Josh