System Resource Exceeded

Ask a Question related to Coldfusion Server Administration, Design and Development.

  1. #1

    Default System Resource Exceeded

    I am receiving the following error message intermittently, and have no idea
    what it might indicate. Can anyone give me an idea where to look for possible
    solutions?...

    IP Address: 70.61.58.65
    Browser: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; WOW64; InfoPath.1;
    ..NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Date/Time: Tue Jan 02 08:59:08 EST 2007
    HTTP Referer:
    Query String: do=browse&SecOpen=1&SecID=138&SubSecID=31813
    Template: /default.cfm
    Diagnostics: Error Executing Database Query. [Macromedia][SequeLink JDBC
    Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] System resource
    exceeded.
    The error occurred on line 59.

    This application retrieves data from an access database, and has run
    successfully for many years. The server is a windows 2000 Advanced server
    running IIS5. The server's resources do no appear to be over utilized in any
    way. The error will appear intermittently: the same page will come up once,
    then it won't. Other pages will come up, then the next one won't. There doesn't
    appear to be a discernable pattern in the failures.

    Thanks for any troubleshooting tips or previous experiences with this error
    message.

    gabe19 Guest

  2. Similar Questions and Discussions

    1. Application.log - System resource exceeded
      ColdFusion MX 7.1 I am getting the following "System resource exceeded" Message and it looks like shortly after the ODBC server Dies ...
    2. Max Connections Exceeded?
      I just started getting a few of the errors below last week, after almost 10 years of using Cold Fusion with our SQL Server. Can anyone tell me if...
    3. Redirection Limit for this URL exceeded????
      When I include a <cflocation> and try to refresh the page, I am suddenyl getting an error message that I have never seen before. It says: ...
    4. Implementation Limit exceeded
      I worked for a good hour on a native .ai file in AIv9.0 in WinXP, saving often, then closed it and quit the app. Later when I tried to open it I...
    5. System resource exceeded.
      Hello one of our servers (win2k adv server, IIS5, MDAC 2.8, full patched), once a day in the afternoon starts giving this error on every site...
  3. #2

    Default Re: System Resource Exceeded

    Perhaps your application is trying to create multiple simultaneous connections
    to access. Access is a single-user desktop database and only accepts 1
    connection at a time. Try updating the advanced settings of your datasource:
    1) Make sure maintain connections is unchecked
    2) Check limit connections and set to 1.

    You could also do some maintanence on your Access DB. The access ODBC driver
    allows you to optimize the database. Better yet, if it is an old Access file
    that you have continued to use try importing it into a new version of Access.

    You could also try updating to the latest version of Sequellink 5.4 and its
    service pack 11:
    [url]http://www.adobe.com/go/e917887[/url]
    [url]http://www.adobe.com/go/4378f5a4[/url]

    Finally, consider a real DBMS which Access isn't. Over the many years your
    application has been running your server and OS have gotten much faster. Also
    CFMX is many thousands of times faster than CF3 or CF4. Access may not be up
    to the task anymore.

    ksmith Guest

  4. #3

    Default Re: System Resource Exceeded

    Thanks for the pointers. I tried each suggestion (other than changing RDBMS) to
    no avail. In fact, the change to sequeLink 54 just caused the error to be
    consistent rather than intermittent. While that could be good for total system
    troubleshooting, it didn't lead me to anything obvious.

    I tracked down a few seemingly unrelated posts on the internet concerning this
    type of system error which were pointing to text buffer overruns. I increased
    the odbc text buffer size, and that seems to have mitigated the issue.

    Thanks again for the help.

    gabe19 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