Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.tools -> "unique" violation problem

"unique" violation problem

From: Zhiliang Hu <zhu_at_genomicfx.com>
Date: Wed, 04 Apr 2001 11:04:25 -0500
Message-ID: <3ACB4609.626F0419@genomicfx.com>

I created a table:

create table test_unique
(name VARCHAR2(20) unique NOT NULL,
 color VARCHAR2(20),
 temp VARCHAR2(20)
)
/

Then used SQL Loader to append data:

________Control file__________
options (direct = true)
load data
infile 'raw_data.file'
badfile 'raw_data.bad'
discardfile 'raw_data.dsc'
append into table test_unique
fields terminated by "#"
(name VARCHAR2(20) unique NOT NULL,
 color VARCHAR2(20),
 temp VARCHAR2(20)
)

________Data file_____________
Scott Tempo#red#north
Jeff Geo#green#east

"Error calling col array build, block formatter ORA-26031: index maintenance error, the load cannot continue ORA-26028: index ZHU.SYS_C00627 initially in unusable state"

Any hint what was going wrong?

Thanks!

Zhiliang Received on Wed Apr 04 2001 - 11:04:25 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US