摘要:
C#代码段 先MD5 再TripleDES加密 using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Security.Crypt 阅读全文
摘要:
insert into TB_IF_ORDERS (DC_CD,JOB_DT,SEQ_NO,ORDER_KEY,ORDER_ID,ORDER_LINE_NUM,COMPANY_CD,CUST_CD,SKU_CD,SKU_UOM,ORDER_QTY,LOC_CD,ZONE_CD,REMARK,RGT_ 阅读全文
摘要:
BEGIN DECLARE i INT default 0; DECLARE num int default 0; DECLARE count1 int default 0; DECLARE count2 int default 0; DECLARE headerid varchar(50); DE 阅读全文
摘要:
SimpleDateFormat df=new SimpleDateFormat("yyyy-MM-dd") LocalDate expirationDate String expirDate="0" Date date = df.parse(expirationDate as String) // 阅读全文
摘要:
1. 创建shell脚本 #! /bin/bash# MySQL用户user="root"# MySQL密码userPWD="123456789"# 需要定时备份的数据表列表dbName=uco_wms_test# 每次的备份数据以日期创建文件夹存放,同时删除过期备份# 此处以保留7天的备份数据为例 阅读全文
摘要:
MYSQL: 1,可以使用MYSQL的系统表的记录数(亲测,有时候,会不准确,被坑了一把,如果还是想通过此方式实现查询表记录数,可以按照文章后的链接进行操作) use information_schema; select table_name,table_rows from tables where 阅读全文
摘要:
在 /home/ttx/app/uco-azj/catalina/30017/bin/set_env.sh export CATALINA_OPTS="-Xms1g -Xmx2g -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/home/ttx/a 阅读全文
摘要:
//将客户机端口内网33306转发到外网,在通过本地连接ssh -L 3306:10.0.0.208:3306 ttx@180.180.180.182--通过git bash执行命令--10.0.0.208:3306 客户机内网ip端口--180.180.180.182客户机外网端口--然后本地连接 阅读全文
摘要:
问题:写单元测试,debug时,报错如下图 解决方法1: 在项目/.idea/workspace.xml文件中添加一行代码如下 <component name="PropertiesComponent"> ... <property name="dynamic.classpath" value="t 阅读全文
摘要:
win10默认是不开启administrator账户的,所以一般是自己创建一个账户,但是此账户,可能会有些文件或文件夹,访问不了,编辑不了,这时候,只需要右键->属性->安全->编辑->添加->高级->立即查找->找到你当前的用户名->添加到当前文件的用户组就好了 阅读全文