Ask a Question related to Coldfusion Database Access, Design and Development.
-
mostof #1
CF Server Choking When Calling STORED PROC
Experts,
I really hope someone can help out with this problem.
I have a ColdFusion 5 server running on a windows 2000 server.
Our application is basically a reporting tool that runs pretty heavy queries.
In the past, queries were run in <cfquery> tags; after moving to <cfstoredproc>
as a more centralized technique, the whole application hangs until a
cfstoredproc returns its results. This happens across all users (10000+) and
not just the same user with two open sessions. This means that if someone is
running a report that returns in 9 minutes, all other users cannot perform any
activity on the entire application until this report is rendered. Of course
when I say "any activity" I mean any database interaction - and since all our
pages access the database the entire applications just FREEZES until the
cfstoredproc is finished.
We have been advised to move from ODBC to Native Data Sources but that didn't
help much. Please note that the database is Oracle 9i and that some of these
queries take well over 5 minutes to return.
mostof Guest
-
Nested stored proc
Hi everybody, I need your help. In one of my CF4.5 page, I have to use a MSSQL storde procedure. This stored procedure return 2 variables . OK.... -
cfc and stored proc
does anyone know if there is documentation anywhere that states that in ColdFusion MX 6.1 when you try to pass parameters to a stored procedure via... -
Calling webservice from within a stored proc 407 error...
I've got a scheduled job that kicks off a stored proc...the stored proc creates a com object which makes a webservice call (passing in url... -
ASP vs Stored Proc vs UDF
Hi all, I have a field in Table A that must be updated whenever a record is added to Table B. Table A will always only contain one single record... -
stored proc and tcp/ip
Hello, is it possible to communicate with another program using tcp/ip? I mean, i have another program where i know the port number and the... -
-
thejuggler #3
Re: CF Server Choking When Calling STORED PROC
Check your stored procedures transaction handling. Make sure your not locking
the whole table. When doing select statements you should do readcommited
transactions.
Also, make sure connection pooling is enabled in your ODBC settings.
thejuggler Guest



Reply With Quote

