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 |
my source having 10 records but how can i load 20 records in target, i am not bother about duplicates?
Which kind of index is preferred in DWH?
Define Update Override?
what is the use of Data Mart?
What is a taget load order?
if we r using aggregator we enabled sorted input but the records r not sorted what happen?
Can you start a session inside a batch individually?
How do you set a varible in incremental aggregation
2,can we insert duplicate data with dynamic look up cache,if yes than why and if no why?
How to load the data from a flat file into the target where the source flat file name changes daily?
What are set operators in Oracle
Write the prerequisite tasks to achieve the session partition?