ORA-1536: space quota exceeded for tablespace ""

Error:  ORA 1536
Text:   space quota exceeded for tablespace ""
-------------------------------------------------------------------------------
Cause:  The space quota in the tablespace is already used up and the operation
        attempted the creation of a new extent in the tablespace.
Action: Either
        Drop unnecessary objects in the tablespace to reclaim space.
        Ask the database administrator to increase the tablespace quota.

该错误的处理方式:
The DBA must grant additional resource quota on the tablespace to that user.

One or all of the following  may fix the problem:

1) Increase the tablespace quota allocated to that user by using the following command:
ALTER USER QUOTA [K/M] ON

2) Grant unlimited quota to the user on that tablespace by using the following command:
ALTER USER QUOTA UNLIMITED ON

If the problem occurs even after executing the above steps, then run the following command:
GRANT RESOURCE TO

这个错误主要是由于表空间不足造成的,解决方法就是添加表空间大小
一般我喜欢这个解决方法:grant unlimited tablespace to username
unlimited tablespace 权限在移除dba权限时会被一起移除

 

你可能感兴趣的:(oracle)