上一页 1 2 3 4 5 6 7 ··· 19 下一页
摘要: 使用REGEXP_SUBSTR SELECT REGEXP_SUBSTR(key, '[^,]+', 1, ROWNUM) AS VALUE FROM ( select '1,3,4,4' as key from dual ) CONNECT BY ROWNUM <= LENGTH(key) - L 阅读全文
posted @ 2024-10-21 16:48 Robot-Blog 阅读(346) 评论(0) 推荐(0)
摘要: 布局图 1.Generate rows:设置请求参数 2.配置第一个接口(登录) - POST 2.1.往请求head中插入数据 2.2.从响应的head中读取数据 2.3.对获取的数据进行处理 3.配置第二个接口(获取数据) - GET 3.1.从响应的结果中,反序列化数据 5.保存到DB Ref 阅读全文
posted @ 2024-09-02 16:54 Robot-Blog 阅读(656) 评论(0) 推荐(0)
摘要: 语法 Select-String [-Culture <String>] [-Pattern] <String[]> [-Path] <String[]> [-SimpleMatch] [-CaseSensitive] [-Quiet] [-List] [-NoEmphasis] [-Include 阅读全文
posted @ 2024-08-30 14:21 Robot-Blog 阅读(533) 评论(0) 推荐(0)
摘要: SQL select 1 from dual WHERE xxx IN ('AAA&SSS') 编译器提示 原因和解决方法 在Oracle SQL查询中,‌如果查询条件包含特殊字符如&,‌通常需要进行转义处理,‌以确保查询语句能被正确解析 &在Oracle中可能被视作替换变量的一部分,‌因此直接使用 阅读全文
posted @ 2024-08-07 11:52 Robot-Blog 阅读(714) 评论(0) 推荐(0)
摘要: 根据NETCore的注入方式添加三个接口 /// <summary> /// 瞬时注入服务接口 /// </summary> public interface ITransient { } /// <summary> /// 作用域注入服务接口 /// </summary> public inter 阅读全文
posted @ 2024-07-12 16:02 Robot-Blog 阅读(75) 评论(0) 推荐(0)
摘要: 文件模板代码 T4_GetEntityDic <#@ template language="C#" #> <#@ output extension=".cs" #> <#@ assembly name="System.Core" #> <#@ import namespace="System.IO" 阅读全文
posted @ 2024-06-18 14:30 Robot-Blog 阅读(55) 评论(0) 推荐(0)
摘要: 优化方向 1.使用合适的索引:确保查询中涉及的字段有适当的索引。索引可以帮助数据库引擎快速定位和检索数据,提高查询效率。 2.避免使用通配符查询:尽量避免在查询条件中使用通配符 '%',因为这样的查询会导致全表扫描,影响性能。 3.避免使用函数:在查询条件中避免使用函数,尽量在字段上使用函数,因为函 阅读全文
posted @ 2024-06-05 11:58 Robot-Blog 阅读(1512) 评论(0) 推荐(0)
摘要: 布局图 Job Transformations Table input SELECT '内容' AS INFO FROM DUAL; Set variables Modified JavaScript value Set variables 2 Reference: Kettle 连接 Oracle 阅读全文
posted @ 2024-05-29 11:31 Robot-Blog 阅读(95) 评论(0) 推荐(0)
摘要: 公式处理数字 正则处理字符串 对字段名:重命名,删除,修改字段类型 Reference: Kettle 连接 Oracle 使用手册 及 问题解决方案 阅读全文
posted @ 2024-05-29 11:19 Robot-Blog 阅读(25) 评论(0) 推荐(0)
摘要: 布局图 Set variables JavaScript(循环逻辑) var min = new Number(parent_job.getVariable("MIN")); var max = new Number(parent_job.getVariable("MAX")); if(max >= 阅读全文
posted @ 2024-05-28 14:53 Robot-Blog 阅读(345) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 19 下一页