ORA delete / truncate

23,594

Deleting records in batches can be done in a PL/SQL loop, but is generally considered bad practice as the entire delete should normally be considered as a single transaction; and that can't be done from within the SQL*Loader control file. Your DBA should size the UNDO space to accommodate the work you need to do.

If you're deleting the entire table you'll almost certainly be better off truncating anyway, either in the control file:

options(skip=1,load=250000,errors=0,ROWS=30000,BINDSIZE=10485760)
load data
infile 'G:1.csv' "str '^_^'"
truncate
into table IMPORT_ABC
...

Or as a separate truncate statement in SQL*Plus/SQL Developer/some other client before you start the load:

truncate table import_abc;

The disadvantage is that your table will appear empty to other users while the new rows are being loaded, but if it's a dedicated import area (guessing from the name) that may not matter anyway.

If your UNDO is really that small then you may have to run multiple loads, in which case - probably obviously - you need to make sure you only have the truncate in the control file for the first one (or use the separate truncate statement), and have append instead in subsequent control files as you noted in comments.

You might also want to consider external tables if you're using this data as a base to populate something else, as there is no UNDO overhead on replacing the external data source. You'll probably need to talk to your DBA about setting that up and giving you the necessary directory permissions.

Share:
23,594
4est
Author by

4est

Updated on April 09, 2020

Comments

  • 4est
    4est about 4 years

    I'm using SQL loader to load my data into database.

    Before I insert the data I need to remove existing data in the table:

    options(skip=1,load=250000,errors=0,ROWS=30000,BINDSIZE=10485760)
    load data
    infile 'G:1.csv' "str '^_^'"
    replace
    into table IMPORT_ABC
    fields terminated by "," OPTIONALLY ENCLOSED BY '"'
    trailing nullcols(
    .
    .
    .
    .)
    

    But I got error like:

    SQL*LOADER-926: OCI error while executing delete/truncate for table IMPORT_ABC ORA-30036: unable to extend segment by 8 in undo tablespace 'undo1'

    How can I delete data for example by 10000 rows? I know that I have some limit on my DB.

  • Alex Poole
    Alex Poole about 11 years
    The replace will attempt to delete everything in the table in the first run, however many records are being inserted; and subsequent runs with the same parameter would delete the rows you just inserted. Batching might be needed for the insert phase though...
  • 4est
    4est about 11 years
    yes, I have data import split into 3 config files and it's ok but I can't remove all the items (in DB) by once, somehow I need to delete them by 1000rows etc how can I do it ?
  • Sibster
    Sibster about 11 years
    Did you try truncate ? or you could try delete based on rowid asktom.oracle.com/pls/apex/…
  • 4est
    4est about 11 years
    can I do it like this: fist sqlloader file: `code options(skip=1,load=250000,errors=0,ROWS=30000,BINDSIZE=1048‌​5760) load data infile 'G:\Remediation metrics\Source data\Data Backup & Recovery\ALL_admin_combined_report_v1.csv' "str '^_^'" truncate into table IMPORT_ABC..... 2nd sqlloader file: options(skip=250001,load=250000,errors=0,ROWS=30000,BINDSIZE‌​=10485760) load data infile '2.csv' "str '^_^'" append into table .. 3rd sql*loader: options(skip=500001,load=250000,errors=0,ROWS=30000,BINDSIZE‌​=10485760) load data infile '1.csv' "str '^_^'" append into table
  • Alex Poole
    Alex Poole about 11 years
    @user2207426 - yes, that's what I meant. Added a reference to the answer; thanks.
  • Sauer
    Sauer over 6 years
    @AlexPoole: Thx! It would work, but my user will not be granted truncate permissions. I have only delete privs. For now I use a separate sqlplus statement to delete the data and than sqlldr like above... But I'm not amused...