sql files

This commit is contained in:
dheepa
2021-07-02 08:40:37 +00:00
commit a0d3257be0
154 changed files with 49773 additions and 0 deletions

View File

@@ -0,0 +1,855 @@
drop function if exists staging2.fn_IHTHAM_HAM_block;
CREATE OR REPLACE FUNCTION staging2.fn_IHTHAM_HAM_block(p_client_id int,p_function_id int, p_file_mnemonic text,p_file_sheet_mnemonic text, p_file_syspk int)
RETURNS void
LANGUAGE plpgsql
AS $function$
declare __make text;
declare __model text;
declare __client_id int :=p_client_id;
declare __function_id int :=p_function_id;
declare __file_mnemonic text :=p_file_mnemonic;
declare __file_sheet_mnemonic text :=p_file_sheet_mnemonic;
declare __file_syspk int :=p_file_syspk;
declare err_state text;
declare err_msg text;
declare err_detail text;
declare err_hint text;
declare err_context text;
declare err_query int;
declare err_block text;
begin
/************************************************************
Function Name:fn_IHTHAM_HAM_block
Function Desc: This function populates data into staging 2 block
File Format: IHT
Sheet Format: IHTHAM_HAM
Creation Date: March 25 2021
Updation Date:
Author: compegence team
Function Call: select staging2.fn_IHTHAM_HAM_block(p_client_id,p_function_id, p_file_mnemonic,
p_file_sheet_mnemonic, p_file_syspk)
Function call ex: select staging2.fn_IHTHAM_HAM_block(1,2,'IHT','IHTHAM_HAM',456)
***************************************************************/
SET search_path TO staging2;
/* to process multiple files - re-runnability*/
truncate table staging2.IHTHAM_HAM_H1_Int;
truncate table staging2.IHTHAM_HAM_H1_block;
truncate table staging2.IHTHAM_HAM_Tyre_Details_Block;
truncate table staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int;
truncate table staging2.IHTHAM_HAM_Engine_RPM_Block;
truncate table staging2.IHTHAM_HAM_Tractor_Block;
truncate table staging2.IHTHAM_HAM_Weight_Block;
truncate table staging2.IHTHAM_HAM_Drawbar_Block;
truncate table staging2.IHTHAM_HAM_Atmos_Cond_Block;
truncate table staging2.IHTHAM_HAM_Results_Block;
truncate table staging2.IHTHAM_HAM_Footer_Block;
truncate table staging2.stg_specific_table_IHTHAM_HAM;
truncate table staging2.stg_process_table_IHTHAM_HAM;
execute 'delete from fw_core.fw_jobctl_file_sheet_block_run_schedule where file_syspk='||p_file_syspk||' and file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'update transactional.source_config a
set row_number_start=null,
row_previous_number=null,
row_read_end=null,
run_time=null
where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/* transfer data from generic to specific for IHT */
execute 'insert into staging2.stg_specific_table_IHTHAM_HAM
select * from staging1.staging_generic_table a
where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''
and a.file_syspk='||p_file_syspk||'';
select count(*) into err_query from staging2.stg_specific_table_IHTHAM_HAM;
if err_query=0 then
err_context := 'data not present';
raise exception using
message = 'No Data for IHT HAM',
detail = 'No data in table stg_specific_table_IHTHAM_HAM',
errcode = '42704',
hint = 'check sheet mnemonic in generic table, if it is null update it';
end if;
/* trimming data */
update staging2.stg_specific_table_IHTHAM_HAM set column15='Objective'
where lower(column15) like 'objective%';
update staging2.stg_specific_table_IHTHAM_HAM set column15='Acceptance criteria'
where lower(column15) like 'acceptance criteria%';
update transactional.source_config set F1_source=F1_modified ;
/* keyword match in config table*/
execute 'update transactional.source_config a
set row_number_start=(select min(b.row_number)
from staging2.stg_specific_table_IHTHAM_HAM b
where upper(F1_modified)=upper(column3)
and b.is_rownumber_fetched is null)
where a.row_number_start is null
and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/* reverese update in process table for match*/
execute 'update staging2.stg_specific_table_IHTHAM_HAM a
set is_rownumber_fetched=1
from transactional.source_config b
where upper(F1_modified)=upper(column3)
and b.row_number_start=a.row_number
and is_rownumber_fetched is null
and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'update transactional.source_config a set row_previous_number=row_number_start-1
where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/* update config files for row numbers start, end */
execute 'update transactional.source_config a
set row_read_end= (select b.row_number_start
from transactional.source_config b
where b.syspk=a.syspk+1 and file_mnemonic='''||p_file_mnemonic||''' and file_sheet_mnemonic='''||p_file_sheet_mnemonic||''' )
where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/* config file last field update as null otherwise it picks up next format row number*/
execute 'update transactional.source_config a
set row_read_end = null ,run_time=current_timestamp
where f1_modified =''Prepared by''
and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/* tagging block_row_numbers*/
execute 'insert into staging2.stg_process_table_IHTHAM_HAM
select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag
from staging2.stg_specific_table_IHTHAM_HAM a
join transactional.source_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_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'insert into staging2.stg_process_table_IHTHAM_HAM
select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag
from staging2.stg_specific_table_IHTHAM_HAM a
join transactional.source_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=''Engine (RPM)''
and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'insert into staging2.stg_process_table_IHTHAM_HAM
select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag
from staging2.stg_specific_table_IHTHAM_HAM a
join transactional.source_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=''Atmospheric condition''
and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'insert into staging2.stg_process_table_IHTHAM_HAM
select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag
from staging2.stg_specific_table_IHTHAM_HAM a
join transactional.source_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=''Gear''
and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
execute 'insert into staging2.stg_process_table_IHTHAM_HAM
select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag
from staging2.stg_specific_table_IHTHAM_HAM a
join transactional.source_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=''Prepared By''
and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/*selecting tractor model*/
select column6 into __model from staging2.stg_process_table_IHTHAM_HAM a
where block_tag='IHTHAM_HAM_H1' and trim(column3)='Tractor Model';
/*block starts - IHTHAM_HAM_H1_BLOCK */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_H1_BLOCK',__file_mnemonic,__file_sheet_mnemonic,1);
err_block:='IHTHAM_HAM_H1_BLOCK';
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select a.column3,column6 from staging2.stg_process_table_IHTHAM_HAM a where block_tag='IHTHAM_HAM_H1';
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select a.column9,column12 from staging2.stg_process_table_IHTHAM_HAM a where block_tag='IHTHAM_HAM_H1';
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select 'Objective',column15
from staging2.stg_process_table_IHTHAM_HAM a
where block_tag='IHTHAM_HAM_H1'
and row_number=
(
select row_number+1 from
staging2.stg_process_table_IHTHAM_HAM a
where column15='Objective'
and block_tag='IHTHAM_HAM_H1'
);
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select 'Acceptance criteria',column15
from staging2.stg_process_table_IHTHAM_HAM a
where block_tag='IHTHAM_HAM_H1'
and row_number=
(
select row_number+1 from
staging2.stg_process_table_IHTHAM_HAM a
where column15='Acceptance criteria'
and block_tag='IHTHAM_HAM_H1'
);
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select split_part(column3,':',1),split_part(column3,':',2)
from staging2.stg_process_table_IHTHAM_HAM
where block_tag='IHTHAM_HAM_Results' and block_row_number=49;
insert into staging2.IHTHAM_HAM_H1_INT (c1,c2)
select column3,column4
from staging2.stg_process_table_IHTHAM_HAM
where block_tag='IHTHAM_HAM_Atmos_Cond' and block_row_number=4;
update staging2.IHTHAM_HAM_H1_Int set model=__model;
execute 'update staging2.IHTHAM_HAM_H1_Int set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
insert into staging2.IHTHAM_HAM_H1_Block
(
dummy_f,
Test_Request_no,
Sample_Receipt_Date,
Test_report_No,
Tractor_Model,
Generation,
Customer_Name,
Test_Engineer,
Test_Report_Date,
No_of_Sample,
Test_Start_Date,
Test_End_Date,
Tractor_Sr_No,
Test_Location,
Operator_Name,
Project_Group,
Test_standard_refer,
Objective,
Acceptance_Criteria,
Remarks,
condition
)
SELECT *
FROM crosstab(
'SELECT unnest(''{c2}''::text[]) AS col
, row_number() OVER ()
, unnest(ARRAY[c2::text]) AS val
FROM staging2.IHTHAM_HAM_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);
update staging2.IHTHAM_HAM_H1_Block
set Sample_Receipt_Date=case
when Sample_Receipt_Date like '%-%' then Sample_Receipt_Date::timestamptz
else date '1899-12-30' + Sample_Receipt_Date::int * interval '1' day
end;
update staging2.IHTHAM_HAM_H1_Block
set Test_Report_Date=case
when Test_Report_Date like '%-%' then Test_Report_Date::timestamptz
else date '1899-12-30' + Test_Report_Date::int * interval '1' day
end;
update staging2.IHTHAM_HAM_H1_Block
set Test_Start_Date=case
when Test_Report_Date like '%-%' then Test_Report_Date::timestamptz
else date '1899-12-30' + Test_Report_Date::int * interval '1' day
end;
update staging2.IHTHAM_HAM_H1_Block
set Test_End_Date=case
when Test_Report_Date like '%-%' then Test_Report_Date::timestamptz
else date '1899-12-30' + Test_Report_Date::int * interval '1' day
end;
delete from staging2.IHTHAM_HAM_H1_Block where dummy_f is null ;
update staging2.IHTHAM_HAM_H1_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_H1_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_H1_BLOCK');
insert into staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
(
column3,column4,column5,column6,column8,column9 ,
column10,column11,column12,column13,
column14,column15,column16,column17,
column18,column19,column20,column21 ,
column22,block_row_number
)
select
column3,column4,column5,column6,column8,column9,
column10,column11,column12,column13,
column14,column15,column16,column17,
column18,column19,column20,column21 ,
column22,block_row_number
from staging2.stg_process_table_IHTHAM_HAM a
where block_tag='IHTHAM_HAM_Engine_Tyre_Weight'
order by block_row_number;
update staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int set model=__model;
execute 'update staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
/*block starts - IHTHAM_HAM_Tyre_Details_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Tyre_Details_Block',__file_mnemonic,__file_sheet_mnemonic,2);
err_block:='IHTHAM_HAM_Tyre_Details_Block';
insert into staging2.IHTHAM_HAM_Tyre_Details_Block
(
dummy_f,
Tyre_Details,
Tyre_Make,
Tyre_size,
Ply_Rating,
Load_Carrying_Capacity,
pressure_kg_cm2,
No_of_lug,
Number_of_no_load_lug_30m,
Lug_Height,
Dynamic_rolling_radius,
Wheel_rim_Make_size
)
SELECT *
FROM crosstab(
'SELECT unnest(''{column15,column20}''::text[]) AS col
, row_number() OVER ()
, unnest(ARRAY[column15::text,column20::text]) AS val
FROM staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int where block_row_number between 4 and 14
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);
delete from staging2.IHTHAM_HAM_Tyre_Details_Block where dummy_f is null ;
update staging2.IHTHAM_HAM_Tyre_Details_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Tyre_Details_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Tyre_Details_Block');
/*block starts - IHTHAM_HAM_Engine_RPM_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Engine_RPM_Block',__file_mnemonic,__file_sheet_mnemonic,3);
err_block:='IHTHAM_HAM_Engine_RPM_Block';
insert into staging2.IHTHAM_HAM_Engine_RPM_Block(dummy_f) values ('dummy');
update staging2.IHTHAM_HAM_Engine_RPM_Block
set low_idle_declared=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 and column3='Low Idle RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set low_idle_observed=(select column8 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 and column3='Low Idle RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set high_idle_declared=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3 and column10='High Idle RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set high_idle_observed=(select column8 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3 and column3='High Idle RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set rated_rpm_declared=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=4 and column3='Rated RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set rated_rpm_observed=(select column8 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=4 and column3='Rated RPM')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block
set Engine_to_PTO_Ratio=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=5 and column3='Engine to PTO Ratio')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Engine_RPM_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Engine_RPM_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Engine_RPM_Block');
/*block starts -IHTHAM_HAM_Drawbar_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Drawbar_Block',__file_mnemonic,__file_sheet_mnemonic,4);
err_block:='IHTHAM_HAM_Drawbar_Block';
insert into staging2.IHTHAM_HAM_Drawbar_Block(test_condition)
select distinct column6 from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number between 9 and 14;
insert into staging2.IHTHAM_HAM_Drawbar_Block(test_condition)
select distinct column8 from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number between 9 and 14;
update staging2.IHTHAM_HAM_Drawbar_Block
set Required_pull_in_kg = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =9);
update staging2.IHTHAM_HAM_Drawbar_Block
set Required_Power_in_hp = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =10);
update staging2.IHTHAM_HAM_Drawbar_Block
set Actual_pull_in_kg = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =11);
update staging2.IHTHAM_HAM_Drawbar_Block
set actual_power_in_hp = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =12);
update staging2.IHTHAM_HAM_Drawbar_Block
set Calculated_hitch_heigh_mm = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =13);
update staging2.IHTHAM_HAM_Drawbar_Block
set Actual_hitch_height_mm = (select column7
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='UB' and block_row_number =14);
update staging2.IHTHAM_HAM_Drawbar_Block
set Required_pull_in_kg = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =9);
update staging2.IHTHAM_HAM_Drawbar_Block
set Required_Power_in_hp = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =10);
update staging2.IHTHAM_HAM_Drawbar_Block
set Actual_pull_in_kg = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =11);
update staging2.IHTHAM_HAM_Drawbar_Block
set actual_power_in_hp = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =12);
update staging2.IHTHAM_HAM_Drawbar_Block
set Calculated_hitch_heigh_mm = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =13);
update staging2.IHTHAM_HAM_Drawbar_Block
set Actual_hitch_height_mm = (select column9
from staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where test_condition='B' and block_row_number =14);
update staging2.IHTHAM_HAM_Drawbar_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Drawbar_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Drawbar_Block');
/*block starts - IHTHAM_HAM_Tractor_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Tractor_Block',__file_mnemonic,__file_sheet_mnemonic,5);
err_block:='IHTHAM_HAM_Tractor_Block';
insert into staging2.IHTHAM_HAM_Tractor_Block(dummy_f) values ('dummy');
update staging2.IHTHAM_HAM_Tractor_Block
set Wheel_Base_mm=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=5 and column3='Wheel Base (mm)')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Tractor_Block
set Engine_Power_hp=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=6 and column3='Engine Power hp')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Tractor_Block
set PTO_Power_hp=(select column6 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=7 and column3='PTO Power hp')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Tractor_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Tractor_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Tractor_Block');
/*block starts -IHTHAM_HAM_Weight_Block*/
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Weight_Block',__file_mnemonic,__file_sheet_mnemonic,6);
err_block:='IHTHAM_HAM_Weight_Block';
insert into staging2.IHTHAM_HAM_Weight_Block(dummy_f) values ('dummy');
update staging2.IHTHAM_HAM_Weight_Block
set test_condition=(select column10 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 )
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set test_condition=(select column10 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3)
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Front_weight=(select column13 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 and column14='Unballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Front_weight=(select column13 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3 and column14='Ballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Rear_weight=(select column17 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 and column14='Unballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Rear_weight=(select column17 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3 and column14='Ballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Total_weight=(select column21 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=2 and column14='Unballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block
set Total_weight=(select column21 from
staging2.IHTHAM_HAM_Engine_Tyre_Weight_Int
where block_row_number=3 and column14='Ballast')
where dummy_f='dummy';
update staging2.IHTHAM_HAM_Weight_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Weight_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Weight_Block');
/*block starts - IHTHAM_HAM_Atmos_Cond_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Atmos_Cond_Block',__file_mnemonic,__file_sheet_mnemonic,7);
err_block:='IHTHAM_HAM_Atmos_Cond_Block';
insert into staging2.IHTHAM_HAM_Atmos_Cond_Block
(
dummy_f,
Ambient_temp_C,
humidity,
wind_velocity
)
SELECT *
FROM crosstab(
'SELECT unnest(''{column5}''::text[]) AS col
, row_number() OVER ()
, unnest(ARRAY[column5::text]) AS val
FROM staging2.stg_process_table_ihtham_ham
where block_tag=''IHTHAM_HAM_Atmos_Cond'' and block_row_number in (1,2,3)
ORDER BY generate_series(1,15),block_row_number,2'
) t (col text,a_1 text,a_2 text,a_3 text);
update staging2.IHTHAM_HAM_Atmos_Cond_Block
set date=
(select date '1899-12-30' + column8::int * interval '1' day
FROM staging2.stg_process_table_ihtham_ham
where column7='Date' and block_tag='IHTHAM_HAM_Atmos_Cond' and block_row_number =1);
update staging2.IHTHAM_HAM_Atmos_Cond_Block
set start_time=
(select to_char(to_timestamp((column8::numeric)* 60),'HH12:MI')
FROM staging2.stg_process_table_ihtham_ham
where column7='Start Time' and block_tag='IHTHAM_HAM_Atmos_Cond' and block_row_number=2);
update staging2.IHTHAM_HAM_Atmos_Cond_Block
set end_time=
(select to_char(to_timestamp((column8::numeric)* 60),'HH12:MI')
FROM staging2.stg_process_table_ihtham_ham
where column7='End time' and block_tag='IHTHAM_HAM_Atmos_Cond' and block_row_number=3);
delete from staging2.IHTHAM_HAM_Atmos_Cond_Block where dummy_f is null ;
update staging2.IHTHAM_HAM_Atmos_Cond_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Atmos_Cond_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Atmos_Cond_Block');
/*block starts - IHTHAM_HAM_Results_Block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Results_Block',__file_mnemonic,__file_sheet_mnemonic,8);
err_block:='IHTHAM_HAM_Results_Block';
insert into staging2.IHTHAM_HAM_Results_Block
(
column3,column4,column5,column6,
column7,column8,column9,
column10,column11,column12,
column13,column14,column15,
column16,column17,column18,
column19,column20,column21,
column22,column23,column24,block_row_number
)
select
column3,column4,column5,column6,
column7,column8,column9,
column10,column11,column12,
column13,column14,column15,
column16,column17,column18,
column19,column20,column21,
column22,column23,column24,block_row_number
from staging2.stg_process_table_IHTHAM_HAM a
where block_tag='IHTHAM_HAM_Results'
order by block_row_number;
update staging2.IHTHAM_HAM_Results_Block
set trx_record =0 where block_row_number in (1,2,49,50,51);
update staging2.ihtham_ham_results_block a
set column3= b.first_value from (SELECT
block_row_number, column3, value_partition, first_value(column3) over (partition by value_partition order by block_row_number)
FROM (
SELECT
block_row_number,
column3,
sum(case when column3 is null then 0 else 1 end) over (order by block_row_number) as value_partition
FROM staging2.ihtham_ham_results_block
ORDER BY block_row_number ASC
) as q) b where a.block_row_number = b.block_row_number;
update staging2.IHTHAM_HAM_Results_Block
set column22= to_char((column22::numeric) * '24 hours'::interval,'HH12:MIPM')
where trx_record=1;
--select to_char((3.4722222222222654E-3) * '24 hours'::interval,'HH12:MI')
--select to_timestamp(cast('3.4722222222222654E-3' as real));
update staging2.IHTHAM_HAM_Results_Block
set column24= to_char((cast(column24 as real)) * '24 hours'::interval,'HH24:MI')
where trx_record=1;
update staging2.IHTHAM_HAM_Results_Block set model=__model;
execute 'update staging2.IHTHAM_HAM_Results_Block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Results_Block');
/*block starts - IHTHAM_HAM_Footer_block */
perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk,
'IHTHAM_HAM_Footer_block',__file_mnemonic,__file_sheet_mnemonic,9);
err_block:='IHTHAM_HAM_Footer_block';
insert into staging2.IHTHAM_HAM_Footer_block(dummy_f) values ('dummy');
update staging2.IHTHAM_HAM_Footer_block a
set prepared_by=( select column7 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and lower(column3)='prepared by' )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set reviewed_by=( select column7 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and lower(column3)='reviewed by' )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set approved_by=( select column7 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and lower(column3)='approved by' )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set comments=( select column3 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=5 )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set rev1=( select column3 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=6 )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set rev2=( select column9 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=6 )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set rev3=( select column18 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=6 )
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set replaces=( select column23 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=1)
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set revision_no=( select column23 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=2)
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set prepared_date=( select column19 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=1)
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set reviewed_date=( select column19 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=2)
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block a
set approved_date=( select column19 from staging2.stg_process_table_IHTHAM_HAM b
where b.block_tag='IHTHAM_HAM_Footer'
and block_row_number=3)
where dummy_F='dummy';
update staging2.IHTHAM_HAM_Footer_block set model=__model;
execute 'update staging2.IHTHAM_HAM_Footer_block set
client_id='||p_client_id||',
function_id='||p_function_id||',
file_syspk='||p_file_syspk||',
file_mnemonic='''||p_file_mnemonic||''',
file_sheet_mnemonic='''||p_file_sheet_mnemonic||'''';
perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTHAM_HAM_Footer_block');
perform fw_core.fn_insert_db_error ( __client_id, __function_id, 1001, 'Compegence', __file_syspk ,__file_mnemonic,__file_sheet_mnemonic ,null,'stg2', 'fn_IHTHAM_HAM_block', err_state, err_msg, err_detail, err_hint, err_context,'success');
end
$function$