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

win7 32bit下安装oracle 10g

oracle 至今没有推出针对win7的版本,无奈之下查询网络,网上大虾表示修改refhost.xml文件即可。
进入自己实战阶段,从oracle官方下载oracle 10g for vista and windows2K8 x86版(for windows是支持vista内核的,win7的内核与2008以及vista的内核是一样)。
先点击安装,在安装的版本检测时提示目前oracle不支持version为6.1的windows OS系统。
查找refhost.xml文件,我下载的10g版本有2处refhost.xml第一处在database\stage\prereq\db下,令一处是在db目录下有一个类似prereq文件夹下db中还有一处refhost.xml。
用记事本打开,看到 
 <!--Microsoft Windows vista-->
  <OPERATING_SYSTEM>
  <VERSION VALUE="6.0"/>
  </OPERATING_SYSTEM>
这样的代码,那么ctrl+c然后在这个后面ctrl+v在改成
 <!--Microsoft Windows 7->
  <OPERATING_SYSTEM>
  <VERSION VALUE="6.1"/>
  </OPERATING_SYSTEM>
重新启动安装程序,一切按常安装走就可以了。
文章转自:http://blog.19lou.com/13582633/viewspace-4297239


相关文档:

oracle 简单的字符串拆分函数

写存储过程时,用到拆分字符串,第一个传入参数为带分割符的字符串,第二个为分隔符的个数,下面是单提出来的分割字符串方法,
create or replace procedure split(                      ......

ORACLE 中去回车、空格、TAB的函数

update EMPLOYEE set BADGE=trim(BADGE);   // 这样可去除字符串两边的空格
update EMPLOYEE set BADGE=replace(BADGE,' ','');    // 这样能去除所有的空格
SELECT replace(string,chr(13),'')   from DUAL   ----换行
SELECT replace(string,chr(10),'')   fr ......

oracle logical standby 日常管理常用的一些语句

// 执行跳过,跳过的结果在
execute dbms_logstdby.skip(stmt => 'DML',schema_name => '%', object_name => '%');
stmt的取值可以是:
http://download-west.oracle.com/docs/cd/B14117_01/appdev.101/b10802/d_lsbydb.htm#997290
// 跳过的内容记载在下面
select * from dba_logstdby_skip
......

Oracle log files

Oracle log files : An introduction
 
The Oracle server maintains the redo Oracle log files to minimize the loss of data in the Database in case of an uncontrolled shutdown.
Online redo Oracle log files are filled with redo records. A redo record, also called a redo entry, is made up of a gr ......

oracle重建密码文件


[oracle@dba01 dbs]$ orapwd file=/oracle/app/oracle/product/10.2.0/db_1/dbs/orapworcl password=oracle entries=20 force=y
[oracle@dba01 dbs]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Sat May 29 13:07:10 2010
Copyright (c) 1982, 2005, Oracle.  All rights reserved.
Con ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号