follwing scenario two table using find maximum salary?
table a table b
101 xxx 1000 106 6500
103 yyy 5000 108 800
104 din 6000 109 7000
105 dsh 200 110 3000
Answers were Sorted based on User's Feedback
Answer / ankit kansal
Using Informaica
src-->>sq-->>rnk(sal,bottom,1)
-->>union-->>tgt
src-->>sq-->>rnk(sal,bottom,1)
http://deepinopensource.blogspot.in/
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / asdf
select id,name,max(sal) from table a;
select id,max(sal) from table b;
if u want to join two tables
select id,sal from table a,table b where a.id=b.id;
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / gd
select max(sal) from table a,table b in (select
a.id,a.name,a.sal,b.id.b.sal from table a, tableb where
a.id=b.id);
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / murali udayagiri
select greatest(sub.emp_max_sal,sub.emp1_max_sal) from
(select (select max(sal) from emp) emp_max_sal,(select max
(sal) from emp1) emp1_max_sal from dual) sub;
Thanks,
Murali Udayagiri
| Is This Answer Correct ? | 0 Yes | 2 No |
Plz can any one say me how to get the informatica certification materials and dumps
how to identify new and old values in source qualifier or any other transformations using informatica
which transformation uses cache?
How will restrict values in 0-9 and A-Z and a-z and special character.Only allowed these chars otherwise we will reject the records? what is the function we used to restrict...
Differentiate between a repository server and a powerhouse?
What is deployment group?
What is exact use of 'Online' and 'Offline' server connect Options while defining Work flow in Work flow ?
While importing the relational source definition from the database, what are the metadata of source that will be imported?
What is different between informatica version 8 and 9 version
There is a table with emp salary column how to get the fields belongs to the salary greater than the average salary of particular department. Write a query
What is confirmed fact in dataware housing?
Hi experts, > I 'm having data like this and it's in flat file. > sno,name,marks,result > 1, ak, 80,p > 2, , ,20,f > 3,jack,55,p > > now in the second row a comma(,) is placed instead of name(char). > > when importing into SQ , in flat file wizard the num of columns increased to 5 instead of 4. > > could you tell me how to over come this issue.........