windows:notas
Differences
This shows you the differences between two versions of the page.
windows:notas [2014/04/08 21:05] – created rlunaro | windows:notas [2014/04/08 21:54] (current) – removed rlunaro | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | < | ||
- | ----- | ||
- | ----- | ||
- | ----- creation of a higher struct value to hold | ||
- | ----- the channels option | ||
- | ----- | ||
- | ----- | ||
- | ----- | ||
- | create database hg4_big | ||
- | character set utf8 | ||
- | collate utf8_general_ci; | ||
- | |||
- | |||
- | grant select, insert, update, delete, alter, drop, create, index, execute | ||
- | |||
- | |||
- | |||
- | --- | ||
- | --- execute "08.0 normalized-model.sql" | ||
- | --- | ||
- | |||
- | |||
- | --- | ||
- | --- execute '11.0 unified-mk-ident-function.sql' | ||
- | --- | ||
- | |||
- | --- | ||
- | --- execute '12.0 create-results-table.sql' | ||
- | --- | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 1: Import hg_version | ||
- | ---- | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_version; | ||
- | |||
- | create table pre_hg_version | ||
- | ( | ||
- | id_version | ||
- | major int, | ||
- | minor int, | ||
- | desc_version | ||
- | created | ||
- | former_id | ||
- | former_db | ||
- | ); | ||
- | |||
- | --- import of version information of all databases | ||
- | insert into pre_hg_version | ||
- | (major, minor, desc_version, | ||
- | select major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_version; | ||
- | |||
- | insert into pre_hg_version | ||
- | (major, minor, desc_version, | ||
- | select major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_version; | ||
- | |||
- | insert into pre_hg_version | ||
- | (major, minor, desc_version, | ||
- | select major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_version; | ||
- | |||
- | insert into pre_hg_version | ||
- | (major, minor, desc_version, | ||
- | select major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_version; | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 2 : Create table hg_company | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_company; | ||
- | |||
- | create table pre_hg_company | ||
- | ( | ||
- | id_company | ||
- | code | ||
- | name | ||
- | ); | ||
- | |||
- | insert into pre_hg_company (name, code ) values ( ' | ||
- | insert into pre_hg_company (name, code) values ( ' | ||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 3 : Import hg_period | ||
- | ---- Later we will shorten the list of imported periods | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_period; | ||
- | |||
- | -- id_period: consecutive integer that makes the unique identifier of this table | ||
- | -- period_number: | ||
- | -- in the same company | ||
- | create table pre_hg_period | ||
- | ( | ||
- | id_period | ||
- | period_number | ||
- | start_date | ||
- | title text, | ||
- | id_company | ||
- | former_id | ||
- | former_db | ||
- | ); | ||
- | |||
- | -- import of period information | ||
- | insert into pre_hg_period | ||
- | (period_number, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select id_period, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_period; | ||
- | |||
- | insert into pre_hg_period | ||
- | (period_number, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select id_period, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_period; | ||
- | |||
- | insert into pre_hg_period | ||
- | (period_number, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select id_period, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_period; | ||
- | |||
- | insert into pre_hg_period | ||
- | (period_number, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select id_period, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_period; | ||
- | |||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 4.1 : Creation of table hg_channel | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_channel; | ||
- | |||
- | create table pre_hg_channel | ||
- | ( | ||
- | id_channel | ||
- | code varchar(20), | ||
- | description | ||
- | ); | ||
- | |||
- | insert into pre_hg_channel (code, description) values (' | ||
- | insert into pre_hg_channel (code, description) values (' | ||
- | insert into pre_hg_channel (code, description) values (' | ||
- | insert into pre_hg_channel (code, description) values (' | ||
- | insert into pre_hg_channel (code, description) values (' | ||
- | |||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 5 : Import of hg_struct | ||
- | ---- It's important to set correctly the value of | ||
- | ---- id_struct_parent. | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_struct; | ||
- | |||
- | create table pre_hg_struct | ||
- | ( | ||
- | id_struct | ||
- | what_is | ||
- | code | ||
- | description | ||
- | id_struct_parent | ||
- | id_period | ||
- | id_company | ||
- | id_channel | ||
- | former_id | ||
- | former_id_parent | ||
- | former_db | ||
- | ); | ||
- | |||
- | |||
- | insert into pre_hg_struct | ||
- | (what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where former_id = old_struct.id_period | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_struct old_struct; | ||
- | |||
- | insert into pre_hg_struct | ||
- | (what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where former_id = old_struct.id_period | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_struct old_struct; | ||
- | |||
- | insert into pre_hg_struct | ||
- | (what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where former_id = old_struct.id_period | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_struct old_struct; | ||
- | |||
- | insert into pre_hg_struct | ||
- | (what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select what_is, | ||
- | code, | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where former_id = old_struct.id_period | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_struct old_struct; | ||
- | |||
- | |||
- | |||
- | --- | ||
- | --- | ||
- | --- update new id_struct_parent | ||
- | --- | ||
- | --- | ||
- | |||
- | |||
- | drop procedure update_parent; | ||
- | |||
- | update pre_hg_struct set id_struct_parent = null; | ||
- | |||
- | delimiter $$ | ||
- | create procedure update_parent() | ||
- | begin | ||
- | |||
- | declare v_finished integer default 0; | ||
- | declare v_new_parent bigint; | ||
- | declare v_id_struct bigint; | ||
- | declare v_former_id bigint; | ||
- | declare v_former_id_parent bigint; | ||
- | declare v_former_database varchar(12); | ||
- | |||
- | declare c_struct cursor for | ||
- | | ||
- | former_id, | ||
- | former_id_parent, | ||
- | former_db | ||
- | from pre_hg_struct; | ||
- | |||
- | declare continue handler | ||
- | for not found set v_finished = 1; | ||
- | |||
- | open c_struct; | ||
- | |||
- | loop_struct: | ||
- | |||
- | fetch c_struct | ||
- | into v_id_struct, | ||
- | | ||
- | | ||
- | | ||
- | |||
- | if v_finished = 1 then | ||
- | leave loop_struct; | ||
- | end if; | ||
- | |||
- | set v_new_parent := (select id_struct | ||
- | | ||
- | | ||
- | | ||
- | |||
- | | ||
- | set id_struct_parent = v_new_parent | ||
- | where id_struct = v_id_struct; | ||
- | |||
- | end loop loop_struct; | ||
- | |||
- | close c_struct; | ||
- | |||
- | end | ||
- | $$ | ||
- | |||
- | delimiter ; | ||
- | |||
- | |||
- | call update_parent(); | ||
- | |||
- | |||
- | drop procedure update_parent; | ||
- | |||
- | |||
- | --- | ||
- | --- change ' | ||
- | --- | ||
- | update pre_hg_struct set what_is = ' | ||
- | |||
- | |||
- | -- identify the different channels | ||
- | update pre_hg_struct | ||
- | set code = (select code from pre_hg_channel where code = ' | ||
- | description = (select description from pre_hg_channel where code = ' | ||
- | where what_is = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set code = (select code from pre_hg_channel where code = ' | ||
- | description = (select description from pre_hg_channel where code = ' | ||
- | where what_is = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set code = (select code from pre_hg_channel where code = ' | ||
- | description = (select description from pre_hg_channel where code = ' | ||
- | where what_is = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set code = (select code from pre_hg_channel where code = ' | ||
- | description = (select description from pre_hg_channel where code = ' | ||
- | where what_is = ' | ||
- | |||
- | |||
- | -- set the channel in hg_struct based in the former_db | ||
- | -- emtpy channel | ||
- | update pre_hg_struct | ||
- | set id_channel = (select id_channel from pre_hg_channel where code = ' | ||
- | where former_db is null; | ||
- | |||
- | update pre_hg_struct | ||
- | set id_channel = (select id_channel from pre_hg_channel where code = ' | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set id_channel = (select id_channel from pre_hg_channel where code = ' | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set id_channel = (select id_channel from pre_hg_channel where code = ' | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_struct | ||
- | set id_channel = (select id_channel from pre_hg_channel where code = ' | ||
- | where former_db = ' | ||
- | |||
- | |||
- | --- | ||
- | --- verifications of the table pre_hg_struct | ||
- | --- | ||
- | |||
- | select * from pre_hg_struct where id_struct_parent is null; | ||
- | -- expected result: only the " | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 6 : import of table hg_indicator | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_indicator; | ||
- | |||
- | create table pre_hg_indicator | ||
- | ( | ||
- | id_indic | ||
- | indicator_key | ||
- | title tinytext, | ||
- | long_desc | ||
- | weight | ||
- | percentage | ||
- | use_for_critic int default 1, | ||
- | id_period | ||
- | id_struct_channel | ||
- | former_id | ||
- | former_db | ||
- | ); | ||
- | |||
- | |||
- | insert into pre_hg_indicator | ||
- | (indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where id_period = (select id_period | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | and what_is = ' | ||
- | | ||
- | ' | ||
- | from hg4.hg_indicator old_indic; | ||
- | |||
- | |||
- | insert into pre_hg_indicator | ||
- | (indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where id_period = (select id_period | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | and what_is = ' | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_indicator old_indic; | ||
- | |||
- | |||
- | |||
- | insert into pre_hg_indicator | ||
- | (indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where id_period = (select id_period | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | and what_is = ' | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_indicator old_indic; | ||
- | |||
- | |||
- | insert into pre_hg_indicator | ||
- | (indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select indicator_key, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where id_period = (select id_period | ||
- | from pre_hg_period | ||
- | where period_number = old_indic.id_period | ||
- | and former_db = ' | ||
- | and what_is = ' | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_indicator old_indic; | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 7: Reorganization of periods | ||
- | ---- | ||
- | ---- Adjustements and reorganizations of periods: | ||
- | ---- It canot be done before this point because | ||
- | ---- we need the reference to the old period_id | ||
- | ---- up to this point | ||
- | ---- | ||
- | |||
- | |||
- | |||
- | |||
- | -- the periods for the channel hg_vida must be changed | ||
- | -- to equivalent periods for the channel " | ||
- | |||
- | -- | ||
- | -- Period 1 of vida goes to period 3 of red agencial | ||
- | -- | ||
- | update pre_hg_struct set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_indicator set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | -- | ||
- | -- Period 2 of vida goes to period 4 of red agencial | ||
- | -- | ||
- | update pre_hg_struct set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_indicator set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | -- | ||
- | -- Period 1 of canales goes to period 4 of red agencial | ||
- | -- | ||
- | update pre_hg_struct set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | update pre_hg_indicator set | ||
- | id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | where id_period = | ||
- | | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 8: Create the " | ||
- | ---- | ||
- | ---- change the global for the name of the | ||
- | ---- channel and create the company high structure | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop procedure create_global_struct; | ||
- | |||
- | delimiter $$ | ||
- | create procedure create_global_struct() | ||
- | begin | ||
- | |||
- | declare v_finished integer default 0; | ||
- | declare v_id_period bigint; | ||
- | declare v_period_number int(11); | ||
- | declare v_start_date tinytext; | ||
- | declare v_id_company bigint; | ||
- | declare v_last_id bigint; | ||
- | |||
- | |||
- | declare c_period_by_company cursor for | ||
- | | ||
- | period_number, | ||
- | start_date, | ||
- | id_company | ||
- | from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | declare continue handler | ||
- | for not found set v_finished = 1; | ||
- | |||
- | open c_period_by_company; | ||
- | |||
- | loop_struct: | ||
- | |||
- | fetch c_period_by_company | ||
- | into v_id_period, | ||
- | | ||
- | | ||
- | | ||
- | |||
- | if v_finished = 1 then | ||
- | leave loop_struct; | ||
- | end if; | ||
- | |||
- | | ||
- | (what_is, | ||
- | code, | ||
- | description, | ||
- | id_struct_parent, | ||
- | id_period, | ||
- | id_company, | ||
- | id_channel) | ||
- | values | ||
- | ( | ||
- | ' | ||
- | (select code from pre_hg_company where id_company = v_id_company), | ||
- | (select name from pre_hg_company where id_company = v_id_company), | ||
- | null, | ||
- | v_id_period, | ||
- | v_id_company, | ||
- | (select id_channel from hg_channel where code = ' | ||
- | ); | ||
- | |||
- | -- get the latest id of the insert | ||
- | set v_last_id | ||
- | |||
- | -- map the id_struct parent with its parent companies | ||
- | update pre_hg_struct | ||
- | set id_struct_parent = v_last_id | ||
- | where what_is = ' | ||
- | and id_period = v_id_period | ||
- | and id_company = v_id_company; | ||
- | |||
- | |||
- | |||
- | end loop loop_struct; | ||
- | |||
- | close c_period_by_company; | ||
- | |||
- | end | ||
- | $$ | ||
- | |||
- | delimiter ; | ||
- | |||
- | |||
- | call create_global_struct(); | ||
- | |||
- | |||
- | drop procedure create_global_struct; | ||
- | |||
- | |||
- | --- | ||
- | --- verifications | ||
- | --- | ||
- | |||
- | select * | ||
- | from pre_hg_struct me, | ||
- | | ||
- | where me.former_db = parent.former_db | ||
- | and me.former_id_parent = parent.former_id | ||
- | and me.id_struct_parent <> parent.id_struct; | ||
- | -- expected result: empty set | ||
- | |||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 9: Import of table hg_valoration | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_valoration; | ||
- | |||
- | create table pre_hg_valoration | ||
- | ( | ||
- | id_valoration | ||
- | id_indic | ||
- | indic_value | ||
- | id_struct | ||
- | former_id | ||
- | former_db | ||
- | ); | ||
- | |||
- | |||
- | |||
- | insert into pre_hg_valoration | ||
- | (id_indic, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select (select id_indic | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | ' | ||
- | from hg4.hg_valoration val; | ||
- | |||
- | |||
- | insert into pre_hg_valoration | ||
- | (id_indic, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select (select id_indic | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_valoration val; | ||
- | |||
- | |||
- | insert into pre_hg_valoration | ||
- | (id_indic, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select (select id_indic | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_valoration val; | ||
- | |||
- | |||
- | |||
- | insert into pre_hg_valoration | ||
- | (id_indic, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ) | ||
- | select (select id_indic | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_valoration val; | ||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 10: Import of table pre_hg_detail | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_detail; | ||
- | |||
- | create table pre_hg_detail | ||
- | ( | ||
- | id_detail | ||
- | id_struct | ||
- | id_indic | ||
- | clave_agt | ||
- | field_desc | ||
- | field_value | ||
- | field_hash | ||
- | former_id | ||
- | former_db | ||
- | ); | ||
- | |||
- | |||
- | insert into pre_hg_detail | ||
- | (id_struct, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = det.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = det.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_detail det; | ||
- | |||
- | |||
- | insert into pre_hg_detail | ||
- | (id_struct, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = det.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = det.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_detail det; | ||
- | |||
- | insert into pre_hg_detail | ||
- | (id_struct, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = det.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = det.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_detail det; | ||
- | |||
- | insert into pre_hg_detail | ||
- | (id_struct, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = det.id_struct | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = det.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_detail det; | ||
- | |||
- | |||
- | |||
- | ----- | ||
- | ----- | ||
- | ----- STEP 11: Tables for aggregated results | ||
- | ----- | ||
- | ----- | ||
- | |||
- | drop table if exists pre_hg_val_high; | ||
- | |||
- | create table pre_hg_val_high | ||
- | (id_val_high | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | |||
- | |||
- | insert into pre_hg_val_high | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_val_high val; | ||
- | |||
- | |||
- | |||
- | insert into pre_hg_val_high | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_val_high val; | ||
- | |||
- | insert into pre_hg_val_high | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_val_high val; | ||
- | |||
- | |||
- | insert into pre_hg_val_high | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_indicator | ||
- | where former_id = val.id_indic | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_val_high val; | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 12: import of table hg_val_struct | ||
- | ---- | ||
- | ---- | ||
- | |||
- | drop table if exists pre_hg_val_struct; | ||
- | |||
- | create table pre_hg_val_struct | ||
- | (id_val_struct | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ); | ||
- | |||
- | |||
- | insert into pre_hg_val_struct | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4.hg_val_struct val ; | ||
- | |||
- | |||
- | |||
- | insert into pre_hg_val_struct | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_canales.hg_val_struct val ; | ||
- | |||
- | insert into pre_hg_val_struct | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | select (select id_struct | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_vida.hg_val_struct val ; | ||
- | |||
- | |||
- | | ||
- | (id_major, | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_major | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | from pre_hg_struct | ||
- | where former_id = val.id_minor | ||
- | and former_db = ' | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ' | ||
- | from hg4_pt.hg_val_struct val ; | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 13: delete periods that we won't use | ||
- | ---- any longer | ||
- | ---- | ||
- | |||
- | delete from pre_hg_period | ||
- | where former_db = ' | ||
- | |||
- | -- check that there isn't periods incorrectly set in the | ||
- | -- other tables | ||
- | select * | ||
- | from pre_hg_indicator | ||
- | where id_period not in | ||
- | (select id_period from pre_hg_period) limit 3; | ||
- | -- expected result: empty set | ||
- | |||
- | select * | ||
- | from pre_hg_struct | ||
- | where id_period not in | ||
- | (select id_period from pre_hg_period) limit 3; | ||
- | -- expected result: empty set | ||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 14: cleanup | ||
- | ---- | ||
- | ---- | ||
- | |||
- | -- NOTE 01/04/2014: BY NOW, EVERY DELETION OF COLUMNS | ||
- | -- " | ||
- | |||
- | -- remove the " | ||
- | -- rename the ' | ||
- | drop table if exists hg_company; | ||
- | -- alter table pre_hg_company drop column former_db; | ||
- | rename table pre_hg_company to hg_company; | ||
- | |||
- | drop table if exists hg_detail; | ||
- | -- alter table pre_hg_detail drop column former_id; | ||
- | -- alter table pre_hg_detail drop column former_db; | ||
- | rename table pre_hg_detail to hg_detail; | ||
- | |||
- | drop table if exists hg_indicator; | ||
- | -- alter table pre_hg_indicator drop column former_id; | ||
- | -- alter table pre_hg_indicator drop column former_db; | ||
- | rename table pre_hg_indicator to hg_indicator; | ||
- | |||
- | drop table if exists hg_period; | ||
- | -- alter table pre_hg_period drop column former_id; | ||
- | -- alter table pre_hg_period drop column former_db; | ||
- | rename table pre_hg_period to hg_period; | ||
- | |||
- | drop table if exists hg_struct; | ||
- | -- alter table pre_hg_struct drop column former_id; | ||
- | -- alter table pre_hg_struct drop column former_db; | ||
- | rename table pre_hg_struct to hg_struct; | ||
- | |||
- | drop table if exists hg_val_high; | ||
- | -- alter table pre_hg_val_high drop column former_id; | ||
- | -- alter table pre_hg_val_high drop column former_db; | ||
- | rename table pre_hg_val_high to hg_val_high; | ||
- | |||
- | drop table if exists hg_val_struct; | ||
- | -- alter table pre_hg_val_struct drop column former_id; | ||
- | -- alter table pre_hg_val_struct drop column former_db; | ||
- | rename table pre_hg_val_struct to hg_val_struct; | ||
- | |||
- | |||
- | drop table if exists hg_valoration; | ||
- | -- alter table pre_hg_valoration drop column former_id; | ||
- | -- alter table pre_hg_valoration drop column former_db; | ||
- | rename table pre_hg_valoration to hg_valoration; | ||
- | |||
- | drop table if exists hg_version; | ||
- | -- alter table pre_hg_version drop column former_id; | ||
- | -- alter table pre_hg_version drop column former_db; | ||
- | rename table pre_hg_version to hg_version; | ||
- | |||
- | drop table if exists hg_channel; | ||
- | rename table pre_hg_channel to hg_channel; | ||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 15: create (or recreate) indexes | ||
- | ---- | ||
- | ---- | ||
- | |||
- | -- | ||
- | -- make indexes | ||
- | -- | ||
- | |||
- | -- | ||
- | -- Table: hg_struct | ||
- | -- | ||
- | create index hg_struct_id on hg_struct (id_struct); | ||
- | |||
- | create index hg_struct_id_parent on hg_struct (id_struct_parent); | ||
- | |||
- | create index hg_struct_id_period on hg_struct (id_period); | ||
- | |||
- | create index hg_struct_id_channel on hg_struct (id_channel); | ||
- | |||
- | -- | ||
- | -- Table: hg_channel | ||
- | -- | ||
- | create index hg_channel_id on hg_channel ( id_channel ); | ||
- | |||
- | -- | ||
- | -- Table: hg_detail | ||
- | -- | ||
- | create index hg_detail_hash on hg_detail (field_hash); | ||
- | |||
- | create index hg_detail_id_struct on hg_detail (id_struct); | ||
- | |||
- | -- DUDA de si este es eficaz | ||
- | --create index hg_detail_hash_id_struct on hg_detail( field_hash, | ||
- | |||
- | |||
- | -- | ||
- | -- Table: hg_indicator | ||
- | -- | ||
- | create index hg_indicator_id on hg_indicator (id_indic); | ||
- | |||
- | -- | ||
- | -- Table: hg_valoration | ||
- | -- | ||
- | create index hg_valoration_id_indic on hg_valoration (id_indic); | ||
- | |||
- | create index hg_valoration_id_struct on hg_valoration (id_struct); | ||
- | |||
- | -- | ||
- | -- Table: hg_val_high | ||
- | -- | ||
- | create index hg_val_high_id_minor on hg_val_high( id_minor ); | ||
- | |||
- | create index hg_val_high_id_major on hg_val_high( id_major ); | ||
- | |||
- | create index hg_val_high_id_indic on hg_val_high( id_indic ); | ||
- | |||
- | -- | ||
- | -- Table: hg_val_struct | ||
- | -- | ||
- | create index hg_val_st_id_minor on hg_val_struct( id_minor ); | ||
- | |||
- | create index hg_val_st_id_major on hg_val_struct( id_major ); | ||
- | |||
- | |||
- | |||
- | ---- | ||
- | ---- | ||
- | ---- STEP 16: safety measures | ||
- | ---- | ||
- | ---- | ||
- | |||
- | |||
- | -- anotate in the agenda that | ||
- | -- a copy of the database must be done | ||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | |||
- | </ |
windows/notas.1396991115.txt.gz · Last modified: 2022/12/02 21:02 (external edit)