Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Kashmira Patel \(kupatel\)
ndrew Sullivan; pgsql-sql@postgresql.org Subject: Re: [SQL] Using EXPLAIN-ANALYZE On Thu, Feb 16, 2006 at 01:08:40PM -0800, Kashmira Patel (kupatel) wrote: > So I would have to put in lots of rows of data in the table before > using the explain command? Well, no, but you won't get us

Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Andrew Sullivan
> To: pgsql-sql@postgresql.org > Subject: Re: [SQL] Using EXPLAIN-ANALYZE > > On Thu, Feb 16, 2006 at 12:07:10PM -0800, Kashmira Patel (kupatel) > wrote: > > Hi all, > >I am pretty new to using Postrgres, and have been looking at the > > messages in this forum for

Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Owen Jacobson
Kashmira Patel wrote: > So I would have to put in lots of rows of data in the table > before using the explain command? No, but PostgreSQL's query planner may take a different approach for a small table than a large one. The statistics used are generated during VACUUM ANALYZE/VACUUM FULL ope

Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Kashmira Patel \(kupatel\)
So I would have to put in lots of rows of data in the table before using the explain command? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrew Sullivan Sent: Thursday, February 16, 2006 12:39 PM To: pgsql-sql@postgresql.org Subject: Re: [SQL] Using

Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Abhishek
http://www.postgresql.org/docs/7.2/static/performance-tips.html   EXPLAIN is explaied quite nicely with examples here. Hope that helps   Bests AJ  On 2/16/06, Kashmira Patel (kupatel) <[EMAIL PROTECTED]> wrote: Hi all,    I am pretty new to using Postrgres, and have been looking at the messages in

Re: [SQL] Using EXPLAIN-ANALYZE

2006-02-16 Thread Andrew Sullivan
On Thu, Feb 16, 2006 at 12:07:10PM -0800, Kashmira Patel (kupatel) wrote: > Hi all, >I am pretty new to using Postrgres, and have been looking at the > messages in this forum for a while. I have noticed that the use of > EXPLAIN-ANALYZE is recommended quite a lot. I read the Postgres docs, > bu