11 2019 档案
摘要:4-6是ABC 或者 4-6是 0-9
阅读全文
摘要:ext: (extension extension) Take the attachments of zip files and of txt files for example, just enter the ext: (zip txt) in the search box, and then i
阅读全文
摘要:有时候我们写完文章会发现,有的地方有红色波浪线,有的地方有绿色/蓝色二重线,那么这两种线各代表什么意思呢?其实红色波浪线代表此处存在拼写错误,绿色/蓝色波浪线代表此处可能有语法错误。如果你不希望Word自动检查语法和拼写,你可以在Options–>Proofing–>When Correcting
阅读全文
摘要:二三五七和十一, 十三后面是十七, 还有十九别忘记,
阅读全文
摘要:When a piece of code needs error handling, IntelliJ underlines it with red. Set your pointer on that piece of code and press ALT+ENTER. IntelliJ shoul
阅读全文
摘要:1、在IntelJ中和Eclipse中稍有不同,在Eclipse中,输入main再按Alt+/即可自动补全main函数,但是在IntellJ中则是输入psvm,选中即可 2、在方法体内部有for循环,在IntellJ中是输入fori,然后会有一个提示,选中需要的for循环即可 3、System.ou
阅读全文
摘要:code-complete change to ALT + /
阅读全文
摘要:管道命令操作符是:”|”,它仅能处理经由前面一个指令传出的正确输出信息,也就是 standard output 的信息,对于 stdandarderror 信息没有直接处理能力。然后,传递给下一个命令,作为标准的输入 standard input. 管道命令使用说明: 先看下下面图: command
阅读全文
摘要:Characters are shown with their equivalent Unicode codes.
阅读全文
摘要:SELECT DISTINCT(TABLESPACE_NAME) FROM ALL_TABLES; SELECT COUNT(*) FROM ALL_TABLES where TABLESPACE_NAME='XX'; COUNT(*) 383 SELECT DISTINCT(OWNER) FROM ALL_VIEWS; SELECT COUNT(*) FROM ALL_VIEWS WHERE O
阅读全文
摘要:update all line start with -- to space
阅读全文
摘要:
阅读全文
摘要:scm即软件配置管理。 软件配置管理(SCM)是指通过执行版本控制、变更控制的规程,以及使用合适的配置管理软件,来保证所有配置项的完整性和可跟踪性,配置管理是对工作成果的一种有效保护。 SCM(Software Configuration Management,软件配置管理)是一种标识、组织和控制修
阅读全文
摘要:In database computing, Oracle Real Application Clusters (RAC) — an option[1] for the Oracle Database software produced by Oracle Corporation and intro
阅读全文
摘要:[KeyRemap]keyVersion=2B33554467=[eraseeof]S36=[bof]B33554466=[pagedn]S35=[eof]B33554465=[pageup]B10=[newline]B192=[reset]C16777233=[enter]B27=[attn]XM
阅读全文
摘要:1.1 Outline 2.1 What is DFSORT? 2.2 Usage of DFSORT 2.3 Invoke DFSORT with JCL 3.1 Sorting Datasets 3.2 Merging Datasets 3.3 Copying Datasets 3.4 INCL
阅读全文
摘要:Computer encoding[edit] There are several different systems for encoding the Polish alphabet for computers. All letters of the Polish alphabet are inc
阅读全文
摘要:http://www.timeofdate.com/country/Poland 2019年 ~ 2020年波兰夏令时开始结束时间 年份 日期 类型 2019 2019-3-31 夏令时开始 2019-10-27 夏令时结束 2020 2020-3-29 夏令时开始 2020-10-25 夏令时结束
阅读全文
摘要:按 WinKey+I 鍵,開啟「設定」對話框,再選取「時間與語言」選項。
阅读全文
摘要:https://blog.csdn.net/wangcg123/article/details/50667883 单引号里面,s表示替换,三根斜线中间是替换的样式,特殊字符需要使用反斜线”\”进行转义,但是单引号”‘”是没有办法用反斜线”\”转义的,这时候只要把命令中的单引号改为双引号就行了,例如:
阅读全文
摘要:https://en.wikipedia.org/wiki/Code_page_866
阅读全文
摘要:EBCDIC to ASCII https://www.ibm.com/support/knowledgecenter/SSZJPZ_11.7.0/com.ibm.swg.im.iis.ds.parjob.adref.doc/topics/r_deeadvrf_EBCDIC_to_ASCII.htm
阅读全文
摘要:script parm of sql
阅读全文
摘要:发现这个目录使用率100%,但是这个只是逻辑卷,具体是由于/tmp目录下,日志文件太多,导致空间被占满了。
阅读全文
摘要:原因分析 JVM抛出 java.lang.OutOfMemoryError: GC overhead limit exceeded 错误就是发出了这样的信号: 执行垃圾收集的时间比例太大, 有效的运算量太小. 默认情况下, 如果GC花费的时间超过 98%, 并且GC回收的内存少于 2%, JVM就会
阅读全文
摘要:https://www.eclipse.org/mat/downloads.php 直接下载使用 免安装 In Help > Install New Software..., enter the following update site URL: http://download.eclipse.o
阅读全文
摘要:1.单引号和双引号的区别 str=yalong echo "The str is $str" >> The str is yalong #双引号中的$str被其值yalong替换,即双引号允许变量替换。 echo 'The str is $str' >> The str is $str #单引号中的
阅读全文