Chay Wesley wrote:
> If I do a 'Select * from pg_class;', I get 58 rows returned, 2 of
> which are names of tables that I expect to see from the ODBC
> end.However, if I do a 'Select * from pg_user;', I get 0 rows
> returned. How do entries make it into pg_user? I previously ran
> 'createuser' from the command line, and have also 'granted'
> permissions on the tables. Chay Wesley
Don't do a select * from pg_class.... Do the exact entire query that you
see in the logfile (select relname, usename .... where relkind ....)
and see what you get.
Also, if you do a "\d" in the monitor, what do you get?
Byron