Hi,
Can anyone please explain (give references to documents) as to how a session works.
Lets consider a map that selects rows from table T1 in database D1 and inserts rows in table T2 in database D2.The table definitions are stored in the Source and Target definitions. Now all these are stored in the repository.
If I want the same thing in a SQL my SQL will be something like:
Insert into T2 ..... (select ....from T1)
I have to run this in database instances of either D1 or D2 and appropriately append the table name with the dblink name.
How is Informatica running this session then--
1) Whether it creates a SQL similar to this and runs the SQL in any database?
2)Or, it fetches data from Source (D1.T1) and stores it somewhere(in memory it will be very heavy considering I have 10 million rows in the source) , does the transformation and then pushes it in Target(D2.T2).
3)Or it does the entire ETL process for each row sequentially.(Anyway, Informatica performs a row-by-row operation)
Hope it explains my query.
Thanks.
Can anyone please explain (give references to documents) as to how a session works.
Lets consider a map that selects rows from table T1 in database D1 and inserts rows in table T2 in database D2.The table definitions are stored in the Source and Target definitions. Now all these are stored in the repository.
If I want the same thing in a SQL my SQL will be something like:
Insert into T2 ..... (select ....from T1)
I have to run this in database instances of either D1 or D2 and appropriately append the table name with the dblink name.
How is Informatica running this session then--
1) Whether it creates a SQL similar to this and runs the SQL in any database?
2)Or, it fetches data from Source (D1.T1) and stores it somewhere(in memory it will be very heavy considering I have 10 million rows in the source) , does the transformation and then pushes it in Target(D2.T2).
3)Or it does the entire ETL process for each row sequentially.(Anyway, Informatica performs a row-by-row operation)
Hope it explains my query.
Thanks.