Ask a Question related to Coldfusion Database Access, Design and Development.
-
robersot #1
cfstoredproc request times out
I am attempting to call a stored procedure using the cfstoredproc tag and no
matter what I try I get "The request has exceeded the allowable time limit
Tag: CFSTOREDPROC" I have tried several different stored procedures. Each
procedure works when called from SQL Plus. This is the latest, simplest
procedure I am trying to call using ColdFusion:
CREATE OR REPLACE PROCEDURE my_procedure
IS
BEGIN
NULL;
END;
This is the ColdFusion code I am using to call the procedure:
<cfstoredproc procedure="my_procedure" datasource="test"></cfstoredproc>
I am running ColdFusion MX 6.1 and accessing Oracle 10g via the Oracle Thin
Driver. I have tested this on both Windows 2000 Server and Red Hat Enterprise.
I appreciate any insight. Thank you.
robersot Guest
-
CF MX7 <cfstoredproc> with Oracle
O.k. I am getting the following error using CF MX7 when I create a new record, but update works fine. However, this works fine on CF MX6.1 ERROR:... -
Help with cfstoredproc
OK I have huge problem with my cfstored proc I have stored procedure which retrieve lost password when you provide email. Stored procedure is... -
cfquery vs cfstoredproc
In my experience, the SPs execute a little faster then the queries. you can use to test on your own. <CFSET start=GetTickCount()> ... some CFML code... -
cfstoredproc
Any chance you're interested in emailing with me about CF coding related to a Informix db back-end? Please email me off-list at... -
Web Request times out
I'm getting the following error message: Exception: System.Net.WebException Message: The operation has timed-out. Source: System.Web.Services... -
wiseguy21 #2
Re: cfstoredproc request times out
sounds like it may be a permissions issue. What account are you using to try an execute the SP? Since you are logging into SQL*PLUS, try to use your login creditials in cfstoredproc tag.
wiseguy21 Guest
-
robersot #3
Re: cfstoredproc request times out
Thanks for your response. I am connecting with the same account from SQL Plus
and ColdFusion. I actually think this may be an issue with executing stored
procdures using the Oracle Thin Driver. I am only running standard edition so I
don't have the Oracle driver that comes packaged with other ColdFusion
versions.
robersot Guest
-
wiseguy21 #4
Re: cfstoredproc request times out
have your tried executing the SP from within a <cfquery> tag? I haven't done it this way before, but I know you can. (Just grabbing at straws here.)
wiseguy21 Guest



Reply With Quote

