if suppose i have 3 columns namely 1,2,3 in table a and
1,2,3 in table b Now in table a 1,2 and table b 1,2 columns
are having same data.now based on this two columns either
data should get inserted or updated. How do i write a sql
query to check whether the data is populated correctly or
not
Answers were Sorted based on User's Feedback
Answer / misra
Select a.*,b.*,'update' as type
from a,b where a.1=b.1 and a.2=b.2
union
Select a.*,b.*,'insert' as type
from a,b where a.1<>b.1 or a.2<>b.2
Basically its like scd1,with table A as source and table B as target.
Based on "type" column you can write insert/update statement in stored procedure at db level or keep update strategy in informatica level.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sri
Write Tablename.columnname in SQL query. In your case,
for selecting all data from table a column 2,the query is:
select * from a.2
So in this way operation of data can be made by using
required SQL operators.
Is This Answer Correct ? | 3 Yes | 10 No |
We can't use sql override or other properties when using Flat file as source. Then what is the use of Source Qualifier transformation?
define galaxy repository in informatica
How to use procedural logic inside infromatica?
hi all, Can anyone please tell me the relationship between informatica and business objects
How do you set a varible in incremental aggregation
How to convert multiple rows to single row (multiple columns) in informatica
How to join three sources using joiner? Explain though mapping flow.
In informatics server which files are created during the session rums?
what is pre and post sql and what is diff between source presql and target pre sql
How might you approve all mappings in the archive all the while?
how to sort date field in infomatica?
What are the issues that you have faced while moving your project from the Test Environment to the Production Environment? Please explain in depth thanks in advance