Enough space, unlimited tablespace ,why faces the error ORA-01536

the error happened the production database.the case is that enough space, unlimited tablespace for the table owner,but the table index has another owner,the index has a tablespace,the error happened on the index which was in the tablespace. at that time,we were worried,because the error had affected the foregrounding,then we execuated "ALTER USER the table_owner QUOTA <integer> [K/M] ON <tablespacename>;" but now i make a test which reappeared the error,the error has reappeared,but i execuated ALTER USER the table_owner QUOTA <integer> [K/M] ON <tablespacename>; " the error still hanppened. so i don't know if i make a mistak to decide the production database error??? please tell me why ,thank you !

01536, 00000, "space quota exceeded for tablespace '%s'"
// *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.
ALWAYS
Post Operating System (OS) name & version for DB server system.
Post results of
SELECT * from v$version
or post Oracle version to 4 decimal places

Similar Messages

  • Having problem with iPad sync getting pop up message as below. The iPad cannot be synced because there is not enough space to hold all of the items in the iTues library (additional 10.03 GB required).  There is enogh space be it in PC or on iPad.

    Having problem with i Pad sync getting pop up message as below. The i Pad cannot be synced because there is not enough space to hold all of the items in the iTunes library (additional 10.03 GB required).  There is enough space be it in PC or on i Pad. Why and What can be done to resolve, please advice appreciate. Thanks

    It generally means - just using random numbers for examples - the iTunes on your computer holds 45 gig of content, you have a 16 gig iPad which has 13 gig of free space and the content just won't fit.
    Easy solutions. go into iTunes and 'manually manage' your content. I believe this is in the main summary tab for your device (connect your device, click on the icon in iTunes to access controls for your iPad
    You may also need to choose to manually control content in both the music and movie tabs.
    Apple - Support - Manuals
    the manual will have more specific info for syncing and controlling content

  • Why does the error message "Microsoft Outlook must be closed because an error occurred" keep coming up?

    why does the error message "Microsoft Outlook must be closed because an error occurred" keep coming up?

    Reboot the machine.

  • Since installing 10.7.3 my downloads say that I do not have enough space on my computer for the download. These downloads are never more that 200 megs or so and I have 270 Gigs left on my hard drive. What can I do to fix this?

    Since installing 10.7.3 my downloads say that I do not have enough space on my computer for the download. These downloads are never more that 200 megs or so and I have 270 gigs left on my hard drive. Somehow the remaining space on my hard drive is not being correctly read. What can I do to fix this? I have run permissions repair several times, but to no avail.

    Th downloads do not finish. I am dowloading to a file on my desktop called MUSIC, but it first starts to download to my desktop and then I move it to the MUSIC file also on my desktop and I have been doing this without incident using 10.7.2 as well as 10.7.1 and 10.7.

  • Why does the error console continuosly keep filling up ? in yellow, pink & blue messages ??

    Ok, first I am using an older, slower Mac G4 400 Mhz, PCI, "YIKES" model machine. ..... The problem is that after browsing mail for 1/2 hr., Fire Fox slows down a lot. Most likely related to my machine speed. I understand that and this machine is a backup computer. I can cure the speed problem by closing FF, and relaunching it, and speed is fine for another 1/2 hr. or more. Then repeat the close and restart for speed reset as needed. This seems to clear a backlog of info. slowing down the CPU.
    THE REAL QUESTION IS; Why does the ERROR CONSOLE keep filling up with messages in pink, yellow and blue, warnings, errors, and (blue) website not supported messages ??.
    The message copy & pasted in the trouble shooting info. box is the first one to show up immediately after "clearing error console" window (5 seconds later), it will be filling up as I type now. and I don't know squat about coding or deep workings of computers, I am to old to start learning now, but it just seems to me that the "ERROR console" should not be filling up with every mouse click I make while browsing mail & websites I use everyday, that are working just fine as far as I can tell.
    I have watched the error console fill up as I brows, usually 1 mouse click can produce 4 to 8 lines in the error console, clearing it out doesn't seem to affect the speed problem at all, so is unrelated to speed (??) I think.
    But the Question is ??? why does the ERROR CONSOLE keep filling up with all these messages when FF seems to be working fine ????????
    There are now 15 (PINK) separate lines of the same message in the console window, just while typing this out. 0
    Reply to ;<[email protected]> ..... I am really curious about this and await an answer. Thank You. wayne

    Hello, took me awhile to find this out, but...
    Get the combo update for Intel-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateintel.html
    Safe Boot, (holding Shift key down at bootup), & use Disk Utility from there to Repair Permissions, reapply the Combo Update.
    Repair Permissions afterwords, reboot.

  • HT1386 When i first synced my iphone it synced around 3000 photo's.  It now wont ley me sync my phone at all as i need the new ios version but because of the photo's i dont have enough space but i cant delete the photo's because my phone wont sync. HELP P

    When i first synced my iphone it synced around 3000 photo's.  It now wont ley me sync my phone at all as i need the new ios version but because of the photo's i dont have enough space but i cant delete the photo's because my phone wont sync. HELP PLEASE!!

    Use iPhone as designed. Like any digital camera, download your photos to your computer and delete from the iPhone to create space required for iOS upgrade.

  • Why I always get the error(ORA-00600)?

    Why I always get the error(ORA-00600)?
    My database Oracle 9.2.0.1.0 I installed Oracle Jdeveloper 9i on my computer.
    OS:windows2000
    My program:
    Class.forName("oracle.jdbc.driver.OracleDriver");
    con =java.sql.DriverManager.getConnection("jdbc:oracle:thin:@server:1521:db","developer","12345");
    java.sql.Statement stmt=con.createStatement();
    java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
    while (rs.next()){              
         //getInformation
         String fjbh=rs.getString("task_title");
    If I use this in a common java program(like MyParser.java). It will work well:
    D:\JavaApp> java MyParser
    but If I put the code into a JSP file . It will not work.I tried several times.
    I find that the statment:
         java.sql.ResultSet rs=stmt.executeQuery("select task_title from task");
    will throw the exception.It seemd that I can connect to the database ,
    but can not execute some sql statment.
    If I execute this sql statment:
         select sysdate from dual ;
         or
         select task_ID from task ; --task_id is a column with the type NUMBER(10)
    it will work.
    but if I execute :
         select Task_Title from task where task_id=1; --Task_Title is a column with the type VARCHAR(50)
         or
         select t.task_text.getCLOBVal() task_Text from task t where task_ID=1;
                   --task_text is a column with the type XMLTYPE, I use this column save XMLFile.
    it will not work.
    the detail error information as follow:
    java.sql.SQLException: ORA-00600: internal error code, arguments: [ttcgcshnd-1], [0], [], []

    It is a database bug (an ORA-0600 almost always is). In this case it is bug# 1725012. You can see the details from MetaLink. There are some patches (by platform) available you should see which may apply to you.

  • I tried to update an app on my iPod 4 gen but didn't have enough space to update and now the apps are stuck waiting for the update. I just wanna access my apps.

    I tried to update an app on my iPod 4 gen but didn't have enough space to update and now the apps are stuck waiting for the update. I just wanna access my apps!!!!!

    Fix iOS Apps Stuck on “Waiting…” During Download & Install
    Fix iPhone Apps Stuck "Waiting" During Installation

  • I cant update my software as it always prompted me ,your start up disk is full and not enough space, when i had done the deleting some of my documents and stuff that i dont need it.

    i cant update my software as it always prompted me ,your start up disk is full and not enough space, when i had done the deleting some of my documents and stuff that i dont need it.

    I use CCleaner from the AppStore to delete the 'useless' stuff. It's free and works great for me

  • Why all the errors appear after some hours on pc

    Why all the errors appear after some hours on pc             

    Thanks for reply but the 2 HDD oki think the PS is 200 W that made that problem ?Or from TEMP ? i made it more able to flow the air  & become better now     

  • Only in my PC I get the error ORA-03113

    Hi
    I have tried to run a simple QUERY (SELECT * FROM marcas;) but if the table has more than 2,000 records I get the error ORA-03113, but if I run the same query in other PC I don't have problems. If the table has less tahn 2,000 I don't have problems in my PC.
    I have SQL*Plus: Release 9.2.0.1.0
    Why?...I need help!!!!! tanks!!!

    Hi,
    could be a network problem. Check your Oracle Client installation using others tools like tnsping. Sometime firewalls or similar can interrupt a connection. Check also your pc with applications that use a persistent connection like a long file transfert.
    Hope this helps
    Sam

  • I got the error ORA-12154 trying to connect my app but not with the SQLplus

    Hello! i need your help,
    I have a client (Win XP SP2) and i'm trying to connect to the database in the server (Windows 2003, Oracle 10G) using the SQL plus, this is ok, but i try to do it throught the application developed in Developer 6i and i cannot, i got the error: ORA-12154 TNS:could not resolve service name. I tried to solve it by setting the env. var TNS_ADMIN and i still have the same error.
    Could anyone help me?, please

    Hi,
    Check for following file TNSNAMES.ORA at location;
    C:\<Forms-directory>\NET80\ADMIN
    See, if your service name is added to your file. If not then add a new entry like;
    gsm.world =
    (DESCRIPTION =
    (ADDRESS = (COMMUNITY = tcp)(PROTOCOL = TCP)(Host = 10.0.1.22)(Port = 1521))
    (CONNECT_DATA = (SID = gsm))
    Where:
    gsm.world = your service through which you connect to databse.
    Host = ip address of machine where oracle server is running.
    sid = name of your database
    If you already have entry of service in TNSNAMES.ora file then paste you service here as is did , so that we can check because the error you are facing is only due to service problem. Please update........

  • Help Needed: Facing the error ORA-01406: fetched column value was truncated

    Hi Everyone,
    When I run a particular PL/SQL query using Oracle 9i ODBC driver, it is working fine and fetching me the desired results.
    However, when I run the same query using the Oracle 10g ODBC driver, I am getting the error: ORA-01406: fetched column value was truncated.
    I have checked all the fields of the table and they are well within the allowable limit.
    Can you please let us know what needs to be done to resolve this issue?
    Thanks and Regards,
    Sudhindra

    Well it's obviously a problem with the client software. Doesn't Datastage have some way of configuring these things?
    rgds, APC

  • How do we solve the error ORA-32001?.

    How do I create a SPFILE and re-start the instance using the SPFILE to solve the error ORA-32001?.
    Thank you,
    Rhode

    You can do (as sysdba)
    SQL> create spfile from pfile;
    SQL> shutdown immediate
    SQL> startup

  • How to fix the error ORA-02289 using msync.exe for WIN32

    Hi All,
    I am testing OLITE 10.3.0.1.0 and I got the error Ora-02289 when I am synchronizing
    any idea to fix it?
    Regards.
    Charly

    Hi,
    The Mobile Manager Didn't delete/create properly the mobile user.
    The Mobile Manager is an J2EE Application which connects to the Mobile Repository using the Oracle JDBC Thin Driver, it is possible that when some users were deleted/created, the http connection or JDBC connection was cut.
    Can you try to reset the metadata cache, delete the mobile user, create and configure this mobile user then Synchronize it.
    It will make a Complete refresh but it should synchronize fine after.
    Regards.
    Marc

Maybe you are looking for

  • DMS server installation

    Hello All, I understand that DMS is part of ECC 6.0. However I have noticed in some threads a seperate content server is also installed. Could you please clear me the following doubts? 1.Do we need to install any other component like SAP content serv

  • Running CS2 on Bootcamp (Windows) on my Mac

    I'm trying to install my CS2 on bootcamp (Windows XP) and getting the following error message: "CS2 needs your monitor to support resolution of at least 1024 x 768 with 16-bit color to run properly." We have a brand new Mac with a great monitor, and

  • Reports 10g and Excel output

    Hi, We are getting the excel file generated out of report RDF by specifying the DESFORMAT=spreadsheet. This works fine and excel file opens when we run the report with proper output. However, when we try to 'save as' the excel file opened, the defaul

  • Listing and PPR

    Hello What is the difference between PPR and listing in CRM 5.0 ? We did not have listing in 4.0 and this was acheived through PPR but when it comes to 5.0 we have both and what is the need for having listing and PPR ? Jessy

  • Pen tool Q

    I don't have a problem making shapes and design in photoshop with the pen tool, but I'm having trouble figuring it out in illustrator. I can't see all the anchor points or the handles when I have my path selected. I can scroll over my path with the c