Oracle Error 01034 After attempting to delete a large number of rows

I sent the command to delete a large number of rows from a table in an oracle database (Oracle 10G / Solaris). The database files are located at /dbo partition. Before the command the disk space utilization was at 84% and now it is at 100%.
SQL Command I ran:
delete from oss_cell_main where time < '30 jul 2009'
If I try to connect to the database now I get the following error:
ORA-01034: ORACLE not available
df -h returns the following:
Filesystem size used avail capacity Mounted on
/dev/md/dsk/d6 4.9G 5.0M 4.9G 1% /db_arch
/dev/md/dsk/d7 20G 11G 8.1G 59% /db_dump
/dev/md/dsk/d8 42G 42G 0K 100% /dbo
I tried to get the space back by deleting all the data in the table oss_cell_main :
drop table oss_cell_main purge
But no change in df output.
I have tried solving it myself but could not find sufficient directed information. Even pointing me to the right documentation will be higly appreciated. I have already looking at the following:
du -h :
du -h8K ./lost+found
1008M ./system/69333
1008M ./system
10G ./rollback/69333
10G ./rollback
27G ./data/69333
27G ./data
1K ./inx/69333
2K ./inx
3.8G ./tmp/69333
3.8G ./tmp
150M ./redo/69333
150M ./redo
42G .
I think its the rollback folder that has increased in size immensely.
SQL> show parameter undo
NAME TYPE VALUE
undo_management string AUTO
undo_retention integer 10800
undo_tablespace string UNDOTBS1
select * from dba_tablespaces where tablespace_name = 'UNDOTBS1'
TABLESPACE_NAME BLOCK_SIZE INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS
MAX_EXTENTS PCT_INCREASE MIN_EXTLEN STATUS CONTENTS LOGGING FOR EXTENT_MAN
ALLOCATIO PLU SEGMEN DEF_TAB_ RETENTION BIG
UNDOTBS1 8192 65536 1
2147483645 65536 ONLINE UNDO LOGGING NO LOCAL
SYSTEM NO MANUAL DISABLED NOGUARANTEE NO
Note: I can reconnect to the database for short periods of time by restarting the database. After some restarts it does connect but for a few minutes only but not long enough to run exp.

Check the alert log for errors.
Select file_name, bytes from dba_data_files order by bytes;
Try to shrink some datafiles to get space back.

Similar Messages

  • I'm getting a Download Error warning after attempting to download and install CC. No error code – just a button prompt to Reload Applications which takes me straight back to the Download Error. All my previously installed CC apps work fine but I need to u

    I'm getting a Download Error warning after attempting to download and install CC. No error code – just a button prompt to Reload Applications which takes me straight back to the Download Error. All my previously installed CC apps work fine but I need to upgrde to be compatible with colleagues. Thanks

    I'm having exactly the same problem......I'm running an iMac with OS X 10.10.1. We have BT fibre optic business broadband. Everything has been running just fine until about 2 weeks ago when the apps in my CC panel just disappeared. I have made no changes to our systems and I am the only person to administer it all.....

  • Irrelevant message after attempt to delete Master Data.

    Hi friends, i got one unwanted attribute existed in the master data and when iam trying to delete this it's giving one msg callede -->Table /BIC/YZXX2 does not exist.
    And also i applied the note 1110324 Irrelevant message after attempt to delete Master Data.
    Any one has faced this problem, pls suggest me ....how to over come this.
    Thanks in advance,
    Sruthi.

    Hi ,
    Create the Table /BIC/YZXX2  in SE16 T.code
    And the try to remove the Attr from master data Info Object.
    this is perfect
    Assigning the Points is the way to say thanks in SDN
    Regards
    Hari

  • I am trying to delete a large number of songs from my Itunes library without having to delete them one at a time.  How do I do that?

    I am trying to delete a large number of songs from my itunes library without having to do it one at a time.  How can I do this.  All of my songs have check marks by them.  Help!

    Then I suspect you do not have iTunes Match enabled. Using that "delete all" command in the Settings does not remove the music from the cloud, nor does it disable iTunes Match. With iTunes Match enabled you will still see all the music.
    So go to Settings > iTunes and App Store and make sure iTunes Match is set to ON (green).

  • I have accidentally deleted a large number of develped images in Lightroom before I did a backup. I reimported the original raw files back into Lightroom hoping the develop settings would be re-established but no luck. Notice system mau have done an auto-

    Question?
    I have accidentally deleted a large number of develped images in Lightroom before I did a backup. I reimported the original raw files back into Lightroom hoping the develop settings would be re-established but no luck. Notice system mau have done an auto-backup as have an lrcat-journal file. Can I use this to restore my develop settings. I also have jpgs generated from all the deleted images.

    Hello,
    if you have a backup of your catalog you can do the following:
    1. Backup your catalog first
    2. Restore your backup catalog to some location
    3. Open your current catalog and select "files->import from another catalog".
    4. Select your backup catalog and your lost images. LR ask you if you want to overwrite the current settings or save them as a virtual copy.
    As an alternativ you can open your backup catalog, select the "lost" images and save the development settings as xmp sidecar fiels (using ctrl-s). Then open your current catalog, seletct the images and use "Metadata->Read Metadata from files".

  • How do i go about deleting a large number of files at the same time?  where's the easiest place to do it?

    how do i go about deleting a large number of files at the same time?  where's the easiest place to do it?

    A bit vague as to what you intend, but the simple answer is to select all the files you want to delete then either drag to the Trash or CTRL- or RIGHT-click on the selection and choose Move to Trash from the contextual menu.

  • How can I most quickly delete a large number of outlook messages from my iphone?

    How can I most quickly delete a large number of outlook messages from my iphone?

    Who is the email account provider?
    If the email account is an exchange or IMAP account that you access with Outlook on your computer, delete the email with Outlook which will remove the email from your iPhone.

  • Fastest Way to Delete a large number of data

    I m trying to delete a large number of Data
    this Proc will be running every day without disturbing the other Process
    SET sql = 'DELETE TOP (100) FROM ' + @TableName + ' WHERE Id IN (Select Distinct Id FROM [state] WHERE ToDel = 1)'SET @Deleted_Rows = 1;SET @Rows = 0; WHILE (@Deleted_Rows > 0)BEGIN BEGIN TRANEXEC sp_executesql @sql SET @Deleted_Rows = (SELECT @@ROWCOUNT);SET @Rows = (@Rows + @Deleted_Rows);COMMIT TRANWaitFor DELAY '00:00:00:01' END
    Have you any Idea how can I optimize my Query ?
    Thank you very much

    Hi, following are few thoughts.
    1. If you can manage without dynamic sql then it may yield better performance as except table name there is no need for it as per your query.
    2. Ensure indexes are in place.
    3. If the table in question is not participant in replication then you may slightly go for higher batch size and again it depends on volume.
    Please take a look at the tweaked code.
    declare @Deleted_Rows int, @Rows int;
    SET @Deleted_Rows = 1;
    SET @Rows = 0;
    WHILE (@Deleted_Rows > 0)
    BEGIN
    BEGIN TRAN;
    DELETE TOP (100) t1
    FROM
    tabName as t1
    WHERE exists (Select * FROM [state] as t2 WHERE t2.ToDel = 1 and t2.Id = t1.id);
    SET @Deleted_Rows = @@ROWCOUNT ;
    SET @Rows = @Rows + @Deleted_Rows;
    COMMIT TRAN;
    WaitFor DELAY '00:00:00:01';
    END
    Print 'Total rows deleted : '+convert(varchar(50), @Rows);

  • TS4009 I deleted a large number of contacts on one iphone when i got a new one. icloud must have automatically synced to the old one, then synced my new one to that, thus deleting many contacts. can i restore them?

    I deleted a large number of contacts on one iphone when i got a new one. icloud must have automatically synced to the old one, then synced my new one to that, thus deleting many contacts. can i restore them? can i retrieve a snapshot of my icloud as it existed yesterday?

    When a device that is connected to an icloud account has it's contacts deleted, the same contacts at icloud.com are also deleted and then the changes propagate to other computers and devices also connected to the same icloud account.   In other words, the contacts are deleted everywhere.  Also, any iOS backup to icloud does not include contacts or any of the other Apple data, like calendars, reminders, etc.  The only way you can get that data back is if it was on a computer which has been frequently backed up.  You restore the data from the backup.  (This reference to "backup" is a local backup, it has nothing to do with icloud.)

  • Error -50 when attempting to delete a file

    I am using Time Machinehave to back up to a 1Tb drive connected via USB to to my router, ... when attempting to delete old backups I get the error code -50. Cant find a reference to it, so can anyone help??

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • How do I delete a large number of songs off my iPad

    I have a large music collection and have downloaded a large number of songs onto my iPad (10GB).  I don't need that much music on my iPad and would like to put the songs back in the cloud.  I don't want to have to delete thousands of songs one at a time by swiping.  What is the best way to do this?
    I have a 4th gen iPad and I have iTunes Match.

    Then I suspect you do not have iTunes Match enabled. Using that "delete all" command in the Settings does not remove the music from the cloud, nor does it disable iTunes Match. With iTunes Match enabled you will still see all the music.
    So go to Settings > iTunes and App Store and make sure iTunes Match is set to ON (green).

  • How can I delete a large number of messages from my iCloud mailbox in bulk mode?

    I decided that I have a large number of e-mail messages in my iCloud mailbox that I do not need anymore and I would like to delete these messages in a single - simple move. How can I do it (Gmail offers a nice way to do this but I cannot find anything similar in iCloud...)?

    Archive the contacts you have in Address book, then delete them, they will be removed from iCloud as well. Restore the archive

  • I was trying to delete a large number of e-mails from Stamp. I did something and now I can't delete any of my e-mails. What do I do to fix this.

    I tried to delete a large # of e-mail. I did something that caused the computer to hum for a few minutes. All of the e-mails came back and now I can't delete any of my old e-mails.  What did I do and how do I fix it?

    The clipboard is a place in memory where text that has been copied from is temporarily stored ready to be pasted elsewhere.
    The clipboard cannot be viewed, and is essentially invisible to the user. Copied text will stay on the clipboard until it is replaced by the next piece of copied text.
    Probably what happened is you copied your credit card number from somewhere, either intentionally or accidentally (perhaps you made a purchase on your iPad using this card recently), and the clipboard stored the number. Then, whilst you were using Facebook you (accidentally) pasted this credit card number from the clipboard into your Facebook message.
    That's the only likely reason I can think of. Hope I explained it well enough!

  • How do I group delete the large number of duplicate songs I have accumulated?

    I have accumulated a large number of duplicate songs (1600+) due to several passes at restoring data to my itunes library.
    Is there a way to delete all but a single version of the files that show up when I click on "show duplicates"?

    Hey applejcn,
    I'd read over this article, it'll go over how to use the Show Duplicates feature in order to remove those 1600 duplicates from your library:
    How to find and remove duplicate items in your iTunes library
    http://support.apple.com/kb/ht2905
    Cheers,
    David

  • Error Message on attempting to delete a Number Range in CO82--Msg No-NR019

    While deleting the Number range groups in CO82, initially I was able to delete them, but later, I was not able to do so. The error message is as below.
    "The number range number 18 does not exist
    Message no. NR019"
    What is the implication and how to solve or correct this?
    I have seen the earlier threads, but the solution is not clear.
    Thanks in advance
    Sanjay

    Closing the issue

Maybe you are looking for

  • Screen is dark after hibernation

    I recently used bootcamp to load Windows 7 on my Macbook. Lately, I have noticed that when my Mac is taken out of hibernation or sleep while in the Windows partition, the screen is almost completely black. You can still barely see the Windows desktop

  • Array based level help

    Hi, I was hoping someone could explain the concept behind using an array for a level in a 2d game. The only tutorial I could find on the subject was not helpfull. I do not see how to take the array and create a grid where I could place a character or

  • HTML tags showing up in the pages?

    I have some strange problems with some pages. Sometimes the </html> closing tag is missing the ‘>’ and therefore ‘</html’ is displayed in the bottom of the page. On other pages I now and then get something like ‘first_field(….’ at the bottom of the p

  • Battling to download PDF via index.cfm file

    Hi. I'm trying to download an pdf from alink to a index.cfm file - Firefox downloads a 0byte file which then dissapears immediately, whereas IE7 at least recognises a PDF file, but still downloads it as a 0byte file which then wont open anyway :( Any

  • I don't want to BURN a CD, I just want to add a new song to the CD!

    Why can't I just add a new music purchase to the CD that already contains other iTunes music? I tried dragging the song to the Device, but nothing happens. If I click on Burn, I'm asked to insert a blank CD. I have a lot of room for more music on my