Differences

This shows you the differences between two versions of the page.

Link to this comparison view

admin:features:rollups:indexing [2012/02/17 16:42]
doc
admin:features:rollups:indexing [2016/06/28 22:38]
Line 1: Line 1:
-~~NOTOC~~ 
  
-{{page>:​top_add&​nofooter&​noeditbtn}} 
- 
-====== Administration:​ Omnidex Features ====== 
- 
-===== Rollup Tables ===== 
- 
-[[admin:​features:​rollups:​home|Overview]] | [[admin:​features:​rollups:​design|Design]] | [[admin:​features:​rollups:​create|Creation]] | **[[admin:​features:​rollups:​indexing|Indexing]]** | [[admin:​features:​rollups:​optimization|Optimization]] 
- 
----- 
- 
-==== Indexing Rollup Tables ==== 
- 
- 
-Once the rollup tables have been created and declared, they may be indexed using Omnidex indexing. ​ There are no restrictions on indexing of rollup tables, and rollup tables can be indexed just like any other table.  ​ 
- 
-Since rollup tables are often quite small, it is common to heavily index the rollup table. ​ Ultimately, it is only necessary to index the rollup table in such a way that all queries that are redirected to the rollup table are fully optimized. ​ This can be determined by reviewing the query plan for each query that is redirected to the rollup table. ​ This is discussed in more detail later in this document. 
- 
-The following example shows indexing for the tables that were created in the previous page. 
- 
-<code sql> 
-create table          "​INDIVIDUALS"​ 
- ​physical ​            "​dat/​individuals.dat"​ 
- ( 
-  "​INDIVIDUAL" ​       CHARACTER(12) ​    ​omnidex,​ 
-  "​HOUSEHOLD" ​        ​CHARACTER(12) ​    ​omnidex,​ 
-  "​NAME" ​             CHARACTER(50) ​    ​quicktext,​ 
-  "​GENDER" ​           CHARACTER(1) ​     omnidex bitmap, 
-  "​BIRTHDATE" ​        ANSI DATE         ​omnidex,​ 
-  "​PHONE" ​            ​CHARACTER(14) ​    ​omnidex,​ 
-  "​EMAIL" ​            ​CHARACTER(60) ​    ​quicktext,​ 
-  constraint INDIVIDUALS_INDIVIDUAL_PK primary ("​INDIVIDUAL"​),​ 
-  constraint INDIVIDUALS_HOUSEHOLD_FK foreign ("​HOUSEHOLD"​) references "​HOUSEHOLDS",​ 
-  constraint INDIVIDUALS_GENDER_FK foreign ("​GENDER"​) references "​GENDERS",​ 
- ) 
- ​in ​                  "​simple.xml";​ 
- 
-create table          "​INDIVIDUALS_BY_HOUSEHOLD"​ 
- ​physical ​            "​dat/​individuals_by_household.dat"​ 
- ( 
-  "​HOUSEHOLD" ​        ​CHARACTER(12) ​    ​omnidex,​ 
-  "​GENDER" ​           CHARACTER(1) ​     omnidex bitmap, 
-  "​BIRTHDATE" ​        ANSI DATE         ​omnidex,​ 
-  "​NUM_INDIVIDUALS" ​  ​UNSIGNED INTEGER, 
-  constraint INDIVIDUALS_HOUSEHOLD_FK foreign ("​HOUSEHOLD"​) references "​HOUSEHOLDS",​ 
-  constraint INDIVIDUALS_GENDER_FK foreign ("​GENDER"​) references "​GENDERS",​ 
- ) 
- as "​select ​          ​HOUSEHOLD,​ 
-                      GENDER, 
-                      BIRTHDATE, 
-                      count(*) ​ NUM_INDIVIDUALS 
-       ​from ​          ​INDIVIDUALS 
-       group by       ​HOUSEHOLD,​ 
-                      GENDER, 
-                      BIRTHDATE"​ 
- ​in ​                  "​simple.xml";​ 
- 
- 
-create table          "​INDIVIDUALS_BY_DEMO"​ 
- ​physical ​            "​dat/​individuals_by_demo.dat"​ 
- ( 
-  "​GENDER" ​           CHARACTER(1) ​     omnidex bitmap, 
-  "​BIRTHDATE" ​        ANSI DATE         ​omnidex,​ 
-  "​NUM_INDIVIDUALS" ​  ​UNSIGNED INTEGER, 
-  constraint INDIVIDUALS_GENDER_FK foreign ("​GENDER"​) references "​GENDERS",​ 
- ) 
- as "​select ​          ​GENDER,​ 
-                      BIRTHDATE, 
-                      count(*) ​ NUM_INDIVIDUALS 
-       ​from ​          ​INDIVIDUALS 
-       group by       ​GENDER,​ 
-                      BIRTHDATE"​ 
- ​in ​                  "​simple.xml";​ 
-</​code>​ 
- 
-Indexes on rollup tables are automatically updated when the UPDATE ROLLUPS statement is issued: 
- 
-<​code>​ 
-> update indexes 
-Database 
- ​Table ​                                      ​Rows ​       CPU    Elapsed 
----------------------------------------------------------------------------- 
-SIMPLE 
- ​COUNTRIES ​                                   239       ​0:​00 ​      0:00 
- ​STATES ​                                       76       ​0:​00 ​      0:00 
- ​GENDERS ​                                       2       ​0:​00 ​      0:00 
- ​HOUSEHOLDS ​                                ​1,​909 ​      ​0:​00 ​      0:00 
- ​INDIVIDUALS ​                               5,000       ​0:​00 ​      0:00 
- ​INDIVIDUALS_BY_HOUSEHOLD ​                  ​5,​000 ​      ​0:​00 ​      0:00 
- ​INDIVIDUALS_BY_DEMO ​                       4,793       ​0:​00 ​      0:00 
----------------------------------------------------------------------------- 
-Total                                                   ​0:​01 ​      0:03 
- 
-Omnidex indexes updated 
-> 
-</​code>​ 
-====  ==== 
-**[[admin:​features:​rollups:​create|Prev]]** | **[[admin:​features:​rollups:​optimization|Next]]** 
- 
- 
-====== Additional Resources ====== 
- 
-{{page>:​admin:​features:​see_also&​nofooter&​noeditbtn}} 
- 
-{{page>:​bottom_add&​nofooter&​noeditbtn}} 
 
Back to top
admin/features/rollups/indexing.txt ยท Last modified: 2016/06/28 22:38 (external edit)