"Summer S. Wilson" <collectonian@eclectic-world.com> writes:
> I am trying to create a system to let my users do some Ad Hoc querying of
> their database and I found a nifty program to do it. Unfortunately it was
> written with a MS SQL database in mind (I guess) so I have no clue how to
> translate the SQL statements that pull tables and columns to one that
> PostgreSQL will understand. I've posted it below...can anyone point me in
> the right direction for what translates to what?
Hmm. This looks like it probably translates to a query on PG's
pg_class, pg_attribute, and pg_type system catalogs, which you can find
documented at
http://www.ca.postgresql.org/users-lounge/docs/7.1/postgres/catalogs.html
but I have no idea where to look for equivalent documentation on MS SQL.
BTW, I'd judge that this is emitting something pretty close to the
display produced by psql's "\d table". You might care to start psql
with -E switch and see what SQL queries it uses to collect the info
for \d. It'd be a good starting point anyway.
regards, tom lane