There is a table, In one column it has implemented a index,
but the index is disturbed by the regular dml statements..
but still we need to keep the index. how it is possible?
Answer / a.v.r.murthy
GENERALLY INDEX WILL BE CREATED ON LESS NUMBER OF DML
OPERATION COLUMNS.
EVENTHOUGH IF WE WANT PERFORM BETTER THEN BEFORE INSERTING
DATA INTO THE COLUMN WE HAVE TO DISABLE THE INDEX i.e
ALTER INDEX IDX_NAME UNUSABLE;
Is This Answer Correct ? | 7 Yes | 0 No |
What do you mean by stored procedures?
what is data manipulation language? : Sql dba
what are the differences between char and nchar? : Sql dba
Why select is used in sql?
Differentiate between % rowtype and type record.
what is the difference between inner and outer join? Explain with example. : Sql dba
what is definer rights invoke rights?
Is sql database free?
Is primary key clustered index?
how to get the third quarter of employee details from emp?
What is an alias command?
HOW CAN I FIND MAX SAL ,ENAME FROM EMP TABLE.