finereport 数据分析预览 居中 参数分割 自动查询
摘要:一、页面居中: 模板:数据分析设置-》事件设置》加载结束 ms = $('.html-content').length; //判断是否为多sheet if (ms != 0) { //多sheet ff =
(".frozen−table",('.html-content:visible'))
阅读全文
Unable to locate value meta plugin of type (id)
摘要:解决方法: To fix the issue, you need to delete the db.cache file. On my Windows computer, it’s located under C:\Users\patlaf\.kettle\db.cache-5.0.1-stable
阅读全文
mysql8.0
摘要:1、caching_sha2_password ALTER USER root@localhost IDENTIFIED WITH mysql_native_password BY '111111'; flush privileges 2、set global time_zone = "+8:00"
阅读全文
finereport 内容滚动 滚动条隐藏
摘要:setTimeout(function () {
("div[widgetname=REPORT3_C]").find("#frozen-center").css('overflow-x', 'hidden').style.overflow='visible';("div[widgetname
阅读全文
vscode中怎样格式化js代码
摘要:一、安装插件: Pretty Formatter Windows上的Visual Studio代码 - Shift+ Alt+F 二、关闭文件自动化保存 菜单文件 → 首选项 → 工作区设置 { // Controls if the editor should automatically forma
阅读全文
kettle9.2 mysql8.0 链接 JDBC连接MySQL报错Unknown system variable 'query_cache_size'
摘要:1、kettle 下载地址 9.2版本 https://sourceforge.net/projects/pentaho/files/Data%20Integration/ 2、mysql8.0驱动下载 网站 https://dev.mysql.com/downloads/file/?id=4949
阅读全文
kettle9.2 sqlserver 驱动 The server selected protocol version TLS10 is not accepted by client preferences [TLS12]
摘要:1、kettle 版本 下载地址: https://sourceforge.net/projects/pentaho/files/latest/download 不好下载的评论回复 我传百度网盘上 2、sqlserver驱动下载地址 https://www.microsoft.com/en-us/d
阅读全文
with rollup
摘要:select coalesce(t.name,'总'),sum(t.v) from (select '小丽' as name,1 as v UNION ALL select '小丽' as name,2 as v ) t group by t.name with ROLLUP with ROLLUP
阅读全文
sqlserver 行列转换
摘要:我们在写Sql语句的时候没经常会遇到将查询结果行转列,列转行的需求,拼接sql字符串,然后使用sp_executesql执行sql字符串是比较常规的一种做法。但是这样做实现起来非常复杂,而在SqlServer2005中我们有了PIVOT/UNPIVOT函数可以快速实现行转列和列转行的操作。 PIVO
阅读全文