随笔 - 105  文章 - 5  评论 - 6  阅读 - 16万 
11 2013 档案
RedHat和CentOS使用本地yum源配置
摘要:2013-04-01 11:38:30标签:本地yum源版权声明:原创作品,谢绝转载!否则将追究法律责任。 使用yum命令安装所需的软件,如果设备网络状况很好,当然也没必要去配置本地yum源,直接使用命令“yum install + 软件名字”即可。如果由于一些原因,无法使用网络或者网络状况不好,使用本地yum源会很方便。 RedHat和CentOS的操作步骤基本一致,略有不同。 1、首先介绍一下RedHat中yum源的配置: ①挂载镜像:mkdir/mnt/cdromcd/mnt/cdrommount/dev/cdrom/mnt/cdrom ②修改配置文件:cd/etc/yum.r... 阅读全文
posted @ 2013-11-30 22:44 houxiurong.com 阅读(217) 评论(0) 推荐(0) 编辑
Oracle表添加主键、外键
摘要:1、创建表的同时创建主键约束(1)无命名 create table student ( studentid int primary key not null, studentname varchar(8), age int);(2)有命名 create table students ( studentid int , studentname varchar(8), age int, constraint yy primary key(studentid));2、删除表中已有的主键约束(1)无命名可用 SELECT * from user_cons_columns; 查找表中主键名称得stude 阅读全文
posted @ 2013-11-25 18:18 houxiurong.com 阅读(741) 评论(0) 推荐(0) 编辑
websphere6.1安装与配置
摘要:http://www.blogjava.net/103335460/articles/220935.html一、本人开发环境: jdk1.5.0_11,eclipse3.2, MyEclipse 5.5.1 ,Tomcat5.5(开发用) ,websphere 6.1(发布用) 操作系统是 windows XP二、简单介绍: MyEclipse 配置 Websphere6.1 的时候需要做比配置其它server更多的工作; Websphere6.1 必须和 MyEclipse 安装在一个机器上; Websphere6.1 必须使用 IBM 的jdk,位置在 /java; 只有 MyEclips 阅读全文
posted @ 2013-11-25 18:08 houxiurong.com 阅读(659) 评论(0) 推荐(0) 编辑
oracle测试环境导入生产新数据
该文被密码保护。
posted @ 2013-11-18 09:08 houxiurong.com 编辑
检查文件中重复的代码
摘要:>/tmp/check.txtfor file in `ls *.py`do awk -F "(" '{ if ($0 ~ /^def/) { print $0 }}' $file >> /tmp/check.txtdonepython <<!f = file("/tmp/check.txt", "r")lines = f.readlines()unique=set(lines)if len(lines) != len(unique): for n in unique: lines.rem 阅读全文
posted @ 2013-11-15 17:52 houxiurong.com 阅读(314) 评论(0) 推荐(0) 编辑
nls_sort和nlssort 排序功能介绍
摘要:nls_sort和nlssort 排序功能介绍博客分类:oracleALTER SESSION SET NLS_SORT=''; 排序影响整个会话Oracle9i之前,中文是按照二进制编码进行排序的。 在oracle9i中新增了按照拼音、部首、笔画排序功能。设置NLS_SORT值 SCHINESE_RADICAL_M 按照部首(第一顺序)、笔划(第二顺序)排序 SCHINESE_STROKE_M 按照笔划(第一顺序)、部首(第二顺序)排序 SCHINESE_PINYIN_M 按照拼音排序oracle9i中新增了按照拼音、部首、笔画排序功能拼音 SELECT * FROM TEA 阅读全文
posted @ 2013-11-05 09:49 houxiurong.com 阅读(1618) 评论(0) 推荐(0) 编辑

< a href="http://houxiurong.com">houxiurong.com
点击右上角即可分享
微信分享提示