Re: [GENERAL] retrieve statement from catalogs

2003-11-24 Thread Jaime Casanova
STOP MORE SPAM with the new MSN 8 and get 2 months FREE*


Re: [GENERAL] retrieve statement from catalogs

2003-11-02 Thread Jaime Casanova
What a solution!!!

I need to insert the querys in a table

_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE* 
http://join.msn.com/?page=features/junkmail

---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


Re: [GENERAL] retrieve statement from catalogs

2003-10-31 Thread Shridhar Daithankar
On Tuesday 28 October 2003 14:33, Jaime Casanova wrote:
 Hi everybody, can anyone tell me if there's a way to retrieve the select
 instruction executed from the catalogs, or maybe via some structure in a
 trigger?

 The reason is that i have some selects constructed on-the-fly (just part of
 it) and i want to save that in a table in order to know what are the most
 used for optimizing them.

 Another reason for doing that is that i don't know all the selects in the
 program nor the page and this is an easier solution than examine all the
 code.

Use pg_ctl -l logfile option to start postmaster. It will log the things. And 
set log_statement=true in postgresql.conf. 

So there will be all the sql statements logged in.

 HTH

 Shridhar


---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


[GENERAL] retrieve statement from catalogs

2003-10-28 Thread Jaime Casanova
Hi everybody, can anyone tell me if there's a way to retrieve the select 
instruction executed from the catalogs, or maybe via some structure in a 
trigger?

The reason is that i have some selects constructed on-the-fly (just part of 
it) and i want to save that in a table in order to know what are the most 
used for optimizing them.

Another reason for doing that is that i don't know all the selects in the 
program nor the page and this is an easier solution than examine all the 
code.

thanx in advance, el_vigia

_
STOP MORE SPAM with the new MSN 8 and get 2 months FREE* 
http://join.msn.com/?page=features/junkmail

---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
 subscribe-nomail command to [EMAIL PROTECTED] so that your
 message can get through to the mailing list cleanly


Re: [GENERAL] retrieve statement from catalogs

2003-10-28 Thread Andrew Sullivan
On Tue, Oct 28, 2003 at 09:03:12AM +, Jaime Casanova wrote:
 
 Hi everybody, can anyone tell me if there's a way to retrieve the select 
 instruction executed from the catalogs, or maybe via some structure in a 
 trigger?

You could turn on query logging and read the Postgres logs.

A

-- 

Andrew Sullivan 204-4141 Yonge Street
Afilias CanadaToronto, Ontario Canada
[EMAIL PROTECTED]  M2P 2A8
 +1 416 646 3304 x110


---(end of broadcast)---
TIP 8: explain analyze is your friend