Explain tables does not exist. Check the explain plan properties for this database connection.

使用DbVisulalizer链接db2,查看执行计划是报错误

就是执行计划的表不村子,检查执行计划属性。

查看连接属性如下

只有DB2LUW里面才有Explain Plan属性,所以先调整Connection属性中的datatype,为DB2 LUW:

然后再用,发现还是一样的错误,最后仔细看,才发现有个勾没有勾上

只有勾上了create plan table if not exists,就是如果计划表不存在就创建。然后解决问题。

当然我们也可以把下面的Drop Explain Plan Table在执行完成后删除对应的信息。

时间: 2024-10-27 00:46:20

Explain tables does not exist. Check the explain plan properties for this database connection.的相关文章

[转] Hibernate不能自动建表解决办法(hibernate.hbm2ddl.auto) (tables doesn't exist)

转自: http://blog.csdn.net/biangren/article/details/8010018 最近开始学Hibernate,看的是李刚的那本<轻量级java ee企业应用实战>.头一个hibernate程序,我原原本本的按照书上例子写下来,同时只是改动了些mysql的连接参数,并且在mysql中新建了一个hibernate数据库,仅此而已.然而预想不到的事情发生了……程序写好之后,运行,报错 Hibernate: insert into news_table (title

Flutter项目删除了相关的dart文件之后运行flutter run或者 F5编译运行时会报这个错误.... were declared as an inputs, but did not exist. Check the definition of target:kernel_snapshot for errors

我所做的项目报的错误是这样的 因为报错内容主要是".... were declared as an inputs, but did not exist. Check the definition of target:kernel_snapshot for errors",应该时删除了文件之后,运行时找不到对应的文件,感觉时缓存问题,没有自动更新到那个文件(kernel_snapshot.d)的内容,导致这个文件里面还会存在之前删除了的文件的路径,这个时候只要运行一下flutter cl

Eclipse check out Visual SVN 遇到问题 svn:E175002: connection refused by the server

本机上装了 Visual SVN 2.7,  使用 Eclipse ,安装了 svn 插件for eclipse, 在Visual 的 visual server上建立了 repostory ,但用 eclipse 还是没能成功check out , 爆出如下error svn: E175002: connection refused by the server svn: E175002: OPTIONS request failed on 我在Windows 7 的 系统Event Viewe

mysql中的日志(一)

如果你是一个Web开发人员,你需要参考各种日志文件,以调试应用程序或改善其性能.日志是故障排除的最佳手段.对于著名的MySQLdatabase服务器(或MariaDB服务器),你需要参考以下日志文件: The Error Log. 包含服务器运行时发生的错误信息(也服务器启动和停止) The General Query Log. 这是mysqld运行的常规记录(连接,断开连接,查询) The Slow Query Log. slow SQL statements 这篇文章并不是指二进制日志.它需

MySQL Temporary Table

Summary: in this tutorial, we will discuss about MySQL temporary table and show you how to create, use and drop temporary tables. Introduction to MySQL temporary table In MySQL, a temporary table is a special type of table that allows you to store a

Mysql之表的操作&amp;索引&amp;explain&amp;profile

创建一个表create table(help create table) =>rename table A to B  更改表名 =>alter table A rename to B 更改表 =>drop table A   删除表 mysql> show create database gtms; #查看建库语句 +----------+---------------------------------------------------------------+ | Data

MySQL EXPLAIN Output Format(MySQL运维神技)

摘要: DBA经常会用到的explain来查看SQL语句的执行计划,今天小人斗胆,从MySQL 5.7 Reference Manual中把MySQL EXPLAIN Output Format翻译过来.欢迎拍砖 Explain语句提供了一个select语句执行计划的信息. Explain为每个用了select语句的表,返回一行信息.它列出了表中的顺序输出,MySQL会读取他们,然后再处理.MySQL解决了所有使用嵌套循环连接方法.这意味着MySQL会读取第一个表中的一行,然后在第二个表中找到一

MySQL Explain 结果解读与实践

Explain 结果解读与实践 基于 MySQL 5.0.67 ,存储引擎 MyISAM . 注:单独一行的"%%"及"`"表示分隔内容,就象分开"第一章""第二章". explain 可以分析 select 语句的执行,即 MySQL 的"执行计划": mysql> explain select 1; +----+-------------+-------+------+--------------

详解MySQL中EXPLAIN解释命令

Explain 结果解读与实践 基于 MySQL 5.0.67 ,存储引擎 MyISAM . 注:单独一行的"%%"及"`"表示分隔内容,就象分开“第一章”“第二章”. explain 可以分析 select 语句的执行,即 MySQL 的“执行计划”: mysql> explain select 1; +----+-------------+-------+------+---------------+------+---------+------+----