摘要: 文件操作: 打开: C-x C-f 查看已打开的缓冲(文件):C-x b (C-x C-b为直接打开缓冲,不过你得记得文件名。。) 保存:C-x C-s 另存: C-x C-w 删除操作: 向前 向后 单字 backspace C-d 单词 M-backspace M-d 整句 C-x back~ 阅读全文
posted @ 2020-03-23 10:51 mosakashaka 阅读(408) 评论(0) 推荐(0) 编辑
摘要: 原文来自: http://blog.chinaunix.net/uid-25871104-id-2938389.html 理论上来说,ARM的15个通用寄存器是通用的,但实际上并非如此,特别是在过程调用的过程中。 PCS(Procedure Call Standard for Arm archite 阅读全文
posted @ 2020-03-23 10:51 mosakashaka 阅读(1203) 评论(0) 推荐(0) 编辑
摘要: .append( content [, content] ) contentDOM element, HTML string, or jQuery object to insert at the end of each element in the set of matched elements. 阅读全文
posted @ 2020-03-23 10:51 mosakashaka 阅读(429) 评论(0) 推荐(0) 编辑
摘要: https://dba.stackexchange.com/questions/73836/exporting-scheduled-jobs-in-oracle SELECT dbms_metadata.get_ddl( 'PROCOBJ', <<job name>>, <<schema>> ) F 阅读全文
posted @ 2017-04-24 10:11 mosakashaka 阅读(852) 评论(0) 推荐(0) 编辑
摘要: if (value) 是否足以判断一个值存在且不为空字符串? 答案是 是的。 if ((fields null) || (fields undefined) || (fields.length 0)) { ... } 和 if( value ) { } 是等价的。 备注1: if( value ) 阅读全文
posted @ 2017-02-15 10:56 mosakashaka 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 1、登录 sqlplus / as sysdba;//登陆sys帐户 sqlplus sys as sysdba;//同上 sqlplus scott/tiger;//登陆普通用户scott 2、创建表空间 create tablespace user_data logging datafile ' 阅读全文
posted @ 2016-06-19 20:19 mosakashaka 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 来源:http://stackoverflow.com/questions/11296361/how-to-create-id-with-auto-increment-on-oracle There is no such thing as "auto_increment" or "identity" 阅读全文
posted @ 2016-06-19 08:40 mosakashaka 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 可能用到 http://bbs.csdn.net/topics/310024241 阅读全文
posted @ 2013-06-25 10:58 mosakashaka 阅读(85) 评论(0) 推荐(0) 编辑
摘要: google一下putty tab,就会搜到mtputty这个软件 配合putty使用,感觉还不错。。 阅读全文
posted @ 2013-01-10 09:35 mosakashaka 阅读(333) 评论(0) 推荐(0) 编辑
摘要: #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) ) 看了半天没搞懂,原来是括号看错了, 应该是( *(t *) ( (ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) ) 之前看成了: 阅读全文
posted @ 2012-12-14 18:52 mosakashaka 阅读(78) 评论(0) 推荐(0) 编辑