Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion

Поиск
Список
Период
Сортировка
От Jochem van Dieten
Тема Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion
Дата
Msg-id 3D2634C6.7020707@oli.tudelft.nl
обсуждение исходный текст
Ответ на Performance of ODBC-Driver /w IIS5.0/ColdFusion  ("Markus Wollny" <Markus.Wollny@computec.de>)
Ответы Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion  (nconway@klamath.dyndns.org (Neil Conway))
Список 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 по дате отправления:

Предыдущее
От: Lee Harr
Дата:
Сообщение: Re: Null in the where-clause
Следующее
От: nconway@klamath.dyndns.org (Neil Conway)
Дата:
Сообщение: Re: Performance of ODBC-Driver /w IIS5.0/ColdFusion