Hi,
I have been using the flat files and the relational tables as the source files in my Informatica mappings.
Can we use the SQL query (on multiple tables) as the source ?? If yes, then how ?
Well, let me tell you the situation that I need to handle ...
Two of my oracle tables are TableA and TableB. I need the following results.
1. Select TableA.StartDate, TableA.EndDate
from TableA Where TableA.ExecutionID =
(select max(V.ExecutionID) from TableA V);
Now, I have to use this two outputs (StartDate, EndDate)
to get following result.
2.
Select * from TableB
where TableB.CreateDate
between StartDate and EndDate
Can anybodyt pls help me out, explaining the solution.
Thanks.
I have been using the flat files and the relational tables as the source files in my Informatica mappings.
Can we use the SQL query (on multiple tables) as the source ?? If yes, then how ?
Well, let me tell you the situation that I need to handle ...
Two of my oracle tables are TableA and TableB. I need the following results.
1. Select TableA.StartDate, TableA.EndDate
from TableA Where TableA.ExecutionID =
(select max(V.ExecutionID) from TableA V);
Now, I have to use this two outputs (StartDate, EndDate)
to get following result.
2.
Select * from TableB
where TableB.CreateDate
between StartDate and EndDate
Can anybodyt pls help me out, explaining the solution.
Thanks.