Tell me one complex query in oracle ?
Answers were Sorted based on User's Feedback
Answer / prateek
select distinct sal from emp e1 where 3 = (select count(distinct sal) from emp e2 where e1.sal <= e2.sal);
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mahaboob basha
select users.user_id, users.email, max(classified_ads.posted)
from users, classified_ads
where users.user_id = classified_ads.user_id
group by users.user_id, users.email
order by upper(users.email);
| Is This Answer Correct ? | 0 Yes | 4 No |
What are the different types of repositories created using informatica?
What is the difference between a router and a filter transformation?
write a query to retrieve the latest records from the table sorted by version(scd)
what is parallel querying and what r hints.
How to recover the standalone session?
while for 100 records in source table loaded sucessfully in trgt table . assume ,session will take 10min or 5 min to successfully succeeded. then 100 million records r there in source how much time will take by session to succeeded. there no fail ok.trgt table will load 100 million records with out any errors . don't tell perfect time . assume your self how much time to succeeded?
My source contains 10 records with 5 columns.What happens if I select group by all columns in Aggregator T/R?
How the facts will be loaded? explain
what is flat file override?
Hi experts ,I have a Source of 1000 records.I have to load 100 records in first target,101 to 200 records in 2nd target, 201 to 300 records in 3rd target and again 301 to 400 in first target like that as cyclick process. How can i acheive this.
How IN function works in informatica? Is it similar that of oracle IN function or different? Explain
i have oracle table A and target B. i don't know how many records. i want get get last record in table A as first record in target table B. write a sql query?