[ADMIN] Show tables query

2006-04-02 Thread Andy Shellam
Hi, Is there an SQL command supported by Postgres to return a list of tables in a database? For example on mySQL, you can connect to a database and issue the command SHOW TABLES to bring back a list of tables in that database. In PG this throws the error "unknown configuration parameter

Re: [ADMIN] Show tables query

2006-04-02 Thread Grega Bremec
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Andy Shellam wrote: | Hi, | | Is there an SQL command supported by Postgres to return a list of | tables in a database? | | For example on mySQL, you can connect to a database and issue the | command SHOW TABLES to bring back a list of tables in

Re: [ADMIN] Show tables query

2006-04-02 Thread Oleg Bartunov
On Sun, 2 Apr 2006, Grega Bremec wrote: -BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Andy Shellam wrote: | Hi, | | Is there an SQL command supported by Postgres to return a list of | tables in a database? | | For example on mySQL, you can connect to a database and issue the | command

FW: [ADMIN] Show tables query

2006-04-02 Thread Andy Shellam
Hi Grega, That's perfect thanks. I needed the SQL as it will be running in a web application, and I need to use the resulting list for processing within the application. Many thanks Andy -Original Message- From: Grega Bremec [mailto:[EMAIL PROTECTED] Sent: Sunday, 02 April, 2006

Re: [ADMIN] Show tables query

2006-04-02 Thread Christopher Browne
After takin a swig o' Arrakan spice grog, [EMAIL PROTECTED] (Andy Shellam) belched out: Is there an SQL command supported by Postgres to return a list of tables in a database? Yes, it's called SELECT. There is a standard schema called INFORMATION_SCHEMA, which contains a variety of relevant

Re: [ADMIN] Show tables query

2006-04-02 Thread Rajesh Kumar Mallah
On 4/2/06, Christopher Browne [EMAIL PROTECTED] wrote: After takin a swig o' Arrakan spice grog, [EMAIL PROTECTED] (Andy Shellam) belched out: Is there an SQL command supported by Postgres to return a list of tables in a database? Yes, it's called SELECT.There is a standard schema called

Re: FW: [ADMIN] Setting up of PITR system.

2006-04-02 Thread Grega Bremec
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Rajesh Kumar Mallah wrote: | | Instead of taking a round about method i am using the content of the | file, (This was also suggested by Andy at somepoint) After reading the docs again, that's what I would do as well, indeed. :) | lately i feel

Re: [ADMIN] Show tables query

2006-04-02 Thread Andy Shellam
After takin a swig o' Arrakan spice grog, [EMAIL PROTECTED] (Andy Shellam) belched out: Is there an SQL command supported by Postgres to return a list of tables in a database? Sorry, did I say something wrong? I thought it was a perfectly valid question actually. The application in mind is

Re: [ADMIN] Show tables query

2006-04-02 Thread Rajesh Kumar Mallah
On 4/2/06, Andy Shellam [EMAIL PROTECTED] wrote: After takin a swig o' Arrakan spice grog, [EMAIL PROTECTED] (Andy Shellam) belched out: Is there an SQL command supported by Postgres to return a list of tables in a database? Sorry, did I say something wrong? I thought it was a perfectly

Re: [ADMIN] Show tables query

2006-04-02 Thread Andy Shellam
Thanks Rajesh, That's always a risk anyway with anything - hence where upgrade testing comes in ;-) I'll probably go this way if I do indeed have this need still - it was only a preliminary thought process, I just thought I'd ask the question. Thanks Andy -Original Message- From:

Re: FW: [ADMIN] Setting up of PITR system.

2006-04-02 Thread Rajesh Kumar Mallah
On 4/2/06, Grega Bremec [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Rajesh Kumar Mallah wrote: | | Instead of taking a round about method i am using the content of the | file, (This was also suggested by Andy at somepoint) After reading the docs again,

Re: [ADMIN] Show tables query

2006-04-02 Thread Tom Lane
Rajesh Kumar Mallah [EMAIL PROTECTED] writes: information_schema is the standard which are more likely to behave the same in all versions of pgsql becoz they are(currently) views on the sys catalogs. Unfortunately, the SQL committee did tremendous damage to that argument by changing the

Re: FW: [ADMIN] Setting up of PITR system.

2006-04-02 Thread Alvaro Herrera
Rajesh Kumar Mallah wrote: Another area i was thinking to improve this script was to make it dig out all the tablespace folders to be archived by looking into PGDATADIR/pg_tblspc . This shall make the script more generic. pg_tblspc as contents like below: $ ls -l total 0 lrwxrwxrwx 1

[ADMIN] semctl(): Invalid argument

2006-04-02 Thread Marc G. Fournier
What would cause the following? # psql -U pgsql -l psql: FATAL: semctl(327686, 3, SETVAL, 0) failed: Invalid argument The server is FreeBSD 6.1-PRERELEASE ... there are two jails running on it ... both jails are running PostgreSQL 7.4 ... I have the kernel built with enough semaphores:

Re: [ADMIN] Show tables query

2006-04-02 Thread Peter Eisentraut
Tom Lane wrote: Unfortunately, the SQL committee did tremendous damage to that argument by changing the definitions of some of those views in SQL2003 :-( The only changes to existing views were one renamed column and two or three cases with relaxed permission checks so that more objects are

Re: [ADMIN] semctl(): Invalid argument

2006-04-02 Thread Marc G. Fournier
It looks like moving to FreeBSD 6.x for some of our servers is biting me in the butt ... they broke something with semaphores that used to work with 4.x, so that you can't run two postmasters on port 5432 within two seperate jails ... :( On Sun, 2 Apr 2006, Marc G. Fournier wrote: What

Re: [ADMIN] auto vacuuming

2006-04-02 Thread Tom Lane
Alvaro Herrera [EMAIL PROTECTED] writes: Tom Lane wrote: The handwriting on the wall says that autovac will soon be on by default, and perhaps become not-disablable some day after that (like the second or third time we hear from someone who's lost their data to XID wraparound after disabling

Re: [ADMIN] Bloated pg_shdepend_depender_index

2006-04-02 Thread adey
Please could someone help me with my questions below? On 3/25/06, adey [EMAIL PROTECTED] wrote: Two questions in this regard please? 1) Is tuple theory not the root of this problem 2) Vacuum does much the same as a traditional database reorg, and online reorgs are a reality now 1) If I

Re: [ADMIN] Setting up of PITR system.

2006-04-02 Thread Brendan Duddridge
Whenever you get a finalized script including all the enhancements you've been talking about, I would really love to have a copy as I'm sure lots of people here would. I think this is something that should be included in the standard distribution. Can I make a couple of suggestions? 1.

Re: [ADMIN] Setting up of PITR system.

2006-04-02 Thread Rajesh Kumar Mallah
On 4/3/06, Brendan Duddridge [EMAIL PROTECTED] wrote: Whenever you get a finalized script including all the enhancements you've been talking about, I would really love to have a copy as I'm sure lots of people here would. I think this is something that should be included in the standard