strSql = "select DISTINCT GROUPNAME from [172.30.1.133].[Cimes5PRDDB_CN].dbo.AOI_GROUPNAME_SET" ...
分类:
数据库 时间:
2021-06-24 18:32:25
阅读次数:
0
1.创建测试环境 1.1.新建用户和表 CREATE USER monkey01 IDENTIFIED BY monkey01; GRANT UNLIMITED TABLESPACE TO MONKEY01; GRANT CREATE SESSION TO MONKEY01; CREATE USER ...
分类:
其他好文 时间:
2021-06-24 18:31:39
阅读次数:
0
unittest相关内容 一、什么是unittest unittest是Python单元测试框架,类似于JUnit框架。 unittest中有4个重要的概念:test fixture, test case, test suite, test runner Testcase: 一个TestCase的实 ...
分类:
其他好文 时间:
2021-06-24 18:12:57
阅读次数:
0
1、oracle中用户密码复杂度配置 1)查看参数 select limit from dba_profiles where resource_name='PASSWORD_VERIFY_FUNCTION' and profile in (select profile from dba_users ...
分类:
数据库 时间:
2021-06-24 17:35:08
阅读次数:
0
*& * *& Report ZSDRP122 *& * *&data of MRB query create by Bruce King 20210607 *& * REPORT ZSDRP122. TABLES:ZTSD042. SELECT-OPTIONS: S_MRB FOR ZTSD042 ...
分类:
其他好文 时间:
2021-06-24 17:32:28
阅读次数:
0
有时候多个相同控件的事件若一一处理比较麻烦,而且影响代码美观,这时若在一个统一的方法里处理这些事件是个比较好的选择。 以winform上的三个button为例来说明我的处理方法。 1,将三个button的click事件绑定到一个事件处理方法上: this.button1.Click += new E ...
分类:
其他好文 时间:
2021-06-24 17:30:43
阅读次数:
0
PreparedStatement针对不同表的通用查询操作 public class PreparedStatementQueryTest { @Test public void testGetForList(){ String sql="select id,name,email from cust ...
分类:
其他好文 时间:
2021-06-23 17:15:36
阅读次数:
0
临时表空间概念 临时表空间用来管理数据库排序操作以及用于存储临时表、中间排序结果等临时对象,当ORACLE里需要用到SORT的时候,并且当PGA中sort_area_size大小不够时,将会把数据放入临时表空间里进行排序。像数据库中一些操作: CREATE INDEX、 ANALYZE、SELECT ...
分类:
数据库 时间:
2021-06-23 16:52:24
阅读次数:
0
case: decode: decode中的括号相当于case的end; ...
分类:
其他好文 时间:
2021-06-23 16:50:49
阅读次数:
0
ElasticJob单点使用 任务类 public class BackupJob implements SimpleJob { public void execute(ShardingContext shardingContext) { String selectSql = "select * f ...
分类:
其他好文 时间:
2021-06-23 16:49:04
阅读次数:
0