When do we create bitmap indexes
Answers were Sorted based on User's Feedback
Answer / guest
A.OLTP
B.DSS
C.Where clause has functions
D.Tables that have only one record
Is This Answer Correct ? | 19 Yes | 2 No |
Answer / hitendra yadav
If there is very less cardinality (i.e. 1% of total column
values) or distinct values in column then we have to create
BITMAP index for that column like GENDER column will always
have 2 values MALE or FEMALE.
Syntex:-
Create bitmap index index_name on table_name(column_name);
Is This Answer Correct ? | 17 Yes | 1 No |
how to check the 3rd max salary from an employee table?
Can we commit inside a trigger?
What is a sql select statement?
How is data stored on a disk?
Which normal form is best?
Does mysql_real_escape_string prevent sql injection?
What is sql and its types?
What is a sql driver?
what are the other commands to know the structure of table using mysql commands except explain command? : Sql dba
What is a parameter query?
Why is normalization important?
Is left join same as join?