785 lines
27 KiB
PL/PgSQL
785 lines
27 KiB
PL/PgSQL
drop function if exists mmt_staging2.fn_IHT_BRT_block;
|
|
CREATE OR REPLACE FUNCTION mmt_staging2.fn_IHT_BRT_block(p_client_id int,p_function_id int, p_file_format text,
|
|
p_sheet_mnemonic text, p_file_syspk int)
|
|
RETURNS text AS $$
|
|
declare __make text;
|
|
declare __model text;
|
|
|
|
declare __client_id int :=p_client_id;
|
|
declare __function_id int :=p_function_id;
|
|
declare __file_format text :=p_file_format;
|
|
declare __sheet_mnemonic text :=p_sheet_mnemonic;
|
|
declare __file_syspk int :=p_file_syspk;
|
|
declare v_state text;
|
|
declare v_msg text;
|
|
declare v_detail text;
|
|
declare v_hint text;
|
|
declare v_context text;
|
|
declare _error int;
|
|
declare v_block text;
|
|
|
|
begin
|
|
|
|
/************************************************************
|
|
Function Name:fn_IHT_BRT_block
|
|
Function Desc: This function populates data into staging 2 block
|
|
File Format: IHT
|
|
Sheet Format: IHT_BRT
|
|
Creation Date: March 25 2021
|
|
Updation Date:
|
|
Author: compegence team
|
|
Function Call: select mmt_staging2.fn_IHT_BRT_block(p_client_id,p_function_id, p_file_format,
|
|
p_sheet_mnemonic, p_file_syspk)
|
|
Function call ex: select mmt_staging2.fn_IHT_BRT_block(1,2,'IHT','IHT_BRT',456)
|
|
***************************************************************/
|
|
|
|
|
|
SET search_path TO mmt_staging2;
|
|
|
|
/* to process multiple files - re-runnability*/
|
|
|
|
truncate table mmt_staging2.IHT_BRT_H1_Int;
|
|
truncate table mmt_staging2.IHT_BRT_H1_block;
|
|
truncate table mmt_staging2.IHT_BRT_Weight_Tyre_Int;
|
|
truncate table mmt_staging2.IHT_BRT_Weight_Block;
|
|
truncate table mmt_staging2.IHT_BRT_Tyre_Details_Block;
|
|
truncate table mmt_staging2.IHT_BRT_Test_Res_Block;
|
|
truncate table mmt_staging2.IHT_BRT_Test_Res_1_Block;
|
|
truncate table mmt_staging2.IHT_BRT_Footer_Block;
|
|
truncate table mmt_staging2.stg_specific_table_IHT_BRT;
|
|
truncate table mmt_staging2.stg_process_table_IHT_BRT;
|
|
|
|
|
|
execute 'delete from mmt_ods.fw_jobctrl_file_sheet_block_run_schedule where file_syspk='||p_file_syspk||' and sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
|
|
execute 'update mmt_ods.mmt_config a
|
|
set row_number_start=null,
|
|
row_previous_number=null,
|
|
row_read_end=null,
|
|
run_time=null
|
|
where a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/* transfer data from generic to specific for IHT */
|
|
execute 'insert into mmt_staging2.stg_specific_table_IHT_BRT
|
|
select * from mmt_staging1.mmt_staging_generic_table a
|
|
where a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''
|
|
and a.file_syspk='||p_file_syspk||'';
|
|
|
|
|
|
/* trimming data */
|
|
update mmt_staging2.stg_specific_table_IHT_BRT
|
|
set column11='Objective' where column11 like 'Objective%';
|
|
|
|
update mmt_staging2.stg_specific_table_IHT_BRT
|
|
set column10='Acceptance criteria' where column10 like 'Acceptance criteria%';
|
|
|
|
|
|
update mmt_staging2.stg_specific_table_IHT_BRT
|
|
set column11='Condition' where column11 like 'Condition%';
|
|
|
|
|
|
update mmt_staging2.stg_specific_table_IHT_BRT set column3 = TRIM (TRAILING FROM column3 );
|
|
update mmt_staging2.stg_specific_table_IHT_BRT set column3 = TRIM (LEADING FROM column3 );
|
|
|
|
update mmt_ods.mmt_config set F1_modified = TRIM (TRAILING FROM F1_modified) ;
|
|
update mmt_ods.mmt_config set F1_modified = TRIM (LEADING FROM F1_modified) ;
|
|
update mmt_ods.mmt_config set F1_source=F1_modified ;
|
|
update mmt_ods.mmt_config set F1_source = TRIM (TRAILING FROM F1_source);
|
|
update mmt_ods.mmt_config set F1_source = TRIM (LEADING FROM F1_source);
|
|
|
|
/* keyword match in config table*/
|
|
execute 'update mmt_ods.mmt_config a
|
|
set row_number_start=(select min(b.row_number)
|
|
from mmt_staging2.stg_specific_table_IHT_BRT b
|
|
where trim(upper(F1_modified))=trim(upper(column3))
|
|
and b.is_rownumber_fetched is null)
|
|
where a.row_number_start is null
|
|
and a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/* reverese update in process table for match*/
|
|
execute 'update mmt_staging2.stg_specific_table_IHT_BRT a
|
|
set is_rownumber_fetched=1
|
|
from mmt_ods.mmt_config b
|
|
where trim(upper(F1_modified))=trim(upper(column3))
|
|
and b.row_number_start=a.row_number
|
|
and is_rownumber_fetched is null
|
|
and a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
execute 'update mmt_ods.mmt_config a set row_previous_number=row_number_start-1
|
|
where a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/* update config files for row numbers start, end */
|
|
execute 'update mmt_ods.mmt_config a
|
|
set row_read_end= (select b.row_number_start
|
|
from mmt_ods.mmt_config b
|
|
where b.syspk=a.syspk+1 and file_format='''||p_file_format||''' and sheet_mnemonic='''||p_sheet_mnemonic||''' )
|
|
where a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/* config file last field update as null otherwise it picks up next format row number*/
|
|
execute 'update mmt_ods.mmt_config a
|
|
set row_read_end = null ,run_time=current_timestamp
|
|
where f1_modified =''Prepared by''
|
|
and a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/* tagging ranks*/
|
|
execute 'insert into mmt_staging2.stg_process_table_IHT_BRT
|
|
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
|
from mmt_staging2.stg_specific_table_IHT_BRT a
|
|
join mmt_ods.mmt_config b
|
|
on a.row_number >=row_number_start
|
|
and (a.row_number< row_read_end or row_read_end is null)
|
|
and f1_modified=''Test Request No''
|
|
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
execute 'insert into mmt_staging2.stg_process_table_IHT_BRT
|
|
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
|
from mmt_staging2.stg_specific_table_IHT_BRT a
|
|
join mmt_ods.mmt_config b
|
|
on a.row_number >=row_number_start
|
|
and (a.row_number< row_read_end or row_read_end is null)
|
|
and f1_modified=''Date- 21-FEB-2021''
|
|
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
execute 'insert into mmt_staging2.stg_process_table_IHT_BRT
|
|
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
|
from mmt_staging2.stg_specific_table_IHT_BRT a
|
|
join mmt_ods.mmt_config b
|
|
on a.row_number >=row_number_start
|
|
and (a.row_number< row_read_end or row_read_end is null)
|
|
and f1_modified=''Date- 04-July-2019''
|
|
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
|
|
execute 'insert into mmt_staging2.stg_process_table_IHT_BRT
|
|
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
|
from mmt_staging2.stg_specific_table_IHT_BRT a
|
|
join mmt_ods.mmt_config b
|
|
on a.row_number >=row_number_start
|
|
and (a.row_number< row_read_end or row_read_end is null)
|
|
and f1_modified=''Weight (kg)''
|
|
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
|
|
execute 'insert into mmt_staging2.stg_process_table_IHT_BRT
|
|
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
|
from mmt_staging2.stg_specific_table_IHT_BRT a
|
|
join mmt_ods.mmt_config b
|
|
on a.row_number >=row_number_start
|
|
and (a.row_number< row_read_end or row_read_end is null)
|
|
and f1_modified=''Remarks:''
|
|
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
/*selecting tractor model*/
|
|
select column5 into __model from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_H1' and trim(column3)='Tractor Model';
|
|
|
|
/*block starts - IHT_BRT_H1_BLOCK */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_H1_BLOCK',__file_format,__sheet_mnemonic,1);
|
|
v_block:='IHT_BRT_H1_BLOCK';
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select a.column3,column5 from mmt_staging2.stg_process_table_IHT_BRT a where rank_tag='IHT_BRT_H1'
|
|
and rank <=9;
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select a.column7,column9 from mmt_staging2.stg_process_table_IHT_BRT a where rank_tag='IHT_BRT_H1'
|
|
and rank <=9;
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select 'Objective',column11
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_H1'
|
|
and row_number=
|
|
(
|
|
select row_number+1 from
|
|
mmt_staging2.stg_process_table_IHT_BRT a
|
|
where column11='Objective'
|
|
and rank_tag='IHT_BRT_H1'
|
|
);
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select 'Acceptance criteria',column10
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_H1'
|
|
and row_number=
|
|
(
|
|
select row_number+1 from
|
|
mmt_staging2.stg_process_table_IHT_BRT a
|
|
where column10='Acceptance criteria'
|
|
and rank_tag='IHT_BRT_H1'
|
|
);
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select 'Condition',column11
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_H1'
|
|
and row_number=
|
|
(
|
|
select row_number+1 from
|
|
mmt_staging2.stg_process_table_IHT_BRT a
|
|
where column11='Condition'
|
|
and rank_tag='IHT_BRT_H1'
|
|
);
|
|
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select 'Test std',column4
|
|
from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.column3='Test std'
|
|
and rank_tag='IHT_BRT_H1';
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select 'Test std Id',column9
|
|
from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.column3='Test std'
|
|
and rank_tag='IHT_BRT_H1';
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select split_part(column3,':',1),split_part(column3,':',2)
|
|
from mmt_staging2.stg_process_table_IHT_BRT
|
|
where rank_tag='IHT_BRT_Footer' and rank=1;
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_INT (c1,c2)
|
|
select split_part(column3,':',1),split_part(column3,':',2)
|
|
from mmt_staging2.stg_process_table_IHT_BRT
|
|
where rank_tag='IHT_BRT_Footer' and rank=2;
|
|
|
|
update mmt_staging2.IHT_BRT_H1_Int set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_H1_Int set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
insert into mmt_staging2.IHT_BRT_H1_Block
|
|
(
|
|
dummy_f,
|
|
Test_Request_no,
|
|
Sample_Receipt_Date,
|
|
Test_report_No,
|
|
Tractor_Model,
|
|
Generation,
|
|
Customer_Name,
|
|
Test_Engineer,
|
|
Test_Report_Date,
|
|
Test_Location,
|
|
No_of_Sample,
|
|
Test_Start_Date,
|
|
Test_End_Date,
|
|
Tractor_Sr_No,
|
|
Test_Standard_Refer,
|
|
Domestic_Export,
|
|
Operator_Name,
|
|
Project_Group,
|
|
Platform,
|
|
Objective,
|
|
Acceptance_Criteria,
|
|
condition,
|
|
Test_Standard,
|
|
Test_Standard_id,
|
|
Remarks,
|
|
Observations
|
|
)
|
|
SELECT *
|
|
FROM crosstab(
|
|
'SELECT unnest(''{c2}''::text[]) AS col
|
|
, row_number() OVER ()
|
|
, unnest(ARRAY[c2::text]) AS val
|
|
FROM mmt_staging2.IHT_BRT_H1_INT
|
|
ORDER BY generate_series(1,15),2'
|
|
) t (col text,a_1 text,a_2 text,a_3 text,a_4 text,a_5 text,a_6 text,a_7 text,a_8 text,
|
|
a_9 text,a_10 text,a_11 text,a_12 text,a_13 text,a_14 text,a_15 text,a_16 text,a_17 text,
|
|
a_18 text,a_19 text,a_20 text,a_21 text,a_22 text,a_23 text,a_24 text,a_25 text);
|
|
|
|
|
|
delete from mmt_staging2.IHT_BRT_H1_Block where dummy_f is null ;
|
|
update mmt_staging2.IHT_BRT_H1_Block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_H1_Block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_H1_Block');
|
|
|
|
|
|
insert into mmt_staging2.IHT_BRT_Weight_Tyre_Int
|
|
(
|
|
column3,column4,column5,column6,column7,column8,column9,
|
|
column10,column11,column12,rank
|
|
)
|
|
select
|
|
column3,column4,column5,column6,column7,column8,
|
|
column9,column10,column11,column12,rank
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_Weight_Tyre'
|
|
order by rank;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Weight_Tyre_Int set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Weight_Tyre_Int set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
|
|
/*block starts - IHT_BRT_Weight_Block */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_Weight_Block',__file_format,__sheet_mnemonic,2);
|
|
v_block:='IHT_BRT_Weight_Block';
|
|
insert into mmt_staging2.IHT_BRT_Weight_Block
|
|
(
|
|
dummy_f,
|
|
test_condition,
|
|
Front,
|
|
Rear,
|
|
Total
|
|
)
|
|
SELECT *
|
|
FROM crosstab(
|
|
'SELECT unnest(''{column5,column7}''::text[]) AS col
|
|
, row_number() OVER ()
|
|
, unnest(ARRAY[column5::text,column7::text]) AS val
|
|
FROM mmt_staging2.IHT_BRT_Weight_Tyre_Int where rank <>1
|
|
ORDER BY generate_series(1,15),2'
|
|
) t (col text,a_1 text,a_2 text,a_3 text,a_4 text);
|
|
|
|
update mmt_staging2.IHT_BRT_Weight_Block set status=
|
|
(select column9 FROM mmt_staging2.IHT_BRT_Weight_Tyre_Int
|
|
where rank=3) where test_condition='Unballast';
|
|
|
|
update mmt_staging2.IHT_BRT_Weight_Block set status=
|
|
(select column9 FROM mmt_staging2.IHT_BRT_Weight_Tyre_Int
|
|
where rank=3) where test_condition='Max Ballast';
|
|
|
|
delete from mmt_staging2.IHT_BRT_Weight_Block where dummy_f is null ;
|
|
update mmt_staging2.IHT_BRT_Weight_Block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Weight_Block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_Weight_Block');
|
|
|
|
/*block starts - IHT_BRT_Tyre_Details_Block */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_Tyre_Details_Block',__file_format,__sheet_mnemonic,3);
|
|
v_block:='IHT_BRT_Tyre_Details_Block';
|
|
insert into mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
(
|
|
dummy_f,
|
|
Tyre_Details,
|
|
Pressure_kg_cm2,
|
|
tyre_use_type,
|
|
Tyre_Make
|
|
)
|
|
SELECT *
|
|
FROM crosstab(
|
|
'SELECT unnest(''{column11,column12}''::text[]) AS col
|
|
, row_number() OVER ()
|
|
, unnest(ARRAY[column11::text,column12::text]) AS val
|
|
FROM mmt_staging2.IHT_BRT_Weight_Tyre_Int where column11 is not null and column12 is not null
|
|
ORDER BY generate_series(1,15),2'
|
|
) t (col text,a_1 text,a_2 text,a_3 text,a_4 text);
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set tyre_size =(select split_part(Tyre_Make,'/ ',2)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Front ')
|
|
where tyre_details ='Front ';
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set ply_rating =(select split_part(replace(Tyre_Make,'PR',''),'/ ',3)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Front ')
|
|
where tyre_details ='Front ';
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set tyre_make =(select split_part(Tyre_Make,'/ ',1)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Front ')
|
|
where tyre_details ='Front ';
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set tyre_size =(select split_part(Tyre_Make,'/ ',2)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Rear')
|
|
where tyre_details ='Rear';
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set ply_rating =(select split_part(replace(Tyre_Make,'PR',''),'/',3)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Rear')
|
|
where tyre_details ='Rear';
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block
|
|
set tyre_make =(select split_part(Tyre_Make,'/ ',1)
|
|
from mmt_staging2.IHT_BRT_Tyre_Details_Block where tyre_details ='Rear')
|
|
where tyre_details ='Rear';
|
|
|
|
delete from mmt_staging2.IHT_BRT_Tyre_Details_Block where dummy_f is null ;
|
|
update mmt_staging2.IHT_BRT_Tyre_Details_Block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Tyre_Details_Block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_Tyre_Details_Block');
|
|
|
|
|
|
/*block starts - IHT_BRT_Test_Res_Block */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_Test_Res_Block',__file_format,__sheet_mnemonic,4);
|
|
v_block:='IHT_BRT_Test_Res_Block';
|
|
insert into mmt_staging2.IHT_BRT_Test_Res_Block
|
|
(
|
|
column2,column3,column4,column5,column6,column7,
|
|
column8,column9,column10,column11,column12,rank
|
|
)
|
|
select
|
|
column2,column3,column4,column5,column6,column7,
|
|
column8,column9,column10,column11,column12,rank
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_Test_Res'
|
|
order by rank;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column3 =(select split_part(column3,'- ',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=1)
|
|
where rank=1;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column6 =(select split_part(column6,'-',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=1)
|
|
where rank=1;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column8 =(select split_part(column8,'-',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=1)
|
|
where rank=1;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column3 =(select split_part(column3,'- ',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=16)
|
|
where rank=16;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column6 =(select split_part(column6,'- ',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=16)
|
|
where rank=16;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column8 =(select split_part(column8,'-',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=16)
|
|
where rank=16;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column2=(select column10
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=1) where a.rank=3;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column2= b.first_value from (SELECT
|
|
rank,column2, value_partition, first_value(column2) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column2,
|
|
sum(case when column2 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank<=15;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column9= b.first_value from (SELECT
|
|
rank,column9, value_partition, first_value(column9) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column9,
|
|
sum(case when column9 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=3 and a.rank<=15;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column10= b.first_value from (SELECT
|
|
rank,column10, value_partition, first_value(column10) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column10,
|
|
sum(case when column10 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=3 and a.rank<=15;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column11= b.first_value from (SELECT
|
|
rank,column11, value_partition, first_value(column11) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column11,
|
|
sum(case when column11 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=3 and a.rank<=15;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block
|
|
set column2=(select column10
|
|
from mmt_staging2.IHT_BRT_Test_Res_Block where rank=16) where rank=18;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column2= b.first_value from (SELECT
|
|
rank,column2, value_partition, first_value(column2) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column2,
|
|
sum(case when column2 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=18;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column9= b.first_value from (SELECT
|
|
rank,column9, value_partition, first_value(column9) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column9,
|
|
sum(case when column9 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=18;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column10= b.first_value from (SELECT
|
|
rank,column10, value_partition, first_value(column10) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column10,
|
|
sum(case when column10 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=18;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block a
|
|
set column11= b.first_value from (SELECT
|
|
rank,column11, value_partition, first_value(column11) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column11,
|
|
sum(case when column11 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank >=18;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block set ods_record =0 where rank in (1,3,2,17,16,18);
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_Block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Test_Res_Block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_Test_Res_Block');
|
|
|
|
|
|
/*block starts - IHT_BRT_Test_Res_1_Block */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_Test_Res_1_Block',__file_format,__sheet_mnemonic,5);
|
|
v_block:='IHT_BRT_Test_Res_1_Block';
|
|
insert into mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
(
|
|
column2,column3,column4,column5,column6,column7,
|
|
column8,column9,column10,column11,column12,
|
|
rank
|
|
)
|
|
select
|
|
column2,column3,column4,column5,column6,column7,
|
|
column8,column9,column10,column11,column12,
|
|
rank
|
|
from mmt_staging2.stg_process_table_IHT_BRT a
|
|
where rank_tag='IHT_BRT_Test_Res_1'
|
|
order by rank;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
set column3 =(select split_part(column3,'- ',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_1_Block where rank=1)
|
|
where rank=1;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
set column6 =(select split_part(column6,'-',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_1_Block where rank=1)
|
|
where rank=1;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
set column8 =(select split_part(column8,'-',2)
|
|
from mmt_staging2.IHT_BRT_Test_Res_1_Block where rank=1)
|
|
where rank=1;
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block set ods_record =0 where rank in (1,2,3,13);
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
set column2=(select column10
|
|
from mmt_staging2.IHT_BRT_Test_Res_1_Block where rank=1) where rank=3;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block a
|
|
set column2= b.first_value from (SELECT
|
|
rank,column2, value_partition, first_value(column2) over (partition by value_partition order by rank)
|
|
FROM (
|
|
SELECT
|
|
rank,
|
|
column2,
|
|
sum(case when column2 is null then 0 else 1 end) over (order by rank) as value_partition
|
|
FROM mmt_staging2.IHT_BRT_Test_Res_1_Block
|
|
ORDER BY rank ASC
|
|
) as q) b where a.rank=b.rank and a.rank<=15;
|
|
|
|
update mmt_staging2.IHT_BRT_Test_Res_1_Block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Test_Res_1_Block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_Test_Res_1_Block');
|
|
|
|
/*block starts - IHT_BRT_Footer_block */
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_begin(__client_id,__function_id,__file_syspk,
|
|
'IHT_BRT_Footer_block',__file_format,__sheet_mnemonic,6);
|
|
v_block:='IHT_BRT_Footer_block';
|
|
|
|
insert into mmt_staging2.IHT_BRT_Footer_block(dummy_f) values ('dummy');
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set prepared_by=( select column6 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and trim(column3)='Prepared by' )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set reviewed_by=( select column6 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and trim(column3)='Reviewed by' )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set approved_by=( select column6 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and trim(column3)='Approved by' )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set comments=( select column3 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=7 )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set rev1=( select column3 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=8 )
|
|
where dummy_F='dummy';
|
|
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set rev2=( select column7 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=8 )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set rev3=( select column11 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=8 )
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set replaces=( select column12 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=3)
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set revision_no=( select column12 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=5)
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set prepared_date=( select column11 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=3)
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set reviewed_date=( select column11 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=4)
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block a
|
|
set approved_date=( select column11 from mmt_staging2.stg_process_table_IHT_BRT b
|
|
where b.rank_tag='IHT_BRT_Footer'
|
|
and rank=5)
|
|
where dummy_F='dummy';
|
|
|
|
update mmt_staging2.IHT_BRT_Footer_block set model=__model;
|
|
execute 'update mmt_staging2.IHT_BRT_Footer_block set
|
|
client_id='||p_client_id||',
|
|
function_id='||p_function_id||',
|
|
file_syspk='||p_file_syspk||',
|
|
file_format='''||p_file_format||''',
|
|
sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
|
|
|
perform mmt_staging2.fn_jobctrl_block_end(__file_syspk,'IHT_BRT_Footer_block');
|
|
|
|
v_context := '';
|
|
return v_context;
|
|
EXCEPTION when OTHERS then
|
|
|
|
GET STACKED DIAGNOSTICS
|
|
v_state = returned_sqlstate,
|
|
v_msg = message_text,
|
|
v_detail = pg_exception_detail,
|
|
v_hint = pg_exception_hint,
|
|
v_context = pg_exception_context;
|
|
|
|
perform mmt_insert_db_error ( __client_id, __function_id, 1001, 'Compegence',v_block,'stg2', 'test_db_error', v_state, v_msg, v_detail, v_hint, v_context);
|
|
return v_context;
|
|
|
|
end
|
|
$$ LANGUAGE plpgsql;
|
|
|