Commit dd9769e17e1c78ecc4c12baf61dd2ae9cd924d9b

Authored by 潘钊
2 parents b7ed0509 4534e592

Merge branch 'minhang' of http://222.66.0.204:8090/panzhaov5/bsth_control into minhang

Too many changes to show.

To preserve performance only 17 of 1646 files are displayed.

src/main/java/com/bsth/controller/oil/DlbController.java
... ... @@ -143,12 +143,16 @@ public class DlbController extends BaseController<Dlb, Integer>{
143 143 Map<String, Object> m = new HashMap<String, Object>();
144 144 m.put("rq", y.getRq());
145 145 m.put("gsname",y.getGsname() );
  146 + m.put("fgsname", y.getFgsname());
146 147 m.put("xlname", y.getXlname());
147 148 m.put("nbbm", y.getNbbm());
148 149 m.put("jsy", y.getJsy());
  150 + m.put("name", y.getName());
149 151 m.put("cdl", y.getCdl());
150 152 m.put("czcd", y.getCzcd()+"%");
151 153 m.put("jzcd", y.getJzcd()+"%");
  154 + m.put("czlc", y.getCzlc());
  155 + m.put("jzlc", y.getJzlc());
152 156 m.put("hd", y.getHd());
153 157 String shyy ="无";
154 158 if(y.getShyy()!=null){
... ... @@ -162,9 +166,11 @@ public class DlbController extends BaseController&lt;Dlb, Integer&gt;{
162 166 else if(shyy.equals("8")){shyy="车间(小修)";}
163 167 else{shyy ="无";}
164 168 }
  169 + m.put("ns", y.getNs());
165 170 m.put("shyy", shyy);
166 171 m.put("sh", y.getSh());
167 172 m.put("zlc", y.getZlc());
  173 + m.put("rdlx", "");
168 174 m.put("bglyh", y.getBglyh());
169 175 resList.add(m);
170 176 }
... ...
src/main/java/com/bsth/controller/schedule/core/SchedulePlanInfoController.java
1   -package com.bsth.controller.schedule.core;
2   -
3   -import com.bsth.common.ResponseCode;
4   -import com.bsth.controller.schedule.BController;
5   -import com.bsth.entity.schedule.SchedulePlanInfo;
6   -import com.bsth.service.schedule.SchedulePlanInfoService;
7   -import org.springframework.beans.factory.annotation.Autowired;
8   -import org.springframework.web.bind.annotation.*;
9   -
10   -import java.util.Date;
11   -import java.util.HashMap;
12   -import java.util.List;
13   -import java.util.Map;
14   -
15   -/**
16   - * Created by xu on 17/5/1.
17   - */
18   -@RestController
19   -@RequestMapping("spic")
20   -public class SchedulePlanInfoController extends BController<SchedulePlanInfo, Long> {
21   - @Autowired
22   - private SchedulePlanInfoService schedulePlanInfoService;
23   -
24   - @RequestMapping(value = "/groupextinfos/{xlid}/{date}", method = RequestMethod.GET)
25   - public Map<String, Object> findGroupInfoExt(
26   - @PathVariable(value = "xlid") Integer xlid,
27   - @PathVariable(value = "date") Date scheduleDate) {
28   - Map<String, Object> resultMap = new HashMap<>();
29   - try {
30   - resultMap.put("status", ResponseCode.SUCCESS);
31   - resultMap.put("data", schedulePlanInfoService.findSchedulePlanGroupInfo(xlid, scheduleDate));
32   -
33   - } catch (Exception exp) {
34   - exp.printStackTrace();
35   - resultMap.put("status", ResponseCode.ERROR);
36   - resultMap.put("msg", exp.getLocalizedMessage());
37   - }
38   -
39   - return resultMap;
40   - }
41   -
42   -
43   -// ------------------------ 老版本 ----------------------//
44   - @RequestMapping(value = "/groupinfos/{xlid}/{date}", method = RequestMethod.GET)
45   - public List<SchedulePlanInfoService.GroupInfo> findGroupInfo(
46   - @PathVariable(value = "xlid") Integer xlid,
47   - @PathVariable(value = "date") Date scheduleDate) {
48   - return schedulePlanInfoService.findGroupInfo(xlid, scheduleDate);
49   - }
50   -
51   - @RequestMapping(value = "/groupinfos/update", method = RequestMethod.POST)
52   - public Map<String, Object> updateGroupInfo(@RequestBody SchedulePlanInfoService.GroupInfoUpdate groupInfoUpdate) {
53   - Map<String, Object> resultMap = new HashMap<>();
54   - try {
55   - schedulePlanInfoService.updateGroupInfo(groupInfoUpdate);
56   -
57   - resultMap.put("status", ResponseCode.SUCCESS);
58   - resultMap.put("msg", "更新成功");
59   - } catch (Exception exp) {
60   - exp.printStackTrace();
61   - resultMap.put("status", ResponseCode.ERROR);
62   - resultMap.put("msg", exp.getLocalizedMessage());
63   - }
64   -
65   - return resultMap;
66   - }
67   -}
  1 +package com.bsth.controller.schedule.core;
  2 +
  3 +import com.bsth.common.ResponseCode;
  4 +import com.bsth.controller.schedule.BController;
  5 +import com.bsth.entity.schedule.SchedulePlanInfo;
  6 +import com.bsth.service.schedule.SchedulePlanInfoService;
  7 +import org.springframework.beans.factory.annotation.Autowired;
  8 +import org.springframework.web.bind.annotation.*;
  9 +
  10 +import java.util.Date;
  11 +import java.util.HashMap;
  12 +import java.util.List;
  13 +import java.util.Map;
  14 +
  15 +/**
  16 + * Created by xu on 17/5/1.
  17 + */
  18 +@RestController
  19 +@RequestMapping("spic")
  20 +public class SchedulePlanInfoController extends BController<SchedulePlanInfo, Long> {
  21 + @Autowired
  22 + private SchedulePlanInfoService schedulePlanInfoService;
  23 +
  24 + @RequestMapping(value = "/groupextinfos/{xlid}/{date}", method = RequestMethod.GET)
  25 + public Map<String, Object> findGroupInfoExt(
  26 + @PathVariable(value = "xlid") Integer xlid,
  27 + @PathVariable(value = "date") Date scheduleDate) {
  28 + Map<String, Object> resultMap = new HashMap<>();
  29 + try {
  30 + resultMap.put("status", ResponseCode.SUCCESS);
  31 + resultMap.put("data", schedulePlanInfoService.findSchedulePlanGroupInfo(xlid, scheduleDate));
  32 +
  33 + } catch (Exception exp) {
  34 + exp.printStackTrace();
  35 + resultMap.put("status", ResponseCode.ERROR);
  36 + resultMap.put("msg", exp.getLocalizedMessage());
  37 + }
  38 +
  39 + return resultMap;
  40 + }
  41 +
  42 +
  43 +// ------------------------ 老版本 ----------------------//
  44 + @RequestMapping(value = "/groupinfos/{xlid}/{date}", method = RequestMethod.GET)
  45 + public List<SchedulePlanInfoService.GroupInfo> findGroupInfo(
  46 + @PathVariable(value = "xlid") Integer xlid,
  47 + @PathVariable(value = "date") Date scheduleDate) {
  48 + return schedulePlanInfoService.findGroupInfo(xlid, scheduleDate);
  49 + }
  50 +
  51 + @RequestMapping(value = "/groupinfos/update", method = RequestMethod.POST)
  52 + public Map<String, Object> updateGroupInfo(@RequestBody SchedulePlanInfoService.GroupInfoUpdate groupInfoUpdate) {
  53 + Map<String, Object> resultMap = new HashMap<>();
  54 + try {
  55 + schedulePlanInfoService.updateGroupInfo(groupInfoUpdate);
  56 +
  57 + resultMap.put("status", ResponseCode.SUCCESS);
  58 + resultMap.put("msg", "更新成功");
  59 + } catch (Exception exp) {
  60 + exp.printStackTrace();
  61 + resultMap.put("status", ResponseCode.ERROR);
  62 + resultMap.put("msg", exp.getLocalizedMessage());
  63 + }
  64 +
  65 + return resultMap;
  66 + }
  67 +}
... ...
src/main/java/com/bsth/data/BasicData.java
... ... @@ -39,6 +39,9 @@ public class BasicData implements CommandLineRunner {
39 39  
40 40 //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:公司代码)
41 41 public static Map<String, String> nbbm2CompanyCodeMap;
  42 +
  43 + //车辆自编号和公司代码对照 (K: 车辆自编号 ,V:牌照号)
  44 + public static Map<String, String> nbbmCompanyPlateMap;
42 45  
43 46 //站点编码和名称对照,包括停车场 (K: lineCode_updown_stationCode ,V:站点名称)
44 47 public static Map<String, String> stationCode2NameMap;
... ... @@ -195,16 +198,22 @@ public class BasicData implements CommandLineRunner {
195 198 BiMap<String, String> deviceId2Nbbm = HashBiMap.create();
196 199 //车辆和公司代码对照
197 200 Map<String, String> nbbm2CompanyCode = new HashMap<>();
  201 +
  202 + //车辆自编号和拍照号对照
  203 + Map<String, String> nbbmCompanyPlate = new HashMap<>();
  204 +
198 205 Iterator<Cars> carIterator = carsRepository.findAll().iterator();
199 206 Cars car;
200 207 while (carIterator.hasNext()) {
201 208 car = carIterator.next();
202 209 deviceId2Nbbm.put(car.getEquipmentCode(), car.getInsideCode());
203 210 nbbm2CompanyCode.put(car.getInsideCode(), car.getBusinessCode());
  211 + nbbmCompanyPlate.put(car.getInsideCode(), car.getCarPlate());
204 212 }
205 213  
206 214 deviceId2NbbmMap = deviceId2Nbbm;
207 215 nbbm2CompanyCodeMap = nbbm2CompanyCode;
  216 + nbbmCompanyPlateMap =nbbmCompanyPlate;
208 217 }
209 218  
210 219 /**
... ...
src/main/java/com/bsth/entity/oil/Dlb.java
... ... @@ -57,7 +57,8 @@ public class Dlb {
57 57 private int nylx;
58 58 //进场顺序(根据最先出场和最后进场来关联车辆的存电量)
59 59 private int jcsx;
60   -
  60 + @Transient
  61 + private String name;
61 62 @Transient
62 63 private String bglyh;
63 64  
... ... @@ -67,6 +68,9 @@ public class Dlb {
67 68 @Transient
68 69 private String gsname;
69 70  
  71 + @Transient
  72 + private String fgsname;
  73 +
70 74  
71 75  
72 76  
... ... @@ -354,6 +358,20 @@ public class Dlb {
354 358 public void setGsname(String gsname) {
355 359 this.gsname = gsname;
356 360 }
  361 +
  362 + public String getName() {
  363 + return BasicData.allPerson.get(this.ssgsdm+"-"+this.jsy);
  364 + }
  365 +
  366 + public void setName(String name) {
  367 + this.name = name;
  368 + }
357 369  
358   -
  370 + public String getFgsname() {
  371 + return BasicData.businessFgsCodeNameMap.get(this.fgsdm+"_"+this.ssgsdm);
  372 + }
  373 +
  374 + public void setFgsname(String fgsname) {
  375 + this.fgsname = fgsname;
  376 + }
359 377 }
... ...
src/main/java/com/bsth/entity/oil/Ylb.java
... ... @@ -313,7 +313,7 @@ public class Ylb {
313 313 }
314 314  
315 315 public String getName() {
316   - return BasicData.allPerson.get(this.jsy);
  316 + return BasicData.allPerson.get(this.ssgsdm+"-"+this.jsy);
317 317 }
318 318  
319 319 public void setName(String name) {
... ...
src/main/java/com/bsth/entity/schedule/SchedulePlan.java
... ... @@ -2,6 +2,7 @@ package com.bsth.entity.schedule;
2 2  
3 3 import com.bsth.entity.Line;
4 4 import com.fasterxml.jackson.annotation.JsonIgnore;
  5 +import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
5 6 import org.apache.commons.lang3.BooleanUtils;
6 7  
7 8 import javax.persistence.*;
... ... @@ -21,6 +22,7 @@ import java.util.List;
21 22 @NamedAttributeNode("xl"),
22 23 })
23 24 })
  25 +@JsonIgnoreProperties(value={"hibernateLazyInitializer","handler","fieldHandler"})
24 26 public class SchedulePlan extends BEntity {
25 27  
26 28 /** 主键Id */
... ...
src/main/java/com/bsth/entity/schedule/SchedulePlanInfo.java
1 1 package com.bsth.entity.schedule;
2 2  
3 3 import com.bsth.entity.Line;
4   -import com.bsth.entity.sys.SysUser;
5 4 import com.bsth.service.schedule.rules.rerun.RerunRule_input;
6 5 import com.bsth.service.schedule.rules.shiftloop.ScheduleResult_output;
7 6 import org.apache.commons.lang3.StringUtils;
... ... @@ -20,7 +19,7 @@ import java.util.List;
20 19 */
21 20 @Entity
22 21 @Table(name = "bsth_c_s_sp_info")
23   -public class SchedulePlanInfo {
  22 +public class SchedulePlanInfo extends BEntity {
24 23  
25 24 /** 主键Id */
26 25 @Id
... ... @@ -138,20 +137,6 @@ public class SchedulePlanInfo {
138 137 private String remark;
139 138  
140 139  
141   - /** 创建人 */
142   - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)
143   - private SysUser createBy;
144   - /** 修改人 */
145   - @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)
146   - private SysUser updateBy;
147   - /** 创建日期 */
148   - @Column(updatable = false, name = "create_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP")
149   - private Date createDate;
150   - /** 修改日期 */
151   - @Column(name = "update_date", columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP")
152   - private Date updateDate;
153   -
154   -
155 140 // @ManyToOne(cascade = CascadeType.PERSIST, fetch = FetchType.LAZY)
156 141 // @JoinTable(
157 142 // name = "bsth_c_s_sp_r_info",
... ... @@ -468,10 +453,10 @@ public class SchedulePlanInfo {
468 453 if (this.ttInfoName != null) ps.setString(34, this.ttInfoName); else ps.setNull(34, Types.VARCHAR);
469 454 if (this.remark != null) ps.setString(35, this.remark); else ps.setNull(35, Types.VARCHAR);
470 455 if (this.schedulePlan != null) ps.setLong(36, this.schedulePlan.getId()); else ps.setNull(36, Types.BIGINT);
471   - if (this.createBy != null) ps.setInt(37, this.createBy.getId()); else ps.setNull(37, Types.INTEGER);
472   - if (this.updateBy != null) ps.setInt(38, this.updateBy.getId()); else ps.setNull(38, Types.INTEGER);
473   - if (this.createDate != null) ps.setTimestamp(39, new java.sql.Timestamp(this.createDate.getTime())); else ps.setNull(39, Types.TIMESTAMP);
474   - if (this.updateDate != null) ps.setTimestamp(40, new java.sql.Timestamp(this.updateDate.getTime())); else ps.setNull(40, Types.TIMESTAMP);
  456 + if (this.getCreateBy() != null) ps.setInt(37, this.getCreateBy().getId()); else ps.setNull(37, Types.INTEGER);
  457 + if (this.getUpdateBy() != null) ps.setInt(38, this.getUpdateBy().getId()); else ps.setNull(38, Types.INTEGER);
  458 + if (this.getCreateDate() != null) ps.setTimestamp(39, new java.sql.Timestamp(this.getCreateDate().getTime())); else ps.setNull(39, Types.TIMESTAMP);
  459 + if (this.getUpdateDate() != null) ps.setTimestamp(40, new java.sql.Timestamp(this.getUpdateDate().getTime())); else ps.setNull(40, Types.TIMESTAMP);
475 460 }
476 461  
477 462 public Long getId() {
... ... @@ -762,38 +747,6 @@ public class SchedulePlanInfo {
762 747 this.remark = remark;
763 748 }
764 749  
765   - public SysUser getCreateBy() {
766   - return createBy;
767   - }
768   -
769   - public void setCreateBy(SysUser createBy) {
770   - this.createBy = createBy;
771   - }
772   -
773   - public SysUser getUpdateBy() {
774   - return updateBy;
775   - }
776   -
777   - public void setUpdateBy(SysUser updateBy) {
778   - this.updateBy = updateBy;
779   - }
780   -
781   - public Date getCreateDate() {
782   - return createDate;
783   - }
784   -
785   - public void setCreateDate(Date createDate) {
786   - this.createDate = createDate;
787   - }
788   -
789   - public Date getUpdateDate() {
790   - return updateDate;
791   - }
792   -
793   - public void setUpdateDate(Date updateDate) {
794   - this.updateDate = updateDate;
795   - }
796   -
797 750 public SchedulePlan getSchedulePlan() {
798 751 return schedulePlan;
799 752 }
... ...
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
... ... @@ -22,6 +22,9 @@ public interface ScheduleRealInfoRepository extends BaseRepository&lt;ScheduleRealI
22 22 List<ScheduleRealInfo> findByLines(List<String> lines);
23 23  
24 24  
  25 + @Query(value="select s from ScheduleRealInfo s where s.id = ?1 ")
  26 + ScheduleRealInfo scheduleById(Long id);
  27 +
25 28 @Query(value="select s from ScheduleRealInfo s where s.xlBm = ?1 and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 and bc_type not in ('in','out') order by (lpName+1),clZbh,realExecDate,dfsj")
26 29 List<ScheduleRealInfo> scheduleDailyQp(String line,String date);
27 30  
... ...
src/main/java/com/bsth/service/forms/impl/FormsServiceImpl.java
... ... @@ -735,6 +735,7 @@ public class FormsServiceImpl implements FormsService {
735 735 @Override
736 736 public List<Turnoutrate> turnoutrate(Map<String, Object> map) {
737 737  
  738 + List<Turnoutrate> resList = new ArrayList<Turnoutrate>();
738 739 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
739 740 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日");
740 741 Date d = null;
... ... @@ -752,22 +753,24 @@ public class FormsServiceImpl implements FormsService {
752 753 rq = rq2 + "-" + rq3;
753 754  
754 755 String sql = " select b.xlgs, a.gs_bm,a.gs_name, a.fgs_bm,a.fgs_name , a.xl_bm,b.sbc,b.sxl,b.scl,a.jbc ,a.jxl ,a.jcl,a.gslsbm,a.fgsbm,b.warrant_car,a.bc_type from "
755   - + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
756   - + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"+ map.get("startDate").toString() + "' "
  756 + + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
  757 + + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"+ map.get("startDate").toString() + "' "
757 758 + " and '" + map.get("endDate").toString() + "' and xl_bm='"+ map.get("line").toString() + "' "
758 759 + " AND gs_bm is not null "
759 760 + " AND bc_type NOT IN ('in', 'out')"
760 761 + " and gs_bm='"+ map.get("gsdmTurn").toString() + "'"
761 762 + " and fgs_bm='"+ map.get("fgsdmTurn").toString() + "'"
762   - + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type ) a left JOIN ("
  763 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type "
  764 + + " ) a left JOIN ("
763 765 + " SELECT COUNT(*) as xlgs,b.gs_bm,b.fgs_bm,b.xl_bm,b.gs_name,b.fgs_name, b.sbc,b.sxl ,b.scl,t.warrant_car "
764   - + " from bsth_c_line t RIGHT JOIN (select gs_bm,fgs_bm,xl_bm,gs_name,fgs_name, count(*) as sbc,COUNT(DISTINCT xl_bm) as sxl ,COUNT(DISTINCT cl_zbh) as scl,bc_type from bsth_c_s_sp_info_real "
  766 + + " from bsth_c_line t RIGHT JOIN (select gs_bm,fgs_bm,xl_bm,gs_name,fgs_name, count(*) as sbc,COUNT(DISTINCT xl_bm) as sxl ,COUNT(DISTINCT cl_zbh) as scl,bc_type from bsth_c_s_sp_info_real "
765 767 + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '" + map.get("startDate").toString() + "' and '"
766 768 + map.get("endDate").toString() + "' and xl_bm='" + map.get("line").toString()
767 769 + "' AND gs_bm is not null "
768 770 + " AND bc_type NOT IN ('in', 'out')"
769   - + "GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
770   - + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
  771 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type "
  772 + + " ) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
  773 + + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
771 774 List<Turnoutrate> list = jdbcTemplate.query(sql, new RowMapper<Turnoutrate>() {
772 775  
773 776 @Override
... ... @@ -782,6 +785,8 @@ public class FormsServiceImpl implements FormsService {
782 785 String result1 = numberFormat.format((float) scl / (float) jcl * 100);
783 786 String result2 = numberFormat.format((float) sbc / (float) jbc * 100);
784 787 tu.setRq(rq);
  788 + if(arg0.getString("gs_name") == null || arg0.getString("gs_name").trim().length() == 0)
  789 + return tu;
785 790 tu.setGs(arg0.getString("gs_name").toString());
786 791 tu.setZhgs(arg0.getString("fgs_name").toString());
787 792 // tu.setXl(arg0.getString("xlgs")!=null&&arg0.getString("xlgs").trim().length()!=0?arg0.getString("xlgs"):"0");
... ... @@ -801,14 +806,20 @@ public class FormsServiceImpl implements FormsService {
801 806 }
802 807  
803 808 });
  809 +
  810 + for(Turnoutrate t : list){
  811 + if(t.getGs() != null && t.getGs().trim().length() != 0)
  812 + resList.add(t);
  813 + }
804 814  
805   - return list;
  815 + return resList;
806 816 }
807 817  
808 818  
809 819 //班次执行率统计表
810 820 @Override
811 821 public List<Executionrate> executionrate(Map<String, Object> map) {
  822 + List<Executionrate> resList = new ArrayList<Executionrate>();
812 823 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
813 824 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日");
814 825 Date d = null;
... ... @@ -826,20 +837,22 @@ public class FormsServiceImpl implements FormsService {
826 837 rq = rq2 + "-" + rq3;
827 838  
828 839 String sql = " select b.xlgs, a.gs_bm,a.gs_name, a.fgs_bm,a.fgs_name , a.xl_bm,b.xl_name,b.sbc,b.sxl,b.scl,a.jbc ,a.jxl ,a.jcl,a.gslsbm,a.fgsbm,a.bc_type from "
829   - + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
830   - + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"
  840 + + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
  841 + + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"
831 842 + map.get("startDate").toString() + "' and '" + map.get("endDate").toString() + "' and xl_bm='"
832 843 + map.get("line").toString() + "' AND gs_bm is not null AND bc_type NOT IN ('in', 'out')"
833 844 + " and gs_bm='"+ map.get("gsdmEcecut").toString() + "'"
834 845 + " and fgs_bm='"+ map.get("fgsdmEcecut").toString() + "'"
835   - + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type ) a left JOIN ("
  846 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type "
  847 + + " ) a left JOIN ("
836 848 + "SELECT COUNT(*) as xlgs,b.gs_bm,b.fgs_bm,b.xl_bm,b.xl_name,b.gs_name,b.fgs_name, b.sbc,b.sxl ,b.scl "
837 849 + "from bsth_c_line t RIGHT JOIN (select gs_bm,fgs_bm,xl_bm,xl_name,gs_name,fgs_name, count(*) as sbc,COUNT(DISTINCT xl_bm) as sxl ,COUNT(DISTINCT cl_zbh) as scl,bc_type from bsth_c_s_sp_info_real "
838 850 + "where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '" + map.get("startDate").toString() + "' and '"
839 851 + map.get("endDate").toString() + "' and xl_bm='" + map.get("line").toString()
840 852 + "' AND gs_bm is not null AND bc_type NOT IN ('in', 'out') "
841   - + "GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
842   - + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
  853 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type"
  854 + + " ) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
  855 + + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
843 856 List<Executionrate> list = jdbcTemplate.query(sql, new RowMapper<Executionrate>() {
844 857  
845 858 @Override
... ... @@ -854,6 +867,8 @@ public class FormsServiceImpl implements FormsService {
854 867 String result1 = numberFormat.format((float) scl / (float) jcl * 100);
855 868 String result2 = numberFormat.format((float) sbc / (float) jbc * 100);
856 869 tu.setRq(rq);
  870 + if(arg0.getString("gs_name") == null || arg0.getString("gs_name").trim().length() == 0)
  871 + return tu;
857 872 tu.setGs(arg0.getString("gs_name").toString());
858 873 tu.setZhgs(arg0.getString("fgs_name").toString());
859 874 // tu.setXl(arg0.getString("xlgs")!=null&&arg0.getString("xlgs").trim().length()!=0?arg0.getString("xlgs"):"0");//这个是根据公司判断线路有几条
... ... @@ -874,13 +889,19 @@ public class FormsServiceImpl implements FormsService {
874 889 }
875 890  
876 891 });
  892 +
  893 + for(Executionrate e : list){
  894 + if(e.getGs() != null && e.getGs().trim().length() != 0)
  895 + resList.add(e);
  896 + }
877 897  
878   - return list;
  898 + return resList;
879 899 }
880 900  
881 901 // 营运线路名称统计表
882 902 @Override
883 903 public List<Allline> allline(Map<String, Object> map) {
  904 + List<Allline> resList = new ArrayList<Allline>();
884 905 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
885 906 SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy年MM月dd日");
886 907 Date d = null;
... ... @@ -900,13 +921,14 @@ public class FormsServiceImpl implements FormsService {
900 921 rq = rq2 + "-" + rq3;
901 922  
902 923 String sql = " select b.xlgs, a.gs_bm,a.gs_name, a.fgs_bm,a.fgs_name , a.xl_bm,b.xl_name,b.sbc,b.sxl,b.scl,a.jbc ,a.jxl ,a.jcl,a.gslsbm,a.fgsbm,a.bc_type from "
903   - + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
904   - + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"
  924 + + " (select count(DISTINCT gs_bm) gslsbm, gs_bm, count(DISTINCT fgs_bm) fgsbm,fgs_bm,gs_name,fgs_name ,xl_bm, count(*) as jbc,COUNT(DISTINCT xl_bm) as jxl ,COUNT(DISTINCT cl_zbh) as jcl,bc_type"
  925 + + " from bsth_c_s_sp_info" + " where DATE_FORMAT(schedule_date,'%Y-%m-%d') BETWEEN '"
905 926 + map.get("startDate").toString() + "' and '" + map.get("endDate").toString() + "' and xl_bm='"
906 927 + map.get("line").toString() + "' AND gs_bm is not null AND bc_type NOT IN ('in', 'out') "
907 928 + " and gs_bm='"+ map.get("gsdmAllline").toString() + "'"
908 929 + " and fgs_bm='"+ map.get("fgsdmAllline").toString() + "'"
909   - + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type ) a left JOIN ("
  930 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type "
  931 + + " ) a left JOIN ("
910 932 + "SELECT COUNT(*"
911 933 + ") as xlgs,b.gs_bm,b.fgs_bm,b.xl_bm,b."
912 934 + "xl_name,b.gs_name,b.fgs_name, b.sbc,b.sxl ,b.scl "
... ... @@ -915,9 +937,9 @@ public class FormsServiceImpl implements FormsService {
915 937 + map.get("endDate").toString() + "' and xl_bm='" + map.get
916 938 ("line").toString()
917 939 + "' AND gs_bm is not null AND bc_type NOT IN ('in', 'out')"
918   - + "GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
919   - + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
920   - System.out.println(sql);
  940 +// + " GROUP BY gs_bm,fgs_bm,xl_bm,gs_name,fgs_name,bc_type"
  941 + + " ) b ON t.company=b.gs_bm and t.branche_company = b.fgs_bm) b on "
  942 + + " a.gs_bm=b.gs_bm and a.fgs_bm=b.fgs_bm and a.xl_bm=b.xl_bm ";
921 943 List<Allline> list = jdbcTemplate.query(sql, new RowMapper<Allline>() {
922 944  
923 945 @Override
... ... @@ -932,6 +954,8 @@ public class FormsServiceImpl implements FormsService {
932 954 String result1 = numberFormat.format((float) scl / (float) jcl * 100);
933 955 String result2 = numberFormat.format((float) sbc / (float) jbc * 100);
934 956 tu.setRq(rq);
  957 + if(arg0.getString("gs_name") == null || arg0.getString("gs_name").trim().length() == 0)
  958 + return tu;
935 959 tu.setGs(arg0.getString("gs_name").toString());
936 960 tu.setZhgs(arg0.getString("fgs_name").toString());
937 961 tu.setXl(arg0.getString("xl_name"));
... ... @@ -951,7 +975,12 @@ public class FormsServiceImpl implements FormsService {
951 975 }
952 976 });
953 977  
954   - return list;
  978 + for(Allline a : list){
  979 + if(a.getGs() != null && a.getGs().trim().length() != 0)
  980 + resList.add(a);
  981 + }
  982 +
  983 + return resList;
955 984 }
956 985  
957 986 @Override
... ...
src/main/java/com/bsth/service/impl/BusIntervalServiceImpl.java
... ... @@ -145,8 +145,8 @@ public class BusIntervalServiceImpl implements BusIntervalService {
145 145 schedule.setZdsjActual(zdsjA/60 + ":" + zdsjA%60);
146 146 schedule.setZdsjActualTime(zdsjA);
147 147 }
148   - schedule.setFcsj(fcsj/60 + ":" + fcsj%60);
149   - schedule.setZdsj(zdsj/60 + ":" + zdsj%60);
  148 + schedule.setFcsj((fcsj/60<10?"0"+fcsj/60:fcsj/60) + ":" + (fcsj%60<10?"0"+fcsj%60:fcsj%60));
  149 + schedule.setZdsj((zdsj/60<10?"0"+zdsj/60:zdsj/60) + ":" + (zdsj%60<10?"0"+zdsj%60:zdsj%60));
150 150 schedule.setFcsjT(fcsj);
151 151 schedule.setZdsjT(zdsj);
152 152 return schedule;
... ... @@ -237,7 +237,6 @@ public class BusIntervalServiceImpl implements BusIntervalService {
237 237  
238 238 String sql = "select start_station_name, end_station_name from bsth_c_line where line_code = '"+line+"'";
239 239  
240   - System.out.println(sql);
241 240 list = jdbcTemplate.query(sql,
242 241 new RowMapper<Map<String, Object>>(){
243 242 @Override
... ...
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
... ... @@ -802,37 +802,38 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
802 802 DecimalFormat format = new DecimalFormat("0.00");
803 803 // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName);
804 804 // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName);
805   -
806   - Map<String, Object> map;
  805 + //计算里程和班次数,并放入Map里
  806 + Map<String, Object> map = this.MapById(scheduleRealInfos.get(0).getId());
  807 +// map=new HashMap<String,Object>();
  808 + Map<String, Object> maps;
807 809 for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) {
808   - map = new HashMap<String, Object>();
  810 + maps = new HashMap<String, Object>();
809 811 try {
810 812 scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName());
811 813 scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName());
812   - map = rru.getMapValue(scheduleRealInfo);
  814 + maps = rru.getMapValue(scheduleRealInfo);
813 815 String zdsj = scheduleRealInfo.getZdsj();
814 816 String zdsjActual = scheduleRealInfo.getZdsjActual();
815 817 if (zdsj != null && zdsjActual != null &&
816 818 !zdsj.equals(zdsjActual)) {
817 819 if (zdsj.compareTo(zdsjActual) > 0) {
818   - map.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual));
819   - map.put("slow", "");
  820 + maps.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual));
  821 + maps.put("slow", "");
820 822 } else {
821   - map.put("fast", "");
822   - map.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual));
  823 + maps.put("fast", "");
  824 + maps.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual));
823 825 }
824 826 } else {
825   - map.put("fast", "");
826   - map.put("slow", "");
  827 + maps.put("fast", "");
  828 + maps.put("slow", "");
827 829 }
828   - listMap.add(map);
  830 + listMap.add(maps);
829 831 } catch (Exception e) {
830 832 e.printStackTrace();
831 833 }
832 834 }
833 835  
834   - //计算里程和班次数,并放入Map里
835   - map = new HashMap<String, Object>();
  836 +
836 837 map.put("jhlc",Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos)));
837 838 map.put("remMileage",culateMieageService.culateLbgl(lists));
838 839 map.put("addMileage", culateMieageService.culateLjgl(lists));
... ... @@ -850,7 +851,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
850 851 String path = this.getClass().getResource("/").getPath() + "static/pages/forms/";
851 852  
852 853 list.add(listMap.iterator());
853   - ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0), map}, path + "mould/waybill_minhang.xls",
  854 + ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0),map}, path + "mould/waybill_minhang.xls",
854 855 path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls");
855 856 return scheduleRealInfos;
856 857 }
... ... @@ -3768,7 +3769,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3768 3769 // TODO Auto-generated method stub
3769 3770 Map<String, Object> map = new HashMap<String, Object>();
3770 3771 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
3771   - ScheduleRealInfo s = scheduleRealInfoRepository.findOne(id);
  3772 + ScheduleRealInfo s = scheduleRealInfoRepository.scheduleById(id);
3772 3773 String xlbm = s.getXlBm();
3773 3774 String fcrq = s.getScheduleDateStr();
3774 3775 List<Ylxxb> listYlxxb = ylxxbRepository.queryListYlxxb(s.getClZbh(), fcrq);
... ... @@ -3794,20 +3795,28 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3794 3795 map.put("jcyl", jcyl);
3795 3796 map.put("xlName", s.getXlName());
3796 3797 map.put("clZbh", s.getClZbh());
  3798 + map.put("plate", BasicData.nbbmCompanyPlateMap.get(s.getClZbh()));
3797 3799 map.put("fcsjActual", s.getFcsjActual());
3798 3800 map.put("zdzName", s.getZdzName());
3799 3801 map.put("scheduleDate", s.getScheduleDateStr());
3800 3802 map.put("lpName", s.getLpName());
3801 3803 String zdp = "", zwdp = "", wdp = "";
3802 3804 String zdpT = "", zwdpT = "", wdpT = "";
3803   -
  3805 + String dbdp="";
3804 3806 List<DutyEmployee> list = dutyEmployeeService.getDutyEmployee(xlbm, fcrq + "00:01", fcrq + "23:59");
3805 3807 try {
3806 3808 Long fcsj1 = sdf.parse(fcrq + " 00:01").getTime();
3807 3809 Long fcsj2 = sdf.parse(fcrq + " 11:00").getTime();
3808 3810 Long fcsj3 = sdf.parse(fcrq + " 23:59").getTime();
3809 3811 for (int i = 0; i < list.size(); i++) {
3810   - DutyEmployee t = list.get(i);
  3812 + DutyEmployee t = list.get(i);
  3813 + if(!(dbdp.indexOf(",")>0)){
  3814 + if(!(dbdp.length()>0)){
  3815 + dbdp =t.getuName();
  3816 + }else{
  3817 + dbdp +=","+t.getuName();
  3818 + }
  3819 + }
3811 3820 Long ts = t.getTs();
3812 3821 if (ts > fcsj1 && ts < fcsj2) {
3813 3822 if (zdp.indexOf(t.getuName()) == -1) {
... ... @@ -3843,6 +3852,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3843 3852 map.put("zdpT", zdpT);
3844 3853 map.put("zwdpT", zwdpT);
3845 3854 map.put("wdpT", wdpT);
  3855 + map.put("dbdp", dbdp);
3846 3856 return map;
3847 3857 }
3848 3858  
... ... @@ -4140,37 +4150,36 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4140 4150 DecimalFormat format = new DecimalFormat("0.00");
4141 4151 // int cjbc = scheduleRealInfoRepository.findCjbc(jName, clZbh, lpName);
4142 4152 // int ljbc = scheduleRealInfoRepository.findLjbc(jName, clZbh, lpName);
4143   -
4144   - Map<String, Object> map;
  4153 + Map<String, Object> map = this.MapById(scheduleRealInfos.get(0).getId());
  4154 + Map<String, Object> maps;
4145 4155 for (ScheduleRealInfo scheduleRealInfo : scheduleRealInfos) {
4146   - map = new HashMap<String, Object>();
  4156 + maps = new HashMap<String, Object>();
4147 4157 try {
4148 4158 scheduleRealInfo.setjName(scheduleRealInfo.getjGh() + scheduleRealInfo.getjName());
4149 4159 scheduleRealInfo.setsName(scheduleRealInfo.getsGh() + scheduleRealInfo.getsName());
4150   - map = rru.getMapValue(scheduleRealInfo);
  4160 + maps = rru.getMapValue(scheduleRealInfo);
4151 4161 String zdsj = scheduleRealInfo.getZdsj();
4152 4162 String zdsjActual = scheduleRealInfo.getZdsjActual();
4153 4163 if (zdsj != null && zdsjActual != null &&
4154 4164 !zdsj.equals(zdsjActual)) {
4155 4165 if (zdsj.compareTo(zdsjActual) > 0) {
4156   - map.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual));
4157   - map.put("slow", "");
  4166 + maps.put("fast", TimeUtils.getTimeDifference(zdsj, zdsjActual));
  4167 + maps.put("slow", "");
4158 4168 } else {
4159   - map.put("fast", "");
4160   - map.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual));
  4169 + maps.put("fast", "");
  4170 + maps.put("slow", TimeUtils.getTimeDifference(zdsj, zdsjActual));
4161 4171 }
4162 4172 } else {
4163   - map.put("fast", "");
4164   - map.put("slow", "");
  4173 + maps.put("fast", "");
  4174 + maps.put("slow", "");
4165 4175 }
4166   - listMap.add(map);
  4176 + listMap.add(maps);
4167 4177 } catch (Exception e) {
4168 4178 e.printStackTrace();
4169 4179 }
4170 4180 }
4171 4181  
4172 4182 //计算里程和班次数,并放入Map里
4173   - map = new HashMap<String, Object>();
4174 4183 map.put("jhlc", Arith.add(culateMieageService.culateJhgl(scheduleRealInfos),culateMieageService.culateJhJccgl(scheduleRealInfos)));
4175 4184 map.put("remMileage",culateMieageService.culateLbgl(lists));
4176 4185 map.put("addMileage", culateMieageService.culateLjgl(lists));
... ... @@ -4188,7 +4197,7 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4188 4197 String path = this.getClass().getResource("/").getPath() + "static/pages/forms/";
4189 4198  
4190 4199 list.add(listMap.iterator());
4191   - ee.excelReplace(list, new Object[]{scheduleRealInfos.get(0), map}, path + "mould/waybill_minhang.xls",
  4200 + ee.excelReplace(list, new Object[]{map}, path + "mould/waybill_minhang.xls",
4192 4201 path + "export/" + date + "-" + jName + "-" + clZbh + "-" + lpName + "-行车路单.xls");
4193 4202 return scheduleRealInfos;
4194 4203 }
... ... @@ -4220,9 +4229,10 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
4220 4229 String jName = list.get(0);
4221 4230 String clZbh = list.get(1);
4222 4231 String lpName = list.get(2);
  4232 + String jGh =list.get(3);
4223 4233 for (int i = 0; i < lists_line.size(); i++) {
4224 4234 ScheduleRealInfo s=lists_line.get(i);
4225   - if(s.getjName().equals(jName) && s.getClZbh().equals(clZbh) && s.getLpName().equals(lpName)){
  4235 + if(s.getjGh().equals(jGh) && s.getClZbh().equals(clZbh) && s.getLpName().equals(lpName)){
4226 4236 newList.add(s);
4227 4237 }
4228 4238 }
... ...
src/main/java/com/bsth/service/schedule/PeopleCarPlanServiceImpl.java
... ... @@ -521,7 +521,7 @@ public class PeopleCarPlanServiceImpl implements PeopleCarPlanService {
521 521 sql += " and xl_bm = '"+line+"'";
522 522 }
523 523 // if(company.length() != 0){
524   - sql += " and gs_bm like %'"+company+"'% and fgs_bm like %'"+subCompany+"%'";
  524 + sql += " and gs_bm like '%"+company+"%' and fgs_bm like '%"+subCompany+"%'";
525 525 // }
526 526 sql += " and bc_type != 'in' and bc_type != 'out'";
527 527  
... ...
src/main/java/com/bsth/service/schedule/SchedulePlanInfoService.java
... ... @@ -164,7 +164,7 @@ public interface SchedulePlanInfoService extends BService&lt;SchedulePlanInfo, Long
164 164 this.spyGhs.addAll(Arrays.asList(spyGhs_temp.split(",")));
165 165 }
166 166  
167   - this.updateDate = new Date(rs.getDate("updateDate").getTime());
  167 + this.updateDate = new Date(rs.getTimestamp("updateDate").getTime());
168 168 this.updateByName = rs.getString("updateUserName");
169 169 this.ttInfoName = rs.getString("ttInfoName");
170 170  
... ...
src/main/java/com/bsth/service/schedule/rules/rerun/RerunRule_param.java
1   -package com.bsth.service.schedule.rules.rerun;
2   -
3   -import java.util.Set;
4   -
5   -/**
6   - * Created by xu on 17/4/27.
7   - */
8   -public class RerunRule_param {
9   - /** 主线路id */
10   - private String mxlid;
11   -
12   - /** 对应路牌的套跑线路 */
13   - private Set<String> xlIds_dylp;
14   -
15   - // TODO:
16   -
17   -
18   - public Set<String> getXlIds_dylp() {
19   - return xlIds_dylp;
20   - }
21   -
22   - public void setXlIds_dylp(Set<String> xlIds_dylp) {
23   - this.xlIds_dylp = xlIds_dylp;
24   - }
25   -
26   - public String getMxlid() {
27   - return mxlid;
28   - }
29   -
30   - public void setMxlid(String mxlid) {
31   - this.mxlid = mxlid;
32   - }
33   -}
  1 +package com.bsth.service.schedule.rules.rerun;
  2 +
  3 +import java.util.Set;
  4 +
  5 +/**
  6 + * Created by xu on 17/4/27.
  7 + */
  8 +public class RerunRule_param {
  9 + /** 主线路id */
  10 + private String mxlid;
  11 +
  12 + /** 对应路牌的套跑线路 */
  13 + private Set<String> xlIds_dylp;
  14 +
  15 + // TODO:
  16 +
  17 +
  18 + public Set<String> getXlIds_dylp() {
  19 + return xlIds_dylp;
  20 + }
  21 +
  22 + public void setXlIds_dylp(Set<String> xlIds_dylp) {
  23 + this.xlIds_dylp = xlIds_dylp;
  24 + }
  25 +
  26 + public String getMxlid() {
  27 + return mxlid;
  28 + }
  29 +
  30 + public void setMxlid(String mxlid) {
  31 + this.mxlid = mxlid;
  32 + }
  33 +}
... ...
src/main/resources/datatools/ktrs/carsConfigDataOutput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
5   - <description/>
6   - <extended_description/>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>filepath</name>
14   - <default_value/>
15   - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
16   - </parameter>
17   - <parameter>
18   - <name>templatepath</name>
19   - <default_value/>
20   - <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
21   - </parameter>
22   - <parameter>
23   - <name>xlid</name>
24   - <default_value/>
25   - <description>&#x7ebf;&#x8def;id</description>
26   - </parameter>
27   - </parameters>
28   - <log>
29   -<trans-log-table><connection/>
30   -<schema/>
31   -<table/>
32   -<size_limit_lines/>
33   -<interval/>
34   -<timeout_days/>
35   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
36   -<perf-log-table><connection/>
37   -<schema/>
38   -<table/>
39   -<interval/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
42   -<channel-log-table><connection/>
43   -<schema/>
44   -<table/>
45   -<timeout_days/>
46   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
47   -<step-log-table><connection/>
48   -<schema/>
49   -<table/>
50   -<timeout_days/>
51   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
52   -<metrics-log-table><connection/>
53   -<schema/>
54   -<table/>
55   -<timeout_days/>
56   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
57   - </log>
58   - <maxdate>
59   - <connection/>
60   - <table/>
61   - <field/>
62   - <offset>0.0</offset>
63   - <maxdiff>0.0</maxdiff>
64   - </maxdate>
65   - <size_rowset>10000</size_rowset>
66   - <sleep_time_empty>50</sleep_time_empty>
67   - <sleep_time_full>50</sleep_time_full>
68   - <unique_connections>N</unique_connections>
69   - <feedback_shown>Y</feedback_shown>
70   - <feedback_size>50000</feedback_size>
71   - <using_thread_priorities>Y</using_thread_priorities>
72   - <shared_objects_file/>
73   - <capture_step_performance>N</capture_step_performance>
74   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
75   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
76   - <dependencies>
77   - </dependencies>
78   - <partitionschemas>
79   - </partitionschemas>
80   - <slaveservers>
81   - </slaveservers>
82   - <clusterschemas>
83   - </clusterschemas>
84   - <created_user>-</created_user>
85   - <created_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</created_date>
86   - <modified_user>-</modified_user>
87   - <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</modified_date>
88   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
89   - <is_key_private>N</is_key_private>
90   - </info>
91   - <notepads>
92   - <notepad>
93   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
94   - <xloc>81</xloc>
95   - <yloc>172</yloc>
96   - <width>333</width>
97   - <heigth>90</heigth>
98   - <fontname>YaHei Consolas Hybrid</fontname>
99   - <fontsize>12</fontsize>
100   - <fontbold>N</fontbold>
101   - <fontitalic>N</fontitalic>
102   - <fontcolorred>0</fontcolorred>
103   - <fontcolorgreen>0</fontcolorgreen>
104   - <fontcolorblue>0</fontcolorblue>
105   - <backgroundcolorred>255</backgroundcolorred>
106   - <backgroundcolorgreen>205</backgroundcolorgreen>
107   - <backgroundcolorblue>112</backgroundcolorblue>
108   - <bordercolorred>100</bordercolorred>
109   - <bordercolorgreen>100</bordercolorgreen>
110   - <bordercolorblue>100</bordercolorblue>
111   - <drawshadow>Y</drawshadow>
112   - </notepad>
113   - </notepads>
114   - <connection>
115   - <name>192.168.168.1_jwgl_dw</name>
116   - <server>192.168.168.1</server>
117   - <type>ORACLE</type>
118   - <access>Native</access>
119   - <database>orcl</database>
120   - <port>1521</port>
121   - <username>jwgl_dw</username>
122   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
123   - <servername/>
124   - <data_tablespace/>
125   - <index_tablespace/>
126   - <attributes>
127   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
128   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
129   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
130   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
131   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
132   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
133   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
134   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
135   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
136   - </attributes>
137   - </connection>
138   - <connection>
139   - <name>bus_control_variable</name>
140   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
141   - <type>MYSQL</type>
142   - <access>Native</access>
143   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
144   - <port>3306</port>
145   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
146   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
147   - <servername/>
148   - <data_tablespace/>
149   - <index_tablespace/>
150   - <attributes>
151   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
152   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
153   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
154   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
155   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
156   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
157   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
158   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
159   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
160   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
161   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
162   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
163   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
164   - </attributes>
165   - </connection>
166   - <connection>
167   - <name>bus_control_&#x516c;&#x53f8;_201</name>
168   - <server>localhost</server>
169   - <type>MYSQL</type>
170   - <access>Native</access>
171   - <database>control</database>
172   - <port>3306</port>
173   - <username>root</username>
174   - <password>Encrypted </password>
175   - <servername/>
176   - <data_tablespace/>
177   - <index_tablespace/>
178   - <attributes>
179   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
180   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
181   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
182   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
183   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
184   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
185   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
186   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
187   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
188   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
189   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
190   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
191   - </attributes>
192   - </connection>
193   - <connection>
194   - <name>bus_control_&#x672c;&#x673a;</name>
195   - <server>localhost</server>
196   - <type>MYSQL</type>
197   - <access>Native</access>
198   - <database>control</database>
199   - <port>3306</port>
200   - <username>root</username>
201   - <password>Encrypted </password>
202   - <servername/>
203   - <data_tablespace/>
204   - <index_tablespace/>
205   - <attributes>
206   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
207   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
208   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
209   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
210   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
211   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
212   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
213   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
214   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
215   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
216   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
217   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
218   - </attributes>
219   - </connection>
220   - <connection>
221   - <name>xlab_mysql_youle</name>
222   - <server>101.231.124.8</server>
223   - <type>MYSQL</type>
224   - <access>Native</access>
225   - <database>xlab_youle</database>
226   - <port>45687</port>
227   - <username>xlab-youle</username>
228   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
229   - <servername/>
230   - <data_tablespace/>
231   - <index_tablespace/>
232   - <attributes>
233   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
234   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
235   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
236   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
237   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
238   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
239   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
240   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
241   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
242   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
243   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
244   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
245   - </attributes>
246   - </connection>
247   - <connection>
248   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
249   - <server>localhost</server>
250   - <type>MYSQL</type>
251   - <access>Native</access>
252   - <database>xlab_youle</database>
253   - <port>3306</port>
254   - <username>root</username>
255   - <password>Encrypted </password>
256   - <servername/>
257   - <data_tablespace/>
258   - <index_tablespace/>
259   - <attributes>
260   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
261   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
262   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
263   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
264   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
265   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
266   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
267   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
268   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
269   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
270   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
271   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
272   - </attributes>
273   - </connection>
274   - <connection>
275   - <name>xlab_youle</name>
276   - <server/>
277   - <type>MYSQL</type>
278   - <access>JNDI</access>
279   - <database>xlab_youle</database>
280   - <port>1521</port>
281   - <username/>
282   - <password>Encrypted </password>
283   - <servername/>
284   - <data_tablespace/>
285   - <index_tablespace/>
286   - <attributes>
287   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
288   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
289   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
290   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
291   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
292   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
293   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
294   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
295   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
296   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
297   - </attributes>
298   - </connection>
299   - <order>
300   - <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
301   - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
302   - <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
303   - <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
304   - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
305   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
306   - </order>
307   - <step>
308   - <name>Excel&#x8f93;&#x51fa;</name>
309   - <type>ExcelOutput</type>
310   - <description/>
311   - <distribute>Y</distribute>
312   - <custom_distribution/>
313   - <copies>1</copies>
314   - <partitioning>
315   - <method>none</method>
316   - <schema_name/>
317   - </partitioning>
318   - <header>Y</header>
319   - <footer>N</footer>
320   - <encoding/>
321   - <append>N</append>
322   - <add_to_result_filenames>Y</add_to_result_filenames>
323   - <file>
324   - <name>&#x24;&#x7b;filepath&#x7d;</name>
325   - <extention>xls</extention>
326   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
327   - <create_parent_folder>N</create_parent_folder>
328   - <split>N</split>
329   - <add_date>N</add_date>
330   - <add_time>N</add_time>
331   - <SpecifyFormat>N</SpecifyFormat>
332   - <date_time_format>yyyyMMddHHmmss</date_time_format>
333   - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
334   - <autosizecolums>N</autosizecolums>
335   - <nullisblank>N</nullisblank>
336   - <protect_sheet>N</protect_sheet>
337   - <password>Encrypted </password>
338   - <splitevery>0</splitevery>
339   - <usetempfiles>N</usetempfiles>
340   - <tempdirectory/>
341   - </file>
342   - <template>
343   - <enabled>N</enabled>
344   - <append>N</append>
345   - <filename>template.xls</filename>
346   - </template>
347   - <fields>
348   - <field>
349   - <name>&#x7ebf;&#x8def;</name>
350   - <type>String</type>
351   - <format/>
352   - </field>
353   - <field>
354   - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
355   - <type>String</type>
356   - <format/>
357   - </field>
358   - <field>
359   - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
360   - <type>String</type>
361   - <format/>
362   - </field>
363   - <field>
364   - <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
365   - <type>String</type>
366   - <format/>
367   - </field>
368   - <field>
369   - <name>&#x505c;&#x8f66;&#x70b9;</name>
370   - <type>String</type>
371   - <format/>
372   - </field>
373   - </fields>
374   - <custom>
375   - <header_font_name>arial</header_font_name>
376   - <header_font_size>10</header_font_size>
377   - <header_font_bold>N</header_font_bold>
378   - <header_font_italic>N</header_font_italic>
379   - <header_font_underline>no</header_font_underline>
380   - <header_font_orientation>horizontal</header_font_orientation>
381   - <header_font_color>black</header_font_color>
382   - <header_background_color>none</header_background_color>
383   - <header_row_height>255</header_row_height>
384   - <header_alignment>left</header_alignment>
385   - <header_image/>
386   - <row_font_name>arial</row_font_name>
387   - <row_font_size>10</row_font_size>
388   - <row_font_color>black</row_font_color>
389   - <row_background_color>none</row_background_color>
390   - </custom>
391   - <cluster_schema/>
392   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
393   - <xloc>596</xloc>
394   - <yloc>265</yloc>
395   - <draw>Y</draw>
396   - </GUI>
397   - </step>
398   -
399   - <step>
400   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
401   - <type>SelectValues</type>
402   - <description/>
403   - <distribute>Y</distribute>
404   - <custom_distribution/>
405   - <copies>1</copies>
406   - <partitioning>
407   - <method>none</method>
408   - <schema_name/>
409   - </partitioning>
410   - <fields> <field> <name>xlmc</name>
411   - <rename>&#x7ebf;&#x8def;</rename>
412   - <length>-2</length>
413   - <precision>-2</precision>
414   - </field> <field> <name>zbh</name>
415   - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
416   - <length>-2</length>
417   - <precision>-2</precision>
418   - </field> <field> <name>qyrq</name>
419   - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
420   - <length>-2</length>
421   - <precision>-2</precision>
422   - </field> <field> <name>zzrq</name>
423   - <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
424   - <length>-2</length>
425   - <precision>-2</precision>
426   - </field> <field> <name>tcd</name>
427   - <rename>&#x505c;&#x8f66;&#x70b9;</rename>
428   - <length>-2</length>
429   - <precision>-2</precision>
430   - </field> <select_unspecified>N</select_unspecified>
431   - </fields> <cluster_schema/>
432   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
433   - <xloc>595</xloc>
434   - <yloc>167</yloc>
435   - <draw>Y</draw>
436   - </GUI>
437   - </step>
438   -
439   - <step>
440   - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
441   - <type>SortRows</type>
442   - <description/>
443   - <distribute>Y</distribute>
444   - <custom_distribution/>
445   - <copies>1</copies>
446   - <partitioning>
447   - <method>none</method>
448   - <schema_name/>
449   - </partitioning>
450   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
451   - <prefix>out</prefix>
452   - <sort_size>1000000</sort_size>
453   - <free_memory/>
454   - <compress>N</compress>
455   - <compress_variable/>
456   - <unique_rows>N</unique_rows>
457   - <fields>
458   - <field>
459   - <name>xlmc</name>
460   - <ascending>Y</ascending>
461   - <case_sensitive>N</case_sensitive>
462   - <presorted>N</presorted>
463   - </field>
464   - <field>
465   - <name>zbh</name>
466   - <ascending>Y</ascending>
467   - <case_sensitive>N</case_sensitive>
468   - <presorted>N</presorted>
469   - </field>
470   - <field>
471   - <name>qyrq</name>
472   - <ascending>Y</ascending>
473   - <case_sensitive>N</case_sensitive>
474   - <presorted>N</presorted>
475   - </field>
476   - </fields>
477   - <cluster_schema/>
478   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
479   - <xloc>592</xloc>
480   - <yloc>66</yloc>
481   - <draw>Y</draw>
482   - </GUI>
483   - </step>
484   -
485   - <step>
486   - <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
487   - <type>SelectValues</type>
488   - <description/>
489   - <distribute>Y</distribute>
490   - <custom_distribution/>
491   - <copies>1</copies>
492   - <partitioning>
493   - <method>none</method>
494   - <schema_name/>
495   - </partitioning>
496   - <fields> <select_unspecified>N</select_unspecified>
497   - <meta> <name>qyrq</name>
498   - <rename>qyrq</rename>
499   - <type>String</type>
500   - <length>-2</length>
501   - <precision>-2</precision>
502   - <conversion_mask>yyyy-MM-dd</conversion_mask>
503   - <date_format_lenient>false</date_format_lenient>
504   - <date_format_locale/>
505   - <date_format_timezone/>
506   - <lenient_string_to_number>false</lenient_string_to_number>
507   - <encoding/>
508   - <decimal_symbol/>
509   - <grouping_symbol/>
510   - <currency_symbol/>
511   - <storage_type/>
512   - </meta> <meta> <name>zzrq</name>
513   - <rename>zzrq</rename>
514   - <type>String</type>
515   - <length>-2</length>
516   - <precision>-2</precision>
517   - <conversion_mask>yyyy-MM-dd</conversion_mask>
518   - <date_format_lenient>false</date_format_lenient>
519   - <date_format_locale/>
520   - <date_format_timezone/>
521   - <lenient_string_to_number>false</lenient_string_to_number>
522   - <encoding/>
523   - <decimal_symbol/>
524   - <grouping_symbol/>
525   - <currency_symbol/>
526   - <storage_type/>
527   - </meta> </fields> <cluster_schema/>
528   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
529   - <xloc>478</xloc>
530   - <yloc>66</yloc>
531   - <draw>Y</draw>
532   - </GUI>
533   - </step>
534   -
535   - <step>
536   - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
537   - <type>DBLookup</type>
538   - <description/>
539   - <distribute>Y</distribute>
540   - <custom_distribution/>
541   - <copies>1</copies>
542   - <partitioning>
543   - <method>none</method>
544   - <schema_name/>
545   - </partitioning>
546   - <connection>bus_control_variable</connection>
547   - <cache>Y</cache>
548   - <cache_load_all>Y</cache_load_all>
549   - <cache_size>0</cache_size>
550   - <lookup>
551   - <schema/>
552   - <table>bsth_c_line</table>
553   - <orderby/>
554   - <fail_on_multiple>N</fail_on_multiple>
555   - <eat_row_on_failure>N</eat_row_on_failure>
556   - <key>
557   - <name>xl</name>
558   - <field>id</field>
559   - <condition>&#x3d;</condition>
560   - <name2/>
561   - </key>
562   - <value>
563   - <name>name</name>
564   - <rename>xlmc</rename>
565   - <default/>
566   - <type>String</type>
567   - </value>
568   - </lookup>
569   - <cluster_schema/>
570   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
571   - <xloc>248</xloc>
572   - <yloc>67</yloc>
573   - <draw>Y</draw>
574   - </GUI>
575   - </step>
576   -
577   - <step>
578   - <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
579   - <type>DBLookup</type>
580   - <description/>
581   - <distribute>Y</distribute>
582   - <custom_distribution/>
583   - <copies>1</copies>
584   - <partitioning>
585   - <method>none</method>
586   - <schema_name/>
587   - </partitioning>
588   - <connection>bus_control_variable</connection>
589   - <cache>N</cache>
590   - <cache_load_all>N</cache_load_all>
591   - <cache_size>0</cache_size>
592   - <lookup>
593   - <schema/>
594   - <table>bsth_c_cars</table>
595   - <orderby/>
596   - <fail_on_multiple>N</fail_on_multiple>
597   - <eat_row_on_failure>N</eat_row_on_failure>
598   - <key>
599   - <name>cl</name>
600   - <field>id</field>
601   - <condition>&#x3d;</condition>
602   - <name2/>
603   - </key>
604   - <value>
605   - <name>inside_code</name>
606   - <rename>zbh</rename>
607   - <default/>
608   - <type>String</type>
609   - </value>
610   - </lookup>
611   - <cluster_schema/>
612   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
613   - <xloc>361</xloc>
614   - <yloc>67</yloc>
615   - <draw>Y</draw>
616   - </GUI>
617   - </step>
618   -
619   - <step>
620   - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
621   - <type>TableInput</type>
622   - <description/>
623   - <distribute>Y</distribute>
624   - <custom_distribution/>
625   - <copies>1</copies>
626   - <partitioning>
627   - <method>none</method>
628   - <schema_name/>
629   - </partitioning>
630   - <connection>bus_control_variable</connection>
631   - <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
632   - <limit>0</limit>
633   - <lookup/>
634   - <execute_each_row>N</execute_each_row>
635   - <variables_active>Y</variables_active>
636   - <lazy_conversion_active>N</lazy_conversion_active>
637   - <cluster_schema/>
638   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
639   - <xloc>106</xloc>
640   - <yloc>68</yloc>
641   - <draw>Y</draw>
642   - </GUI>
643   - </step>
644   -
645   - <step_error_handling>
646   - </step_error_handling>
647   - <slave-step-copy-partition-distribution>
648   -</slave-step-copy-partition-distribution>
649   - <slave_transformation>N</slave_transformation>
650   -
651   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value/>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value/>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;11 14&#x3a;14&#x3a;13.722</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  94 + <xloc>81</xloc>
  95 + <yloc>172</yloc>
  96 + <width>333</width>
  97 + <heigth>90</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>xlab_mysql_youle</name>
  222 + <server>101.231.124.8</server>
  223 + <type>MYSQL</type>
  224 + <access>Native</access>
  225 + <database>xlab_youle</database>
  226 + <port>45687</port>
  227 + <username>xlab-youle</username>
  228 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  235 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  238 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  239 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  241 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  242 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  243 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  245 + </attributes>
  246 + </connection>
  247 + <connection>
  248 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  249 + <server>localhost</server>
  250 + <type>MYSQL</type>
  251 + <access>Native</access>
  252 + <database>xlab_youle</database>
  253 + <port>3306</port>
  254 + <username>root</username>
  255 + <password>Encrypted </password>
  256 + <servername/>
  257 + <data_tablespace/>
  258 + <index_tablespace/>
  259 + <attributes>
  260 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  261 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  264 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  265 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  266 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  267 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  268 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  270 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  271 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  272 + </attributes>
  273 + </connection>
  274 + <connection>
  275 + <name>xlab_youle</name>
  276 + <server/>
  277 + <type>MYSQL</type>
  278 + <access>JNDI</access>
  279 + <database>xlab_youle</database>
  280 + <port>1521</port>
  281 + <username/>
  282 + <password>Encrypted </password>
  283 + <servername/>
  284 + <data_tablespace/>
  285 + <index_tablespace/>
  286 + <attributes>
  287 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  289 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  290 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  291 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  293 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  294 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  295 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  296 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  297 + </attributes>
  298 + </connection>
  299 + <order>
  300 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  301 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  302 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  303 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  304 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  305 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  306 + </order>
  307 + <step>
  308 + <name>Excel&#x8f93;&#x51fa;</name>
  309 + <type>ExcelOutput</type>
  310 + <description/>
  311 + <distribute>Y</distribute>
  312 + <custom_distribution/>
  313 + <copies>1</copies>
  314 + <partitioning>
  315 + <method>none</method>
  316 + <schema_name/>
  317 + </partitioning>
  318 + <header>Y</header>
  319 + <footer>N</footer>
  320 + <encoding/>
  321 + <append>N</append>
  322 + <add_to_result_filenames>Y</add_to_result_filenames>
  323 + <file>
  324 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  325 + <extention>xls</extention>
  326 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  327 + <create_parent_folder>N</create_parent_folder>
  328 + <split>N</split>
  329 + <add_date>N</add_date>
  330 + <add_time>N</add_time>
  331 + <SpecifyFormat>N</SpecifyFormat>
  332 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  333 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  334 + <autosizecolums>N</autosizecolums>
  335 + <nullisblank>N</nullisblank>
  336 + <protect_sheet>N</protect_sheet>
  337 + <password>Encrypted </password>
  338 + <splitevery>0</splitevery>
  339 + <usetempfiles>N</usetempfiles>
  340 + <tempdirectory/>
  341 + </file>
  342 + <template>
  343 + <enabled>N</enabled>
  344 + <append>N</append>
  345 + <filename>template.xls</filename>
  346 + </template>
  347 + <fields>
  348 + <field>
  349 + <name>&#x7ebf;&#x8def;</name>
  350 + <type>String</type>
  351 + <format/>
  352 + </field>
  353 + <field>
  354 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  355 + <type>String</type>
  356 + <format/>
  357 + </field>
  358 + <field>
  359 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  360 + <type>String</type>
  361 + <format/>
  362 + </field>
  363 + <field>
  364 + <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>
  365 + <type>String</type>
  366 + <format/>
  367 + </field>
  368 + <field>
  369 + <name>&#x505c;&#x8f66;&#x70b9;</name>
  370 + <type>String</type>
  371 + <format/>
  372 + </field>
  373 + </fields>
  374 + <custom>
  375 + <header_font_name>arial</header_font_name>
  376 + <header_font_size>10</header_font_size>
  377 + <header_font_bold>N</header_font_bold>
  378 + <header_font_italic>N</header_font_italic>
  379 + <header_font_underline>no</header_font_underline>
  380 + <header_font_orientation>horizontal</header_font_orientation>
  381 + <header_font_color>black</header_font_color>
  382 + <header_background_color>none</header_background_color>
  383 + <header_row_height>255</header_row_height>
  384 + <header_alignment>left</header_alignment>
  385 + <header_image/>
  386 + <row_font_name>arial</row_font_name>
  387 + <row_font_size>10</row_font_size>
  388 + <row_font_color>black</row_font_color>
  389 + <row_background_color>none</row_background_color>
  390 + </custom>
  391 + <cluster_schema/>
  392 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  393 + <xloc>596</xloc>
  394 + <yloc>265</yloc>
  395 + <draw>Y</draw>
  396 + </GUI>
  397 + </step>
  398 +
  399 + <step>
  400 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  401 + <type>SelectValues</type>
  402 + <description/>
  403 + <distribute>Y</distribute>
  404 + <custom_distribution/>
  405 + <copies>1</copies>
  406 + <partitioning>
  407 + <method>none</method>
  408 + <schema_name/>
  409 + </partitioning>
  410 + <fields> <field> <name>xlmc</name>
  411 + <rename>&#x7ebf;&#x8def;</rename>
  412 + <length>-2</length>
  413 + <precision>-2</precision>
  414 + </field> <field> <name>zbh</name>
  415 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  416 + <length>-2</length>
  417 + <precision>-2</precision>
  418 + </field> <field> <name>qyrq</name>
  419 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  420 + <length>-2</length>
  421 + <precision>-2</precision>
  422 + </field> <field> <name>zzrq</name>
  423 + <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>
  424 + <length>-2</length>
  425 + <precision>-2</precision>
  426 + </field> <field> <name>tcd</name>
  427 + <rename>&#x505c;&#x8f66;&#x70b9;</rename>
  428 + <length>-2</length>
  429 + <precision>-2</precision>
  430 + </field> <select_unspecified>N</select_unspecified>
  431 + </fields> <cluster_schema/>
  432 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  433 + <xloc>595</xloc>
  434 + <yloc>167</yloc>
  435 + <draw>Y</draw>
  436 + </GUI>
  437 + </step>
  438 +
  439 + <step>
  440 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  441 + <type>SortRows</type>
  442 + <description/>
  443 + <distribute>Y</distribute>
  444 + <custom_distribution/>
  445 + <copies>1</copies>
  446 + <partitioning>
  447 + <method>none</method>
  448 + <schema_name/>
  449 + </partitioning>
  450 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  451 + <prefix>out</prefix>
  452 + <sort_size>1000000</sort_size>
  453 + <free_memory/>
  454 + <compress>N</compress>
  455 + <compress_variable/>
  456 + <unique_rows>N</unique_rows>
  457 + <fields>
  458 + <field>
  459 + <name>xlmc</name>
  460 + <ascending>Y</ascending>
  461 + <case_sensitive>N</case_sensitive>
  462 + <presorted>N</presorted>
  463 + </field>
  464 + <field>
  465 + <name>zbh</name>
  466 + <ascending>Y</ascending>
  467 + <case_sensitive>N</case_sensitive>
  468 + <presorted>N</presorted>
  469 + </field>
  470 + <field>
  471 + <name>qyrq</name>
  472 + <ascending>Y</ascending>
  473 + <case_sensitive>N</case_sensitive>
  474 + <presorted>N</presorted>
  475 + </field>
  476 + </fields>
  477 + <cluster_schema/>
  478 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  479 + <xloc>592</xloc>
  480 + <yloc>66</yloc>
  481 + <draw>Y</draw>
  482 + </GUI>
  483 + </step>
  484 +
  485 + <step>
  486 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  487 + <type>SelectValues</type>
  488 + <description/>
  489 + <distribute>Y</distribute>
  490 + <custom_distribution/>
  491 + <copies>1</copies>
  492 + <partitioning>
  493 + <method>none</method>
  494 + <schema_name/>
  495 + </partitioning>
  496 + <fields> <select_unspecified>N</select_unspecified>
  497 + <meta> <name>qyrq</name>
  498 + <rename>qyrq</rename>
  499 + <type>String</type>
  500 + <length>-2</length>
  501 + <precision>-2</precision>
  502 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  503 + <date_format_lenient>false</date_format_lenient>
  504 + <date_format_locale/>
  505 + <date_format_timezone/>
  506 + <lenient_string_to_number>false</lenient_string_to_number>
  507 + <encoding/>
  508 + <decimal_symbol/>
  509 + <grouping_symbol/>
  510 + <currency_symbol/>
  511 + <storage_type/>
  512 + </meta> <meta> <name>zzrq</name>
  513 + <rename>zzrq</rename>
  514 + <type>String</type>
  515 + <length>-2</length>
  516 + <precision>-2</precision>
  517 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  518 + <date_format_lenient>false</date_format_lenient>
  519 + <date_format_locale/>
  520 + <date_format_timezone/>
  521 + <lenient_string_to_number>false</lenient_string_to_number>
  522 + <encoding/>
  523 + <decimal_symbol/>
  524 + <grouping_symbol/>
  525 + <currency_symbol/>
  526 + <storage_type/>
  527 + </meta> </fields> <cluster_schema/>
  528 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  529 + <xloc>478</xloc>
  530 + <yloc>66</yloc>
  531 + <draw>Y</draw>
  532 + </GUI>
  533 + </step>
  534 +
  535 + <step>
  536 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  537 + <type>DBLookup</type>
  538 + <description/>
  539 + <distribute>Y</distribute>
  540 + <custom_distribution/>
  541 + <copies>1</copies>
  542 + <partitioning>
  543 + <method>none</method>
  544 + <schema_name/>
  545 + </partitioning>
  546 + <connection>bus_control_variable</connection>
  547 + <cache>Y</cache>
  548 + <cache_load_all>Y</cache_load_all>
  549 + <cache_size>0</cache_size>
  550 + <lookup>
  551 + <schema/>
  552 + <table>bsth_c_line</table>
  553 + <orderby/>
  554 + <fail_on_multiple>N</fail_on_multiple>
  555 + <eat_row_on_failure>N</eat_row_on_failure>
  556 + <key>
  557 + <name>xl</name>
  558 + <field>id</field>
  559 + <condition>&#x3d;</condition>
  560 + <name2/>
  561 + </key>
  562 + <value>
  563 + <name>name</name>
  564 + <rename>xlmc</rename>
  565 + <default/>
  566 + <type>String</type>
  567 + </value>
  568 + </lookup>
  569 + <cluster_schema/>
  570 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  571 + <xloc>248</xloc>
  572 + <yloc>67</yloc>
  573 + <draw>Y</draw>
  574 + </GUI>
  575 + </step>
  576 +
  577 + <step>
  578 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  579 + <type>DBLookup</type>
  580 + <description/>
  581 + <distribute>Y</distribute>
  582 + <custom_distribution/>
  583 + <copies>1</copies>
  584 + <partitioning>
  585 + <method>none</method>
  586 + <schema_name/>
  587 + </partitioning>
  588 + <connection>bus_control_variable</connection>
  589 + <cache>N</cache>
  590 + <cache_load_all>N</cache_load_all>
  591 + <cache_size>0</cache_size>
  592 + <lookup>
  593 + <schema/>
  594 + <table>bsth_c_cars</table>
  595 + <orderby/>
  596 + <fail_on_multiple>N</fail_on_multiple>
  597 + <eat_row_on_failure>N</eat_row_on_failure>
  598 + <key>
  599 + <name>cl</name>
  600 + <field>id</field>
  601 + <condition>&#x3d;</condition>
  602 + <name2/>
  603 + </key>
  604 + <value>
  605 + <name>inside_code</name>
  606 + <rename>zbh</rename>
  607 + <default/>
  608 + <type>String</type>
  609 + </value>
  610 + </lookup>
  611 + <cluster_schema/>
  612 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  613 + <xloc>361</xloc>
  614 + <yloc>67</yloc>
  615 + <draw>Y</draw>
  616 + </GUI>
  617 + </step>
  618 +
  619 + <step>
  620 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  621 + <type>TableInput</type>
  622 + <description/>
  623 + <distribute>Y</distribute>
  624 + <custom_distribution/>
  625 + <copies>1</copies>
  626 + <partitioning>
  627 + <method>none</method>
  628 + <schema_name/>
  629 + </partitioning>
  630 + <connection>bus_control_variable</connection>
  631 + <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  632 + <limit>0</limit>
  633 + <lookup/>
  634 + <execute_each_row>N</execute_each_row>
  635 + <variables_active>Y</variables_active>
  636 + <lazy_conversion_active>N</lazy_conversion_active>
  637 + <cluster_schema/>
  638 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  639 + <xloc>106</xloc>
  640 + <yloc>68</yloc>
  641 + <draw>Y</draw>
  642 + </GUI>
  643 + </step>
  644 +
  645 + <step_error_handling>
  646 + </step_error_handling>
  647 + <slave-step-copy-partition-distribution>
  648 +</slave-step-copy-partition-distribution>
  649 + <slave_transformation>N</slave_transformation>
  650 +
  651 +</transformation>
... ...
src/main/resources/datatools/ktrs/carsDataOutput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
5   - <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
6   - <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>filepath</name>
14   - <default_value/>
15   - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
16   - </parameter>
17   - </parameters>
18   - <log>
19   -<trans-log-table><connection/>
20   -<schema/>
21   -<table/>
22   -<size_limit_lines/>
23   -<interval/>
24   -<timeout_days/>
25   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
26   -<perf-log-table><connection/>
27   -<schema/>
28   -<table/>
29   -<interval/>
30   -<timeout_days/>
31   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
32   -<channel-log-table><connection/>
33   -<schema/>
34   -<table/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
37   -<step-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
42   -<metrics-log-table><connection/>
43   -<schema/>
44   -<table/>
45   -<timeout_days/>
46   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
47   - </log>
48   - <maxdate>
49   - <connection/>
50   - <table/>
51   - <field/>
52   - <offset>0.0</offset>
53   - <maxdiff>0.0</maxdiff>
54   - </maxdate>
55   - <size_rowset>10000</size_rowset>
56   - <sleep_time_empty>50</sleep_time_empty>
57   - <sleep_time_full>50</sleep_time_full>
58   - <unique_connections>N</unique_connections>
59   - <feedback_shown>Y</feedback_shown>
60   - <feedback_size>50000</feedback_size>
61   - <using_thread_priorities>Y</using_thread_priorities>
62   - <shared_objects_file/>
63   - <capture_step_performance>N</capture_step_performance>
64   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
65   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
66   - <dependencies>
67   - </dependencies>
68   - <partitionschemas>
69   - </partitionschemas>
70   - <slaveservers>
71   - </slaveservers>
72   - <clusterschemas>
73   - </clusterschemas>
74   - <created_user>-</created_user>
75   - <created_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>
76   - <modified_user>-</modified_user>
77   - <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</modified_date>
78   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
79   - <is_key_private>N</is_key_private>
80   - </info>
81   - <notepads>
82   - </notepads>
83   - <connection>
84   - <name>192.168.168.1_jwgl_dw</name>
85   - <server>192.168.168.1</server>
86   - <type>ORACLE</type>
87   - <access>Native</access>
88   - <database>orcl</database>
89   - <port>1521</port>
90   - <username>jwgl_dw</username>
91   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
92   - <servername/>
93   - <data_tablespace/>
94   - <index_tablespace/>
95   - <attributes>
96   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
97   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
98   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
99   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
100   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
101   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
102   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
103   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
104   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
105   - </attributes>
106   - </connection>
107   - <connection>
108   - <name>bus_control_variable</name>
109   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
110   - <type>MYSQL</type>
111   - <access>Native</access>
112   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
113   - <port>3306</port>
114   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
115   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
116   - <servername/>
117   - <data_tablespace/>
118   - <index_tablespace/>
119   - <attributes>
120   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
121   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
122   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
123   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
124   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
125   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
126   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
127   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
128   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
129   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
130   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
131   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
132   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
133   - </attributes>
134   - </connection>
135   - <connection>
136   - <name>bus_control_&#x516c;&#x53f8;_201</name>
137   - <server>localhost</server>
138   - <type>MYSQL</type>
139   - <access>Native</access>
140   - <database>control</database>
141   - <port>3306</port>
142   - <username>root</username>
143   - <password>Encrypted </password>
144   - <servername/>
145   - <data_tablespace/>
146   - <index_tablespace/>
147   - <attributes>
148   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
149   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
150   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
151   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
152   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
153   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
154   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
155   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
156   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
157   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
158   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
159   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
160   - </attributes>
161   - </connection>
162   - <connection>
163   - <name>bus_control_&#x672c;&#x673a;</name>
164   - <server>localhost</server>
165   - <type>MYSQL</type>
166   - <access>Native</access>
167   - <database>control</database>
168   - <port>3306</port>
169   - <username>root</username>
170   - <password>Encrypted </password>
171   - <servername/>
172   - <data_tablespace/>
173   - <index_tablespace/>
174   - <attributes>
175   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
176   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
177   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
178   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
179   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
180   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
181   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
182   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
183   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
184   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
185   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
186   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
187   - </attributes>
188   - </connection>
189   - <connection>
190   - <name>xlab_mysql_youle</name>
191   - <server>101.231.124.8</server>
192   - <type>MYSQL</type>
193   - <access>Native</access>
194   - <database>xlab_youle</database>
195   - <port>45687</port>
196   - <username>xlab-youle</username>
197   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
198   - <servername/>
199   - <data_tablespace/>
200   - <index_tablespace/>
201   - <attributes>
202   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
203   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
204   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
205   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
206   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
207   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
208   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
209   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
210   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
211   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
212   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
213   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
214   - </attributes>
215   - </connection>
216   - <connection>
217   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
218   - <server>localhost</server>
219   - <type>MYSQL</type>
220   - <access>Native</access>
221   - <database>xlab_youle</database>
222   - <port>3306</port>
223   - <username>root</username>
224   - <password>Encrypted </password>
225   - <servername/>
226   - <data_tablespace/>
227   - <index_tablespace/>
228   - <attributes>
229   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
230   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
231   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
232   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
233   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
234   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
235   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
236   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
237   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
238   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
239   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
240   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
241   - </attributes>
242   - </connection>
243   - <connection>
244   - <name>xlab_youle</name>
245   - <server/>
246   - <type>MYSQL</type>
247   - <access>JNDI</access>
248   - <database>xlab_youle</database>
249   - <port>1521</port>
250   - <username/>
251   - <password>Encrypted </password>
252   - <servername/>
253   - <data_tablespace/>
254   - <index_tablespace/>
255   - <attributes>
256   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
257   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
258   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
259   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
260   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
261   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
262   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
263   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
264   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
265   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
266   - </attributes>
267   - </connection>
268   - <order>
269   - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
270   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
271   - </order>
272   - <step>
273   - <name>Excel&#x8f93;&#x51fa;</name>
274   - <type>ExcelOutput</type>
275   - <description/>
276   - <distribute>Y</distribute>
277   - <custom_distribution/>
278   - <copies>1</copies>
279   - <partitioning>
280   - <method>none</method>
281   - <schema_name/>
282   - </partitioning>
283   - <header>Y</header>
284   - <footer>N</footer>
285   - <encoding/>
286   - <append>N</append>
287   - <add_to_result_filenames>Y</add_to_result_filenames>
288   - <file>
289   - <name>&#x24;&#x7b;filepath&#x7d;</name>
290   - <extention>xls</extention>
291   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
292   - <create_parent_folder>N</create_parent_folder>
293   - <split>N</split>
294   - <add_date>N</add_date>
295   - <add_time>N</add_time>
296   - <SpecifyFormat>N</SpecifyFormat>
297   - <date_time_format>yyyyMMddHHmmss</date_time_format>
298   - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
299   - <autosizecolums>N</autosizecolums>
300   - <nullisblank>N</nullisblank>
301   - <protect_sheet>N</protect_sheet>
302   - <password>Encrypted </password>
303   - <splitevery>0</splitevery>
304   - <usetempfiles>N</usetempfiles>
305   - <tempdirectory/>
306   - </file>
307   - <template>
308   - <enabled>N</enabled>
309   - <append>N</append>
310   - <filename>template.xls</filename>
311   - </template>
312   - <fields>
313   - <field>
314   - <name>&#x8f66;&#x724c;&#x53f7;</name>
315   - <type>String</type>
316   - <format/>
317   - </field>
318   - <field>
319   - <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
320   - <type>String</type>
321   - <format/>
322   - </field>
323   - <field>
324   - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
325   - <type>String</type>
326   - <format/>
327   - </field>
328   - <field>
329   - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
330   - <type>String</type>
331   - <format/>
332   - </field>
333   - <field>
334   - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
335   - <type>String</type>
336   - <format/>
337   - </field>
338   - <field>
339   - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
340   - <type>String</type>
341   - <format/>
342   - </field>
343   - <field>
344   - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
345   - <type>String</type>
346   - <format/>
347   - </field>
348   - <field>
349   - <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
350   - <type>String</type>
351   - <format/>
352   - </field>
353   - <field>
354   - <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
355   - <type>String</type>
356   - <format/>
357   - </field>
358   - </fields>
359   - <custom>
360   - <header_font_name>arial</header_font_name>
361   - <header_font_size>10</header_font_size>
362   - <header_font_bold>N</header_font_bold>
363   - <header_font_italic>N</header_font_italic>
364   - <header_font_underline>no</header_font_underline>
365   - <header_font_orientation>horizontal</header_font_orientation>
366   - <header_font_color>black</header_font_color>
367   - <header_background_color>none</header_background_color>
368   - <header_row_height>255</header_row_height>
369   - <header_alignment>left</header_alignment>
370   - <header_image/>
371   - <row_font_name>arial</row_font_name>
372   - <row_font_size>10</row_font_size>
373   - <row_font_color>black</row_font_color>
374   - <row_background_color>none</row_background_color>
375   - </custom>
376   - <cluster_schema/>
377   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
378   - <xloc>282</xloc>
379   - <yloc>169</yloc>
380   - <draw>Y</draw>
381   - </GUI>
382   - </step>
383   -
384   - <step>
385   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
386   - <type>SelectValues</type>
387   - <description/>
388   - <distribute>Y</distribute>
389   - <custom_distribution/>
390   - <copies>1</copies>
391   - <partitioning>
392   - <method>none</method>
393   - <schema_name/>
394   - </partitioning>
395   - <fields> <field> <name>car_plate</name>
396   - <rename>&#x8f66;&#x724c;&#x53f7;</rename>
397   - <length>-2</length>
398   - <precision>-2</precision>
399   - </field> <field> <name>car_code</name>
400   - <rename>&#x8f66;&#x8f86;&#x7f16;&#x7801;</rename>
401   - <length>-2</length>
402   - <precision>-2</precision>
403   - </field> <field> <name>inside_code</name>
404   - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
405   - <length>-2</length>
406   - <precision>-2</precision>
407   - </field> <field> <name>company</name>
408   - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
409   - <length>-2</length>
410   - <precision>-2</precision>
411   - </field> <field> <name>business_code</name>
412   - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
413   - <length>-2</length>
414   - <precision>-2</precision>
415   - </field> <field> <name>branche_company</name>
416   - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
417   - <length>-2</length>
418   - <precision>-2</precision>
419   - </field> <field> <name>branche_company_code</name>
420   - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
421   - <length>-2</length>
422   - <precision>-2</precision>
423   - </field> <field> <name>supplier_name</name>
424   - <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
425   - <length>-2</length>
426   - <precision>-2</precision>
427   - </field> <field> <name>equipment_code</name>
428   - <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
429   - <length>-2</length>
430   - <precision>-2</precision>
431   - </field> <select_unspecified>N</select_unspecified>
432   - </fields> <cluster_schema/>
433   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
434   - <xloc>280</xloc>
435   - <yloc>67</yloc>
436   - <draw>Y</draw>
437   - </GUI>
438   - </step>
439   -
440   - <step>
441   - <name>&#x8868;&#x8f93;&#x5165;</name>
442   - <type>TableInput</type>
443   - <description/>
444   - <distribute>Y</distribute>
445   - <custom_distribution/>
446   - <copies>1</copies>
447   - <partitioning>
448   - <method>none</method>
449   - <schema_name/>
450   - </partitioning>
451   - <connection>bus_control_variable</connection>
452   - <sql>SELECT &#x2a; FROM bsth_c_cars&#x3b;</sql>
453   - <limit>0</limit>
454   - <lookup/>
455   - <execute_each_row>N</execute_each_row>
456   - <variables_active>N</variables_active>
457   - <lazy_conversion_active>N</lazy_conversion_active>
458   - <cluster_schema/>
459   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
460   - <xloc>105</xloc>
461   - <yloc>67</yloc>
462   - <draw>Y</draw>
463   - </GUI>
464   - </step>
465   -
466   - <step_error_handling>
467   - </step_error_handling>
468   - <slave-step-copy-partition-distribution>
469   -</slave-step-copy-partition-distribution>
470   - <slave_transformation>N</slave_transformation>
471   -
472   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description>&#x8f66;&#x8f86;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</description>
  6 + <extended_description>&#x8f66;&#x8f86;&#x57fa;&#x7840;&#x4fe1;&#x606f;</extended_description>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + </parameters>
  18 + <log>
  19 +<trans-log-table><connection/>
  20 +<schema/>
  21 +<table/>
  22 +<size_limit_lines/>
  23 +<interval/>
  24 +<timeout_days/>
  25 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  26 +<perf-log-table><connection/>
  27 +<schema/>
  28 +<table/>
  29 +<interval/>
  30 +<timeout_days/>
  31 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  32 +<channel-log-table><connection/>
  33 +<schema/>
  34 +<table/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  37 +<step-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  42 +<metrics-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  47 + </log>
  48 + <maxdate>
  49 + <connection/>
  50 + <table/>
  51 + <field/>
  52 + <offset>0.0</offset>
  53 + <maxdiff>0.0</maxdiff>
  54 + </maxdate>
  55 + <size_rowset>10000</size_rowset>
  56 + <sleep_time_empty>50</sleep_time_empty>
  57 + <sleep_time_full>50</sleep_time_full>
  58 + <unique_connections>N</unique_connections>
  59 + <feedback_shown>Y</feedback_shown>
  60 + <feedback_size>50000</feedback_size>
  61 + <using_thread_priorities>Y</using_thread_priorities>
  62 + <shared_objects_file/>
  63 + <capture_step_performance>N</capture_step_performance>
  64 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  65 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  66 + <dependencies>
  67 + </dependencies>
  68 + <partitionschemas>
  69 + </partitionschemas>
  70 + <slaveservers>
  71 + </slaveservers>
  72 + <clusterschemas>
  73 + </clusterschemas>
  74 + <created_user>-</created_user>
  75 + <created_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</created_date>
  76 + <modified_user>-</modified_user>
  77 + <modified_date>2016&#x2f;08&#x2f;05 16&#x3a;42&#x3a;22.753</modified_date>
  78 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  79 + <is_key_private>N</is_key_private>
  80 + </info>
  81 + <notepads>
  82 + </notepads>
  83 + <connection>
  84 + <name>192.168.168.1_jwgl_dw</name>
  85 + <server>192.168.168.1</server>
  86 + <type>ORACLE</type>
  87 + <access>Native</access>
  88 + <database>orcl</database>
  89 + <port>1521</port>
  90 + <username>jwgl_dw</username>
  91 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  92 + <servername/>
  93 + <data_tablespace/>
  94 + <index_tablespace/>
  95 + <attributes>
  96 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  97 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  98 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  99 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  100 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  101 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  102 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  103 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  104 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  105 + </attributes>
  106 + </connection>
  107 + <connection>
  108 + <name>bus_control_variable</name>
  109 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  110 + <type>MYSQL</type>
  111 + <access>Native</access>
  112 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  113 + <port>3306</port>
  114 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  115 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  116 + <servername/>
  117 + <data_tablespace/>
  118 + <index_tablespace/>
  119 + <attributes>
  120 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  121 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  122 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  125 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  126 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  127 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  129 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  130 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  131 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  132 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  133 + </attributes>
  134 + </connection>
  135 + <connection>
  136 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  137 + <server>localhost</server>
  138 + <type>MYSQL</type>
  139 + <access>Native</access>
  140 + <database>control</database>
  141 + <port>3306</port>
  142 + <username>root</username>
  143 + <password>Encrypted </password>
  144 + <servername/>
  145 + <data_tablespace/>
  146 + <index_tablespace/>
  147 + <attributes>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  149 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  152 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  153 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  154 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  157 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  159 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  160 + </attributes>
  161 + </connection>
  162 + <connection>
  163 + <name>bus_control_&#x672c;&#x673a;</name>
  164 + <server>localhost</server>
  165 + <type>MYSQL</type>
  166 + <access>Native</access>
  167 + <database>control</database>
  168 + <port>3306</port>
  169 + <username>root</username>
  170 + <password>Encrypted </password>
  171 + <servername/>
  172 + <data_tablespace/>
  173 + <index_tablespace/>
  174 + <attributes>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  176 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  179 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  180 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  181 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  186 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  187 + </attributes>
  188 + </connection>
  189 + <connection>
  190 + <name>xlab_mysql_youle</name>
  191 + <server>101.231.124.8</server>
  192 + <type>MYSQL</type>
  193 + <access>Native</access>
  194 + <database>xlab_youle</database>
  195 + <port>45687</port>
  196 + <username>xlab-youle</username>
  197 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  198 + <servername/>
  199 + <data_tablespace/>
  200 + <index_tablespace/>
  201 + <attributes>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  203 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  206 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  207 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  208 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  210 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  212 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  214 + </attributes>
  215 + </connection>
  216 + <connection>
  217 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  218 + <server>localhost</server>
  219 + <type>MYSQL</type>
  220 + <access>Native</access>
  221 + <database>xlab_youle</database>
  222 + <port>3306</port>
  223 + <username>root</username>
  224 + <password>Encrypted </password>
  225 + <servername/>
  226 + <data_tablespace/>
  227 + <index_tablespace/>
  228 + <attributes>
  229 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  230 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  231 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  232 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  233 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  234 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  235 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  236 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  237 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  238 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  239 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  240 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  241 + </attributes>
  242 + </connection>
  243 + <connection>
  244 + <name>xlab_youle</name>
  245 + <server/>
  246 + <type>MYSQL</type>
  247 + <access>JNDI</access>
  248 + <database>xlab_youle</database>
  249 + <port>1521</port>
  250 + <username/>
  251 + <password>Encrypted </password>
  252 + <servername/>
  253 + <data_tablespace/>
  254 + <index_tablespace/>
  255 + <attributes>
  256 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  257 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  259 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  260 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  261 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  262 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  263 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  264 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  265 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  266 + </attributes>
  267 + </connection>
  268 + <order>
  269 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  270 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  271 + </order>
  272 + <step>
  273 + <name>Excel&#x8f93;&#x51fa;</name>
  274 + <type>ExcelOutput</type>
  275 + <description/>
  276 + <distribute>Y</distribute>
  277 + <custom_distribution/>
  278 + <copies>1</copies>
  279 + <partitioning>
  280 + <method>none</method>
  281 + <schema_name/>
  282 + </partitioning>
  283 + <header>Y</header>
  284 + <footer>N</footer>
  285 + <encoding/>
  286 + <append>N</append>
  287 + <add_to_result_filenames>Y</add_to_result_filenames>
  288 + <file>
  289 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  290 + <extention>xls</extention>
  291 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  292 + <create_parent_folder>N</create_parent_folder>
  293 + <split>N</split>
  294 + <add_date>N</add_date>
  295 + <add_time>N</add_time>
  296 + <SpecifyFormat>N</SpecifyFormat>
  297 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  298 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  299 + <autosizecolums>N</autosizecolums>
  300 + <nullisblank>N</nullisblank>
  301 + <protect_sheet>N</protect_sheet>
  302 + <password>Encrypted </password>
  303 + <splitevery>0</splitevery>
  304 + <usetempfiles>N</usetempfiles>
  305 + <tempdirectory/>
  306 + </file>
  307 + <template>
  308 + <enabled>N</enabled>
  309 + <append>N</append>
  310 + <filename>template.xls</filename>
  311 + </template>
  312 + <fields>
  313 + <field>
  314 + <name>&#x8f66;&#x724c;&#x53f7;</name>
  315 + <type>String</type>
  316 + <format/>
  317 + </field>
  318 + <field>
  319 + <name>&#x8f66;&#x8f86;&#x7f16;&#x7801;</name>
  320 + <type>String</type>
  321 + <format/>
  322 + </field>
  323 + <field>
  324 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  325 + <type>String</type>
  326 + <format/>
  327 + </field>
  328 + <field>
  329 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  330 + <type>String</type>
  331 + <format/>
  332 + </field>
  333 + <field>
  334 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
  335 + <type>String</type>
  336 + <format/>
  337 + </field>
  338 + <field>
  339 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  340 + <type>String</type>
  341 + <format/>
  342 + </field>
  343 + <field>
  344 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
  345 + <type>String</type>
  346 + <format/>
  347 + </field>
  348 + <field>
  349 + <name>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</name>
  350 + <type>String</type>
  351 + <format/>
  352 + </field>
  353 + <field>
  354 + <name>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</name>
  355 + <type>String</type>
  356 + <format/>
  357 + </field>
  358 + </fields>
  359 + <custom>
  360 + <header_font_name>arial</header_font_name>
  361 + <header_font_size>10</header_font_size>
  362 + <header_font_bold>N</header_font_bold>
  363 + <header_font_italic>N</header_font_italic>
  364 + <header_font_underline>no</header_font_underline>
  365 + <header_font_orientation>horizontal</header_font_orientation>
  366 + <header_font_color>black</header_font_color>
  367 + <header_background_color>none</header_background_color>
  368 + <header_row_height>255</header_row_height>
  369 + <header_alignment>left</header_alignment>
  370 + <header_image/>
  371 + <row_font_name>arial</row_font_name>
  372 + <row_font_size>10</row_font_size>
  373 + <row_font_color>black</row_font_color>
  374 + <row_background_color>none</row_background_color>
  375 + </custom>
  376 + <cluster_schema/>
  377 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  378 + <xloc>282</xloc>
  379 + <yloc>169</yloc>
  380 + <draw>Y</draw>
  381 + </GUI>
  382 + </step>
  383 +
  384 + <step>
  385 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  386 + <type>SelectValues</type>
  387 + <description/>
  388 + <distribute>Y</distribute>
  389 + <custom_distribution/>
  390 + <copies>1</copies>
  391 + <partitioning>
  392 + <method>none</method>
  393 + <schema_name/>
  394 + </partitioning>
  395 + <fields> <field> <name>car_plate</name>
  396 + <rename>&#x8f66;&#x724c;&#x53f7;</rename>
  397 + <length>-2</length>
  398 + <precision>-2</precision>
  399 + </field> <field> <name>car_code</name>
  400 + <rename>&#x8f66;&#x8f86;&#x7f16;&#x7801;</rename>
  401 + <length>-2</length>
  402 + <precision>-2</precision>
  403 + </field> <field> <name>inside_code</name>
  404 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  405 + <length>-2</length>
  406 + <precision>-2</precision>
  407 + </field> <field> <name>company</name>
  408 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  409 + <length>-2</length>
  410 + <precision>-2</precision>
  411 + </field> <field> <name>business_code</name>
  412 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  413 + <length>-2</length>
  414 + <precision>-2</precision>
  415 + </field> <field> <name>branche_company</name>
  416 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  417 + <length>-2</length>
  418 + <precision>-2</precision>
  419 + </field> <field> <name>branche_company_code</name>
  420 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  421 + <length>-2</length>
  422 + <precision>-2</precision>
  423 + </field> <field> <name>supplier_name</name>
  424 + <rename>&#x8bbe;&#x5907;&#x4f9b;&#x5e94;&#x5382;&#x5546;</rename>
  425 + <length>-2</length>
  426 + <precision>-2</precision>
  427 + </field> <field> <name>equipment_code</name>
  428 + <rename>&#x8bbe;&#x5907;&#x7ec8;&#x7aef;&#x53f7;</rename>
  429 + <length>-2</length>
  430 + <precision>-2</precision>
  431 + </field> <select_unspecified>N</select_unspecified>
  432 + </fields> <cluster_schema/>
  433 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  434 + <xloc>280</xloc>
  435 + <yloc>67</yloc>
  436 + <draw>Y</draw>
  437 + </GUI>
  438 + </step>
  439 +
  440 + <step>
  441 + <name>&#x8868;&#x8f93;&#x5165;</name>
  442 + <type>TableInput</type>
  443 + <description/>
  444 + <distribute>Y</distribute>
  445 + <custom_distribution/>
  446 + <copies>1</copies>
  447 + <partitioning>
  448 + <method>none</method>
  449 + <schema_name/>
  450 + </partitioning>
  451 + <connection>bus_control_variable</connection>
  452 + <sql>SELECT &#x2a; FROM bsth_c_cars&#x3b;</sql>
  453 + <limit>0</limit>
  454 + <lookup/>
  455 + <execute_each_row>N</execute_each_row>
  456 + <variables_active>N</variables_active>
  457 + <lazy_conversion_active>N</lazy_conversion_active>
  458 + <cluster_schema/>
  459 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  460 + <xloc>105</xloc>
  461 + <yloc>67</yloc>
  462 + <draw>Y</draw>
  463 + </GUI>
  464 + </step>
  465 +
  466 + <step_error_handling>
  467 + </step_error_handling>
  468 + <slave-step-copy-partition-distribution>
  469 +</slave-step-copy-partition-distribution>
  470 + <slave_transformation>N</slave_transformation>
  471 +
  472 +</transformation>
... ...
src/main/resources/datatools/ktrs/employeesConfigDataOutput.ktr
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<transformation>
3   - <info>
4   - <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
5   - <description/>
6   - <extended_description/>
7   - <trans_version/>
8   - <trans_type>Normal</trans_type>
9   - <trans_status>0</trans_status>
10   - <directory>&#x2f;</directory>
11   - <parameters>
12   - <parameter>
13   - <name>filepath</name>
14   - <default_value/>
15   - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
16   - </parameter>
17   - <parameter>
18   - <name>xlid</name>
19   - <default_value/>
20   - <description>&#x7ebf;&#x8def;id</description>
21   - </parameter>
22   - </parameters>
23   - <log>
24   -<trans-log-table><connection/>
25   -<schema/>
26   -<table/>
27   -<size_limit_lines/>
28   -<interval/>
29   -<timeout_days/>
30   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
31   -<perf-log-table><connection/>
32   -<schema/>
33   -<table/>
34   -<interval/>
35   -<timeout_days/>
36   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
37   -<channel-log-table><connection/>
38   -<schema/>
39   -<table/>
40   -<timeout_days/>
41   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
42   -<step-log-table><connection/>
43   -<schema/>
44   -<table/>
45   -<timeout_days/>
46   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
47   -<metrics-log-table><connection/>
48   -<schema/>
49   -<table/>
50   -<timeout_days/>
51   -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
52   - </log>
53   - <maxdate>
54   - <connection/>
55   - <table/>
56   - <field/>
57   - <offset>0.0</offset>
58   - <maxdiff>0.0</maxdiff>
59   - </maxdate>
60   - <size_rowset>10000</size_rowset>
61   - <sleep_time_empty>50</sleep_time_empty>
62   - <sleep_time_full>50</sleep_time_full>
63   - <unique_connections>N</unique_connections>
64   - <feedback_shown>Y</feedback_shown>
65   - <feedback_size>50000</feedback_size>
66   - <using_thread_priorities>Y</using_thread_priorities>
67   - <shared_objects_file/>
68   - <capture_step_performance>N</capture_step_performance>
69   - <step_performance_capturing_delay>1000</step_performance_capturing_delay>
70   - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
71   - <dependencies>
72   - </dependencies>
73   - <partitionschemas>
74   - </partitionschemas>
75   - <slaveservers>
76   - </slaveservers>
77   - <clusterschemas>
78   - </clusterschemas>
79   - <created_user>-</created_user>
80   - <created_date>2017&#x2f;01&#x2f;11 15&#x3a;36&#x3a;10.101</created_date>
81   - <modified_user>-</modified_user>
82   - <modified_date>2017&#x2f;01&#x2f;11 15&#x3a;36&#x3a;10.101</modified_date>
83   - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
84   - <is_key_private>N</is_key_private>
85   - </info>
86   - <notepads>
87   - <notepad>
88   - <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
89   - <xloc>66</xloc>
90   - <yloc>151</yloc>
91   - <width>333</width>
92   - <heigth>90</heigth>
93   - <fontname>YaHei Consolas Hybrid</fontname>
94   - <fontsize>12</fontsize>
95   - <fontbold>N</fontbold>
96   - <fontitalic>N</fontitalic>
97   - <fontcolorred>0</fontcolorred>
98   - <fontcolorgreen>0</fontcolorgreen>
99   - <fontcolorblue>0</fontcolorblue>
100   - <backgroundcolorred>255</backgroundcolorred>
101   - <backgroundcolorgreen>205</backgroundcolorgreen>
102   - <backgroundcolorblue>112</backgroundcolorblue>
103   - <bordercolorred>100</bordercolorred>
104   - <bordercolorgreen>100</bordercolorgreen>
105   - <bordercolorblue>100</bordercolorblue>
106   - <drawshadow>Y</drawshadow>
107   - </notepad>
108   - </notepads>
109   - <connection>
110   - <name>192.168.168.1_jwgl_dw</name>
111   - <server>192.168.168.1</server>
112   - <type>ORACLE</type>
113   - <access>Native</access>
114   - <database>orcl</database>
115   - <port>1521</port>
116   - <username>jwgl_dw</username>
117   - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
118   - <servername/>
119   - <data_tablespace/>
120   - <index_tablespace/>
121   - <attributes>
122   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
123   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
124   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
125   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
126   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
127   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
128   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
129   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
130   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
131   - </attributes>
132   - </connection>
133   - <connection>
134   - <name>bus_control_variable</name>
135   - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
136   - <type>MYSQL</type>
137   - <access>Native</access>
138   - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
139   - <port>3306</port>
140   - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
141   - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
142   - <servername/>
143   - <data_tablespace/>
144   - <index_tablespace/>
145   - <attributes>
146   - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
147   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
148   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
149   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
150   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
151   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
152   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
153   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
154   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
155   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
156   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
157   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
158   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
159   - </attributes>
160   - </connection>
161   - <connection>
162   - <name>bus_control_&#x516c;&#x53f8;_201</name>
163   - <server>localhost</server>
164   - <type>MYSQL</type>
165   - <access>Native</access>
166   - <database>control</database>
167   - <port>3306</port>
168   - <username>root</username>
169   - <password>Encrypted </password>
170   - <servername/>
171   - <data_tablespace/>
172   - <index_tablespace/>
173   - <attributes>
174   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
175   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
176   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
177   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
178   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
179   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
180   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
181   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
182   - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
183   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
184   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
185   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
186   - </attributes>
187   - </connection>
188   - <connection>
189   - <name>bus_control_&#x672c;&#x673a;</name>
190   - <server>localhost</server>
191   - <type>MYSQL</type>
192   - <access>Native</access>
193   - <database>control</database>
194   - <port>3306</port>
195   - <username>root</username>
196   - <password>Encrypted </password>
197   - <servername/>
198   - <data_tablespace/>
199   - <index_tablespace/>
200   - <attributes>
201   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
202   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
203   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
204   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
205   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
206   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
207   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
208   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
209   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
210   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
211   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
212   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
213   - </attributes>
214   - </connection>
215   - <connection>
216   - <name>xlab_mysql_youle</name>
217   - <server>101.231.124.8</server>
218   - <type>MYSQL</type>
219   - <access>Native</access>
220   - <database>xlab_youle</database>
221   - <port>45687</port>
222   - <username>xlab-youle</username>
223   - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
224   - <servername/>
225   - <data_tablespace/>
226   - <index_tablespace/>
227   - <attributes>
228   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
229   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
230   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
231   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
232   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
233   - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
234   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
235   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
236   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
237   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
238   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
239   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
240   - </attributes>
241   - </connection>
242   - <connection>
243   - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
244   - <server>localhost</server>
245   - <type>MYSQL</type>
246   - <access>Native</access>
247   - <database>xlab_youle</database>
248   - <port>3306</port>
249   - <username>root</username>
250   - <password>Encrypted </password>
251   - <servername/>
252   - <data_tablespace/>
253   - <index_tablespace/>
254   - <attributes>
255   - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
256   - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
257   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
258   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
259   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
260   - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
261   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
262   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
263   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
264   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
265   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
266   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
267   - </attributes>
268   - </connection>
269   - <connection>
270   - <name>xlab_youle</name>
271   - <server/>
272   - <type>MYSQL</type>
273   - <access>JNDI</access>
274   - <database>xlab_youle</database>
275   - <port>1521</port>
276   - <username/>
277   - <password>Encrypted </password>
278   - <servername/>
279   - <data_tablespace/>
280   - <index_tablespace/>
281   - <attributes>
282   - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
283   - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
284   - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
285   - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
286   - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
287   - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
288   - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
289   - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
290   - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
291   - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
292   - </attributes>
293   - </connection>
294   - <order>
295   - <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
296   - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
297   - <hop> <from>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</from><to>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
298   - <hop> <from>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
299   - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
300   - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
301   - </order>
302   - <step>
303   - <name>Excel&#x8f93;&#x51fa;</name>
304   - <type>ExcelOutput</type>
305   - <description/>
306   - <distribute>Y</distribute>
307   - <custom_distribution/>
308   - <copies>1</copies>
309   - <partitioning>
310   - <method>none</method>
311   - <schema_name/>
312   - </partitioning>
313   - <header>Y</header>
314   - <footer>N</footer>
315   - <encoding/>
316   - <append>N</append>
317   - <add_to_result_filenames>Y</add_to_result_filenames>
318   - <file>
319   - <name>&#x24;&#x7b;filepath&#x7d;</name>
320   - <extention>xls</extention>
321   - <do_not_open_newfile_init>N</do_not_open_newfile_init>
322   - <create_parent_folder>N</create_parent_folder>
323   - <split>N</split>
324   - <add_date>N</add_date>
325   - <add_time>N</add_time>
326   - <SpecifyFormat>N</SpecifyFormat>
327   - <date_time_format>yyyyMMddHHmmss</date_time_format>
328   - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
329   - <autosizecolums>N</autosizecolums>
330   - <nullisblank>N</nullisblank>
331   - <protect_sheet>N</protect_sheet>
332   - <password>Encrypted </password>
333   - <splitevery>0</splitevery>
334   - <usetempfiles>N</usetempfiles>
335   - <tempdirectory/>
336   - </file>
337   - <template>
338   - <enabled>N</enabled>
339   - <append>N</append>
340   - <filename>template.xls</filename>
341   - </template>
342   - <fields>
343   - <field>
344   - <name>&#x7ebf;&#x8def;</name>
345   - <type>String</type>
346   - <format/>
347   - </field>
348   - <field>
349   - <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>
350   - <type>String</type>
351   - <format/>
352   - </field>
353   - <field>
354   - <name>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</name>
355   - <type>String</type>
356   - <format/>
357   - </field>
358   - <field>
359   - <name>&#x9a7e;&#x9a76;&#x5458;</name>
360   - <type>String</type>
361   - <format/>
362   - </field>
363   - <field>
364   - <name>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</name>
365   - <type>String</type>
366   - <format/>
367   - </field>
368   - <field>
369   - <name>&#x552e;&#x7968;&#x5458;</name>
370   - <type>String</type>
371   - <format/>
372   - </field>
373   - </fields>
374   - <custom>
375   - <header_font_name>arial</header_font_name>
376   - <header_font_size>10</header_font_size>
377   - <header_font_bold>N</header_font_bold>
378   - <header_font_italic>N</header_font_italic>
379   - <header_font_underline>no</header_font_underline>
380   - <header_font_orientation>horizontal</header_font_orientation>
381   - <header_font_color>black</header_font_color>
382   - <header_background_color>none</header_background_color>
383   - <header_row_height>255</header_row_height>
384   - <header_alignment>left</header_alignment>
385   - <header_image/>
386   - <row_font_name>arial</row_font_name>
387   - <row_font_size>10</row_font_size>
388   - <row_font_color>black</row_font_color>
389   - <row_background_color>none</row_background_color>
390   - </custom>
391   - <cluster_schema/>
392   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
393   - <xloc>696</xloc>
394   - <yloc>257</yloc>
395   - <draw>Y</draw>
396   - </GUI>
397   - </step>
398   -
399   - <step>
400   - <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
401   - <type>TableInput</type>
402   - <description/>
403   - <distribute>Y</distribute>
404   - <custom_distribution/>
405   - <copies>1</copies>
406   - <partitioning>
407   - <method>none</method>
408   - <schema_name/>
409   - </partitioning>
410   - <connection>bus_control_variable</connection>
411   - <sql>select &#x2a; from bsth_c_s_ecinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
412   - <limit>0</limit>
413   - <lookup/>
414   - <execute_each_row>N</execute_each_row>
415   - <variables_active>Y</variables_active>
416   - <lazy_conversion_active>N</lazy_conversion_active>
417   - <cluster_schema/>
418   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
419   - <xloc>90</xloc>
420   - <yloc>59</yloc>
421   - <draw>Y</draw>
422   - </GUI>
423   - </step>
424   -
425   - <step>
426   - <name>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</name>
427   - <type>DBJoin</type>
428   - <description/>
429   - <distribute>Y</distribute>
430   - <custom_distribution/>
431   - <copies>1</copies>
432   - <partitioning>
433   - <method>none</method>
434   - <schema_name/>
435   - </partitioning>
436   - <connection>bus_control_variable</connection>
437   - <rowlimit>1</rowlimit>
438   - <sql>select job_code as scode, personnel_name as sname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>
439   - <outer_join>Y</outer_join>
440   - <replace_vars>N</replace_vars>
441   - <parameter>
442   - <field>
443   - <name>spy</name>
444   - <type>Integer</type>
445   - </field>
446   - </parameter>
447   - <cluster_schema/>
448   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
449   - <xloc>491</xloc>
450   - <yloc>60</yloc>
451   - <draw>Y</draw>
452   - </GUI>
453   - </step>
454   -
455   - <step>
456   - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
457   - <type>SelectValues</type>
458   - <description/>
459   - <distribute>Y</distribute>
460   - <custom_distribution/>
461   - <copies>1</copies>
462   - <partitioning>
463   - <method>none</method>
464   - <schema_name/>
465   - </partitioning>
466   - <fields> <field> <name>xlmc</name>
467   - <rename>&#x7ebf;&#x8def;</rename>
468   - <length>-2</length>
469   - <precision>-2</precision>
470   - </field> <field> <name>dbbm</name>
471   - <rename>&#x642d;&#x73ed;&#x7f16;&#x7801;</rename>
472   - <length>-2</length>
473   - <precision>-2</precision>
474   - </field> <field> <name>jcode</name>
475   - <rename>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</rename>
476   - <length>-2</length>
477   - <precision>-2</precision>
478   - </field> <field> <name>jname</name>
479   - <rename>&#x9a7e;&#x9a76;&#x5458;</rename>
480   - <length>-2</length>
481   - <precision>-2</precision>
482   - </field> <field> <name>scode</name>
483   - <rename>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</rename>
484   - <length>-2</length>
485   - <precision>-2</precision>
486   - </field> <field> <name>sname</name>
487   - <rename>&#x552e;&#x7968;&#x5458;</rename>
488   - <length>-2</length>
489   - <precision>-2</precision>
490   - </field> <select_unspecified>N</select_unspecified>
491   - </fields> <cluster_schema/>
492   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
493   - <xloc>492</xloc>
494   - <yloc>164</yloc>
495   - <draw>Y</draw>
496   - </GUI>
497   - </step>
498   -
499   - <step>
500   - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
501   - <type>SortRows</type>
502   - <description/>
503   - <distribute>Y</distribute>
504   - <custom_distribution/>
505   - <copies>1</copies>
506   - <partitioning>
507   - <method>none</method>
508   - <schema_name/>
509   - </partitioning>
510   - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
511   - <prefix>out</prefix>
512   - <sort_size>1000000</sort_size>
513   - <free_memory/>
514   - <compress>N</compress>
515   - <compress_variable/>
516   - <unique_rows>N</unique_rows>
517   - <fields>
518   - <field>
519   - <name>&#x7ebf;&#x8def;</name>
520   - <ascending>Y</ascending>
521   - <case_sensitive>N</case_sensitive>
522   - <presorted>N</presorted>
523   - </field>
524   - <field>
525   - <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>
526   - <ascending>Y</ascending>
527   - <case_sensitive>N</case_sensitive>
528   - <presorted>N</presorted>
529   - </field>
530   - </fields>
531   - <cluster_schema/>
532   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
533   - <xloc>692</xloc>
534   - <yloc>164</yloc>
535   - <draw>Y</draw>
536   - </GUI>
537   - </step>
538   -
539   - <step>
540   - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
541   - <type>DBLookup</type>
542   - <description/>
543   - <distribute>Y</distribute>
544   - <custom_distribution/>
545   - <copies>1</copies>
546   - <partitioning>
547   - <method>none</method>
548   - <schema_name/>
549   - </partitioning>
550   - <connection>bus_control_variable</connection>
551   - <cache>Y</cache>
552   - <cache_load_all>Y</cache_load_all>
553   - <cache_size>0</cache_size>
554   - <lookup>
555   - <schema/>
556   - <table>bsth_c_line</table>
557   - <orderby/>
558   - <fail_on_multiple>N</fail_on_multiple>
559   - <eat_row_on_failure>N</eat_row_on_failure>
560   - <key>
561   - <name>xl</name>
562   - <field>id</field>
563   - <condition>&#x3d;</condition>
564   - <name2/>
565   - </key>
566   - <value>
567   - <name>name</name>
568   - <rename>xlmc</rename>
569   - <default/>
570   - <type>String</type>
571   - </value>
572   - </lookup>
573   - <cluster_schema/>
574   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
575   - <xloc>227</xloc>
576   - <yloc>59</yloc>
577   - <draw>Y</draw>
578   - </GUI>
579   - </step>
580   -
581   - <step>
582   - <name>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</name>
583   - <type>DBJoin</type>
584   - <description/>
585   - <distribute>Y</distribute>
586   - <custom_distribution/>
587   - <copies>1</copies>
588   - <partitioning>
589   - <method>none</method>
590   - <schema_name/>
591   - </partitioning>
592   - <connection>bus_control_variable</connection>
593   - <rowlimit>1</rowlimit>
594   - <sql>select job_code as jcode, personnel_name as jname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>
595   - <outer_join>Y</outer_join>
596   - <replace_vars>N</replace_vars>
597   - <parameter>
598   - <field>
599   - <name>jsy</name>
600   - <type>Integer</type>
601   - </field>
602   - </parameter>
603   - <cluster_schema/>
604   - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
605   - <xloc>366</xloc>
606   - <yloc>60</yloc>
607   - <draw>Y</draw>
608   - </GUI>
609   - </step>
610   -
611   - <step_error_handling>
612   - </step_error_handling>
613   - <slave-step-copy-partition-distribution>
614   -</slave-step-copy-partition-distribution>
615   - <slave_transformation>N</slave_transformation>
616   -
617   -</transformation>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#x4fe1;&#x606f;&#x5bfc;&#x51fa;</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>filepath</name>
  14 + <default_value/>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>xlid</name>
  19 + <default_value/>
  20 + <description>&#x7ebf;&#x8def;id</description>
  21 + </parameter>
  22 + </parameters>
  23 + <log>
  24 +<trans-log-table><connection/>
  25 +<schema/>
  26 +<table/>
  27 +<size_limit_lines/>
  28 +<interval/>
  29 +<timeout_days/>
  30 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  31 +<perf-log-table><connection/>
  32 +<schema/>
  33 +<table/>
  34 +<interval/>
  35 +<timeout_days/>
  36 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  37 +<channel-log-table><connection/>
  38 +<schema/>
  39 +<table/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  42 +<step-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  47 +<metrics-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  52 + </log>
  53 + <maxdate>
  54 + <connection/>
  55 + <table/>
  56 + <field/>
  57 + <offset>0.0</offset>
  58 + <maxdiff>0.0</maxdiff>
  59 + </maxdate>
  60 + <size_rowset>10000</size_rowset>
  61 + <sleep_time_empty>50</sleep_time_empty>
  62 + <sleep_time_full>50</sleep_time_full>
  63 + <unique_connections>N</unique_connections>
  64 + <feedback_shown>Y</feedback_shown>
  65 + <feedback_size>50000</feedback_size>
  66 + <using_thread_priorities>Y</using_thread_priorities>
  67 + <shared_objects_file/>
  68 + <capture_step_performance>N</capture_step_performance>
  69 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  70 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  71 + <dependencies>
  72 + </dependencies>
  73 + <partitionschemas>
  74 + </partitionschemas>
  75 + <slaveservers>
  76 + </slaveservers>
  77 + <clusterschemas>
  78 + </clusterschemas>
  79 + <created_user>-</created_user>
  80 + <created_date>2017&#x2f;01&#x2f;11 15&#x3a;36&#x3a;10.101</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;01&#x2f;11 15&#x3a;36&#x3a;10.101</modified_date>
  83 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  84 + <is_key_private>N</is_key_private>
  85 + </info>
  86 + <notepads>
  87 + <notepad>
  88 + <note>&#x8fd9;&#x91cc;&#x6709;&#x4e9b;&#x95ee;&#x9898;&#xa;&#x5728;window2012&#x7684;&#x73af;&#x5883;&#x4e0b;&#xff0c;&#xa;MySql&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x4e2d;&#x5982;&#x679c;&#x8fd4;&#x56de;&#x4e2d;&#x6587;&#x5185;&#x5bb9;&#x7684;&#x5b57;&#x6bb5;&#xff0c;&#x8fd9;&#x4e2a;&#x5185;&#x5bb9;&#x4e71;&#x7801;&#xa;&#x89e3;&#x51b3;&#x529e;&#x6cd5;&#xff0c;&#x5c31;&#x662f;&#x6570;&#x636e;&#x5e93;&#x67e5;&#x8be2;&#x5168;&#x90e8;&#x7f13;&#x5b58;&#xff0c;&#x5c31;&#x4e0d;&#x4e71;&#x7801;&#xa;linux&#x73af;&#x5883;&#x4e0b;&#x6ca1;&#x95ee;&#x9898;</note>
  89 + <xloc>66</xloc>
  90 + <yloc>151</yloc>
  91 + <width>333</width>
  92 + <heigth>90</heigth>
  93 + <fontname>YaHei Consolas Hybrid</fontname>
  94 + <fontsize>12</fontsize>
  95 + <fontbold>N</fontbold>
  96 + <fontitalic>N</fontitalic>
  97 + <fontcolorred>0</fontcolorred>
  98 + <fontcolorgreen>0</fontcolorgreen>
  99 + <fontcolorblue>0</fontcolorblue>
  100 + <backgroundcolorred>255</backgroundcolorred>
  101 + <backgroundcolorgreen>205</backgroundcolorgreen>
  102 + <backgroundcolorblue>112</backgroundcolorblue>
  103 + <bordercolorred>100</bordercolorred>
  104 + <bordercolorgreen>100</bordercolorgreen>
  105 + <bordercolorblue>100</bordercolorblue>
  106 + <drawshadow>Y</drawshadow>
  107 + </notepad>
  108 + </notepads>
  109 + <connection>
  110 + <name>192.168.168.1_jwgl_dw</name>
  111 + <server>192.168.168.1</server>
  112 + <type>ORACLE</type>
  113 + <access>Native</access>
  114 + <database>orcl</database>
  115 + <port>1521</port>
  116 + <username>jwgl_dw</username>
  117 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  118 + <servername/>
  119 + <data_tablespace/>
  120 + <index_tablespace/>
  121 + <attributes>
  122 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  123 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  124 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  125 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  126 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  127 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  128 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  129 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  130 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  131 + </attributes>
  132 + </connection>
  133 + <connection>
  134 + <name>bus_control_variable</name>
  135 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  136 + <type>MYSQL</type>
  137 + <access>Native</access>
  138 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  139 + <port>3306</port>
  140 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  141 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  142 + <servername/>
  143 + <data_tablespace/>
  144 + <index_tablespace/>
  145 + <attributes>
  146 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  147 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  148 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  151 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  152 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  153 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  154 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  155 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  156 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  157 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  158 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  159 + </attributes>
  160 + </connection>
  161 + <connection>
  162 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  163 + <server>localhost</server>
  164 + <type>MYSQL</type>
  165 + <access>Native</access>
  166 + <database>control</database>
  167 + <port>3306</port>
  168 + <username>root</username>
  169 + <password>Encrypted </password>
  170 + <servername/>
  171 + <data_tablespace/>
  172 + <index_tablespace/>
  173 + <attributes>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  175 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  178 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  179 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  180 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  181 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  183 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  185 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  186 + </attributes>
  187 + </connection>
  188 + <connection>
  189 + <name>bus_control_&#x672c;&#x673a;</name>
  190 + <server>localhost</server>
  191 + <type>MYSQL</type>
  192 + <access>Native</access>
  193 + <database>control</database>
  194 + <port>3306</port>
  195 + <username>root</username>
  196 + <password>Encrypted </password>
  197 + <servername/>
  198 + <data_tablespace/>
  199 + <index_tablespace/>
  200 + <attributes>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  202 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  205 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  206 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  207 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  208 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  212 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  213 + </attributes>
  214 + </connection>
  215 + <connection>
  216 + <name>xlab_mysql_youle</name>
  217 + <server>101.231.124.8</server>
  218 + <type>MYSQL</type>
  219 + <access>Native</access>
  220 + <database>xlab_youle</database>
  221 + <port>45687</port>
  222 + <username>xlab-youle</username>
  223 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  224 + <servername/>
  225 + <data_tablespace/>
  226 + <index_tablespace/>
  227 + <attributes>
  228 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  229 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  230 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  231 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  232 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  233 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  234 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  235 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  236 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  239 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  240 + </attributes>
  241 + </connection>
  242 + <connection>
  243 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  244 + <server>localhost</server>
  245 + <type>MYSQL</type>
  246 + <access>Native</access>
  247 + <database>xlab_youle</database>
  248 + <port>3306</port>
  249 + <username>root</username>
  250 + <password>Encrypted </password>
  251 + <servername/>
  252 + <data_tablespace/>
  253 + <index_tablespace/>
  254 + <attributes>
  255 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  256 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  257 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  260 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  261 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  263 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  264 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  265 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  267 + </attributes>
  268 + </connection>
  269 + <connection>
  270 + <name>xlab_youle</name>
  271 + <server/>
  272 + <type>MYSQL</type>
  273 + <access>JNDI</access>
  274 + <database>xlab_youle</database>
  275 + <port>1521</port>
  276 + <username/>
  277 + <password>Encrypted </password>
  278 + <servername/>
  279 + <data_tablespace/>
  280 + <index_tablespace/>
  281 + <attributes>
  282 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  283 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  284 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  285 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  286 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  287 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  288 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  289 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  290 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  291 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  292 + </attributes>
  293 + </connection>
  294 + <order>
  295 + <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  296 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  297 + <hop> <from>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</from><to>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  298 + <hop> <from>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  299 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  300 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  301 + </order>
  302 + <step>
  303 + <name>Excel&#x8f93;&#x51fa;</name>
  304 + <type>ExcelOutput</type>
  305 + <description/>
  306 + <distribute>Y</distribute>
  307 + <custom_distribution/>
  308 + <copies>1</copies>
  309 + <partitioning>
  310 + <method>none</method>
  311 + <schema_name/>
  312 + </partitioning>
  313 + <header>Y</header>
  314 + <footer>N</footer>
  315 + <encoding/>
  316 + <append>N</append>
  317 + <add_to_result_filenames>Y</add_to_result_filenames>
  318 + <file>
  319 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  320 + <extention>xls</extention>
  321 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  322 + <create_parent_folder>N</create_parent_folder>
  323 + <split>N</split>
  324 + <add_date>N</add_date>
  325 + <add_time>N</add_time>
  326 + <SpecifyFormat>N</SpecifyFormat>
  327 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  328 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  329 + <autosizecolums>N</autosizecolums>
  330 + <nullisblank>N</nullisblank>
  331 + <protect_sheet>N</protect_sheet>
  332 + <password>Encrypted </password>
  333 + <splitevery>0</splitevery>
  334 + <usetempfiles>N</usetempfiles>
  335 + <tempdirectory/>
  336 + </file>
  337 + <template>
  338 + <enabled>N</enabled>
  339 + <append>N</append>
  340 + <filename>template.xls</filename>
  341 + </template>
  342 + <fields>
  343 + <field>
  344 + <name>&#x7ebf;&#x8def;</name>
  345 + <type>String</type>
  346 + <format/>
  347 + </field>
  348 + <field>
  349 + <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>
  350 + <type>String</type>
  351 + <format/>
  352 + </field>
  353 + <field>
  354 + <name>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</name>
  355 + <type>String</type>
  356 + <format/>
  357 + </field>
  358 + <field>
  359 + <name>&#x9a7e;&#x9a76;&#x5458;</name>
  360 + <type>String</type>
  361 + <format/>
  362 + </field>
  363 + <field>
  364 + <name>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</name>
  365 + <type>String</type>
  366 + <format/>
  367 + </field>
  368 + <field>
  369 + <name>&#x552e;&#x7968;&#x5458;</name>
  370 + <type>String</type>
  371 + <format/>
  372 + </field>
  373 + </fields>
  374 + <custom>
  375 + <header_font_name>arial</header_font_name>
  376 + <header_font_size>10</header_font_size>
  377 + <header_font_bold>N</header_font_bold>
  378 + <header_font_italic>N</header_font_italic>
  379 + <header_font_underline>no</header_font_underline>
  380 + <header_font_orientation>horizontal</header_font_orientation>
  381 + <header_font_color>black</header_font_color>
  382 + <header_background_color>none</header_background_color>
  383 + <header_row_height>255</header_row_height>
  384 + <header_alignment>left</header_alignment>
  385 + <header_image/>
  386 + <row_font_name>arial</row_font_name>
  387 + <row_font_size>10</row_font_size>
  388 + <row_font_color>black</row_font_color>
  389 + <row_background_color>none</row_background_color>
  390 + </custom>
  391 + <cluster_schema/>
  392 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  393 + <xloc>696</xloc>
  394 + <yloc>257</yloc>
  395 + <draw>Y</draw>
  396 + </GUI>
  397 + </step>
  398 +
  399 + <step>
  400 + <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  401 + <type>TableInput</type>
  402 + <description/>
  403 + <distribute>Y</distribute>
  404 + <custom_distribution/>
  405 + <copies>1</copies>
  406 + <partitioning>
  407 + <method>none</method>
  408 + <schema_name/>
  409 + </partitioning>
  410 + <connection>bus_control_variable</connection>
  411 + <sql>select &#x2a; from bsth_c_s_ecinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  412 + <limit>0</limit>
  413 + <lookup/>
  414 + <execute_each_row>N</execute_each_row>
  415 + <variables_active>Y</variables_active>
  416 + <lazy_conversion_active>N</lazy_conversion_active>
  417 + <cluster_schema/>
  418 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  419 + <xloc>90</xloc>
  420 + <yloc>59</yloc>
  421 + <draw>Y</draw>
  422 + </GUI>
  423 + </step>
  424 +
  425 + <step>
  426 + <name>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</name>
  427 + <type>DBJoin</type>
  428 + <description/>
  429 + <distribute>Y</distribute>
  430 + <custom_distribution/>
  431 + <copies>1</copies>
  432 + <partitioning>
  433 + <method>none</method>
  434 + <schema_name/>
  435 + </partitioning>
  436 + <connection>bus_control_variable</connection>
  437 + <rowlimit>1</rowlimit>
  438 + <sql>select job_code as scode, personnel_name as sname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>
  439 + <outer_join>Y</outer_join>
  440 + <replace_vars>N</replace_vars>
  441 + <parameter>
  442 + <field>
  443 + <name>spy</name>
  444 + <type>Integer</type>
  445 + </field>
  446 + </parameter>
  447 + <cluster_schema/>
  448 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  449 + <xloc>491</xloc>
  450 + <yloc>60</yloc>
  451 + <draw>Y</draw>
  452 + </GUI>
  453 + </step>
  454 +
  455 + <step>
  456 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  457 + <type>SelectValues</type>
  458 + <description/>
  459 + <distribute>Y</distribute>
  460 + <custom_distribution/>
  461 + <copies>1</copies>
  462 + <partitioning>
  463 + <method>none</method>
  464 + <schema_name/>
  465 + </partitioning>
  466 + <fields> <field> <name>xlmc</name>
  467 + <rename>&#x7ebf;&#x8def;</rename>
  468 + <length>-2</length>
  469 + <precision>-2</precision>
  470 + </field> <field> <name>dbbm</name>
  471 + <rename>&#x642d;&#x73ed;&#x7f16;&#x7801;</rename>
  472 + <length>-2</length>
  473 + <precision>-2</precision>
  474 + </field> <field> <name>jcode</name>
  475 + <rename>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</rename>
  476 + <length>-2</length>
  477 + <precision>-2</precision>
  478 + </field> <field> <name>jname</name>
  479 + <rename>&#x9a7e;&#x9a76;&#x5458;</rename>
  480 + <length>-2</length>
  481 + <precision>-2</precision>
  482 + </field> <field> <name>scode</name>
  483 + <rename>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</rename>
  484 + <length>-2</length>
  485 + <precision>-2</precision>
  486 + </field> <field> <name>sname</name>
  487 + <rename>&#x552e;&#x7968;&#x5458;</rename>
  488 + <length>-2</length>
  489 + <precision>-2</precision>
  490 + </field> <select_unspecified>N</select_unspecified>
  491 + </fields> <cluster_schema/>
  492 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  493 + <xloc>492</xloc>
  494 + <yloc>164</yloc>
  495 + <draw>Y</draw>
  496 + </GUI>
  497 + </step>
  498 +
  499 + <step>
  500 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  501 + <type>SortRows</type>
  502 + <description/>
  503 + <distribute>Y</distribute>
  504 + <custom_distribution/>
  505 + <copies>1</copies>
  506 + <partitioning>
  507 + <method>none</method>
  508 + <schema_name/>
  509 + </partitioning>
  510 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  511 + <prefix>out</prefix>
  512 + <sort_size>1000000</sort_size>
  513 + <free_memory/>
  514 + <compress>N</compress>
  515 + <compress_variable/>
  516 + <unique_rows>N</unique_rows>
  517 + <fields>
  518 + <field>
  519 + <name>&#x7ebf;&#x8def;</name>
  520 + <ascending>Y</ascending>
  521 + <case_sensitive>N</case_sensitive>
  522 + <presorted>N</presorted>
  523 + </field>
  524 + <field>
  525 + <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>
  526 + <ascending>Y</ascending>
  527 + <case_sensitive>N</case_sensitive>
  528 + <presorted>N</presorted>
  529 + </field>
  530 + </fields>
  531 + <cluster_schema/>
  532 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  533 + <xloc>692</xloc>
  534 + <yloc>164</yloc>
  535 + <draw>Y</draw>
  536 + </GUI>
  537 + </step>
  538 +
  539 + <step>
  540 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  541 + <type>DBLookup</type>
  542 + <description/>
  543 + <distribute>Y</distribute>
  544 + <custom_distribution/>
  545 + <copies>1</copies>
  546 + <partitioning>
  547 + <method>none</method>
  548 + <schema_name/>
  549 + </partitioning>
  550 + <connection>bus_control_variable</connection>
  551 + <cache>Y</cache>
  552 + <cache_load_all>Y</cache_load_all>
  553 + <cache_size>0</cache_size>
  554 + <lookup>
  555 + <schema/>
  556 + <table>bsth_c_line</table>
  557 + <orderby/>
  558 + <fail_on_multiple>N</fail_on_multiple>
  559 + <eat_row_on_failure>N</eat_row_on_failure>
  560 + <key>
  561 + <name>xl</name>
  562 + <field>id</field>
  563 + <condition>&#x3d;</condition>
  564 + <name2/>
  565 + </key>
  566 + <value>
  567 + <name>name</name>
  568 + <rename>xlmc</rename>
  569 + <default/>
  570 + <type>String</type>
  571 + </value>
  572 + </lookup>
  573 + <cluster_schema/>
  574 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  575 + <xloc>227</xloc>
  576 + <yloc>59</yloc>
  577 + <draw>Y</draw>
  578 + </GUI>
  579 + </step>
  580 +
  581 + <step>
  582 + <name>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</name>
  583 + <type>DBJoin</type>
  584 + <description/>
  585 + <distribute>Y</distribute>
  586 + <custom_distribution/>
  587 + <copies>1</copies>
  588 + <partitioning>
  589 + <method>none</method>
  590 + <schema_name/>
  591 + </partitioning>
  592 + <connection>bus_control_variable</connection>
  593 + <rowlimit>1</rowlimit>
  594 + <sql>select job_code as jcode, personnel_name as jname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>
  595 + <outer_join>Y</outer_join>
  596 + <replace_vars>N</replace_vars>
  597 + <parameter>
  598 + <field>
  599 + <name>jsy</name>
  600 + <type>Integer</type>
  601 + </field>
  602 + </parameter>
  603 + <cluster_schema/>
  604 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  605 + <xloc>366</xloc>
  606 + <yloc>60</yloc>
  607 + <draw>Y</draw>
  608 + </GUI>
  609 + </step>
  610 +
  611 + <step_error_handling>
  612 + </step_error_handling>
  613 + <slave-step-copy-partition-distribution>
  614 +</slave-step-copy-partition-distribution>
  615 + <slave_transformation>N</slave_transformation>
  616 +
  617 +</transformation>
... ...