zoukankan      html  css  js  c++  java
  • kettle报错收集- java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic@160750a6 is still active

    1.Caused by: java.sql.SQLException: Streaming result set com.mysql.jdbc.RowDataDynamic@160750a6 is still active. No statements may be issued when any streaming result sets are open and in use on a given connection. Ensure that you have called .close() on any active streaming result sets before attempting more queries.

           这个有人说是mysql驱动jar包的版本问题,但是可能一个报错有时不只是一个原因导致的吧,所以我的错误解决方案分享如下:

           我的一个转换里面有多个表的查询,但是是同一个数据库,配置数据库的时候我勾选了Use Result Streaming Cursor 选项,这时候就会报出上面的问题,其实分析如下: 

           Use Result Streaming Cursor是不用将查询结果集的一下子全部导入内存,而是一部分,这时候有其它查询的话,必然会报这个错误,因为前面一个查询数据没有全部加载完毕,后面一个查询也要使用同样的方法,相当于“吃着碗里的,看着锅里的”,哈哈,所以就报错了。本人也做了只有一个查询的时候,是不会报错的。

  • 相关阅读:
    MVC.Net:Razor指定模板
    Intellij Idea 13:导入openfire源代码
    SharePoint 2013:解决爬网出错的问题
    MySQL:解决MySQL无法启动的问题
    SharePoint 2013:解决添加域名后每次都需要登录的问题
    Android 动画
    android:persistent属性
    ubuntu 安装 open in teminal
    利用python建表
    flask request
  • 原文地址:https://www.cnblogs.com/liyunzhouts/p/8087013.html
Copyright © 2011-2022 走看看