Re: External tables - rejected rows
- From: "Anurag Varma" <avoracle@xxxxxxxxx>
- Date: 31 May 2006 09:40:10 -0700
Chuck wrote:
I'm loading data into a table by inserting rows from an external table.
I can easily determine the number of rows inserted in pl/sql by looking
at the sql%rowcount attribute after the insert completes. Is there a way
to easily get the # of rejected rows in pl/sql?
Thanks
The rejected rows will be placed in a .bad file. You can create an
external table (with column definitions like varchar2(4000) so that
you can query it) and do a count(*) on it.
Or you can probably create an external table on the log file and
query that.
Anurag
.
- Follow-Ups:
- Re: External tables - rejected rows
- From: Chuck
- Re: External tables - rejected rows
- References:
- External tables - rejected rows
- From: Chuck
- External tables - rejected rows
- Prev by Date: Re: External tables - rejected rows
- Next by Date: Re: External tables - rejected rows
- Previous by thread: Re: External tables - rejected rows
- Next by thread: Re: External tables - rejected rows
- Index(es):
Relevant Pages
|
|