码迷,mamicode.com
首页 >  
搜索关键字:modify    ( 1504个结果
-bash: ulimit: pipe size: cannot modify limit: Invalid argument
-bash:ulimit:pipesize:cannotmodifylimit:Invalidargument在由root用户切换到Oracle用户时,出现如题所示的问题。解决办法:在Oracle用户下,vi编辑器打开/etc/profile文件。配置该文件时有这么一段:if[$USER="oracle"];thenif[$SHELL="/bin/ksh"];thenulimit-p16384ulimit-n..
分类:其他好文   时间:2016-01-04 15:44:40    阅读次数:215
Oracle字段增删改、添加约束
添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….);修改字段的语法:alter table tablename modify (column datatype [default v...
分类:数据库   时间:2016-01-04 11:28:46    阅读次数:205
inotifywait+rsync
inotifywait+rsync1、参数查看inotifywait-h-e用来指定要监控的事件(create,move,delete,modify,attrib)-m持续监控-r递归-q简化输出2、脚本如下#!/bin/bash inotifywait-mrq-ecreate,move,delete,modify/var/www/html/|whilereadabc do rsync-azP--delete/var/www/html/root@..
分类:其他好文   时间:2016-01-02 01:11:48    阅读次数:230
oracle的增删改查语句
创建一个表:cteate table 表名(列1 类型, 列2 类型);查看表结构 desc表名添加一个字段 alter table 表名 add(列类型);修改字段类型 alter table 表名 modify(列类型);删除一个字段 alter table ...
分类:数据库   时间:2015-12-28 12:05:20    阅读次数:221
mpc-hc
2015-12-2321:28:05 modify the durationQ:mpc-hc cannot get the duration of videoS: To fix the condition part follow this if(m_avFormat->duration == (in...
分类:其他好文   时间:2015-12-23 22:56:08    阅读次数:235
linux基础 1
ls-l长格式文件类型:-;普通文件d;目录文件b:块设备文件(block)c;字符设备文件(character)l;符号链接文件(symboliclinkfile)p;命令管道文件(pipe)s;套接字文件(socket)文件权限:9位每3位一组,每一组:rwx(读,写,执行)文件硬链接的次数文件的属主(owner)..
分类:系统相关   时间:2015-12-22 06:40:23    阅读次数:199
modify headers插件的使用
Modity headers是firefox浏览器的一个插件,作用是改变http请求的IP地址(一)在firefox中添加该插件步骤一:打开firefox浏览器,打开地址:https://addons.mozilla.org/en-US/firefox/addon/modify-headers/ 步...
分类:其他好文   时间:2015-12-18 16:22:55    阅读次数:595
调用函数不能用&
Deprecated function: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of a(). If you...
分类:其他好文   时间:2015-12-02 20:17:28    阅读次数:134
Modify a Stored Procedure using SQL Server Management Studio
In Object Explorer, connect to an instance ofDatabase Engineand then expand that instance.ExpandDatabases, expand the database in which the procedure ...
分类:数据库   时间:2015-11-27 12:36:00    阅读次数:165
racle修改字段类型时报"要更改的列必须为空"处理方法
执行以下语句报"要修改数据类型,则要更改的列必须为空"alter table 表名 modify (目标字段 varchar2(100));解决步骤:第一步,在表中加一个临时字段alter table 表名 add 临时字段 目标字段原来的类型;第二步,将目标字段的值付给临时字段,并将目标字段置空u...
分类:其他好文   时间:2015-11-24 16:06:25    阅读次数:109
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!