1.Date Functions 【DATENOW()】 GGSCI (xag131) 3> view params RT002 REPLICAT RT002 SETENV (ORACLE_SID='CDB1') DBOPTIONS INTEGRATEDPARAMS(parallelism 6) U ...
分类:
数据库 时间:
2020-07-01 00:22:51
阅读次数:
74
服务端程序要求,7*24小时不断服,所以,热升级或者热补丁是常见的非功能性需求。 业界常见方法,采用在jmp跳转的方法,比较容易实现。具体实现方法就是,老的函数(被替换的函数),新的函数(替换函数)。 替换的原理,在老的函数第一个条指令前,加入一个无条件跳转指令,跳转到新的函数,当新的函数retur ...
分类:
其他好文 时间:
2020-06-30 20:44:41
阅读次数:
68
需求: 1、习惯了sublime,开发pyqt程序时,不如vscode或者eric6等IDE调用qtdesigner设计窗口方便。 2、需要转到窗口文件目录下,手动使用pyuic5命令转换ui文件。 配置方法: 1、 安装SideBarEnhancements 2、 安装Terminus (一款功能 ...
分类:
其他好文 时间:
2020-06-30 10:31:29
阅读次数:
82
关系数据库的注释 -- 单行注释 /* 多行注释 */ 数据类型 数值 整数 只能保存整数,如果是小数,则自动四舍五入取整。 mediumint smallint tinyint(6) zerofill int(8) bigint decimal(8,0) 小数实型 float(p,s) numer ...
分类:
数据库 时间:
2020-06-29 20:06:55
阅读次数:
70
1. 首先用一个请求,获取list数据;并且提取出来 这里获取出来的是48个Name,id,color 2. 使用beanshell取样器,循环次数 == ${goodsName_matchNr};可以从debug sample中查看 FileWriter fstream = new FileWri ...
分类:
系统相关 时间:
2020-06-29 16:54:30
阅读次数:
223
Dockerfile介绍 Dockerfile 是一个文本文件,记录了镜像构建的所有步骤。 第一个Dockerfile,构建镜像的过程详解 用 Dockerfile 创建 centos-vim,就是编写Dockerfile文件,在基础镜像centos:centos7.4.1708上安装vim,镜像构 ...
分类:
其他好文 时间:
2020-06-29 13:34:49
阅读次数:
51
Oracle做insert或者update时未提交事务导致表锁定解决办法 //查看被锁定表有几个 select object_name,machine,s.sid,s.serial# from v$locked_object l,dba_objects o ,v$session s where l. ...
分类:
数据库 时间:
2020-06-28 18:22:04
阅读次数:
193
1.oracle 用户环境: 主库: [oracle@hzmtx admin]$ cat ~/.bash_profile # .bash_profile # Get the aliases and functions if [ -f ~/.bashrc ]; then . ~/.bashrc fi ...
分类:
数据库 时间:
2020-06-28 00:20:49
阅读次数:
82
恢复内容开始 Range Sum Query 2D - Immutable (M) 题目 Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left cor ...
分类:
其他好文 时间:
2020-06-27 09:36:59
阅读次数:
61
1. 连接查询的补充 (1) 内连接查询(两张表匹配的部分,比如这个学生即在学生表、又在成绩表) 主表 inner join 从表 on 主键=外键 => where 主键=外键 select * from info inner join mark on info.sid=mark.sid sele ...
分类:
数据库 时间:
2020-06-26 18:40:13
阅读次数:
56