write sql query to remove null value following table
id name
101 dinesh
null jyothi
null bharathi
102 suresh
null shilpha
103 prakesh
null suma
i want the output
id name
101 dinesh
102 suresh
103 prakesh
Answers were Sorted based on User's Feedback
Answer / gm
Rama you are correct.
In Additional For Informatica
S-SQ-FLT-TGT
FLT:
Condition
IIF(NOT ISNULL(ID),True,False)
Regards
GM
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / reddy
Hi lakshmi in filter t/r in operator not supported,
GM Answer is good
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / a.venkata lakshmi
select id,name from tablename where id in(101,102,103)
| Is This Answer Correct ? | 0 Yes | 11 No |
Why update strategy and union transformations are active? Explain with examples.
Informatica Server and Client are in different machines. You run a session from the server manager by specifying the source and target databases. It displays an error. You are confident that everything is correct. Then why it is displaying the error?
how will you get 21 to 30 record from 50 records?
Can I use same Persistent cache(X.Dat) for 2 sessions running parallely? If it is not possible why?If yes How?
what is metadata?
Why we select the table which has minimum number of records as Master table in joiner?
my table contain duplicate Records i wanna load uniq records to my table . i have to pass the uniq records through filter t/r how?
how many ways can we implement SCD2?
Hi I'm new in Informatica. Can you show me a mapping sample on how to piviot the records? Thanks Robin
Explain Dataware house architecture .how data flow from intial to end?
What is informatica etl tool?
How to delete duplicate records if we have huge volume of records in a table ? (rowid is not the correct approach)