select * from dba_ts_quotas  这个表,这个用户是:
       tablespace_name   username     Bytes   max——bytes   blocks      max_blocks    dropped
1   LSBD           LSBD     1572864 -1     192           -1        NO请问:lsbd 这个用户的空间限额有什么问题吗?在企业管理控制台中查看users的数据文件大小事100MB,使用了94MB,后来我增加到了200MB,还是报ora01536.不知道怎么解决!
全部的:
1 LSBD LSBD 1572864 -1 192 -1 NO
2 TS_ZGXT DB_ZSFJ 0 -1 0 -1 NO
3 TS_ZGXT DB_DS 458752 -1 56 -1 NO
4 TS_ZGXT DB_XTWH 1480720384 -1 180752 -1 NO
5 TS_ZGXT DB_BD 4915200 -1 600 -1 NO
6 TS_ZGXT DB_LSSJ 0 -1 0 -1 NO
7 SYSAUX DMSYS 262144 209715200 32 25600 NO
8 SYSAUX SYSMAN 62914560 -1 7680 -1 NO
9 TS_ZGXT DB_KTHS 458752 -1 56 -1 NO
10 TS_ZGXT DB_ODS 2228224 -1 272 -1 NO
11 TS_ZGXT DB_USER 0 -1 0 -1 NO
12 SYSAUX OLAPSYS 16318464 -1 1992 -1 NO
13 TS_ZGXT DB_GS 589824 -1 72 -1 NO
14 TS_ZGXT DB_ZGXT 2555904 -1 312 -1 NO

解决方案 »

  1.   

    ORA-01536 space quota exceeded for tablespace 'string'Cause: The space quota for the segment owner in the tablespace has been exhausted and the operation attempted the creation of a new segment extent in the tablespace.Action: Either drop unnecessary objects in the tablespace to reclaim space or have a privileged user increase the quota on this tablespace for the segment owner.
    删除不需要的对象....
      

  2.   

    用system登陆到Oracle,
    执行
    ALTER USER LSBD QUOTA UNLIMITED ON LSBD;
      

  3.   

    修改用户使用quota
    alter user username quota quantity on table_name
      

  4.   

    alter user username quota quantity on tablespace_name
      

  5.   

    学习!~ 不知道下面两句是否正确:
    8i 的default tablespace quota 是unlimited .
    9i 的default tablespace 在沒有指定quota 的情況下是 0 .
      

  6.   

    等待高手指点ORA-01536:表空间不足