error message from the JDBC DB2 driver

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

  1. #1

    Default error message from the JDBC DB2 driver

    I am trying to load 140,000 rows from a MS Access table to a DB2/Linux table.
    My application platform is Cold Fusion MX 7 on Windows XP. The MS Access table
    that I am loading has a memo field, which I am loading to a CLOB field in the
    DB2 table.

    The maximum field size of any given CLOB field is 49K. I can insert 200 rows
    into the DB2 table, but when I try to insert the 201st row, I get the following
    error message from the JDBC DB2 driver:

    Error Executing Database Query.
    [Macromedia][DB2 JDBC Driver]No more available statements. Please recreate
    your package with a larger dynamicSections value.


    Please try the following:
    Enable Robust Exception Information to provide greater detail about the source
    of errors. In the Administrator, click Debugging & Logging > Debugging
    Settings, and select the Robust Exception Information option.
    Check the ColdFusion documentation to verify that you are using the correct
    syntax.
    Search the Knowledge Base to find a solution to your problem.


    I don?t know where to change the dynamicSections value. Has anyone
    experienced this problem, or do you have any suggestions where this can be
    changed in Cold Fusion Administrator? Thanks.


    Ronald Yeung Guest

  2. Similar Questions and Discussions

    1. [SequeLink JDBC Driver]Internal network error,connection closed.
      Just recently I started having these errors: ]Internal network error, connection closed. I switched over the saving of session variables to an...
    2. JDBC and MS SQL server error message
      I am trying to add a JDBC driver for MSSQL 2000 into CFMX7. I've added the jar files, and have them listed in the class path. When I try to...
    3. "Invalid message format" error from JDBC driver
      Hello, all. I have a query that runs perfectly when I run it from pgAdmin3, but bombs when I run it from ColdFusion using the JDBC driver. I'm...
    4. DB2 JDBC Driver
      What should I use for the DB2 JDBC driver form JDBC SPs? I'm using "DriverManager.getConnection("jdbc:default:connection");" at the moment. Is...
    5. Network Driver Error Message
      Gentlemen, Every time I turn on my computer, I receive the following error message: "Network features are not available because the VNETSUP.386...
  3. #2

    Default Re: error message from the JDBC DB2 driver

    You could try to modify your connection in the CFIDE/administrator pages
    choose your database, go to the advanced settings and modify the connection
    strings.
    A description of the different options is available here
    [url]http://media.datadirect.com/download/docs/connectsqlxml/jdbcug/jdbcdb2.htm[/url]
    For example
    DynamicSections OPTIONAL
    Specifies the number of statements that the DB2 driver package can prepare for
    a single user. The default is 100.

    Hope it helps



    jmich 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