| 11 | = what is secondary index (distinguished to primary index) = |
| 12 | |
| 13 | Explain what is primary and secondary index. |
| 14 | |
| 15 | When you activate an object say ODS / DSO, the system automatically generate an index based on the key fields and this is primary index. |
| 16 | |
| 17 | In addition if you wish to create more indexes , then they are called secondary indexes. |
| 18 | |
| 19 | The primary index is distinguished from the secondary indexes of a table. The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database. |
| 20 | |
| 21 | You can also create further indexes on a table. These are called secondary indexes. This is necessary if the table is frequently accessed in a way that does not take advantage of the sorting of the primary index for the access. Different indexes on the same table are distinguished with a three-place index identifier. |
| 22 | |
| 23 | = secondary index on hbase = |
| 24 | |
16 | | |
17 | | = what is secondary index (distinguished in primary index) = |
18 | | |
19 | | Explain the what is primary and secondary index. |
20 | | |
21 | | When you activate an object say ODS / DSO, the system automatically generate an index based on the key fields and this is primary index. |
22 | | |
23 | | In addition if you wish to create more indexes , then they are called secondary indexes. |
24 | | |
25 | | The primary index is distinguished from the secondary indexes of a table. The primary index contains the key fields of the table and a pointer to the non-key fields of the table. The primary index is created automatically when the table is created in the database. |
26 | | |
27 | | You can also create further indexes on a table. These are called secondary indexes. This is necessary if the table is frequently accessed in a way that does not take advantage of the sorting of the primary index for the access. Different indexes on the same table are distinguished with a three-place index identifier. |
28 | | |
29 | | = hbase's secondary index detail = |