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 not what you are asking. Regards
- [GENERAL] Tables Question e411
- Re: [GENERAL] Tables Question sridhvenk
- [GENERAL] Re: Tables Question Gilles DAROLD
- [GENERAL] Re: Tables Question Glenn Tramm