上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 80 下一页
摘要: find . -name *.c find: missing conjunction, why? SHELL会把*.c直接扩展成当前工作目录的多个.c文件,所以必须用单引号'*.c'或者/*.c进行转义。 find . -name *.c |xargs grep 'test' 因为grep可以支持多 阅读全文
posted @ 2017-02-27 15:42 feiyun8616 阅读(889) 评论(0) 推荐(0) 编辑
摘要: sh 脚本报错 思路如下: 1.建议按照手工方式运行该脚本。 2.加入-x 方式查看脚本的输出。 阅读全文
posted @ 2017-02-27 12:21 feiyun8616 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1.在给表授权的时候.报错ORA-25191 检查该表为IOT 表 . --因为不是按照单表方式授予权限,而是按照用户的方式授予权限,所以该表的父亲表都在该用户下,所以这个报错可以忽略。 2/ 在参考了Using DBMS_SYS_SQL Package to grant Privilege留言板里 阅读全文
posted @ 2017-02-27 12:20 feiyun8616 阅读(2039) 评论(1) 推荐(0) 编辑
摘要: <?php $array=$_POST['array']; //接收所有的值并存入数组$array中 $options=array('伙食','住房','交通','通信','其他'); //定义存放选项的数组$options $image=imagecreatetruecolor(400,400); 阅读全文
posted @ 2017-02-26 12:26 feiyun8616 阅读(208) 评论(0) 推荐(0) 编辑
摘要: ImageTTFText 写 TTF 文字到图中。 语法: array ImageTTFText(int im, int size, int angle, int x, int y, int col, string fontfile, string text); 返回值: 数组 函数种类: 图形处理 阅读全文
posted @ 2017-02-25 22:50 feiyun8616 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 因为原库和目标库版本不一制,出现各种问题,强烈建议保持2个版本一致http://www.cndba.cn/dave/article/220Log 提示查看PDB_PLUG_IN_VIOLATIONS。col action for a70select status,action from PDB_PL 阅读全文
posted @ 2017-02-24 15:58 feiyun8616 阅读(387) 评论(0) 推荐(0) 编辑
摘要: 1.unplug To unplug a PDB, you first close it and then generate an XML manifest file. The XML file contains information about the names and the full pa 阅读全文
posted @ 2017-02-23 14:22 feiyun8616 阅读(623) 评论(0) 推荐(0) 编辑
摘要: PHP String 函数 实例 把字符串打散为数组: <?php $str = "Hello world. I love Shanghai!"; print_r (explode(" ",$str)); ?> 运行实例 实例 把字符串打散为数组: 运行实例 定义和用法 explode() 函数把字 阅读全文
posted @ 2017-02-22 17:14 feiyun8616 阅读(225) 评论(0) 推荐(0) 编辑
摘要: http://jingyan.baidu.com/article/7908e85c54917faf481ad2b7.html 阅读全文
posted @ 2017-02-22 15:50 feiyun8616 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 文件上传的html表单: <form enctype="multipart/form-data" action="" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="1000"> <input name="myFile" 阅读全文
posted @ 2017-02-22 14:08 feiyun8616 阅读(372) 评论(0) 推荐(0) 编辑
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 80 下一页