码迷,mamicode.com
首页 >  
搜索关键字:modify    ( 1504个结果
Linux 文件时间详解 ctime mtime atime
Linux系统文件有三个主要的时间属性,分别是 ctime(change time), atime(access time), mtime(modify time)。这三个时间很容易混淆,准备深入了解linux的童鞋请区分这三者的区别。 atime:是在读取文件或者执行文件时更改,即文件最后一次被读取的时间。 mtime:是在写入文件时随文件内容的更改而更改,是指文件内容最后一次被修改的时间。 ctime:是在写入文件、更改所有者、权限或链接设置时随 Inode 的内容更改而更改,即文件状态最后一次被...
分类:系统相关   时间:2015-02-13 11:38:06    阅读次数:215
Oracle修改字段类型方法总结(转)
有一个表名为tb,字段段名为name,数据类型nchar(20)。1、假设字段数据为空,则不管改为什么字段类型,可以直接执行:alter table tb modify (name nvarchar2(20));2、假设字段有数据,则改为nvarchar2(20)可以直接执行:alter table...
分类:数据库   时间:2015-02-12 12:19:25    阅读次数:194
vs2013+directory
To specify or modify directory settingsIn Solution Explorer, open the shortcut menu for the project you want to change and then choose Properties. In ...
分类:其他好文   时间:2015-02-11 23:16:09    阅读次数:245
How to Modify Public Network Information including VIP in Oracle Clusterware (文档 ID 276434.1)
APPLIES TO:Oracle Database - Enterprise Edition - Version 11.2.0.3 to 12.1.0.2 [Release 11.2 to 12.1]Information in this document applies to any platf...
分类:数据库   时间:2015-02-05 18:19:01    阅读次数:310
mysql命令行操作
1.连接 mysql –u root –p; 2.导入sql source 文件位置 3.显示,使用数据库 show databases; use 某数据库; 4.显示数据表,和字段 show tables; desc 某数据表 5.更改某个字段类型 alter table 某数据表 modify ...
分类:数据库   时间:2015-02-05 13:21:04    阅读次数:139
[ABAP技术总结]OPEN SQL
目录导航 声明:原创作品,转载时请注明文章来自SAP师太博客,并以超链接形式标明文章原始出处,否则将追究法律责任!原文出自: 4. OPEN SQL. 43 4.1. SELECT 、INSERT、UPDATE、DELETE、MODIFY. 43 4.2. 条件操作符... 44 4.3. RANG...
分类:数据库   时间:2015-01-31 21:45:59    阅读次数:603
使用BBED恢复DELETE的数据
测试环境请参见 使用BBED手工提交事务 尝试恢复delete的数据: BBED> modify /x 2c offset 5064  File: /data/orcl/orcl/users01.dbf (4)  Block: 68               Offsets: 5064 to 5071           Dba:0x01000044 --------...
分类:其他好文   时间:2015-01-30 16:00:13    阅读次数:309
hdu 1541 树状数组
#include #include #include #include using namespace std;#define MAX 32000int num[MAX+100];int lowbit(int x){ return x&(-x);}void modify(int x){ for(in...
分类:编程语言   时间:2015-01-29 14:11:28    阅读次数:165
firefox按钮菜单自动弹出uc脚本,修正Omnibar上的图标按钮有些不能弹出的问题
// ==UserScript== // @name AutoPopup.uc.js // @description Auto popup menulist/menupopup // @compatibility Firefox 24.0+ // @author GOLF-AT, modify by gsf // @version 2015...
分类:其他好文   时间:2015-01-29 12:41:35    阅读次数:215
nginx_access_log的409错误跟踪记录
查看nginx日志 tail -f **/nginx/access.log,发现?频繁出现"GET /core/modify/index HTTP/1.0" 499 0 "-" 查看日志,跟踪modify/index接口,发现该接口运行时间超过了60s,肯定是程序某个地方卡住了 查看php慢查...
分类:数据库   时间:2015-01-28 13:13:40    阅读次数:235
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!