rename
This commit is contained in:
283
MMT_SQL/execute functions/budni_pto_execute.sql
Normal file
283
MMT_SQL/execute functions/budni_pto_execute.sql
Normal file
@@ -0,0 +1,283 @@
|
||||
drop function if exists mmt_staging2.fn_BUDNI_PTO_block;
|
||||
CREATE OR REPLACE FUNCTION mmt_staging2.fn_BUDNI_PTO_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;
|
||||
begin
|
||||
|
||||
SET search_path TO mmt_staging2;
|
||||
|
||||
delete from mmt_staging2.stg_specific_table_BUDNI_PTO;
|
||||
delete from mmt_staging2.stg_process_table_BUDNI_PTO;
|
||||
delete from mmt_staging2.BUDNI_PTO_Spec_H1_Block;
|
||||
delete from mmt_staging2.BUDNI_PTO_Perf_Report_block;
|
||||
delete from mmt_staging2.BUDNI_PTO_MMTKeyword1_Block;
|
||||
delete from mmt_staging2.BUDNI_PTO_MMTKeyword2_Block;
|
||||
delete from mmt_staging2.BUDNI_PTO_Summary_Block;
|
||||
|
||||
/* rerun */
|
||||
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||'''';
|
||||
|
||||
|
||||
execute 'insert into mmt_staging2.stg_specific_table_budni_pto
|
||||
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||'';
|
||||
|
||||
|
||||
update mmt_staging2.stg_specific_table_budni_pto set column3 = TRIM (TRAILING FROM column3 );
|
||||
update mmt_staging2.stg_specific_table_budni_pto 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 */
|
||||
execute 'update mmt_ods.mmt_config a
|
||||
set row_number_start=(select min(b.row_number)
|
||||
from mmt_staging2.stg_specific_table_budni_pto 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 */
|
||||
execute 'update mmt_staging2.stg_specific_table_budni_pto 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||'''';
|
||||
|
||||
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||'''';
|
||||
|
||||
/* last field */
|
||||
execute 'update mmt_ods.mmt_config a
|
||||
set row_read_end = null ,run_time=current_timestamp
|
||||
where f1_modified =''PTO Performance Test Observations Summary''
|
||||
and a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
/* tagging ranks*/
|
||||
execute 'insert into mmt_staging2.stg_process_table_budni_pto
|
||||
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_budni_pto 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 Tractor Specifiactions''
|
||||
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_budni_pto
|
||||
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_budni_pto 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=''PTO Performance Report''
|
||||
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_budni_pto
|
||||
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag from mmt_staging2.stg_specific_table_budni_pto 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=''MMTKeyword1''
|
||||
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_budni_pto
|
||||
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag from mmt_staging2.stg_specific_table_budni_pto 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=''MMTKeyword2''
|
||||
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_budni_pto
|
||||
select a.* , RANK () OVER ( ORDER BY row_number) as rank,b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_budni_pto 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=''PTO Performance Test Observations Summary''
|
||||
and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
delete from mmt_staging2.stg_process_table_budni_pto where row_number between 42 and 47;
|
||||
|
||||
select column3 into __make from mmt_staging2.stg_process_table_budni_pto a
|
||||
where rank_tag='BUDNI_PTO_Spec_H1' and rank=3 ;
|
||||
|
||||
select column4 into __model from mmt_staging2.stg_process_table_budni_pto a
|
||||
where rank_tag='BUDNI_PTO_Spec_H1' and rank=3;
|
||||
|
||||
/* blocks */
|
||||
insert into mmt_staging2.BUDNI_PTO_Spec_H1_block
|
||||
(make,model,tractor_HP,rated_rpm,configuration,transmission_type,wheel_drive_type,FIP_type,rank)
|
||||
select column3,column4,column5,column6,column7,column8,column9,column10,rank
|
||||
from mmt_staging2.stg_process_table_budni_pto where rank_tag='BUDNI_PTO_Spec_H1'
|
||||
and rank=3;
|
||||
|
||||
|
||||
execute 'update mmt_staging2.BUDNI_PTO_Spec_H1_block set file_syspk='||p_file_syspk||'';
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Spec_H1_block a
|
||||
set date= date '1899-12-30' + column12::int * interval '1' day
|
||||
from mmt_staging2.stg_process_table_budni_pto b
|
||||
where b.rank_tag='BUDNI_PTO_Spec_H1'
|
||||
and b.rank=1
|
||||
and a.file_syspk=b.file_syspk ;
|
||||
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Spec_H1_block a
|
||||
set steering_type=column3,Engine_to_PTO_ratio= column4
|
||||
from mmt_staging2.stg_process_table_budni_pto b
|
||||
where b.rank_tag='BUDNI_PTO_Spec_H1'
|
||||
and b.rank=5
|
||||
and a.file_syspk=b.file_syspk;
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Spec_H1_block set make=__make, model=__model;
|
||||
execute 'update mmt_staging2.BUDNI_PTO_Spec_H1_block set
|
||||
client_id='||p_client_id||',
|
||||
function_id='||p_function_id||',
|
||||
file_format='''||p_file_format||''',
|
||||
sheet_mnemonic='''||p_sheet_mnemonic||''',
|
||||
file_syspk='||p_file_syspk||'';
|
||||
|
||||
|
||||
/*block */
|
||||
insert into mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
( column2,column3,column4,column5,column6,column7,column8,column9,column10,rank)
|
||||
select column2,column3,column4,column5,column6,column7,column8,column9,column10,rank
|
||||
from mmt_staging2.stg_process_table_budni_pto
|
||||
where rank_tag='BUDNI_PTO_Perf_Report';
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
set column2=column3 where column2 is null;
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
set column2=null
|
||||
where column2 like 'i%';
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
set column2=null
|
||||
where column2 like 'v%';
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_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.BUDNI_PTO_Perf_Report_block
|
||||
ORDER BY rank ASC
|
||||
) as q) b where a.rank = b.rank ;
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
set column3 =null
|
||||
where column2=column3;
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block
|
||||
set ods_record=0 where rank in (1,2,3);
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block set ods_record=0 where column3 is null
|
||||
and column2 in(
|
||||
select column2 from mmt_staging2.BUDNI_PTO_Perf_Report_block group by column2 having count(*)>1
|
||||
);
|
||||
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Perf_Report_block set make=__make,model=__model;
|
||||
execute 'update mmt_staging2.BUDNI_PTO_Perf_Report_block set
|
||||
client_id='||p_client_id||',
|
||||
function_id='||p_function_id||',
|
||||
file_format='''||p_file_format||''',
|
||||
sheet_mnemonic='''||p_sheet_mnemonic||''',
|
||||
file_syspk='||p_file_syspk||'';
|
||||
|
||||
|
||||
/* block */
|
||||
insert into mmt_staging2.BUDNI_PTO_MMTKeyword1_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_budni_pto
|
||||
where rank_tag='BUDNI_PTO_MMTKeyword1';
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_MMTKeyword1_block set ods_record=0 where rank in (1,2);
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_MMTKeyword1_block set make=__make,model=__model;
|
||||
execute 'update mmt_staging2.BUDNI_PTO_MMTKeyword1_block set
|
||||
client_id='||p_client_id||',
|
||||
function_id='||p_function_id||',
|
||||
file_format='''||p_file_format||''',
|
||||
sheet_mnemonic='''||p_sheet_mnemonic||''',
|
||||
file_syspk='||p_file_syspk||'';
|
||||
|
||||
/* block */
|
||||
|
||||
insert into mmt_staging2.BUDNI_PTO_MMTKeyword2_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_budni_pto
|
||||
where rank_tag='BUDNI_PTO_MMTKeyword2';
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_MMTKeyword2_block set ods_record=0 where rank in (1,2);
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_MMTKeyword2_block set make=__make,model=__model;
|
||||
execute 'update mmt_staging2.BUDNI_PTO_MMTKeyword2_block set
|
||||
client_id='||p_client_id||',
|
||||
function_id='||p_function_id||',
|
||||
file_format='''||p_file_format||''',
|
||||
sheet_mnemonic='''||p_sheet_mnemonic||''',
|
||||
file_syspk='||p_file_syspk||'';
|
||||
|
||||
|
||||
/* block */
|
||||
|
||||
insert into mmt_staging2.BUDNI_PTO_Summary_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_budni_pto
|
||||
where rank_tag='BUDNI_PTO_Summary';
|
||||
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Summary_block
|
||||
set ods_record=0 where rank in (1,2);
|
||||
|
||||
update mmt_staging2.BUDNI_PTO_Summary_block set make=__make, model=__model;
|
||||
execute 'update mmt_staging2.BUDNI_PTO_Summary_block set
|
||||
client_id='||p_client_id||',
|
||||
function_id='||p_function_id||',
|
||||
file_format='''||p_file_format||''',
|
||||
sheet_mnemonic='''||p_sheet_mnemonic||''',
|
||||
file_syspk='||p_file_syspk||'';
|
||||
|
||||
return __model;
|
||||
|
||||
end
|
||||
$$ LANGUAGE plpgsql;
|
||||
|
||||
select mmt_staging2.fn_BUDNI_PTO_block(20,1,'BUDNI','BUDNI_PTO',182);
|
||||
|
||||
Reference in New Issue
Block a user