how to avoid duplicate data while uploading data from flatfile
to staging table? some validations
Answers were Sorted based on User's Feedback
Answer / pr@$@d
What Nagaraju suggest is right. But instead of creating
temp and then moving those to staging table.
Directrly load the data into staging table and write the
query to eliminate the duplicate rows.
It reduces the one step.
Cheers,
-Pr@$@d.
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / nagaraju chittamsetty
There is one way to avoid duplicate rows
First transfer the data into temp table by using control
file,this is only temp table.
Second create orginal stagging table then write a query to
eliminate the duplicate rows by taking the rowid.
If anybody got good answer send to me also
my mail id:csnraja@gmail.com
Is This Answer Correct ? | 4 Yes | 3 No |
Answer / srinivas.r
Yes,directly we can't handle the duplicate rows from the
SQLLOQDER, for that first we move the data into temp table
from flatfile.After that create the Staging talbe then make
validations before moving into staging table.
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / balaji venkiteela
create an unique index on staging table.
then run the loder program.It autometically omits the
duplicate records,we can find those records in bad file.
Is This Answer Correct ? | 0 Yes | 3 No |
which parameters passed in report in oracle developer how to pass
cursor 1 and cursor 2 are there did you open both the cursors at a time or not?
what is inbound and outbound interface?
what is mutating table and mutating error and how to solve that?
Can u define DFF with in the DFF,How?
what is the difference between request group and request security in oracle apps?
How relation will be made between modules in oracle financial?
How to compile the Forms & Reports in Linux Apps Server which are created in WindowsXP client?
in which tables the transaction details stored? at least two.
how will u do documentation
can we get profile values in report without using user exists is it possible how?
how to avoid duplicate data while uploading data from flatfile to staging table? some validations