Do these tablenames have capital letters in them? If so, you must refer to them in this manner:
SELECT * FROM "CapTableName";
SELECT "CapTableName"."CapColName" FROM "CapTableName";
Normally PostgreSQL it is case non-sensitive, meaning if you do a normal table create statement, you can use capitols to create it, but any query against it can be done using any mxture of upper and lower case. If you want the actual names to BE case-sensitive, you must use quotes around them in the table create statement, and in the queries.
So I assume that when exporting the tables, ODBC uses the "full quotes" method of creating tables, which requires quotes for querying. Just my guess, tho...
If you still can't get this resolved, try doing a dump of the database structure (not data), and show it here. You do this by using the "pg_dump -s databasename". You can pipe this output to a text file by doing "pg_dump -s -f filename databasename". -------------------------------------------
"Calculus is just the meaningless manipulation of higher symbols"
-unknown F student