上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: 背景 通过 Kettle 连接 Oracle 已经能成功访问数据库,但此时的密码是明文,可以使用但不推荐 解决方案 data-integration*** 目录下有两个脚本可以对数据库密码进行加密 Encr.bat 是windows系统的,encr.sh是linux或者mac平台的 1.通过cmd调 阅读全文
posted @ 2021-12-28 10:39 Robot-Blog 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 任务计划程序: Windows + R / taskschd.msc 1.可在面板根据需要添加定时任务:Link 2.根据 schtasks 命令添加,按需配置 schtasks /create /sc <scheduletype> /tn <taskname> /tr <taskrun> [/s 阅读全文
posted @ 2021-12-20 13:52 Robot-Blog 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 创建Table -- DROP TABLE TEST_TABLE; CREATE TABLE TEST_TABLE ( ROWUID VARCHAR2(255 BYTE) , USERID VARCHAR2(225 BYTE) , USERNAME VARCHAR2(255 BYTE) , MAIL 阅读全文
posted @ 2021-12-14 16:02 Robot-Blog 阅读(410) 评论(0) 推荐(0) 编辑
摘要: DbLink查询性能优化: DRIVING_SITE SELECT /*+ DRIVING_SITE(departments) */ FROM employees, departments@rsite WHERE employees.department_id = departments.depar 阅读全文
posted @ 2021-12-14 10:38 Robot-Blog 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 1.配置DbContext 1.1.Startup / ConfigureServices services.AddDbContext<CustDbContext>(options => options.UseSqlServer(configuration["ConnectionStrings:De 阅读全文
posted @ 2021-12-08 17:22 Robot-Blog 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.下载 Link:https://github.com/winsw/winsw/releases 2.配置 2.1.Copy下载文件[WinSW-x64]并改名[WinSW-Kettle-Test.exe],添加同名的xml文件[WinSW-Kettle-Test.xml]:找不到会报异常 2.2 阅读全文
posted @ 2021-12-08 14:41 Robot-Blog 阅读(724) 评论(0) 推荐(0) 编辑
摘要: 调用其他类方法报错:Link 引用程序集即可 <#@ assembly name="netstandard" #> 阅读全文
posted @ 2021-12-08 14:05 Robot-Blog 阅读(599) 评论(0) 推荐(0) 编辑
摘要: Object.assign 函数 var arr = [{name: 'AAA'},{age: '999'}]; var obj = {}; arr.map(x => Object.assign(obj, x)); // {"name":"AAA","age":"999"} 阅读全文
posted @ 2021-12-06 14:28 Robot-Blog 阅读(547) 评论(0) 推荐(0) 编辑
摘要: 1.找出每个字符出现的次数 let obj = {}; let arr = ['a','a','a','b','b','c','d','e','f','f']; arr.map(x => obj[x]= obj[x] ? obj[x] + 1 : 1 ); console.log(obj); 2.字 阅读全文
posted @ 2021-12-01 14:49 Robot-Blog 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 通过配置导出数据 1.工具 / 数据库导出 2.配置导出源 3.配置需要导出的类型:导出单个表信息时,方便查找,继续Next 4.点击查找,找到需要导出的表,选中数据点击第三步,继续Next 5.点击完成/Finsh 通过Sql导出数据 1.执行sql,在查询结果列表,右键点击导出 2.配置 3.点 阅读全文
posted @ 2021-11-29 10:51 Robot-Blog 阅读(1353) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页