rename folder
This commit is contained in:
342
Deepthi_SQL/execute functions/wet_trs_execute.sql
Normal file
342
Deepthi_SQL/execute functions/wet_trs_execute.sql
Normal file
@@ -0,0 +1,342 @@
|
||||
|
||||
/*FTWET_TRS starts*/
|
||||
|
||||
drop function if exists mmt_staging2.fn_FTWET_TRS_Block ;
|
||||
CREATE OR REPLACE FUNCTION mmt_staging2.fn_FTWET_TRS_Block(p_client_id int,p_function_id int, p_file_format text,
|
||||
p_sheet_mnemonic text, p_file_syspk int)
|
||||
RETURNS void AS $$
|
||||
begin
|
||||
|
||||
SET search_path TO mmt_staging2;
|
||||
|
||||
delete from mmt_staging2.FTWET_TRS_H1_INT;
|
||||
delete from mmt_staging2.FTWET_TRS_H1_Block;
|
||||
delete from mmt_staging2.FTWET_TRS_Engine_RPM_Block;
|
||||
delete from mmt_staging2.FTWET_TRS_Implement_Block;
|
||||
delete from mmt_staging2.stg_specific_table_ftwet_trs;
|
||||
delete from mmt_staging2.stg_process_table_ftwet_trs;
|
||||
|
||||
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_ftwet_trs
|
||||
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_ftwet_trs set column2 = TRIM (TRAILING FROM column2 );
|
||||
update mmt_staging2.stg_specific_table_ftwet_trs set column2 = TRIM (LEADING FROM column2 );
|
||||
|
||||
|
||||
|
||||
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);
|
||||
|
||||
execute 'update mmt_ods.mmt_config a
|
||||
set row_number_start=(select min(b.row_number)
|
||||
from mmt_staging2.stg_specific_table_ftwet_trs b
|
||||
where upper(trim(F1_source))=upper(trim(column2))
|
||||
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||'''';
|
||||
|
||||
execute 'update mmt_staging2.stg_specific_table_ftwet_trs a
|
||||
set is_rownumber_fetched=1
|
||||
from mmt_ods.mmt_config b
|
||||
where upper(trim(F1_source))=upper(trim(column2))
|
||||
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 )
|
||||
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 = null where f1_modified =''Implement Details''
|
||||
and a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'update mmt_ods.mmt_config a
|
||||
set run_time=current_timestamp where a.file_format='''||p_file_format||''' and a.sheet_mnemonic='''||p_sheet_mnemonic||'''';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_ftwet_trs
|
||||
select a.* , RANK () OVER ( ORDER BY row_number),b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_ftwet_trs 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=''Tractor Specifications Sheet'' and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''
|
||||
order by a.row_number';
|
||||
|
||||
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_ftwet_trs
|
||||
select a.* , RANK () OVER ( ORDER BY row_number),b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_ftwet_trs 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=''Tractor Specifications'' and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''
|
||||
order by a.row_number';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_ftwet_trs
|
||||
select a.* , RANK () OVER ( ORDER BY row_number),b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_ftwet_trs 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=''Engine RPM Data:'' and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''
|
||||
order by a.row_number';
|
||||
|
||||
execute 'insert into mmt_staging2.stg_process_table_ftwet_trs
|
||||
select a.* , RANK () OVER ( ORDER BY row_number),b.rank_tag as rank_tag
|
||||
from mmt_staging2.stg_specific_table_ftwet_trs a
|
||||
join mmt_ods.mmt_config b
|
||||
on a.row_number >row_number_start
|
||||
and a.column2 <> ''''
|
||||
and (a.row_number< row_read_end or row_read_end is null)
|
||||
and f1_modified=''Implement Details'' and b.file_format='''||p_file_format||''' and b.sheet_mnemonic='''||p_sheet_mnemonic||'''
|
||||
order by a.row_number';
|
||||
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT(column2,column3,column4,column5,column6,column7)
|
||||
select column2,column3,column4,column5,column6,column7 from mmt_staging2.stg_process_table_ftwet_trs a
|
||||
where rank_tag='FTWET_TRS_H1';
|
||||
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT(column2) values ('Date of Test');
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT(column2) values ('Report Date');
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT(column2) values ('Season');
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT (column2) values ('Type of Soil');
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT (column2) values ('Soil Cone Index (kPa)');
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_INT (column2) values ('Field Condition');
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column5 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column4)
|
||||
and b.column4='Date of Test')
|
||||
where a.column2='Date of Test';
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column7 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column6)
|
||||
and b.column6='Report Date')
|
||||
where a.column2='Report Date';
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column6 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column5)
|
||||
and b.column5='Season')
|
||||
where a.column2='Season';
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column6 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column5)
|
||||
and b.column5='Type of Soil')
|
||||
where a.column2='Type of Soil';
|
||||
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column6 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column5)
|
||||
and b.column5='Soil Cone Index (kPa)')
|
||||
where a.column2='Soil Cone Index (kPa)';
|
||||
|
||||
|
||||
update mmt_staging2.FTWET_TRS_H1_INT a
|
||||
set column3=(select column6 from mmt_staging2.FTWET_TRS_H1_INT b
|
||||
where trim(a.column2)=trim(b.column5)
|
||||
and b.column5='Field Condition')
|
||||
where a.column2='Field Condition';
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_H1_Block
|
||||
(
|
||||
dummy_f,
|
||||
Report_Reference_No,
|
||||
Objective_Of_Test,
|
||||
Background_of_Test,
|
||||
Job_Order_No,
|
||||
Test_Location,
|
||||
Soil_Moisture_Content_,
|
||||
Soil_Bulk_Density_g_cc,
|
||||
Test_Engineer,
|
||||
Test_Operator,
|
||||
Date_of_Test,
|
||||
Report_Date,
|
||||
Season,
|
||||
Type_of_Soil,
|
||||
Soil_Cone_Index_kPa,
|
||||
Field_Condition
|
||||
)
|
||||
SELECT *
|
||||
FROM crosstab(
|
||||
'SELECT unnest(''{column3}''::text[]) AS col
|
||||
, row_number() OVER ()
|
||||
, unnest(ARRAY[column3::text]) AS val
|
||||
FROM mmt_staging2.FTWET_TRS_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);
|
||||
|
||||
|
||||
|
||||
delete from mmt_staging2.FTWET_TRS_H1_Block where dummy_f is null ;
|
||||
execute 'update mmt_staging2.FTWET_TRS_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||'''';
|
||||
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_SPEC_Block
|
||||
(
|
||||
dummy_f,
|
||||
Tractor_Model,
|
||||
Tractor_Make,
|
||||
Tractor_Sr_No,
|
||||
Tractor_Engine_HP,
|
||||
FIP_Type,
|
||||
hour_Meter_Reading,
|
||||
Steering_Type,
|
||||
Transmission_Type,
|
||||
Wheel_Drive_Type_WD,
|
||||
EGR_Yes_No,
|
||||
Brake_Type,
|
||||
PTO_Type,
|
||||
Standard_PTO_Speed_RPM,
|
||||
EPTO_Speed_RPM,
|
||||
Front_Tyre_Make,
|
||||
Front_Tyre_Size,
|
||||
Front_Tyre_Pressure_psi,
|
||||
Rear_Tyre_Make,
|
||||
Rear_Tyre_Size,
|
||||
Rear_Tyre_Pressure_psi ,
|
||||
Tractor_Weight_kg_Front ,
|
||||
Tractor_Weight_kg_Rear ,
|
||||
Tractor_Weight_kg_Total,
|
||||
Ballasted_Tractor_Accessories,
|
||||
Mechanical_Ballast_Rear_in_KG ,
|
||||
Water_Ballast_Rear,
|
||||
Mechanical_Ballast_Front,
|
||||
Mechanical_Ballast_Front_in_Kg,
|
||||
Total_Ballast_Weight
|
||||
)
|
||||
SELECT *
|
||||
FROM crosstab(
|
||||
'SELECT unnest(''{column3,column4,column5,column6,column7}''::text[]) AS col
|
||||
, row_number() OVER ()
|
||||
, unnest(ARRAY[column3::text,column4::text,column5::text,column6::text,column7::text]) AS val
|
||||
FROM mmt_staging2.stg_process_table_ftwet_trs where rank_tag=''FTWET_TRS_SPEC''
|
||||
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,a_26 text,a_27 text,a_28 text,a_29 text);
|
||||
|
||||
|
||||
|
||||
delete from mmt_staging2.FTWET_TRS_SPEC_Block where dummy_f is null ;
|
||||
execute 'update mmt_staging2.FTWET_TRS_SPEC_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||'''';
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_Engine_RPM_Block
|
||||
(
|
||||
dummy_f,
|
||||
Tractor_model,
|
||||
Tractor_make,
|
||||
Low_Idle,
|
||||
High_Idle,
|
||||
Rated_RPM,
|
||||
Engine_to_PTO_Ratio_540_PTO,
|
||||
Engine_to_PTO_Ratio_540E_PTO
|
||||
)
|
||||
SELECT *
|
||||
FROM crosstab(
|
||||
'SELECT unnest(''{column3,column4,column5,column6,column7}''::text[]) AS col
|
||||
, row_number() OVER ()
|
||||
, unnest(ARRAY[column3::text,column4::text,column5::text,column6::text,column7::text]) AS val
|
||||
FROM mmt_staging2.stg_process_table_ftwet_trs where rank_tag=''FTWET_TRS_Engine_RPM''
|
||||
or (rank_tag=''FTWET_TRS_SPEC'' and rank in (1,2))
|
||||
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);
|
||||
|
||||
|
||||
|
||||
delete from mmt_staging2.FTWET_TRS_Engine_RPM_Block where dummy_f is null ;
|
||||
execute 'update mmt_staging2.FTWET_TRS_Engine_RPM_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||'''';
|
||||
|
||||
insert into mmt_staging2.FTWET_TRS_Implement_Block
|
||||
(
|
||||
dummy_f,
|
||||
Name_of_Implement,
|
||||
Type_of_Implement,
|
||||
Make_of_Implement,
|
||||
No_of_bottoms_Tyne_Disc_Blade,
|
||||
Cutting_Width_m,
|
||||
Implement_Weight_Kg,
|
||||
Hitch_Category,
|
||||
Span_cm_For_Mounted_Implement,
|
||||
Mast_Height_cm_For_Mounted_Implement,
|
||||
Type_of_Cage_Wheel_Half_Cage_wheel_Full_Cage_Wheel,
|
||||
Cage_Wheel_Width_mm,
|
||||
Cage_wheel_Weight,
|
||||
Cage_Wheel_inner_Outer_Ring_Dia_mm,
|
||||
Cage_Wheel_Center_Ring_Dia_mm,
|
||||
Distance_between_RHS_LHS_cage_wheel_Inner_Ring_mm_For_Full_Cage_wheel,
|
||||
No_of_angles_on_cage_wheel,
|
||||
No_of_days_of_water_logging,
|
||||
Depth_of_water_mm ,
|
||||
FDPD_TDC_Mar15_008
|
||||
)
|
||||
SELECT *
|
||||
FROM crosstab(
|
||||
'SELECT unnest(''{column3,column4,column5,column6}''::text[]) AS col
|
||||
, row_number() OVER ()
|
||||
, unnest(ARRAY[column3::text,column4::text,column5::text,column6::text]) AS val
|
||||
FROM mmt_staging2.stg_process_table_ftwet_trs where rank_tag=''FTWET_TRS_Implement''
|
||||
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);
|
||||
|
||||
|
||||
delete from mmt_staging2.FTWET_TRS_Implement_Block where dummy_f is null ;
|
||||
execute 'update mmt_staging2.FTWET_TRS_Implement_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||'''';
|
||||
|
||||
end
|
||||
$$ LANGUAGE plpgsql;
|
||||
|
||||
select mmt_staging2.fn_FTWET_TRS_Block
|
||||
(20,1,'FTWET','FTWET_TRS',181);
|
||||
/*FTWET_TRS ends*/
|
||||
|
||||
Reference in New Issue
Block a user