检查系统资源使用情况,包括CPU、MEM、IO等的资源,我在自己笔记本上都装过8.1.7,没有那么慢,建议你还是详细检查一下资源使用情况,最好有列表!

解决方案 »

  1.   

    我看过了,CPU高99%,MEM还可以(用了3G),什么命令看IO信息???
    所有的功能、服务都起来了,oracle的安装应该没问题吧?
    不应该占用那么多的CPU呀!
    SQL> @/home/oracle/fxg/create.sql
    SQL> set timing on;
    SQL> spool create.log
    SQL> --create tablespace tbscomm datafile '/u02/data01.dbf' size 2047m default storage (initial 1m next 1m minextents 1 maxextents 1017 pctincrease 0) online;
    SQL> --create tablespace tbsidx datafile '/u03/idx01.dbf' size 2047m default storage (initial 1m next 1m minextents 1 maxextents 1017 pctincrease 0) online;
    SQL> create tablespace tbstemp datafile '/u01/temp01.dbf' size 2047m default storage (initial 1m next 1m maxextents unlimited pctincrease 0) temporary online;
    表空间已创建。
    已用时间:  00: 01: 14.06
    SQL> create tablespace tbsrbs datafile '/u01/rbs01.dbf' size 2047m default storage (initial 1m next 1m minextents 20 maxextents unlimited pctincrease 0) online;
    表空间已创建。
    已用时间:  00: 02: 05.53
    SQL> 
    SQL> --alter tablespace tbscomm add datafile '/u02/data02.dbf' size 2047m;
    SQL> --alter tablespace tbsidx add datafile '/u03/idx02.dbf' size 2047m;
    SQL> alter tablespace tbstemp add datafile '/u01/temp02.dbf' size 2047m;到这里就停了,但CPU还被占用!create.sql文件是这样的:
    set echo on
    set timing on;
    spool create.log
    --create tablespace tbscomm datafile '/u02/data01.dbf' size 2047m default storage (initial 1m next 1m minextents 1 maxextents 1017 pctincrease 0) online;
    --create tablespace tbsidx datafile '/u03/idx01.dbf' size 2047m default storage (initial 1m next 1m minextents 1 maxextents 1017 pctincrease 0) online;
    create tablespace tbstemp datafile '/u01/temp01.dbf' size 2047m default storage (initial 1m next 1m maxextents unlimited pctincrease 0) temporary online;
    create tablespace tbsrbs datafile '/u01/rbs01.dbf' size 2047m default storage (initial 1m next 1m minextents 20 maxextents unlimited pctincrease 0) online;--alter tablespace tbscomm add datafile '/u02/data02.dbf' size 2047m;
    --alter tablespace tbsidx add datafile '/u03/idx02.dbf' size 2047m;
    alter tablespace tbstemp add datafile '/u01/temp02.dbf' size 2047m;
    alter tablespace tbscomm add datafile '/u02/data03.dbf' size 2047m;
    --alter tablespace tbsidx add datafile '/u03/idx03.dbf' size 2047m;
    alter tablespace tbscomm add datafile '/u02/data04.dbf' size 2047m;
    alter tablespace tbscomm add datafile '/u02/data05.dbf' size 2047m;
    alter tablespace tbsrbs add datafile '/u01/rbs02.dbf' size 2047m;
    spool off
    exit;
      

  2.   

    [email protected]希望能给予指点。谢谢!