Re: [PERFORM] Using LIKE expression problem..

2004-05-18 Thread Joseph Shraibman
ocale? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Kings-Lynne Sent: Wednesday, May 12, 2004 3:59 PM To: Michael Ryan S. Puncia Cc: [EMAIL PROTECTED] Subject: Re: [PERFORM] Using LIKE expression problem.. Are you in a non-C locale? Chris Michael R

Re: [PERFORM] Using LIKE expression problem..

2004-05-12 Thread Michael Ryan S. Puncia
chael Ryan S. Puncia Cc: [EMAIL PROTECTED] Subject: Re: [PERFORM] Using LIKE expression problem.. Are you in a non-C locale? Chris Michael Ryan S. Puncia wrote: > Yes , I already do that but the same result .. LIKE uses seq scan > > -Original Message- > From: [EMAIL PROTECTED]

Re: [PERFORM] Using LIKE expression problem..

2004-05-12 Thread Christopher Kings-Lynne
Ryan S. Puncia Cc: [EMAIL PROTECTED] Subject: Re: [PERFORM] Using LIKE expression problem.. In the query plan ..it uses seq scan rather than index scan .. why ? I have index on lastname, firtname. Have you run VACUUM ANALYZE; on the table recently? Chris ---(end of

Re: [PERFORM] Using LIKE expression problem..

2004-05-12 Thread Michael Ryan S. Puncia
LIKE expression problem.. > In the query plan ..it uses seq scan rather than index scan .. why ? I > have index on lastname, firtname. Have you run VACUUM ANALYZE; on the table recently? Chris ---(end of broadcast)--- TIP 7: don'

Re: [PERFORM] Using LIKE expression problem..

2004-05-11 Thread Christopher Kings-Lynne
In the query plan ..it uses seq scan rather than index scan .. why ? I have index on lastname, firtname… Have you run VACUUM ANALYZE; on the table recently? Chris ---(end of broadcast)--- TIP 7: don't forget to increase your free space map settings

[PERFORM] Using LIKE expression problem..

2004-05-11 Thread Michael Ryan S. Puncia
Hi everybody..     Before anything else I would like to thank all those person who answers my previous question… again thank you very much   This is my question …     In my query .. Select * from table1 where lastname LIKE  ‘PUNCIA%’..   In the query plan ..it uses seq s