原文:
《bi專案筆記》建立多維資料集cube(2)
本節建立:
歷年的初煙水分均值變化分析cube:
區域維度:地州,專縣
時間維度:年
等級維度:大等級,小等級
指標:水分均值
資料來源檢視:
資料處理:
alter維度用法:table t_qualmoisture_middle alter
column v_produce_id varchar(50
) alter
table t_qualmoisture_middle alter
column v_batch_id varchar(50
) delete
from
t_qualmoisture_middle
where v_produce_id + v_batch_id not
in ( select productionno +
formulano
from vroastingplan )
分割槽:
最終瀏覽器效果:
《BI專案筆記》建立父子維度
建立步驟 而parentoriginid其實就是對應的parentoriginid,它的 usage 必須是 parent 才能表示這樣的乙個父子維度。檢視originid屬性,usage 是 key。在這裡一定要注意,父子關係層次結構中的子級必須是維度的關鍵屬性,所以originid這裡的 usa...
《BI專案筆記》建立時間維度(2)
原文 bi專案筆記 建立時間維度 2 建立步驟 序號 選擇的屬性 重新命名後的名稱 屬性類別 datekey datekey 常規month key month key 月份english month name english month name 每年的某一月 month number of ye...
《BI專案筆記》增量ETL資料抽取的策略及方法
原文 bi專案筆記 增量etl資料抽取的策略及方法 增量抽取 增量抽取只抽取自上次抽取以來資料庫中要抽取的表中新增或修改的資料。在etl使用過程中。增量抽取較全量抽取應用更廣。如何捕獲變化的資料是增量抽取的關鍵。對捕獲方法一般有兩點要求 準確性,能夠將業務系統中的變化資料按一定的頻率準確地捕獲到 效...