1)how to generate sequnce numbers in informatica without
using sequnce genarator transformation.

2)i have number of records in my sourse, but iwant to
display first and last record only. how it is possible in
informatica.

3)i want to update the records without using updatestrategy
transformation.

4)what is diffrance between ab-intio and datastage than
compared to informatica.

5)what is the latest version of informatica in our field.

Answers were Sorted based on User's Feedback



1)how to generate sequnce numbers in informatica without using sequnce genarator transformation. ..

Answer / venkateshmalneni

How to generate sequence numbers in informatica with out using sequence generator t/r

we can generate sequence numbers in informatica by using expression transformation also.In expressin t/r create 3 new ports
1)var_1 as variable port and in expression give value as val
2)val as variable port and in expression give value as val+1
3)sequence output port and in expression give val
and connect the output port to target

Is This Answer Correct ?    35 Yes 14 No

1)how to generate sequnce numbers in informatica without using sequnce genarator transformation. ..

Answer / venkateshmalneni

i have number of records in my sourse, but iwant to
display first and last record only. how it is possible in
informatica.

Generate sequence numbers to ur source
connect it to filter t/r and write a condition sno=1 connect it to the target

in second pipeline connect source qualifier to aggreator t/r don't select any group by (so that it will gives it last record) connect output to the target

the flow is like this
sequence generator|
|
\|/
src--->sq--->filter--->target
|
|--->aggrigator--->target

Is This Answer Correct ?    15 Yes 1 No

1)how to generate sequnce numbers in informatica without using sequnce genarator transformation. ..

Answer / rakesh

We can generate using MAPPING VARIABLE with SETCOUNTVARIABLE() function

Is This Answer Correct ?    15 Yes 1 No

1)how to generate sequnce numbers in informatica without using sequnce genarator transformation. ..

Answer / kishore

2)i have number of records in my sourse, but iwant to
display first and last record only. how it is possible in
informatica.

ans:yes we get first and last record from table using
psuedo columns rownum and row id
i.e.,
in source qualifier t/r we caen create user defined queires
their type below query
select * from <table_name> where rownum=1 union select *
from <table_name> where rowid=(select max(rowid) from
<table_name>);
note:<table_name> is the name of the from which u want to
retrieve records

Is This Answer Correct ?    6 Yes 1 No

1)how to generate sequnce numbers in informatica without using sequnce genarator transformation. ..

Answer / chandrasekar

HI VENKATESH,

YOUR ABOVE ANSWER IS NOT CORRECTLY WORKING IN MY
SYSTEM. SO PLEASE EXECUTE THE ABOVE SOLUTION ONCE AGAIN LOAD
IT. AS PER MY KNOWLEDGE WE CAN CREATE A MAPPING VARIABLE AS
$$SEQ,DATA TYPE IS INTEGER AND SELECT AGGREGATION COLOUMN IS
COUNT. USING EXP TRANSFORMATION SETCOUNTVARIABLE($$SEQ). IT
WILL WORK CORRECTLY.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More Informatica Interview Questions

What is main use of mapplet?

0 Answers  


how to return multiple columes through through un-connect lookup?

1 Answers   DELL,


Source (Flatfile) - Target (1-1 mapping). How to load first or last 20 record to target?

5 Answers   Flextronics,


hi, as al you know, we can set the option in session level as all rows treat as like insert,update etc., And also we have update strategy for flaging records as insert,update etc.. then when we will go for above options and what is the difference.. explain..

1 Answers   Wipro,


What is source qualifier transformation in informatica?

0 Answers  






how to import multiple flat files in to single target where there is no common column in the flat files

2 Answers   TCS,


how to insert header after each group.

1 Answers   IBM,


How to delete duplicate records if we have huge volume of records in a table ? (rowid is not the correct approach)

6 Answers   Puma,


How can u work with remote database in informatica?did you work directly by using remote connections?

2 Answers  


What do you understand by term role-playing dimension?

0 Answers  


What is the sequence generator transformation in informatica?

0 Answers  


wat transf shud i use to achieve this id sal id sal sum src-1 20 tgt 1 20 40 1 20 1 20 40 2 15 2 15 35 2 20 2 20 35

2 Answers  


Categories