linux使用ctime/mtime/atime 来标记文档时间,
ctime: c不代表create而是change的意思,比如文件内容的修改权限的修改都会改变ctime
mtime: m是modify的意思,和ctime唯一的区别是权限的修改对其没有影响
atime: a是文件访问的时间,比如你打开一个文件即使对起没有任何的修改也会对这个时间产生影响
为了方便学习...
分类:
系统相关 时间:
2014-11-12 13:51:47
阅读次数:
253
oracle db server 修改主机名时的注意事项...
分类:
数据库 时间:
2014-11-12 09:21:31
阅读次数:
193
Login remote server without typing password with ssh....
分类:
其他好文 时间:
2014-11-11 22:49:58
阅读次数:
281
增加一列: alter table emp4 add test varchar2(10);修改一列: alter table emp4 modify test varchar2(20);删除一列:alter table emp4 drop column test; 这里要注意几个地方,首先,增加和....
分类:
数据库 时间:
2014-11-11 10:31:11
阅读次数:
190
/** * Title: JavaScript Util * Description: JavaScript 工具 * Modify: 2011/11/30 ...
分类:
Web程序 时间:
2014-11-03 22:24:10
阅读次数:
370
一 svn中的简写含义.A:add,新增C:conflict,冲突D:delete,删除M:modify,本地已经修改G:modify and merGed,本地文件修改并且和服务器的进行合并U:update,从服务器更新R:replace,从服务器替换I:ignored,忽略二 常见错误.1 (4...
分类:
其他好文 时间:
2014-11-03 10:05:30
阅读次数:
170
相比于上次我做过的一个容斥题 和他很相似 就是多了一个modify操作不过也不难 只要 通过 加加减减 操作就能完成了这个操作 我想过很多种方法 最后觉得用Map迭代访问是最好的选择如果遍历x->y这个区间 因为y::iterator it; 5 for( it=mp.begin();it!...
分类:
其他好文 时间:
2014-11-02 13:51:51
阅读次数:
229
修改表名:代码:alter table 旧表名 rename 新表名;示例:alter table peo rename people;注:完成后可用show tables 查表名是否被修改;修改表字段的数据类型:代码:alter table 表名 modify 字段名 新数据类型;示例:alter...
分类:
数据库 时间:
2014-11-01 21:38:22
阅读次数:
340
今天出现的问题:Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of in_array_two_di...
分类:
其他好文 时间:
2014-10-30 20:37:40
阅读次数:
174
In this Document Goal Solution References APPLIES TO: Oracle Applications Framework - Version 12.1.2 to 12.1.2 [Release 12.1] Inf...
分类:
其他好文 时间:
2014-10-29 00:06:01
阅读次数:
254