易截截图软件、单文件、免安装、纯绿色、仅160KB

Redhat Linux oracle 10g em 按钮乱码解决

网上有很多的资料,参考itput(http://space.itpub.net/471666/viewspace-215923)的。
OS : Redhat
DB : Oracle 10.2.0.4.0
1.修改jdk 下面的字体。
[oracle@a ~]$ cd $ORACLE_HOME/jdk/jre/lib/
[oracle@a ~]]$ mv font.properties font.properties_bak
[oracle@a ~]]$
[oracle@a ~]]$ cp font.properties.zh_CN.Redhat font.properties
[oracle@a ~]]$
2.修改jre 下面的字体
[oracle@a lib]$ cd $ORACLE_HOME/jre/1.4.2/lib
[oracle@a lib]$ mv font.properties font.properties_bak
[oracle@a lib]$ cp font.properties.zh_CN.Redhat font.properties
3.清除em的cache
[oracle@a lib]$ cd $ORACLE_HOME/oc4j/j2ee/oc4j_applications/applications/em/em/cabo/images/cache/zhs
[oracle@a zhs]$ rm *.gif
4. 重新启动em
[oracle@a zhs]$ emctl stop dbconsole
[oracle@a zhs]$ emctl start dbconsole
5.更改IE浏览器的语言配置:
  选择“工具”→选择”Internet 选项(0)“→选择"常规"选项卡→选择"语言"→选择"添加"
  添加"英语(美国)",并将其移植第一位,重新打开em就OK啦,反正我试过是有用的,按钮的文字变成英文了。


相关文档:

oracle在线文档地址

为防忘记,记录于下:
oracle 11gR2 : http://www.oracle.com/pls/db112/homepage,下载网址http://www.oracle.com/technology/documentation/database.html
oracle 11gR1 : http://www.oracle.com/pls/db111/homepage
oracle 10gR2 : http://www.oracle.com/pls/db102/homepage ......

用命令行(CMD)中启动和关闭ORACLE服务


用命令行(CMD)中启动和关闭ORACLE服务
 
 
监听启动
lsnrctl start
监听停止
lsnrctl stop
启动Oracle
net start oracleservicesid
停止Oracle
net stop oracleservicesid
 
net命令是win系统命令!其它的服务启动和上面的类似!
......

Oracle启动时ORA 00600错误处理方法

oracle  startup时 报错ORA-00600: 内部错误代码,参数: [kcratr1_lostwrt], [], [], [], [], [], [], []
原因可能是非法关机或掉电造成,以下是出现的问题及解决方法:
C:\Documents and Settings\Administrator>sqlplus
请输入用户名:  /as sysdba
SQL> startup
ORA-01081: 无法启动已在运行的 ORACLE ......

linux—select详解

linux—select详解
select系统调用时用来让我们的程序监视多个文件句柄的状态变化的。程序会停在select这里等待,直到被监视的文件句柄有一个或多个发生了状态改变。
关于文件句柄,其实就是一个整数,通过socket函数的声明就明白了:
int socket(int domain, int type, int protocol);
我们最熟悉的句柄是0、1、2 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号