Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3611918
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T21:56:05+00:00 2026-05-18T21:56:05+00:00

I got the following error on Oracle: ORA-01536 What is the problem?

  • 0

I got the following error on Oracle: ORA-01536

What is the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T21:56:06+00:00Added an answer on May 18, 2026 at 9:56 pm

    The online documentation includes a book with explanations and resolutions for all the error messages. Some of them are a bit cryptic but it is the place to start. Find out more.

    Anyhoo, here is an illustrated solution for ORA-01536.

    A DBA creates a new user:

    SQL> create user fox_in_socks identified by tweetlebeetle
      2      default tablespace users quota 1M on users
      3  /
    
    User created.
    
    SQL> grant create session, create table to fox_in_socks
      2  /
    
    Grant succeeded.
    
    SQL>
    

    In another session our brave user creates a table…

    SQL> conn fox_in_socks/tweetlebeetle
    Connected.
    SQL> create table t23 (col1 varchar2(4000))
      2  /
    
    Table created.
    
    SQL>
    

    .. and does some work….

    SQL> begin
      2      for i in 1..1000 loop
      3          insert into t23 values (rpad('a', 4000, 'a'));
      4          commit;
      5      end loop;
      6  end;
      7  /
    begin
    *
    ERROR at line 1:
    ORA-01536: space quota exceeded for tablespace 'USERS'
    ORA-06512: at line 3
    
    
    SQL>
    

    Uh-oh! So our user goes to their tame DBA and asks for more quota, which they get:

    SQL> alter user fox_in_socks
      2      quota 10M on users
      3  /
    
    User altered.
    
    SQL>
    

    Work proceeds:

    SQL> begin
      2      for i in 1..1000 loop
      3          insert into t23 values (rpad('a', 4000, 'a'));
      4          commit;
      5      end loop;
      6  end;
      7  /
    
    PL/SQL procedure successfully completed.
    
    SQL>
    

    If the user were an application owner then the DBA could have decided to give them unlimited quota (especially if they were the only user with privileges on that tablespace):

    alter user fox_in_socks
        quota unlimited on users
    /
    

    (in real life this situation is unlikely to be true for the USERS tablespace).

    Users can check their current quota using the appropriate view:

    SQL> select * from user_ts_quotas
      2  /
    
    TABLESPACE_NAME                     BYTES  MAX_BYTES     BLOCKS MAX_BLOCKS DRO
    ------------------------------ ---------- ---------- ---------- ---------- ---
    USERS                             9437184   10485760       1152       1280 NO
    
    SQL>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I got the following error of Oracle, ORA-25226: dequeue failed, queue string.string is not
While working on an existing project I suddenly got the following error when trying
Whenever I run any jython program in Eclipse, I got the following error in
I have got the following problem since the server has safe mode turned on,
I got the following SQLException: invalid options in all7 Upon googling the error message,
The following query generates the error below in 10g: select DBMS_METADATA.GET_DDL('TABLE','TEST_TABLE','TEST') from dual; Got:
Opencv Error: I got the following error while installing OpenCV on Lucid. 81% ....
I got the following error: > org.apache.jasper.JasperException: An > exception occurred processing JSP page
when I am trying to create the PDF file I got the following Error?
I got following error when serialize (java.util)Date field available in Object. My GWT version

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.