how can we load first and last record from a flat file
source to target?

Answers were Sorted based on User's Feedback



how can we load first and last record from a flat file source to target?..

Answer / srinu

I have an IDEA,
After sql Trans,go with AGG,RANK transformation,
in RankTrans Properties set the rank 1 only---1 row returns,
In AggTrans Dont do any column for Group--Last row returns,
We need 2 Target tables. 1 for 1st record,2 for last record,
if u using the UNIONtrans one Target table is enough,,,
i think it wii help u,,,,,,srinu,,,,,,,,,

Is This Answer Correct ?    13 Yes 4 No

how can we load first and last record from a flat file source to target?..

Answer / hardeep

We can use below configurations to achieve desired output. We need 1 SQ, 1 SGen, 2 Rank and 2 Trgt Defn(same Trt). I think it will be cheaper.

Src-SQualifier-->
|
Rank1(Top 1st) -->Trgt1
--->
Rank2(Bottom 1st) -->Trgt2
|
SGen(NEXTVAL)-->

Is This Answer Correct ?    14 Yes 5 No

how can we load first and last record from a flat file source to target?..

Answer / hina

Below transformation would work: Add the Nextval port of the sequence generator to both the Rank Transformations. In rank transformation select Top and Bottom resp.
------ Rank Transformation (Top)----Tgt(Ins1)
|
SQ---Sequence Generator-----
|
-------Rank Transformation(Bottom)-Tgt(Ins2)

Is This Answer Correct ?    0 Yes 0 No

how can we load first and last record from a flat file source to target?..

Answer / vinod saini

After sql Trans use AGG,JOINER transformation,and use FIRST
& LAST function in AGG transformation without any group.
FIRST & LAST return the first & Last record values. give
JOINER condition based on first & last.

Is This Answer Correct ?    4 Yes 5 No

how can we load first and last record from a flat file source to target?..

Answer / srinu

Hi,,, Vinod, As per your Solution we have to check
complete data Table for ,,

syntax for 1st,last:::

FIRST( ITEM_NAME, ITEM_PRICE > 40 )

FLOOR( PRICE )

ok,,,
Any corrections Let me Know,,,
srinu.srinuvas@gmail.com

Is This Answer Correct ?    1 Yes 5 No

how can we load first and last record from a flat file source to target?..

Answer / sudhar

Alternatively we can use the unix pre session command to
read the 1st and last record from the file and place it in
another file and use that new file as source to load the
target table.

Is This Answer Correct ?    1 Yes 6 No

how can we load first and last record from a flat file source to target?..

Answer / dharmendra

SRC QF -> SEQ -> EXP -> AGR -> RTR -> TGT
create a port in expression t/r and generate a value for
each row using SEQ genrator, then in Agr take count of all
th record.create 2 condition in in router one with SEQ = 1
and another with SEQ = count of rows (this will give last
row).connect both to target.dont forget to give reset
option in SEQ generator.

Is This Answer Correct ?    1 Yes 9 No

Post New Answer

More Informatica Interview Questions

What are the differences between joiner transformation and source qualifier transformation?

0 Answers   Informatica,


What is decode in informatica?

0 Answers  


explain different levels in pushdown optimization with example?

2 Answers   TCS,


differences between service based and product based?

0 Answers   Satyam,


Define Update Override?

1 Answers  






What is parameter file?

2 Answers  


Explain lookup transformation is active in informatica

0 Answers   Informatica,


My source table look like ID Name Location Salary 0000001 ran tpty 1000 0000002 ram DELHI 2000 hju-hji raj hyd 1000 my target table should be ID Name Location Salary 1 ran tpty 1000 2 ram DELHI 2000 hju-hji raj hyd 1000

3 Answers   TCS,


what is difference between COM & DCOM?

1 Answers   Satyam,


Can you start a session inside a batch individually?

2 Answers  


how to create a sample mapping for dynamic lookup transformation

2 Answers  


1 lac of flat fles in source how to load target at a time?

4 Answers   Cap Gemini,


Categories