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 |
Explain the different kinds of facts.
how can import the data from the flat files?
which one is costliest transformation? costliest means occupying more memory. which one Aggregator,sorter,filter,etc..
Difference between Target-based loading and constraint-based loading?
follwing scenario two table using find maximum salary? table a table b 101 xxx 1000 106 6500 103 yyy 5000 108 800 104 din 6000 109 7000 105 dsh 200 110 3000
How to create the list file having millions of flat files while indirect loading in informatica? In indirect file loading, suppose we have less no.of flat files then we can enter files names manually in list file creation. If millions of files are there, how can we enter the flat file names in list file?
What is meant by pre and post session shell command?
if i hv 6 table as source table but can i make 12 as a dim table and 6 as fact table belongs to that src table.
can we have to do changes in session property when we are dynamically generating target files?
i have a source of n records.i have to load n+5 records to my target.What is the procedure??????plz tell me.....
What is meant by lookup transformation?
How will you convert rows into columns or columns into rows