If a session fails after loading of 10,000 records in to
the target.How can you load the records from 10001?
Answers were Sorted based on User's Feedback
Answer / bsgsr
simple. in session properties configure the session to
enable recovery. it then create s a database log file which
contains the rowids ot all records committed to the target.
when you run recovery session it checks with the log file
the last rowid committed to the target and writes to the
target from the next rowid. condition the session is
configured to run in a normal mode.
| Is This Answer Correct ? | 42 Yes | 0 No |
Answer / rao
one option is session recovery.
or
select * from select rownum from tablenaem) where rownum>10000
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / mohit
After running the session once it will load 10000 records
and it will fail afterwards then we can take the minimum
and maximum count of the number of records in the target in
a paramter and we can specify these parameters in the SQl
override of sql qualifier so once again when it will run
the session then it will take those minimum and maximum
values from the parameter and will specify a condition in
the sql overide that dont take any values from min to max
and take rest of the values so in this case the minimum
will be 1 and the maximum will be 10000 so the sql overide
will take the values after 10000 i.e 10001.
select * from employee where value is not in between $$min
and $$max
I think may be this can be a solution
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / anil
mr rao is answer is correct .another way use exp t/r put it
>1000
| Is This Answer Correct ? | 0 Yes | 7 No |
can you please explain me pre session and post session options?
Suppose we have a csv file with contents as below which is used has a source file. C1,C2,C3,C4 100,200,A B,300 200,400,X,Y,299 ---> it should be 4 values but by mistake 300,600,C D,566 with a comma in between X & Y,its 5. My target takes only 4 columns, How to take care of the 2 record as above without rejecting it and loading in the target. Hope u guys have understood my scenerio
Without source how to insert record to target?
How to generate the HTML output using Informatica.
Tell me about your experience in informatica? what is best mark you can give yourself? How to answer this question?
what is filelist concept in informatica
i have 2 mapings for this 2 mapings i want use only one lookupt/r how?
what is worklet and what use of worklet and in which situation we can use it?
What is informatica etl tool?
How does the server recognize the source and target databases. Elaborate on this.
What is Data Caches size?
Calculate sum of salaries department wise. Then the sum will be repeat for all columns in each department. Develop a mapping for this.