cfstoredproc request times out

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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:...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139