sqlplus /nolog connect / as sysdba select * from v$flash_recovery_area_usage show parameter db_recover alter system set db_recovery_file_dest_size=50G ...
分类:
其他好文 时间:
2020-07-20 10:14:11
阅读次数:
88
前言 在测试过程中经常遇到文件上传的功能,文件的大小边界值测试一直没有好的解决办法,这里我分享一个创建文件的脚本希望对大家有帮助。 demo """ * Create by dell on 2020/7/10 * Author :wencheng * 微信公众 :自动化测试 To share """ ...
分类:
编程语言 时间:
2020-07-17 22:20:01
阅读次数:
115
/** * 方法名称:replaceBlank * 方法描述: 将string字符串中的换行符进行替换为"" * */ public static String replaceBlank(String str) { String dest = ""; if (str != null) { Patte ...
分类:
其他好文 时间:
2020-07-12 11:53:24
阅读次数:
108
看看效果图吧 然后看代码吧,为了方便大家,所有资源文件都是用系统自带的,所以可以直接copy build.gradle 文件添加 // 注意,对应得也必须是28 compileSdkVersion 28 implementation 'com.android.support:recyclerview ...
分类:
其他好文 时间:
2020-07-10 17:14:53
阅读次数:
72
[C 语言中文开发手册strncpy (Strings) - C 中文开发手册在头文件中定义???(1)?char * strncpy(char * dest,const char * src,size_t count);(直到C99)char * strncpy(char * restrict d... ...
分类:
其他好文 时间:
2020-07-09 10:37:56
阅读次数:
87
1.gulpfile.js 文件配置 https://www.cnblogs.com/qiu2841/p/10898533.html 2.unhandled promise rejection https://www.jianshu.com/p/232a8cc149d7 3.dest() https ...
分类:
其他好文 时间:
2020-07-06 20:05:57
阅读次数:
81
System类 示例代码: public class Demo3 { public static void main(String[] args) { //arrayCopy 数组复制 int[] src = {12, 34, 45, 56, 67, 45}; int[] dest = new in ...
分类:
其他好文 时间:
2020-07-06 20:00:11
阅读次数:
61
dbbac.sh #!/bin/bash # db_user="teacher" db_password="123456" ftp_user="teacher" ftp_password="123456" ftp_host="192.168.199.230" dest_dir="/root/mysq ...
分类:
数据库 时间:
2020-07-06 13:03:48
阅读次数:
62
Mapper.CreateMap<Source, Destination>() .ForMember(dest => dest.SomeValuefff, opt => opt.Ignore()); ...
分类:
移动开发 时间:
2020-07-05 17:37:29
阅读次数:
161
1、脚本化运行 大量的hive查询任务,如果用交互式shell来进行输入的话,显然效率及其低下,因此,生产中更多的是使用脚本化运行机制: 该机制的核心点是:hive可以用一次性命令的方式来执行给定的hql语句 hive -e "insert into table t_dest select * fr ...
分类:
其他好文 时间:
2020-07-05 00:34:10
阅读次数:
60