RV: [GENERAL] Tables Question

2000-08-17 Thread Rafa Couto
> How can I retrieve the "names" of all the tables in my database ? In Postgres 7: >From psql: \dt or \d for all objects >From SQL: select * from pg_tables where tablename not like 'pg_%';

Re: [GENERAL] Tables Question

2000-08-17 Thread Gilles DAROLD
Hi, > How can I retrieve the "names" of all the tables in my database ? Not sure what you are using but if you use DBI perl interface you can use this two functions : $sth = $dbh->table_info; @names = $dbh->tables; They works well with DBD::Pg. In psql simply type \d. this is certainly n

Re: [GENERAL] Tables Question

2000-08-16 Thread sridhvenk
Try typing "\dt" from the psql prompt of the database whose table list u want On Thu, 17 Aug 2000 [EMAIL PROTECTED] wrote: > How can I retrieve the "names" of all the tables in my database ? > > TIA >

[GENERAL] Tables Question

2000-08-16 Thread e411
How can I retrieve the "names" of all the tables in my database ? TIA