Indexes in the store database are B+tree structures with a fixed size key. This means that text keys may easily generate large indexes, and a maximum length text column cannot be indexed.
Keys in DBMS may be truncated by specifying the length of a text column to be used in the index key. Such a key column must always be the last one in the key, to ensure that the index provides a true ordering. If a text key column does not supply a truncation length, the full length of the table column is used.
Apart from
Indexes in the store database are B+tree structures with a fixed size key. +This means that text keys may easily generate large indexes, and a maximum +length text column cannot be indexed.
+Keys in DBMS may be truncated by specifying the length of a text column +to be used in the index key. Such a key column must always be the last one +in the key, to ensure that the index provides a true ordering. If a text key +column does not supply a truncation length, the full length of the table column +is used.
+Apart from