上一页 1 2 3 4 5 6 7 8 ··· 58 下一页
摘要: 1.下载证书 2.导入证书 keytool -import -alias test -keystore cacerts -file D://test.cer 其中: -alias 指定别名(推荐和证书同名) -keystore 指定存储文件(此处固定) -file 指定证书文件全路径(证书文件所在的 阅读全文
posted @ 2020-07-07 15:25 酸奶加绿茶 阅读(705) 评论(0) 推荐(0) 编辑
摘要: 1.增加分区 alter table tableName add if not exists partition(ds='20200623') 2.数据类型转换 cast(col as bigint) 3.动态插入 insert overwrite table tableA partition(ds 阅读全文
posted @ 2020-06-29 11:32 酸奶加绿茶 阅读(453) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-05-20 08:41 酸奶加绿茶 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1.alt+F11 2.点击 3.拷贝代码 代码: Sub NewSheets() Dim d As Object, sht As Worksheet, arr, brr, r, kr, i&, j&, k&, x& Dim Rng As Range, Rg As Range, tRow&, tCo 阅读全文
posted @ 2020-05-10 12:29 酸奶加绿茶 阅读(1599) 评论(0) 推荐(0) 编辑
摘要: 1、死锁概念 死锁,是指两个会话,每个会话都持有另外一个会话想要的资源,因争夺资源而造成的一种互相等待的现象,此时就会出现死锁,若无外力作用,它们都将无法推进下去。此时称系统处于死锁状态或系统产生了死锁,这些永远在互相等待的进程称为死锁进程。Oracle对于“死锁”采取的策略是回滚其中一个事务,让另 阅读全文
posted @ 2020-05-08 16:01 酸奶加绿茶 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 1.调度参数 https://help.aliyun.com/document_detail/137548.html?spm=5176.11065259.1996646101.searchclickresult.186fec82sqwpGT 2.在DataWorks上使用PyODPS https:/ 阅读全文
posted @ 2020-05-07 21:04 酸奶加绿茶 阅读(360) 评论(0) 推荐(0) 编辑
摘要: http://blog.itpub.net/28996307/viewspace-1965840/ 阅读全文
posted @ 2020-05-03 23:16 酸奶加绿茶 阅读(617) 评论(0) 推荐(0) 编辑
摘要: https://help.aliyun.com/document_detail/44547.html?spm=a2c4g.11186623.2.24.1c48285dLVWRnh#concept-727969 阅读全文
posted @ 2020-04-21 22:02 酸奶加绿茶 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 一、查看是否开启归档日志目录 二、删除数据库归档文件。 cd /arch 执行下面命令删除7天以前的归档日志: find . -xdev -mtime +7 -name "*.dbf" -exec rm -f {} \; 阅读全文
posted @ 2020-04-17 17:20 酸奶加绿茶 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 1.源端 CREATE TABLE RANGETABLE ( idd INT PRIMARY KEY , iNAME VARCHAR(10), grade INT ) PARTITION BY RANGE (grade) ( PARTITION part1 VALUES LESS THAN (100 阅读全文
posted @ 2020-04-14 10:56 酸奶加绿茶 阅读(425) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 58 下一页