摘要: import java.io.*; import java.util.Arrays; public class test { public static void main(String[] args) { byte[] by = getByteToFile("D:/Test.txt"); Syst 阅读全文
posted @ 2020-04-16 11:21 ZhenV5 阅读(1140) 评论(0) 推荐(0)
摘要: 【分析】 出现此错误之前,是记录数为0的表没有被导出 原因是Oracle11g增加了参数deferred_segment_creation,参数默认值是TRUE, 新建的表无记录时滞后分配段的,所以EXP无法导出空表 【解决】:用本用户登录,下面三个语句查看,结果是不是0行记录(通常第一个肯定不是0 阅读全文
posted @ 2020-04-16 11:15 ZhenV5 阅读(222) 评论(0) 推荐(0)
摘要: 函数 oracle mysql nvl() IFNULL to_date str_to_date(date,'%Y-%m-%d') to_number CAST(xxx AS SIGNED INTEGER), CONVERT(xxx,INTEGER) wm_concat group_concat D 阅读全文
posted @ 2020-04-16 11:04 ZhenV5 阅读(191) 评论(0) 推荐(0)
摘要: window.onkeydown = window.onkeyup = window.onkeypress = function (event) { // 判断是否按下F12,F12键码为123 if (event.keyCode 123) { event.preventDefault(); // 阅读全文
posted @ 2020-04-16 10:49 ZhenV5 阅读(423) 评论(0) 推荐(0)
摘要: 首先打开beyond compare,选择工具-》文件格式,点击打开查看是否有一下选项(默认没有),有的话请打钩,没有则需要安装插件 打开网址:http://www.scootersoftware.com/download.php?zz=kb_moreformatsv4,先点击Windows, 搜索 阅读全文
posted @ 2020-04-16 10:45 ZhenV5 阅读(907) 评论(0) 推荐(0)
摘要: -- 查看当前上传者姓名git config user.name -- 修改上传者姓名git config --global user.name "your name" 阅读全文
posted @ 2020-04-16 10:40 ZhenV5 阅读(172) 评论(0) 推荐(0)