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 do you delete a table?
how would you get the current date in mysql? : Sql dba
How do I write a sql query in pgadmin 4?
how to shutdown mysql server? : Sql dba
What is the difference between having clause and where clause?
how to drop an existing table in mysql? : Sql dba
Is sql low level language?
What does plvtab enables you to do when you showthe contents of pl/sql tables?
Can you create a table with Primary Key not as the clustered index.
What is acid property in a database?
What is Pragma EXECPTION_INIT ? Explain the usage ?
Why you are not able to create a table using select command,if it is having a LONG column? for eg:create table test as select * from test1 here test1 containg a column having LONG datatype...