Ask a Question related to Coldfusion Database Access, Design and Development.
-
GaryG #1
select * incredibly slow response in CF 7?
We upgraded to CF 7 over the weekend. Immediately users began reporting very
slow applications, but only in certain spots. After some time we realized that
only pages that issued "select *" type queries were being slow. We created
some test pages and found that, for instance, a select by fieldnames might take
5 seconds but the same query with a select * would take over a minute. The
same two queries at a regular SQL prompt comes back just as quick, regardless
of a * or not. We also have a copule of CF 5 machines still around and we
tested those and both queries return in 5 seconds.
Sure, we understand select * requires a bit more behind-the-scenes work, but
we are talking milliseconds. And this code has worked for year(s) in CF 6 and
probably even CF 5.
We're running Solaris 9 with Oracle 9. For CF 7 we took the included Oracle
driver but I just loaded the Oracle ojdbc14.jar driver and seem (at first
glance) to be getting the same result. In CF 6 we had some servers using the
included driver and others using Oracle's JDBC driver and never saw this
behaviour.
Has anyone experienced this? Although our developers are going back and
removing select *'s, I'm thinking the real solution is something either I'm
doing or have setup either in CF or Oracle. I haven't seen anyone talk about
this so I'm certainly guessing this is my problem and not a global CF / driver
/ Oracle issue as such.
Thanks in advance.
GaryG Guest
-
Workflow is Incredibly SLOW
I'm a first time Contribute user, and I'm managing a small Help development project, connecting to a site from my Macbook Pro running Leopard and... -
Slow to no response
I have an older box running Win2k with CF 5.0 SP 4 Enterprise and JRun 3.1. Its my last box still running 5 that I was leaving alone for all my... -
Slow Response
When I block a word or sentence and ask it to make a change , i.e. bold, change font, color, etc. the response time for that change to be made is... -
Slow login response response on TS 03 in AD mixed mode
We upgraded our NT 4 domain to an AD mixed until we get rid of the NT 4 BDC;s after completing this upgrade users began complaining about how long... -
Setting text with Illustrator incredibly slow.
G4, Dual 533, 1.5 Gb RAM Illustrator CS For various reasons, I'm not using Quark for a project - I'm producing it in Illustrator. Most text... -
jorgepino #2
Re: select * incredibly slow response in CF 7?
I would recomend not to use select * but to select the field you would be using with your (cfoutput>
Select field1,field2,fiield3 from ....
that shoudl increase somewhat the speed
jorgepino Guest



Reply With Quote

