Re[2]: Improving Query speed - any suggestions?

2003-10-23 Thread Peter Buri
Hello, one more idea, use something like this [ i hope it's correct :) ] SELECT content.row_id AS row_id, content.app_id AS app_id, CASE s1.field_id when 69 then "niche", when 70 then "type", when 71 then "title", when 72 then "descr

Re: Improving Query speed - any suggestions?

2003-10-23 Thread Matt Babineau
Thanks everyone for your input, I'll try the ramdisk idea, I read about someone else who tried that and had some success. Beyond, that I'm gonna take the long route and redesign the database to be a bit more conventional. Thanks! Matt On Thu, 2003-10-23 at 20:28, Peter Buri wrote: > Hello, > > a

Re: Improving Query speed - any suggestions?

2003-10-23 Thread Peter Buri
Hello, as i see you use one table to store all the data, but the cohesive data are split into 15! different rows. I think to get the best performance you shoud redesign your tabel. Use at last first normal form [1NF], if the app_id is uniq this can be the primary key [which will speed up the quer

Re: Improving Query speed - any suggestions?

2003-10-23 Thread mos
At 02:05 PM 10/23/2003, you wrote: Hey All- I am trying to improve the speed of a website and was wondering if anyone had any ways I can rewrite these queries so that they actually run with some descent speed. Its a really nasty query and I'm not sure where to start, I'd like to now have to redo t

RE: Improving Query speed - any suggestions?

2003-10-23 Thread Dathan Vance Pattishall
ilto:[EMAIL PROTECTED] -->Sent: Thursday, October 23, 2003 12:05 PM -->To: [EMAIL PROTECTED] -->Subject: Improving Query speed - any suggestions? --> -->Hey All- --> -->I am trying to improve the speed of a website and was wondering if -->anyone had any ways I can rewrite these querie

Improving Query speed - any suggestions?

2003-10-23 Thread Matt Babineau
Hey All- I am trying to improve the speed of a website and was wondering if anyone had any ways I can rewrite these queries so that they actually run with some descent speed. Its a really nasty query and I'm not sure where to start, I'd like to now have to redo the tables and I already put some i