Oracle 11g / IBM AIX昨天跑一段代码:create table table_srctty_getopt_temp_4 as select ...很慢,跑不出来拿给别人跑,1秒不到就跑出来了然后我改成 create table table_srctty_getopt_temp_4(id number); 也跑不出来,太奇怪了有人知道会是什么原因么?

解决方案 »

  1.   

    重启了不!呵呵!是不是oracle的问题呢?
      

  2.   

    试试这个
    -- Create table
    create table SRESSTATUS
    (
      KIND_CODE   CHAR(1) not null,
      RES_STATUS  CHAR(1) not null,
      STATUS_NAME VARCHAR2(20) not null
    )
    tablespace CUSTMNGCFG
      pctfree 10
      initrans 1
      maxtrans 255
      storage
      (
        initial 64K
        next 1M
        minextents 1
        maxextents unlimited
        pctincrease 0
      );
      

  3.   


    别人和你连的是同一个SID吗?  看下相关的表空间有没有? undo 表空间用了多少?