Browse Source

月份改为日执行,同步删除维度数据。

hotfix/yujt_opt
zhangyuan 5 years ago
parent
commit
87e786fd66
  1. 88
      epdc-cloud-property/doc/kettle/screen-yushan/screen_totality_street_delete_month.ktr
  2. 8
      epdc-cloud-property/doc/kettle/screen-yushan/yushan_comm_month.kjb
  3. 6
      epdc-cloud-property/doc/kettle/screen-yushan/yushan_month.kjb
  4. 211
      epdc-cloud-property/doc/kettle/screen-yushan/yushan_month_delete_co.ktr
  5. 173
      epdc-cloud-property/doc/kettle/screen-yushan/yushan_month_delete_st.ktr
  6. 55
      epdc-cloud-property/doc/kettle/screen-yushan/yushan_street_month.kjb

88
epdc-cloud-property/doc/kettle/screen-yushan/screen_totality_street_delete_month.ktr

@ -514,7 +514,7 @@
<order> <order>
</order> </order>
<step> <step>
<name>清空议题项目分类表</name> <name>清空议题项目分类表-年</name>
<type>ExecSQL</type> <type>ExecSQL</type>
<description/> <description/>
<distribute>Y</distribute> <distribute>Y</distribute>
@ -551,6 +551,92 @@
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>
<step>
<name>清空新闻表</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>DELETE
FROM
ys_news
WHERE
comm_id IS NULL
AND cal_date = DATE_FORMAT(CURDATE(), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>347</xloc>
<yloc>197</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空议题项目分类表-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>DELETE
FROM
ys_classify
WHERE
comm_id IS NULL
AND cal_date = DATE_FORMAT(CURDATE(), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>301</xloc>
<yloc>405</yloc>
<draw>Y</draw>
</GUI>
</step>
<step_error_handling> <step_error_handling>
</step_error_handling> </step_error_handling>
<slave-step-copy-partition-distribution> <slave-step-copy-partition-distribution>

8
epdc-cloud-property/doc/kettle/screen-yushan/yushan_comm_month.kjb

@ -359,7 +359,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>496</xloc> <xloc>560</xloc>
<yloc>208</yloc> <yloc>208</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
@ -419,7 +419,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>688</xloc> <xloc>752</xloc>
<yloc>208</yloc> <yloc>208</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
@ -457,7 +457,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>496</xloc> <xloc>560</xloc>
<yloc>320</yloc> <yloc>320</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
@ -495,7 +495,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>368</xloc> <xloc>400</xloc>
<yloc>208</yloc> <yloc>208</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>

6
epdc-cloud-property/doc/kettle/screen-yushan/yushan_month.kjb

@ -941,7 +941,7 @@ true;
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
<entry> <entry>
<name>清空新闻表</name> <name>清空相关表</name>
<description/> <description/>
<type>TRANS</type> <type>TRANS</type>
<attributes/> <attributes/>
@ -1207,7 +1207,7 @@ true;
</hop> </hop>
<hop> <hop>
<from>Start</from> <from>Start</from>
<to>清空新闻表</to> <to>清空相关表</to>
<from_nr>0</from_nr> <from_nr>0</from_nr>
<to_nr>0</to_nr> <to_nr>0</to_nr>
<enabled>Y</enabled> <enabled>Y</enabled>
@ -1215,7 +1215,7 @@ true;
<unconditional>Y</unconditional> <unconditional>Y</unconditional>
</hop> </hop>
<hop> <hop>
<from>清空新闻表</from> <from>清空相关表</from>
<to>街道下标</to> <to>街道下标</to>
<from_nr>0</from_nr> <from_nr>0</from_nr>
<to_nr>0</to_nr> <to_nr>0</to_nr>

211
epdc-cloud-property/doc/kettle/screen-yushan/yushan_month_delete_co.ktr

@ -547,7 +547,45 @@
</remotesteps> </remotesteps>
<GUI> <GUI>
<xloc>528</xloc> <xloc>528</xloc>
<yloc>336</yloc> <yloc>208</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空年度信息-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_commu_hot_topic where comm_id = ${commId} AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>528</xloc>
<yloc>320</yloc>
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>
@ -567,7 +605,45 @@
<single_statement>N</single_statement> <single_statement>N</single_statement>
<replace_variables>Y</replace_variables> <replace_variables>Y</replace_variables>
<quoteString>N</quoteString> <quoteString>N</quoteString>
<sql>delete from ys_news where cal_date like YEAR (NOW()) and comm_id = ${commId} AND comm_id IS NOT NULL;;</sql> <sql>delete from ys_news where cal_date like YEAR (NOW()) and comm_id = ${commId};</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>688</xloc>
<yloc>208</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空新闻资讯-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_news where comm_id = ${commId} AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params> <set_params>N</set_params>
<insert_field/> <insert_field/>
<update_field/> <update_field/>
@ -584,8 +660,8 @@
</output> </output>
</remotesteps> </remotesteps>
<GUI> <GUI>
<xloc>672</xloc> <xloc>688</xloc>
<yloc>368</yloc> <yloc>320</yloc>
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>
@ -622,8 +698,46 @@
</output> </output>
</remotesteps> </remotesteps>
<GUI> <GUI>
<xloc>576</xloc> <xloc>864</xloc>
<yloc>464</yloc> <yloc>208</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空物业考核统计表-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_pro_chk_score where comm_id = ${commId} AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>864</xloc>
<yloc>320</yloc>
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>
@ -660,8 +774,89 @@
</output> </output>
</remotesteps> </remotesteps>
<GUI> <GUI>
<xloc>432</xloc> <xloc>368</xloc>
<yloc>432</yloc> <yloc>208</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空议题项目分类表-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_classify where comm_id = ${commId} AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>368</xloc>
<yloc>320</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空议题项目趋势分析-按月统计</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>DELETE
FROM
ys_trend_month
WHERE
comm_id = ${commId}
AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>368</xloc>
<yloc>448</yloc>
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>

173
epdc-cloud-property/doc/kettle/screen-yushan/yushan_month_delete_st.ktr

@ -514,7 +514,7 @@
<order> <order>
</order> </order>
<step> <step>
<name>清空新闻资讯</name> <name>清空新闻表-月</name>
<type>ExecSQL</type> <type>ExecSQL</type>
<description/> <description/>
<distribute>Y</distribute> <distribute>Y</distribute>
@ -529,7 +529,12 @@
<single_statement>N</single_statement> <single_statement>N</single_statement>
<replace_variables>Y</replace_variables> <replace_variables>Y</replace_variables>
<quoteString>N</quoteString> <quoteString>N</quoteString>
<sql>delete from ys_news where cal_date like YEAR (NOW()) AND comm_id IS NULL ;</sql> <sql>DELETE
FROM
ys_news
WHERE
comm_id IS NULL
AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params> <set_params>N</set_params>
<insert_field/> <insert_field/>
<update_field/> <update_field/>
@ -546,11 +551,173 @@
</output> </output>
</remotesteps> </remotesteps>
<GUI> <GUI>
<xloc>560</xloc> <xloc>432</xloc>
<yloc>128</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空新闻资讯-年</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_news where cal_date = YEAR (NOW()) AND comm_id IS NULL ;</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>656</xloc>
<yloc>128</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空议题项目分类表-年</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>delete from ys_classify where comm_id IS NULL and cal_date = YEAR(NOW());</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>656</xloc>
<yloc>256</yloc> <yloc>256</yloc>
<draw>Y</draw> <draw>Y</draw>
</GUI> </GUI>
</step> </step>
<step>
<name>清空议题项目分类表-月</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>DELETE
FROM
ys_classify
WHERE
comm_id IS NULL
AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>432</xloc>
<yloc>256</yloc>
<draw>Y</draw>
</GUI>
</step>
<step>
<name>清空议题项目趋势分析-按月统计</name>
<type>ExecSQL</type>
<description/>
<distribute>Y</distribute>
<custom_distribution/>
<copies>1</copies>
<partitioning>
<method>none</method>
<schema_name/>
</partitioning>
<connection>target_yushan</connection>
<execute_each_row>N</execute_each_row>
<single_statement>N</single_statement>
<replace_variables>Y</replace_variables>
<quoteString>N</quoteString>
<sql>DELETE
FROM
ys_trend_month
WHERE
comm_id IS NULL
AND cal_date = DATE_FORMAT(DATE_SUB(CURDATE(), INTERVAL 1 MONTH), '%Y-%m')</sql>
<set_params>N</set_params>
<insert_field/>
<update_field/>
<delete_field/>
<read_field/>
<arguments>
</arguments>
<attributes/>
<cluster_schema/>
<remotesteps>
<input>
</input>
<output>
</output>
</remotesteps>
<GUI>
<xloc>176</xloc>
<yloc>208</yloc>
<draw>Y</draw>
</GUI>
</step>
<step_error_handling> <step_error_handling>
</step_error_handling> </step_error_handling>
<slave-step-copy-partition-distribution> <slave-step-copy-partition-distribution>

55
epdc-cloud-property/doc/kettle/screen-yushan/yushan_street_month.kjb

@ -321,7 +321,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>384</xloc> <xloc>336</xloc>
<yloc>208</yloc> <yloc>208</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
@ -419,7 +419,7 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>768</xloc> <xloc>816</xloc>
<yloc>208</yloc> <yloc>208</yloc>
<attributes_kjc/> <attributes_kjc/>
</entry> </entry>
@ -457,44 +457,6 @@
<parallel>N</parallel> <parallel>N</parallel>
<draw>Y</draw> <draw>Y</draw>
<nr>0</nr> <nr>0</nr>
<xloc>768</xloc>
<yloc>128</yloc>
<attributes_kjc/>
</entry>
<entry>
<name>写入网格数据表-清空月度数据</name>
<description/>
<type>TRANS</type>
<attributes/>
<specification_method>filename</specification_method>
<trans_object_id/>
<filename>${Internal.Entry.Current.Directory}/screen_totality_street_delete_month.ktr</filename>
<transname/>
<arg_from_previous>N</arg_from_previous>
<params_from_previous>N</params_from_previous>
<exec_per_row>N</exec_per_row>
<clear_rows>N</clear_rows>
<clear_files>N</clear_files>
<set_logfile>N</set_logfile>
<logfile/>
<logext/>
<add_date>N</add_date>
<add_time>N</add_time>
<loglevel>Basic</loglevel>
<cluster>N</cluster>
<slave_server_name/>
<set_append_logfile>N</set_append_logfile>
<wait_until_finished>Y</wait_until_finished>
<follow_abort_remote>N</follow_abort_remote>
<create_parent_folder>N</create_parent_folder>
<logging_remote_work>N</logging_remote_work>
<run_configuration>Pentaho local</run_configuration>
<parameters>
<pass_all_parameters>Y</pass_all_parameters>
</parameters>
<parallel>N</parallel>
<draw>Y</draw>
<nr>0</nr>
<xloc>576</xloc> <xloc>576</xloc>
<yloc>128</yloc> <yloc>128</yloc>
<attributes_kjc/> <attributes_kjc/>
@ -510,15 +472,6 @@
<evaluation>Y</evaluation> <evaluation>Y</evaluation>
<unconditional>N</unconditional> <unconditional>N</unconditional>
</hop> </hop>
<hop>
<from>街道ID,NAME</from>
<to>获取街道信息变量</to>
<from_nr>0</from_nr>
<to_nr>0</to_nr>
<enabled>Y</enabled>
<evaluation>Y</evaluation>
<unconditional>N</unconditional>
</hop>
<hop> <hop>
<from>Start</from> <from>Start</from>
<to>街道ID,NAME</to> <to>街道ID,NAME</to>
@ -530,7 +483,7 @@
</hop> </hop>
<hop> <hop>
<from>街道ID,NAME</from> <from>街道ID,NAME</from>
<to>写入网格数据表-清空月度数据</to> <to>获取街道信息变量</to>
<from_nr>0</from_nr> <from_nr>0</from_nr>
<to_nr>0</to_nr> <to_nr>0</to_nr>
<enabled>Y</enabled> <enabled>Y</enabled>
@ -538,7 +491,7 @@
<unconditional>N</unconditional> <unconditional>N</unconditional>
</hop> </hop>
<hop> <hop>
<from>写入网格数据表-清空月度数据</from> <from>街道ID,NAME</from>
<to>写入表</to> <to>写入表</to>
<from_nr>0</from_nr> <from_nr>0</from_nr>
<to_nr>0</to_nr> <to_nr>0</to_nr>

Loading…
Cancel
Save