ORA-01536: exceeds the space limit for tablespace XXXX

Source: Internet
Author: User

ORA-01536: exceeds the space limit for tablespace XXXX

/******************** ORA-01536: exceed the space quota of the tablespace XXXX *******************/

/******************** ORA-01950: the table space FMISINDEX has no permissions *******************/

Problem description: When a DDL or DML operation is performed under the FMIS2600 user, the prompt: ORA-01536: exceeds the space limit of the tablespace FMIS2600 or ORA-01950: has no permission to the table space FMISINDEX

Problem Analysis: 1> check the space usage of the FMIS2600 table space. It is found that the tablespace is self-growing and there is about 60% of the remaining space.

2> check the user's tablespace quota: select * from dba_ts_quotas; -- The max_bytes field is-1, which indicates that there is no limit and the quota is insufficient.

User quota: The table space size is different from the user's quota size. The table space size refers to the actual user's table space size, the quota size refers to the size of the tablespace specified by the user. Increasing the tablespace file does not solve this problem. The user uses the space quota when using the tablespace. If the limit is exceeded, even if there is extra space, it will not be used by users. (For example, the tablespace size of 2 GB may allocate a quota of MB to a user)

Solution: 1> authorize the user: do not control the user's tablespace quota (for all tablespaces ):

Grant unlimited tablespace to user name;

2> modify the user quota for a specific tablespace:

Alter user Username quota unlimited on tablespace;

Reclaim tablespace quota control:

Revoke unlimited tablespace from username;

Or

Alter user username quota 0 on tablespacename;

Installing Oracle 12C in Linux-6-64

RHEL6.4 _ 64 install a single instance Oracle 12cR1

New Features of Oracle 12C: Paging Query

12 new features of Oracle 12C

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.