Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion - Mailing list pgsql-general

From Jochem van Dieten
Subject Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion
Date
Msg-id 3D2634C6.7020707@oli.tudelft.nl
Whole thread Raw
In response to Performance of ODBC-Driver /w IIS5.0/ColdFusion  ("Markus Wollny" <Markus.Wollny@computec.de>)
Responses Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion
List pgsql-general
Markus Wollny wrote:
>
> Now what I'd need is some advice on how to locate the bottleneck - could
> it be ODBC itself? If so, how can we find a remedy? Has anybody got some
> similar combination (IIS/CF/ODBC/PGSQL) up and running with similar size
> in terms of access and size of the database? Where it it that we're
> going wrong? Can we tune some ODBC setting somewhere? How do we
> configure ColdFusion correctly to get maximum performance?

Enable full debugging output in ColdFusion. Do not forget to enable it
in each query statement (use the debug="true" attribute) to get query
stats. Compared to what you see when connecting to Oracle, anything
weird? In the NT Performance Monitor, what is the average request time,
queue time and db time?

If you have queries returning multiple rows, make sure you have a
blockfactor set, this can make up a significant difference. Are you
returning text fields in queries? What if you explicitly cast them to
varchar fields (SELECT textfield::varchar ...)?

What are your settings for connection pooling? How does the bahaviour
change when you change that setting? Are you using cfqueryparam by any
chance? What happens if you change that?

Jochem

--
Jochem van Dieten
Team Macromedia Volunteer fro ColdFusion

http://www.macromedia.com/support/forums/team_macromedia/




pgsql-general by date:

Previous
From: Lee Harr
Date:
Subject: Re: Null in the where-clause
Next
From: nconway@klamath.dyndns.org (Neil Conway)
Date:
Subject: Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion