explain the ROLLUP, CUBE, RANK AND DENSE_RANK FUNCTIONS OF
ORACLE 8I

Answers were Sorted based on User's Feedback



explain the ROLLUP, CUBE, RANK AND DENSE_RANK FUNCTIONS OF ORACLE 8I..

Answer / vikram

Diff between RANK() and DENSE_RANK():-
------------*******-----************-------

RANK():-
---> It leaves a gap in the sequence of ranking in the
event of tie.
DENSE_RANK():-
---> It doesn't leave a gap in the sequence of ranking
in the event of tie.

EX:-
empno ename RANK DENSE_RANK
101 AAA 1 1
102 BBB 2 2
102 BBB 2 2
102 BBB 2 2
103 CCC -->5 --> 3
103 CCC 5 3
104 DDD -->7 --> 4

Is This Answer Correct ?    10 Yes 0 No

explain the ROLLUP, CUBE, RANK AND DENSE_RANK FUNCTIONS OF ORACLE 8I..

Answer / satya

ROLLUP is used to Calculate The subtotals And Grand Total
Based On The Groupby Function.
This ROLLUP is used after the GROUP BY function.
CUBE generates a result set that represents aggregates for
all combinations of values in the selected columns.
RANK Function Is Used To Give The Ranks,But It miss Some
Ranks When Both Are Getting Same Ranks.
DENSE_RANK function Won't Give The Gaps Between The Ranks.

Is This Answer Correct ?    8 Yes 3 No

explain the ROLLUP, CUBE, RANK AND DENSE_RANK FUNCTIONS OF ORACLE 8I..

Answer / friend

ROLL UP IS USED TO FIND THE SUB TOTALS ,IT IS USED AFTER
GROUP BY FUNCTION,AND"CUBE"IS ALSO HAVING THE SAME
MEANING,AND RANK FUNC IS USED TO FIND THE RANKS AND IT
GIVES THE SAME RANK IF DATA HAVING SAME DATA,AND DENSE
_RANK ALSO SAME AS RANK BUT IT WILL GIVE DISTINCT RANKS IF
AT ALL IF THE DATA HAVING SAME DATA.

Is This Answer Correct ?    8 Yes 7 No

Post New Answer

More Data Warehouse General Interview Questions

Explain reference cursor?

0 Answers  


What are the different ways to represent the loading of dimension tables?

0 Answers  


Can we start and stop single session in concurent bstch?

0 Answers  


Why we use repository connectivity?

0 Answers  


Difference between DSS & OLTP?

6 Answers   IBM,






What are the advantages of raid 1, 1/0, and

0 Answers  


What is the difference between view filter and report filter?

0 Answers  


Explain techniques of error handling - ignore , rejecting bad records to a flat file , loading the records and reviewing them (default values)?

0 Answers  


What is pre-emptive and non-pre-emptive?

0 Answers  


How can you communicate with web server (apache or iis) from coldfusion?

0 Answers  


Why should you put your data warehouse on a different system than your oltp system?

0 Answers  


Explain the importance of data warehouse?

0 Answers  


Categories