- 浏览: 38251 次
-
最新评论
-
every:
同样的问题 你解决了么???!!!
oracle11g redhat6
文章列表
Session信息SID:SESSION标识,常用于连接其它列SERIAL#:如果某个SID又被其它的session使用的话则此数值自增加(当一个 SESSION结束,另一个SESSION开始并使用了同一个SID)。AUDSID:审查session ID唯一性,确认它通常也用于当寻找并行查询 ...
使用yum安装oracle的包
- 博客分类:
- oracle
在rhel上安装oracle需要一些必备的包,如binutils compat-db compat-libstdc++-33 control-center gcc gcc-c++ glibc glibc-common等等。如果一个一个的装,真的很麻烦,幸好有了yum 和oracle-validated:
参考公共yum地址:
http://public-yum.oracle.com/
最新的redhat enterprise 6:wget http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6 -O /etc/pki/rpm-gpg ...
oracle字符集调整
- 博客分类:
- oracle
1 select userenv('language') from dual;
select * from nls_database_parameters
1. 关闭数据库
SQL>SHUTDOWN IMMEDIATE
2. 启动到Mount
SQL>STARTUP MOUNT;
SQL>ALTER SYSTEM ENABLE RESTRICTED SESSION;
SQL>ALTER SYSTEM SET JOB_QUEUE_PROCESSES=0;
SQL>ALTER SYSTEM SET AQ_TM_PROCESSES=0 ...
远程启图像界面登录linux
- 博客分类:
- linux
首先的配置本地yum/etc/yum.conf[Server]name=Yum Sourcebaseurl=file:///rhel5/Server/enabled=1gpgcheck=1gpgkey=file:///rhel5/Server/RPM-GPG-KEY-redhat-release
yum groupinstall "X Window System"yum groupinstall "GNOME Desktop Environment" ----一般换成kde的。yum groupinstall chinese-support ...
red hat enterprise 6安装
挂载光驱
mount -t auto -o ro /dev/cdrom /mnt
[root@oracledb Packages]# uname -r2.6.32-71.el6.x86_64[root@oracledb Packages]# uname -mx86_64[root@oracledb Packages]# cat /proc/versionLinux version 2.6.32-71.el6.x86_64 (mockbuild@x86-007.build.bos.redhat.com) (gcc version ...
linux64位系统设置/etc/hosts文件 for example192.168.2.88 oracledb.localdomain oracledb
2 软件包的检测rpm -q gcc make binutils setarch compat-db compat-gcc compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel unixODBC unixODBC-devel libaio-devel sysstat没有的都安装好。
3,//查看内存及swap 和系统参数设置 grep MemTotal /proc/me ...
如何解决 yum安装出现This system is not registered with RHN
[root@localhost ~]# yum install libtool
Loaded plugins: rhnplugin, security
This system is not registered with RHN.
RHN support will be disabled.
Setting up Install Process
Nothing to do
A、在线yum 要连接网络
解决方案:
1、进入/etc/yum.repos.d/目录。 ...
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=137.64.25.28)(PORT=1522))(ADDRESS=(PROTOCOL=TCP)(HOST=137.64.25.29)(PORT=1522))(LOAD_BALANCE=YES)(FAILOVER=YES))(CONNECT_DATA=(SERVICE_NAME=ttprac)))
expdp ttp/*****@137.64.25.26:1522/ttprac directory=dpdata dumpfile=sx_export20140321.dmp logfile=sx_export20140321.log version=10.2.0.1.0
create or replace directory dpdata as '/home/ora11'; grant read,write on directory dpdata to ttp
linux rpm 依赖性安装
- 博客分类:
- linux
yum --disablerepo=\* --enablereporepo=c6-media install xxx.rpm
linux umask介绍
- 博客分类:
- linux
umask为权限掩码 一般和chmod配套使用 设置文件的默认权限
umask是chmod配套的,总共为4位(gid/uid,属主,组权,其它用户的权限),不过通常用到的是后3个,例如你用chmod 755 file(此时这文件的权限是属主读(4)+写(2)+执行(1),同组的和其它用户有读写权限)
默认情况下的umask值是022(可以用umask命令查看),此时你建立的文件默认权限是644(6-0,6-2,6-2),建立的目录的默认权限是755(7-0,7-2,7-2),可以用ls -l 现在应该知道umask的用途了吧,它是为了控制默认权限,不要使默认的文件和目录具有全权而设的
...
拦截器 :是在面向切面编程的就是在你的service或者一个方法,前调用一个方法,或者在方法后调用一个方法比如动态代理就是拦截器的简单实现,在你调用方法前打印出字符串(或者做其它业务逻辑的操作),也可以在你调用方法后打印出字符串,甚至在你抛出异常的时候做业务逻辑的操作。
过滤器:是在java web中,你传入的request、response提前过滤掉一些信息,或者提前设置一些参数,然后再传入servlet或者struts的action进行业务逻辑,比如过滤掉非法url(不是login.do的地址请求,如果用户没有登陆都过滤掉),或者在传入servlet或者 struts的action前 ...
linux服务启动优化配置
- 博客分类:
- linux
本机服务参考:
chkconfig --level 2345 abrtd on
chkconfig --level 2345 acpid off
chkconfig --level 2345 atd off
chkconfig --level 2345 auditd on
chkconfig --level 2345 autofs off
chkconfig --level 2345 certmonger off
chkconfig --level 2345 ...
myeclipse 下载地址
- 博客分类:
- linux
下面是MyEclipse 8.5官方下载地址:
请在IE下用下载工具下载
MyEclipse 8.5.0-win32
File size: 825.84 MB
MD5 : a9038148dcde9066abc3711bf8ee636c
http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.5.0-win32.exe
MyEclipse 8.5.0-linux
All-in-One installer for Linux supports CentOS/R ...
上一篇Linux shell脚本基础学习中我们讲了Linux shell脚本中控制流程的if 、select、case ,这里接着介绍Linux shell脚本控制流程的loop和引号,控制流程这部分内容比较多,还有一部分内容是关于here document的。
4.loop
loop表达式:
while ...; do
....
done
while-loop 将运行直到表达式测试为真。will run while the expression that we test for is true.
关键字"break" 用来跳出循环。而关键字”continue” ...