Commit e6107ab369ce3ac79d18de09db0cec18fede1748

Authored by 潘钊
2 parents a06b8964 85d31a80

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

Showing 31 changed files with 6738 additions and 5842 deletions
src/main/java/com/bsth/repository/realcontrol/ScheduleRealInfoRepository.java
@@ -133,7 +133,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI @@ -133,7 +133,7 @@ public interface ScheduleRealInfoRepository extends BaseRepository<ScheduleRealI
133 133
134 //去掉了 xlBm is not null 134 //去掉了 xlBm is not null
135 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 135 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
136 - @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm like %?1% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.realExecDate,s.dfsj, (s.lpName+1)") 136 + @Query(value="select DISTINCT s from ScheduleRealInfo s where s.xlBm like %?1% and DATE_FORMAT(s.scheduleDate,'%Y-%m-%d') = ?2 order by s.xlDir,s.realExecDate,s.dfsj, (s.lpName+1)")
137 List<ScheduleRealInfo> scheduleByDateAndLine(String line,String date); 137 List<ScheduleRealInfo> scheduleByDateAndLine(String line,String date);
138 138
139 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH) 139 @EntityGraph(value = "scheduleRealInfo_cTasks", type = EntityGraph.EntityGraphType.FETCH)
src/main/java/com/bsth/service/excep/impl/OfflineServiceImpl.java
@@ -43,15 +43,16 @@ public class OfflineServiceImpl implements OfflineService { @@ -43,15 +43,16 @@ public class OfflineServiceImpl implements OfflineService {
43 String days_year=map.get("days_year").toString(); 43 String days_year=map.get("days_year").toString();
44 String line_id=map.get("line_id").toString(); 44 String line_id=map.get("line_id").toString();
45 String device_id=map.get("device_id").toString(); 45 String device_id=map.get("device_id").toString();
  46 + String ts=map.get("ts").toString();
46 String sql="SELECT t.line_id,t.device_id,MIN(ts) as ts,days_year FROM bsth_c_gps_info t " 47 String sql="SELECT t.line_id,t.device_id,MIN(ts) as ts,days_year FROM bsth_c_gps_info t "
47 - + " WHERE t.line_id='"+line_id+"' and t.device_id='"+device_id+"' and t.days_year='"+days_year+"' " 48 + + " WHERE t.line_id='"+line_id+"' and t.device_id='"+device_id+"' and t.days_year='"+days_year+"' and t.ts>='"+ts+"' "
48 + " GROUP BY t.device_id,t.line_id "; 49 + " GROUP BY t.device_id,t.line_id ";
49 - sql +=" order by ts limit ?,?"; 50 + sql +=" order by ts ";
50 try { 51 try {
51 conn = DBUtils_MS.getConnection(); 52 conn = DBUtils_MS.getConnection();
52 ps = conn.prepareStatement(sql); 53 ps = conn.prepareStatement(sql);
53 - ps.setInt(1,0*10); // O-最大条数 -- M-起始条数  
54 - ps.setInt(2, 100000000); // O-最小条数 -- M-显示条数 54 +// ps.setInt(1,0*10); // O-最大条数 -- M-起始条数
  55 +// ps.setInt(2, 1000000); // O-最小条数 -- M-显示条数
55 rs = ps.executeQuery(); 56 rs = ps.executeQuery();
56 list = resultSet(rs); 57 list = resultSet(rs);
57 } catch (SQLException e) { 58 } catch (SQLException e) {
@@ -258,6 +259,7 @@ public class OfflineServiceImpl implements OfflineService { @@ -258,6 +259,7 @@ public class OfflineServiceImpl implements OfflineService {
258 gpsmap.put("device_id",deviceid ); 259 gpsmap.put("device_id",deviceid );
259 gpsmap.put("line_id", lineid); 260 gpsmap.put("line_id", lineid);
260 gpsmap.put("days_year", str); 261 gpsmap.put("days_year", str);
  262 + gpsmap.put("ts", d1);
261 List<Offline> gps=findGPS(gpsmap); 263 List<Offline> gps=findGPS(gpsmap);
262 if(gps.size()>0){ 264 if(gps.size()>0){
263 Long ts= gps.get(0).getTs(); 265 Long ts= gps.get(0).getTs();
src/main/java/com/bsth/service/forms/impl/FormsServiceImpl.java
@@ -968,13 +968,13 @@ public class FormsServiceImpl implements FormsService { @@ -968,13 +968,13 @@ public class FormsServiceImpl implements FormsService {
968 } 968 }
969 969
970 String sql="select t.schedule_date_str," 970 String sql="select t.schedule_date_str,"
971 - + " t.cl_zbh,t.j_gh,t.j_name,x.yh from (select r.schedule_date_str,r.xl_bm,r.xl_name," 971 + + " t.cl_zbh,t.j_gh,t.j_name,x.yh from (select r.schedule_date_str,r.xl_bm,"
972 + " r.cl_zbh,r.j_gh,r.j_name from bsth_c_s_sp_info_real r WHERE " 972 + " r.cl_zbh,r.j_gh,r.j_name from bsth_c_s_sp_info_real r WHERE "
973 + " r.xl_bm='" + map.get("line").toString() + "' " 973 + " r.xl_bm='" + map.get("line").toString() + "' "
974 + " and to_days(r.schedule_date)=to_days('"+map.get("date").toString()+"') " 974 + " and to_days(r.schedule_date)=to_days('"+map.get("date").toString()+"') "
975 + " and r.gs_bm like '%"+gsbm+"%' " 975 + " and r.gs_bm like '%"+gsbm+"%' "
976 + " and r.fgs_bm like '%"+fgsbm+"%' " 976 + " and r.fgs_bm like '%"+fgsbm+"%' "
977 - + " GROUP BY r.schedule_date_str,r.xl_bm,r.xl_name,r.cl_zbh,r.j_gh,r.j_name) t" 977 + + " GROUP BY r.schedule_date_str,r.xl_bm,r.cl_zbh,r.j_gh,r.j_name) t"
978 + " left join (select * from bsth_c_ylb y where " 978 + " left join (select * from bsth_c_ylb y where "
979 + " to_days(y.rq)=to_days('"+map.get("date").toString()+"') " 979 + " to_days(y.rq)=to_days('"+map.get("date").toString()+"') "
980 + " and y.xlbm= '" + map.get("line").toString() + "'" 980 + " and y.xlbm= '" + map.get("line").toString() + "'"
src/main/java/com/bsth/service/report/impl/ReportServiceImpl.java
@@ -1374,7 +1374,10 @@ public class ReportServiceImpl implements ReportService{ @@ -1374,7 +1374,10 @@ public class ReportServiceImpl implements ReportService{
1374 // TODO Auto-generated method stub 1374 // TODO Auto-generated method stub
1375 // 转大写 1375 // 转大写
1376 String nbbm =maps.get("nbbm").toString().toUpperCase(); 1376 String nbbm =maps.get("nbbm").toString().toUpperCase();
1377 - String gsbm=maps.get("gsbm").toString().trim(); 1377 + String gsbm="";
  1378 +
  1379 + if(maps.get("gsbm")!=null)
  1380 + gsbm= maps.get("gsbm").toString().trim();
1378 // String fgsbm=maps.get("fgsbm").toString().trim(); 1381 // String fgsbm=maps.get("fgsbm").toString().trim();
1379 String xlbm=maps.get("xlbm").toString().trim(); 1382 String xlbm=maps.get("xlbm").toString().trim();
1380 List<Map<String, String>> list = new ArrayList<Map<String, String>>(); 1383 List<Map<String, String>> list = new ArrayList<Map<String, String>>();
@@ -1430,7 +1433,9 @@ public class ReportServiceImpl implements ReportService{ @@ -1430,7 +1433,9 @@ public class ReportServiceImpl implements ReportService{
1430 // TODO Auto-generated method stub 1433 // TODO Auto-generated method stub
1431 // 转大写 1434 // 转大写
1432 String jsy =maps.get("jsy").toString().toUpperCase(); 1435 String jsy =maps.get("jsy").toString().toUpperCase();
1433 - String gsbm=maps.get("gsbm").toString().trim(); 1436 + String gsbm="";
  1437 + if(maps.get("gsbm")!=null)
  1438 + gsbm=maps.get("gsbm").toString().trim();
1434 // String fgsbm=maps.get("fgsbm").toString().trim(); 1439 // String fgsbm=maps.get("fgsbm").toString().trim();
1435 List<Map<String, String>> list = new ArrayList<Map<String, String>>(); 1440 List<Map<String, String>> list = new ArrayList<Map<String, String>>();
1436 Map<String, String> map; 1441 Map<String, String> map;
src/main/java/com/bsth/service/schedule/utils/DataToolsServiceImpl.java
@@ -217,7 +217,7 @@ public class DataToolsServiceImpl implements DataToolsService { @@ -217,7 +217,7 @@ public class DataToolsServiceImpl implements DataToolsService {
217 String filepath = dataToolsProperties.getFileoutputDir() + 217 String filepath = dataToolsProperties.getFileoutputDir() +
218 File.separator + 218 File.separator +
219 filename + 219 filename +
220 - new DateTime().toString("yyyyMMddHHmmss") + ".xls"; 220 + new DateTime().toString("yyyyMMddHHmmss");
221 params.put("filepath", filepath); 221 params.put("filepath", filepath);
222 222
223 // ktr输出模版目录(可选) 223 // ktr输出模版目录(可选)
@@ -251,7 +251,7 @@ public class DataToolsServiceImpl implements DataToolsService { @@ -251,7 +251,7 @@ public class DataToolsServiceImpl implements DataToolsService {
251 LOGGER.info(stringBuffer.toString()); 251 LOGGER.info(stringBuffer.toString());
252 LOGGER.info("exportData success..."); 252 LOGGER.info("exportData success...");
253 253
254 - return new File(filepath); 254 + return new File(filepath + ".xls");
255 } catch (Exception exp) { 255 } catch (Exception exp) {
256 LOGGER.info("exportData failed...statckTrace..."); 256 LOGGER.info("exportData failed...statckTrace...");
257 257
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>bus_control_variable</name>  
116 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
117 - <type>MYSQL</type>  
118 - <access>Native</access>  
119 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
120 - <port>3306</port>  
121 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
122 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
123 - <servername/>  
124 - <data_tablespace/>  
125 - <index_tablespace/>  
126 - <attributes>  
127 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
128 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
129 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
130 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
131 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
132 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
133 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
134 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
135 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
136 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
137 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
138 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
139 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
140 - </attributes>  
141 - </connection>  
142 - <connection>  
143 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
144 - <server>localhost</server>  
145 - <type>MYSQL</type>  
146 - <access>Native</access>  
147 - <database>control</database>  
148 - <port>3306</port>  
149 - <username>root</username>  
150 - <password>Encrypted </password>  
151 - <servername/>  
152 - <data_tablespace/>  
153 - <index_tablespace/>  
154 - <attributes>  
155 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
156 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
157 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
158 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
159 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
160 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
161 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
162 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
163 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
164 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
165 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
166 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
167 - </attributes>  
168 - </connection>  
169 - <connection>  
170 - <name>bus_control_&#x672c;&#x673a;</name>  
171 - <server>localhost</server>  
172 - <type>MYSQL</type>  
173 - <access>Native</access>  
174 - <database>control</database>  
175 - <port>3306</port>  
176 - <username>root</username>  
177 - <password>Encrypted </password>  
178 - <servername/>  
179 - <data_tablespace/>  
180 - <index_tablespace/>  
181 - <attributes>  
182 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
183 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
184 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
185 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
186 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
187 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
188 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
189 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
190 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
191 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
192 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
193 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
194 - </attributes>  
195 - </connection>  
196 - <connection>  
197 - <name>xlab_mysql_youle</name>  
198 - <server>101.231.124.8</server>  
199 - <type>MYSQL</type>  
200 - <access>Native</access>  
201 - <database>xlab_youle</database>  
202 - <port>45687</port>  
203 - <username>xlab-youle</username>  
204 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
205 - <servername/>  
206 - <data_tablespace/>  
207 - <index_tablespace/>  
208 - <attributes>  
209 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
210 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
211 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
212 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
214 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
215 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
216 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
217 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
218 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
219 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
220 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
221 - </attributes>  
222 - </connection>  
223 - <connection>  
224 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
225 - <server>localhost</server>  
226 - <type>MYSQL</type>  
227 - <access>Native</access>  
228 - <database>xlab_youle</database>  
229 - <port>3306</port>  
230 - <username>root</username>  
231 - <password>Encrypted </password>  
232 - <servername/>  
233 - <data_tablespace/>  
234 - <index_tablespace/>  
235 - <attributes>  
236 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
237 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
238 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
239 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
241 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
242 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
243 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
244 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
245 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
246 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
247 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
248 - </attributes>  
249 - </connection>  
250 - <connection>  
251 - <name>xlab_youle</name>  
252 - <server/>  
253 - <type>MYSQL</type>  
254 - <access>JNDI</access>  
255 - <database>xlab_youle</database>  
256 - <port>1521</port>  
257 - <username/>  
258 - <password>Encrypted </password>  
259 - <servername/>  
260 - <data_tablespace/>  
261 - <index_tablespace/>  
262 - <attributes>  
263 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
265 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
266 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
267 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
268 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
269 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
270 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
271 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
272 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
273 - </attributes>  
274 - </connection>  
275 - <order>  
276 - <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
277 - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
278 - <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>  
279 - <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
280 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
281 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
282 - </order>  
283 - <step>  
284 - <name>Excel&#x8f93;&#x51fa;</name>  
285 - <type>ExcelOutput</type>  
286 - <description/>  
287 - <distribute>Y</distribute>  
288 - <custom_distribution/>  
289 - <copies>1</copies>  
290 - <partitioning>  
291 - <method>none</method>  
292 - <schema_name/>  
293 - </partitioning>  
294 - <header>Y</header>  
295 - <footer>N</footer>  
296 - <encoding/>  
297 - <append>N</append>  
298 - <add_to_result_filenames>Y</add_to_result_filenames>  
299 - <file>  
300 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
301 - <extention/>  
302 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
303 - <create_parent_folder>N</create_parent_folder>  
304 - <split>N</split>  
305 - <add_date>N</add_date>  
306 - <add_time>N</add_time>  
307 - <SpecifyFormat>N</SpecifyFormat>  
308 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
309 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
310 - <autosizecolums>N</autosizecolums>  
311 - <nullisblank>N</nullisblank>  
312 - <protect_sheet>N</protect_sheet>  
313 - <password>Encrypted </password>  
314 - <splitevery>0</splitevery>  
315 - <usetempfiles>N</usetempfiles>  
316 - <tempdirectory/>  
317 - </file>  
318 - <template>  
319 - <enabled>N</enabled>  
320 - <append>N</append>  
321 - <filename>template.xls</filename>  
322 - </template>  
323 - <fields>  
324 - <field>  
325 - <name>&#x7ebf;&#x8def;</name>  
326 - <type>String</type>  
327 - <format/>  
328 - </field>  
329 - <field>  
330 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
331 - <type>String</type>  
332 - <format/>  
333 - </field>  
334 - <field>  
335 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
336 - <type>String</type>  
337 - <format/>  
338 - </field>  
339 - <field>  
340 - <name>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</name>  
341 - <type>String</type>  
342 - <format/>  
343 - </field>  
344 - <field>  
345 - <name>&#x505c;&#x8f66;&#x70b9;</name>  
346 - <type>String</type>  
347 - <format/>  
348 - </field>  
349 - </fields>  
350 - <custom>  
351 - <header_font_name>arial</header_font_name>  
352 - <header_font_size>10</header_font_size>  
353 - <header_font_bold>N</header_font_bold>  
354 - <header_font_italic>N</header_font_italic>  
355 - <header_font_underline>no</header_font_underline>  
356 - <header_font_orientation>horizontal</header_font_orientation>  
357 - <header_font_color>black</header_font_color>  
358 - <header_background_color>none</header_background_color>  
359 - <header_row_height>255</header_row_height>  
360 - <header_alignment>left</header_alignment>  
361 - <header_image/>  
362 - <row_font_name>arial</row_font_name>  
363 - <row_font_size>10</row_font_size>  
364 - <row_font_color>black</row_font_color>  
365 - <row_background_color>none</row_background_color>  
366 - </custom>  
367 - <cluster_schema/>  
368 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
369 - <xloc>596</xloc>  
370 - <yloc>265</yloc>  
371 - <draw>Y</draw>  
372 - </GUI>  
373 - </step>  
374 -  
375 - <step>  
376 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
377 - <type>SelectValues</type>  
378 - <description/>  
379 - <distribute>Y</distribute>  
380 - <custom_distribution/>  
381 - <copies>1</copies>  
382 - <partitioning>  
383 - <method>none</method>  
384 - <schema_name/>  
385 - </partitioning>  
386 - <fields> <field> <name>xlmc</name>  
387 - <rename>&#x7ebf;&#x8def;</rename>  
388 - <length>-2</length>  
389 - <precision>-2</precision>  
390 - </field> <field> <name>zbh</name>  
391 - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>  
392 - <length>-2</length>  
393 - <precision>-2</precision>  
394 - </field> <field> <name>qyrq</name>  
395 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
396 - <length>-2</length>  
397 - <precision>-2</precision>  
398 - </field> <field> <name>zzrq</name>  
399 - <rename>&#x7ec8;&#x7ed3;&#x65e5;&#x671f;</rename>  
400 - <length>-2</length>  
401 - <precision>-2</precision>  
402 - </field> <field> <name>tcd</name>  
403 - <rename>&#x505c;&#x8f66;&#x70b9;</rename>  
404 - <length>-2</length>  
405 - <precision>-2</precision>  
406 - </field> <select_unspecified>N</select_unspecified>  
407 - </fields> <cluster_schema/>  
408 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
409 - <xloc>595</xloc>  
410 - <yloc>167</yloc>  
411 - <draw>Y</draw>  
412 - </GUI>  
413 - </step>  
414 -  
415 - <step>  
416 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
417 - <type>SortRows</type>  
418 - <description/>  
419 - <distribute>Y</distribute>  
420 - <custom_distribution/>  
421 - <copies>1</copies>  
422 - <partitioning>  
423 - <method>none</method>  
424 - <schema_name/>  
425 - </partitioning>  
426 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
427 - <prefix>out</prefix>  
428 - <sort_size>1000000</sort_size>  
429 - <free_memory/>  
430 - <compress>N</compress>  
431 - <compress_variable/>  
432 - <unique_rows>N</unique_rows>  
433 - <fields>  
434 - <field>  
435 - <name>xlmc</name>  
436 - <ascending>Y</ascending>  
437 - <case_sensitive>N</case_sensitive>  
438 - <presorted>N</presorted>  
439 - </field>  
440 - <field>  
441 - <name>zbh</name>  
442 - <ascending>Y</ascending>  
443 - <case_sensitive>N</case_sensitive>  
444 - <presorted>N</presorted>  
445 - </field>  
446 - <field>  
447 - <name>qyrq</name>  
448 - <ascending>Y</ascending>  
449 - <case_sensitive>N</case_sensitive>  
450 - <presorted>N</presorted>  
451 - </field>  
452 - </fields>  
453 - <cluster_schema/>  
454 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
455 - <xloc>592</xloc>  
456 - <yloc>66</yloc>  
457 - <draw>Y</draw>  
458 - </GUI>  
459 - </step>  
460 -  
461 - <step>  
462 - <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>  
463 - <type>SelectValues</type>  
464 - <description/>  
465 - <distribute>Y</distribute>  
466 - <custom_distribution/>  
467 - <copies>1</copies>  
468 - <partitioning>  
469 - <method>none</method>  
470 - <schema_name/>  
471 - </partitioning>  
472 - <fields> <select_unspecified>N</select_unspecified>  
473 - <meta> <name>qyrq</name>  
474 - <rename>qyrq</rename>  
475 - <type>String</type>  
476 - <length>-2</length>  
477 - <precision>-2</precision>  
478 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
479 - <date_format_lenient>false</date_format_lenient>  
480 - <date_format_locale/>  
481 - <date_format_timezone/>  
482 - <lenient_string_to_number>false</lenient_string_to_number>  
483 - <encoding/>  
484 - <decimal_symbol/>  
485 - <grouping_symbol/>  
486 - <currency_symbol/>  
487 - <storage_type/>  
488 - </meta> <meta> <name>zzrq</name>  
489 - <rename>zzrq</rename>  
490 - <type>String</type>  
491 - <length>-2</length>  
492 - <precision>-2</precision>  
493 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
494 - <date_format_lenient>false</date_format_lenient>  
495 - <date_format_locale/>  
496 - <date_format_timezone/>  
497 - <lenient_string_to_number>false</lenient_string_to_number>  
498 - <encoding/>  
499 - <decimal_symbol/>  
500 - <grouping_symbol/>  
501 - <currency_symbol/>  
502 - <storage_type/>  
503 - </meta> </fields> <cluster_schema/>  
504 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
505 - <xloc>478</xloc>  
506 - <yloc>66</yloc>  
507 - <draw>Y</draw>  
508 - </GUI>  
509 - </step>  
510 -  
511 - <step>  
512 - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>  
513 - <type>DBLookup</type>  
514 - <description/>  
515 - <distribute>Y</distribute>  
516 - <custom_distribution/>  
517 - <copies>1</copies>  
518 - <partitioning>  
519 - <method>none</method>  
520 - <schema_name/>  
521 - </partitioning>  
522 - <connection>bus_control_variable</connection>  
523 - <cache>Y</cache>  
524 - <cache_load_all>Y</cache_load_all>  
525 - <cache_size>0</cache_size>  
526 - <lookup>  
527 - <schema/>  
528 - <table>bsth_c_line</table>  
529 - <orderby/>  
530 - <fail_on_multiple>N</fail_on_multiple>  
531 - <eat_row_on_failure>N</eat_row_on_failure>  
532 - <key>  
533 - <name>xl</name>  
534 - <field>id</field>  
535 - <condition>&#x3d;</condition>  
536 - <name2/>  
537 - </key>  
538 - <value>  
539 - <name>name</name>  
540 - <rename>xlmc</rename>  
541 - <default/>  
542 - <type>String</type>  
543 - </value>  
544 - </lookup>  
545 - <cluster_schema/>  
546 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
547 - <xloc>248</xloc>  
548 - <yloc>67</yloc>  
549 - <draw>Y</draw>  
550 - </GUI>  
551 - </step>  
552 -  
553 - <step>  
554 - <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>  
555 - <type>DBLookup</type>  
556 - <description/>  
557 - <distribute>Y</distribute>  
558 - <custom_distribution/>  
559 - <copies>1</copies>  
560 - <partitioning>  
561 - <method>none</method>  
562 - <schema_name/>  
563 - </partitioning>  
564 - <connection>bus_control_variable</connection>  
565 - <cache>N</cache>  
566 - <cache_load_all>N</cache_load_all>  
567 - <cache_size>0</cache_size>  
568 - <lookup>  
569 - <schema/>  
570 - <table>bsth_c_cars</table>  
571 - <orderby/>  
572 - <fail_on_multiple>N</fail_on_multiple>  
573 - <eat_row_on_failure>N</eat_row_on_failure>  
574 - <key>  
575 - <name>cl</name>  
576 - <field>id</field>  
577 - <condition>&#x3d;</condition>  
578 - <name2/>  
579 - </key>  
580 - <value>  
581 - <name>inside_code</name>  
582 - <rename>zbh</rename>  
583 - <default/>  
584 - <type>String</type>  
585 - </value>  
586 - </lookup>  
587 - <cluster_schema/>  
588 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
589 - <xloc>361</xloc>  
590 - <yloc>67</yloc>  
591 - <draw>Y</draw>  
592 - </GUI>  
593 - </step>  
594 -  
595 - <step>  
596 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>  
597 - <type>TableInput</type>  
598 - <description/>  
599 - <distribute>Y</distribute>  
600 - <custom_distribution/>  
601 - <copies>1</copies>  
602 - <partitioning>  
603 - <method>none</method>  
604 - <schema_name/>  
605 - </partitioning>  
606 - <connection>bus_control_variable</connection>  
607 - <sql>select &#x2a; from bsth_c_s_ccinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>  
608 - <limit>0</limit>  
609 - <lookup/>  
610 - <execute_each_row>N</execute_each_row>  
611 - <variables_active>Y</variables_active>  
612 - <lazy_conversion_active>N</lazy_conversion_active>  
613 - <cluster_schema/>  
614 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
615 - <xloc>106</xloc>  
616 - <yloc>68</yloc>  
617 - <draw>Y</draw>  
618 - </GUI>  
619 - </step>  
620 -  
621 - <step_error_handling>  
622 - </step_error_handling>  
623 - <slave-step-copy-partition-distribution>  
624 -</slave-step-copy-partition-distribution>  
625 - <slave_transformation>N</slave_transformation>  
626 -  
627 -</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/>  
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>bus_control_variable</name>  
111 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
112 - <type>MYSQL</type>  
113 - <access>Native</access>  
114 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
115 - <port>3306</port>  
116 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
117 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
118 - <servername/>  
119 - <data_tablespace/>  
120 - <index_tablespace/>  
121 - <attributes>  
122 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
123 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
124 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
125 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
126 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
127 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
128 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
129 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
130 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
131 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
132 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
133 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
135 - </attributes>  
136 - </connection>  
137 - <connection>  
138 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
139 - <server>localhost</server>  
140 - <type>MYSQL</type>  
141 - <access>Native</access>  
142 - <database>control</database>  
143 - <port>3306</port>  
144 - <username>root</username>  
145 - <password>Encrypted </password>  
146 - <servername/>  
147 - <data_tablespace/>  
148 - <index_tablespace/>  
149 - <attributes>  
150 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
152 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
153 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
154 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
155 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
156 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
158 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
159 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
161 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
162 - </attributes>  
163 - </connection>  
164 - <connection>  
165 - <name>bus_control_&#x672c;&#x673a;</name>  
166 - <server>localhost</server>  
167 - <type>MYSQL</type>  
168 - <access>Native</access>  
169 - <database>control</database>  
170 - <port>3306</port>  
171 - <username>root</username>  
172 - <password>Encrypted </password>  
173 - <servername/>  
174 - <data_tablespace/>  
175 - <index_tablespace/>  
176 - <attributes>  
177 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
178 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
179 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
180 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
181 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
182 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
183 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
185 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
188 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
189 - </attributes>  
190 - </connection>  
191 - <connection>  
192 - <name>xlab_mysql_youle</name>  
193 - <server>101.231.124.8</server>  
194 - <type>MYSQL</type>  
195 - <access>Native</access>  
196 - <database>xlab_youle</database>  
197 - <port>45687</port>  
198 - <username>xlab-youle</username>  
199 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
200 - <servername/>  
201 - <data_tablespace/>  
202 - <index_tablespace/>  
203 - <attributes>  
204 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
205 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
206 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
207 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
208 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
209 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
210 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
212 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
213 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
215 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
216 - </attributes>  
217 - </connection>  
218 - <connection>  
219 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
220 - <server>localhost</server>  
221 - <type>MYSQL</type>  
222 - <access>Native</access>  
223 - <database>xlab_youle</database>  
224 - <port>3306</port>  
225 - <username>root</username>  
226 - <password>Encrypted </password>  
227 - <servername/>  
228 - <data_tablespace/>  
229 - <index_tablespace/>  
230 - <attributes>  
231 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
232 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
235 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
236 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
237 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
239 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
240 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
243 - </attributes>  
244 - </connection>  
245 - <connection>  
246 - <name>xlab_youle</name>  
247 - <server/>  
248 - <type>MYSQL</type>  
249 - <access>JNDI</access>  
250 - <database>xlab_youle</database>  
251 - <port>1521</port>  
252 - <username/>  
253 - <password>Encrypted </password>  
254 - <servername/>  
255 - <data_tablespace/>  
256 - <index_tablespace/>  
257 - <attributes>  
258 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
259 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
260 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
261 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
262 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
264 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
265 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
266 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
267 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
268 - </attributes>  
269 - </connection>  
270 - <order>  
271 - <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
272 - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
273 - <hop> <from>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</from><to>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
274 - <hop> <from>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
275 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
276 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
277 - </order>  
278 - <step>  
279 - <name>Excel&#x8f93;&#x51fa;</name>  
280 - <type>ExcelOutput</type>  
281 - <description/>  
282 - <distribute>Y</distribute>  
283 - <custom_distribution/>  
284 - <copies>1</copies>  
285 - <partitioning>  
286 - <method>none</method>  
287 - <schema_name/>  
288 - </partitioning>  
289 - <header>Y</header>  
290 - <footer>N</footer>  
291 - <encoding/>  
292 - <append>N</append>  
293 - <add_to_result_filenames>Y</add_to_result_filenames>  
294 - <file>  
295 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
296 - <extention/>  
297 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
298 - <create_parent_folder>N</create_parent_folder>  
299 - <split>N</split>  
300 - <add_date>N</add_date>  
301 - <add_time>N</add_time>  
302 - <SpecifyFormat>N</SpecifyFormat>  
303 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
304 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
305 - <autosizecolums>N</autosizecolums>  
306 - <nullisblank>N</nullisblank>  
307 - <protect_sheet>N</protect_sheet>  
308 - <password>Encrypted </password>  
309 - <splitevery>0</splitevery>  
310 - <usetempfiles>N</usetempfiles>  
311 - <tempdirectory/>  
312 - </file>  
313 - <template>  
314 - <enabled>N</enabled>  
315 - <append>N</append>  
316 - <filename>template.xls</filename>  
317 - </template>  
318 - <fields>  
319 - <field>  
320 - <name>&#x7ebf;&#x8def;</name>  
321 - <type>String</type>  
322 - <format/>  
323 - </field>  
324 - <field>  
325 - <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>  
326 - <type>String</type>  
327 - <format/>  
328 - </field>  
329 - <field>  
330 - <name>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</name>  
331 - <type>String</type>  
332 - <format/>  
333 - </field>  
334 - <field>  
335 - <name>&#x9a7e;&#x9a76;&#x5458;</name>  
336 - <type>String</type>  
337 - <format/>  
338 - </field>  
339 - <field>  
340 - <name>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</name>  
341 - <type>String</type>  
342 - <format/>  
343 - </field>  
344 - <field>  
345 - <name>&#x552e;&#x7968;&#x5458;</name>  
346 - <type>String</type>  
347 - <format/>  
348 - </field>  
349 - </fields>  
350 - <custom>  
351 - <header_font_name>arial</header_font_name>  
352 - <header_font_size>10</header_font_size>  
353 - <header_font_bold>N</header_font_bold>  
354 - <header_font_italic>N</header_font_italic>  
355 - <header_font_underline>no</header_font_underline>  
356 - <header_font_orientation>horizontal</header_font_orientation>  
357 - <header_font_color>black</header_font_color>  
358 - <header_background_color>none</header_background_color>  
359 - <header_row_height>255</header_row_height>  
360 - <header_alignment>left</header_alignment>  
361 - <header_image/>  
362 - <row_font_name>arial</row_font_name>  
363 - <row_font_size>10</row_font_size>  
364 - <row_font_color>black</row_font_color>  
365 - <row_background_color>none</row_background_color>  
366 - </custom>  
367 - <cluster_schema/>  
368 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
369 - <xloc>696</xloc>  
370 - <yloc>257</yloc>  
371 - <draw>Y</draw>  
372 - </GUI>  
373 - </step>  
374 -  
375 - <step>  
376 - <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>  
377 - <type>TableInput</type>  
378 - <description/>  
379 - <distribute>Y</distribute>  
380 - <custom_distribution/>  
381 - <copies>1</copies>  
382 - <partitioning>  
383 - <method>none</method>  
384 - <schema_name/>  
385 - </partitioning>  
386 - <connection>bus_control_variable</connection>  
387 - <sql>select &#x2a; from bsth_c_s_ecinfo where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>  
388 - <limit>0</limit>  
389 - <lookup/>  
390 - <execute_each_row>N</execute_each_row>  
391 - <variables_active>Y</variables_active>  
392 - <lazy_conversion_active>N</lazy_conversion_active>  
393 - <cluster_schema/>  
394 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
395 - <xloc>90</xloc>  
396 - <yloc>59</yloc>  
397 - <draw>Y</draw>  
398 - </GUI>  
399 - </step>  
400 -  
401 - <step>  
402 - <name>&#x552e;&#x7968;&#x5458;&#x67e5;&#x8be2;</name>  
403 - <type>DBJoin</type>  
404 - <description/>  
405 - <distribute>Y</distribute>  
406 - <custom_distribution/>  
407 - <copies>1</copies>  
408 - <partitioning>  
409 - <method>none</method>  
410 - <schema_name/>  
411 - </partitioning>  
412 - <connection>bus_control_variable</connection>  
413 - <rowlimit>1</rowlimit>  
414 - <sql>select job_code as scode, personnel_name as sname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>  
415 - <outer_join>Y</outer_join>  
416 - <replace_vars>N</replace_vars>  
417 - <parameter>  
418 - <field>  
419 - <name>spy</name>  
420 - <type>Integer</type>  
421 - </field>  
422 - </parameter>  
423 - <cluster_schema/>  
424 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
425 - <xloc>491</xloc>  
426 - <yloc>60</yloc>  
427 - <draw>Y</draw>  
428 - </GUI>  
429 - </step>  
430 -  
431 - <step>  
432 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
433 - <type>SelectValues</type>  
434 - <description/>  
435 - <distribute>Y</distribute>  
436 - <custom_distribution/>  
437 - <copies>1</copies>  
438 - <partitioning>  
439 - <method>none</method>  
440 - <schema_name/>  
441 - </partitioning>  
442 - <fields> <field> <name>xlmc</name>  
443 - <rename>&#x7ebf;&#x8def;</rename>  
444 - <length>-2</length>  
445 - <precision>-2</precision>  
446 - </field> <field> <name>dbbm</name>  
447 - <rename>&#x642d;&#x73ed;&#x7f16;&#x7801;</rename>  
448 - <length>-2</length>  
449 - <precision>-2</precision>  
450 - </field> <field> <name>jcode</name>  
451 - <rename>&#x9a7e;&#x9a76;&#x5458;&#x5de5;&#x53f7;</rename>  
452 - <length>-2</length>  
453 - <precision>-2</precision>  
454 - </field> <field> <name>jname</name>  
455 - <rename>&#x9a7e;&#x9a76;&#x5458;</rename>  
456 - <length>-2</length>  
457 - <precision>-2</precision>  
458 - </field> <field> <name>scode</name>  
459 - <rename>&#x552e;&#x7968;&#x5458;&#x5de5;&#x53f7;</rename>  
460 - <length>-2</length>  
461 - <precision>-2</precision>  
462 - </field> <field> <name>sname</name>  
463 - <rename>&#x552e;&#x7968;&#x5458;</rename>  
464 - <length>-2</length>  
465 - <precision>-2</precision>  
466 - </field> <select_unspecified>N</select_unspecified>  
467 - </fields> <cluster_schema/>  
468 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
469 - <xloc>492</xloc>  
470 - <yloc>164</yloc>  
471 - <draw>Y</draw>  
472 - </GUI>  
473 - </step>  
474 -  
475 - <step>  
476 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
477 - <type>SortRows</type>  
478 - <description/>  
479 - <distribute>Y</distribute>  
480 - <custom_distribution/>  
481 - <copies>1</copies>  
482 - <partitioning>  
483 - <method>none</method>  
484 - <schema_name/>  
485 - </partitioning>  
486 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
487 - <prefix>out</prefix>  
488 - <sort_size>1000000</sort_size>  
489 - <free_memory/>  
490 - <compress>N</compress>  
491 - <compress_variable/>  
492 - <unique_rows>N</unique_rows>  
493 - <fields>  
494 - <field>  
495 - <name>&#x7ebf;&#x8def;</name>  
496 - <ascending>Y</ascending>  
497 - <case_sensitive>N</case_sensitive>  
498 - <presorted>N</presorted>  
499 - </field>  
500 - <field>  
501 - <name>&#x642d;&#x73ed;&#x7f16;&#x7801;</name>  
502 - <ascending>Y</ascending>  
503 - <case_sensitive>N</case_sensitive>  
504 - <presorted>N</presorted>  
505 - </field>  
506 - </fields>  
507 - <cluster_schema/>  
508 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
509 - <xloc>692</xloc>  
510 - <yloc>164</yloc>  
511 - <draw>Y</draw>  
512 - </GUI>  
513 - </step>  
514 -  
515 - <step>  
516 - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>  
517 - <type>DBLookup</type>  
518 - <description/>  
519 - <distribute>Y</distribute>  
520 - <custom_distribution/>  
521 - <copies>1</copies>  
522 - <partitioning>  
523 - <method>none</method>  
524 - <schema_name/>  
525 - </partitioning>  
526 - <connection>bus_control_variable</connection>  
527 - <cache>Y</cache>  
528 - <cache_load_all>Y</cache_load_all>  
529 - <cache_size>0</cache_size>  
530 - <lookup>  
531 - <schema/>  
532 - <table>bsth_c_line</table>  
533 - <orderby/>  
534 - <fail_on_multiple>N</fail_on_multiple>  
535 - <eat_row_on_failure>N</eat_row_on_failure>  
536 - <key>  
537 - <name>xl</name>  
538 - <field>id</field>  
539 - <condition>&#x3d;</condition>  
540 - <name2/>  
541 - </key>  
542 - <value>  
543 - <name>name</name>  
544 - <rename>xlmc</rename>  
545 - <default/>  
546 - <type>String</type>  
547 - </value>  
548 - </lookup>  
549 - <cluster_schema/>  
550 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
551 - <xloc>227</xloc>  
552 - <yloc>59</yloc>  
553 - <draw>Y</draw>  
554 - </GUI>  
555 - </step>  
556 -  
557 - <step>  
558 - <name>&#x9a7e;&#x9a76;&#x5458;&#x67e5;&#x8be2;</name>  
559 - <type>DBJoin</type>  
560 - <description/>  
561 - <distribute>Y</distribute>  
562 - <custom_distribution/>  
563 - <copies>1</copies>  
564 - <partitioning>  
565 - <method>none</method>  
566 - <schema_name/>  
567 - </partitioning>  
568 - <connection>bus_control_variable</connection>  
569 - <rowlimit>1</rowlimit>  
570 - <sql>select job_code as jcode, personnel_name as jname from bsth_c_personnel&#xa;where id &#x3d; &#x3f;</sql>  
571 - <outer_join>Y</outer_join>  
572 - <replace_vars>N</replace_vars>  
573 - <parameter>  
574 - <field>  
575 - <name>jsy</name>  
576 - <type>Integer</type>  
577 - </field>  
578 - </parameter>  
579 - <cluster_schema/>  
580 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
581 - <xloc>366</xloc>  
582 - <yloc>60</yloc>  
583 - <draw>Y</draw>  
584 - </GUI>  
585 - </step>  
586 -  
587 - <step_error_handling>  
588 - </step_error_handling>  
589 - <slave-step-copy-partition-distribution>  
590 -</slave-step-copy-partition-distribution>  
591 - <slave_transformation>N</slave_transformation>  
592 -  
593 -</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>
src/main/resources/datatools/ktrs/employeesDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x4eba;&#x5458;&#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 - </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;09 09&#x3a;57&#x3a;38.471</created_date>  
76 - <modified_user>-</modified_user>  
77 - <modified_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</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>bus_control_variable</name>  
85 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
86 - <type>MYSQL</type>  
87 - <access>Native</access>  
88 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
89 - <port>3306</port>  
90 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
91 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
92 - <servername/>  
93 - <data_tablespace/>  
94 - <index_tablespace/>  
95 - <attributes>  
96 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
97 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
98 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
99 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
100 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
101 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
102 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
103 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
104 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
105 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
106 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
107 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
108 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
109 - </attributes>  
110 - </connection>  
111 - <connection>  
112 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
113 - <server>localhost</server>  
114 - <type>MYSQL</type>  
115 - <access>Native</access>  
116 - <database>control</database>  
117 - <port>3306</port>  
118 - <username>root</username>  
119 - <password>Encrypted </password>  
120 - <servername/>  
121 - <data_tablespace/>  
122 - <index_tablespace/>  
123 - <attributes>  
124 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
125 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
126 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
127 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
129 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
130 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
131 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
132 - <attribute><code>STREAM_RESULTS</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_&#x672c;&#x673a;</name>  
140 - <server>localhost</server>  
141 - <type>MYSQL</type>  
142 - <access>Native</access>  
143 - <database>control</database>  
144 - <port>3306</port>  
145 - <username>root</username>  
146 - <password>Encrypted </password>  
147 - <servername/>  
148 - <data_tablespace/>  
149 - <index_tablespace/>  
150 - <attributes>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
152 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
153 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
154 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
156 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
157 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
158 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
159 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
161 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
162 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
163 - </attributes>  
164 - </connection>  
165 - <connection>  
166 - <name>xlab_mysql_youle</name>  
167 - <server>101.231.124.8</server>  
168 - <type>MYSQL</type>  
169 - <access>Native</access>  
170 - <database>xlab_youle</database>  
171 - <port>45687</port>  
172 - <username>xlab-youle</username>  
173 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
174 - <servername/>  
175 - <data_tablespace/>  
176 - <index_tablespace/>  
177 - <attributes>  
178 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
179 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
180 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
181 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
183 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
184 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
185 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
186 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
188 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
189 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
190 - </attributes>  
191 - </connection>  
192 - <connection>  
193 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
194 - <server>localhost</server>  
195 - <type>MYSQL</type>  
196 - <access>Native</access>  
197 - <database>xlab_youle</database>  
198 - <port>3306</port>  
199 - <username>root</username>  
200 - <password>Encrypted </password>  
201 - <servername/>  
202 - <data_tablespace/>  
203 - <index_tablespace/>  
204 - <attributes>  
205 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
206 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
207 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
208 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
210 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
211 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
212 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
213 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
214 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
215 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
216 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
217 - </attributes>  
218 - </connection>  
219 - <connection>  
220 - <name>xlab_youle</name>  
221 - <server/>  
222 - <type>MYSQL</type>  
223 - <access>JNDI</access>  
224 - <database>xlab_youle</database>  
225 - <port>1521</port>  
226 - <username/>  
227 - <password>Encrypted </password>  
228 - <servername/>  
229 - <data_tablespace/>  
230 - <index_tablespace/>  
231 - <attributes>  
232 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
235 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
236 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
238 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
239 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
240 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
241 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
242 - </attributes>  
243 - </connection>  
244 - <order>  
245 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
246 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
247 - </order>  
248 - <step>  
249 - <name>Excel&#x8f93;&#x51fa;</name>  
250 - <type>ExcelOutput</type>  
251 - <description/>  
252 - <distribute>Y</distribute>  
253 - <custom_distribution/>  
254 - <copies>1</copies>  
255 - <partitioning>  
256 - <method>none</method>  
257 - <schema_name/>  
258 - </partitioning>  
259 - <header>Y</header>  
260 - <footer>N</footer>  
261 - <encoding/>  
262 - <append>N</append>  
263 - <add_to_result_filenames>Y</add_to_result_filenames>  
264 - <file>  
265 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
266 - <extention/>  
267 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
268 - <create_parent_folder>N</create_parent_folder>  
269 - <split>N</split>  
270 - <add_date>N</add_date>  
271 - <add_time>N</add_time>  
272 - <SpecifyFormat>N</SpecifyFormat>  
273 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
274 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
275 - <autosizecolums>N</autosizecolums>  
276 - <nullisblank>N</nullisblank>  
277 - <protect_sheet>N</protect_sheet>  
278 - <password>Encrypted </password>  
279 - <splitevery>0</splitevery>  
280 - <usetempfiles>N</usetempfiles>  
281 - <tempdirectory/>  
282 - </file>  
283 - <template>  
284 - <enabled>N</enabled>  
285 - <append>N</append>  
286 - <filename>template.xls</filename>  
287 - </template>  
288 - <fields>  
289 - <field>  
290 - <name>&#x59d3;&#x540d;</name>  
291 - <type>String</type>  
292 - <format/>  
293 - </field>  
294 - <field>  
295 - <name>&#x5de5;&#x53f7;</name>  
296 - <type>String</type>  
297 - <format/>  
298 - </field>  
299 - <field>  
300 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>  
301 - <type>String</type>  
302 - <format/>  
303 - </field>  
304 - <field>  
305 - <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
306 - <type>String</type>  
307 - <format/>  
308 - </field>  
309 - <field>  
310 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>  
311 - <type>String</type>  
312 - <format/>  
313 - </field>  
314 - <field>  
315 - <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>  
316 - <type>String</type>  
317 - <format/>  
318 - </field>  
319 - </fields>  
320 - <custom>  
321 - <header_font_name>arial</header_font_name>  
322 - <header_font_size>10</header_font_size>  
323 - <header_font_bold>N</header_font_bold>  
324 - <header_font_italic>N</header_font_italic>  
325 - <header_font_underline>no</header_font_underline>  
326 - <header_font_orientation>horizontal</header_font_orientation>  
327 - <header_font_color>black</header_font_color>  
328 - <header_background_color>none</header_background_color>  
329 - <header_row_height>255</header_row_height>  
330 - <header_alignment>left</header_alignment>  
331 - <header_image/>  
332 - <row_font_name>arial</row_font_name>  
333 - <row_font_size>10</row_font_size>  
334 - <row_font_color>black</row_font_color>  
335 - <row_background_color>none</row_background_color>  
336 - </custom>  
337 - <cluster_schema/>  
338 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
339 - <xloc>346</xloc>  
340 - <yloc>66</yloc>  
341 - <draw>Y</draw>  
342 - </GUI>  
343 - </step>  
344 -  
345 - <step>  
346 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
347 - <type>SelectValues</type>  
348 - <description/>  
349 - <distribute>Y</distribute>  
350 - <custom_distribution/>  
351 - <copies>1</copies>  
352 - <partitioning>  
353 - <method>none</method>  
354 - <schema_name/>  
355 - </partitioning>  
356 - <fields> <field> <name>personnel_name</name>  
357 - <rename>&#x59d3;&#x540d;</rename>  
358 - <length>-2</length>  
359 - <precision>-2</precision>  
360 - </field> <field> <name>job_code</name>  
361 - <rename>&#x5de5;&#x53f7;</rename>  
362 - <length>-2</length>  
363 - <precision>-2</precision>  
364 - </field> <field> <name>company</name>  
365 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>  
366 - <length>-2</length>  
367 - <precision>-2</precision>  
368 - </field> <field> <name>company_code</name>  
369 - <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
370 - <length>-2</length>  
371 - <precision>-2</precision>  
372 - </field> <field> <name>branche_company</name>  
373 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>  
374 - <length>-2</length>  
375 - <precision>-2</precision>  
376 - </field> <field> <name>branche_company_code</name>  
377 - <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>  
378 - <length>-2</length>  
379 - <precision>-2</precision>  
380 - </field> <select_unspecified>N</select_unspecified>  
381 - </fields> <cluster_schema/>  
382 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
383 - <xloc>221</xloc>  
384 - <yloc>66</yloc>  
385 - <draw>Y</draw>  
386 - </GUI>  
387 - </step>  
388 -  
389 - <step>  
390 - <name>&#x8868;&#x8f93;&#x5165;</name>  
391 - <type>TableInput</type>  
392 - <description/>  
393 - <distribute>Y</distribute>  
394 - <custom_distribution/>  
395 - <copies>1</copies>  
396 - <partitioning>  
397 - <method>none</method>  
398 - <schema_name/>  
399 - </partitioning>  
400 - <connection>bus_control_variable</connection>  
401 - <sql>SELECT &#x2a; FROM bsth_c_personnel&#x3b;</sql>  
402 - <limit>0</limit>  
403 - <lookup/>  
404 - <execute_each_row>N</execute_each_row>  
405 - <variables_active>N</variables_active>  
406 - <lazy_conversion_active>N</lazy_conversion_active>  
407 - <cluster_schema/>  
408 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
409 - <xloc>112</xloc>  
410 - <yloc>66</yloc>  
411 - <draw>Y</draw>  
412 - </GUI>  
413 - </step>  
414 -  
415 - <step_error_handling>  
416 - </step_error_handling>  
417 - <slave-step-copy-partition-distribution>  
418 -</slave-step-copy-partition-distribution>  
419 - <slave_transformation>N</slave_transformation>  
420 -  
421 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x4eba;&#x5458;&#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 + </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;09 09&#x3a;57&#x3a;38.471</created_date>
  76 + <modified_user>-</modified_user>
  77 + <modified_date>2016&#x2f;08&#x2f;09 09&#x3a;57&#x3a;38.471</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>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  270 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</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>&#x59d3;&#x540d;</name>
  315 + <type>String</type>
  316 + <format/>
  317 + </field>
  318 + <field>
  319 + <name>&#x5de5;&#x53f7;</name>
  320 + <type>String</type>
  321 + <format/>
  322 + </field>
  323 + <field>
  324 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;</name>
  325 + <type>String</type>
  326 + <format/>
  327 + </field>
  328 + <field>
  329 + <name>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
  330 + <type>String</type>
  331 + <format/>
  332 + </field>
  333 + <field>
  334 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</name>
  335 + <type>String</type>
  336 + <format/>
  337 + </field>
  338 + <field>
  339 + <name>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</name>
  340 + <type>String</type>
  341 + <format/>
  342 + </field>
  343 + </fields>
  344 + <custom>
  345 + <header_font_name>arial</header_font_name>
  346 + <header_font_size>10</header_font_size>
  347 + <header_font_bold>N</header_font_bold>
  348 + <header_font_italic>N</header_font_italic>
  349 + <header_font_underline>no</header_font_underline>
  350 + <header_font_orientation>horizontal</header_font_orientation>
  351 + <header_font_color>black</header_font_color>
  352 + <header_background_color>none</header_background_color>
  353 + <header_row_height>255</header_row_height>
  354 + <header_alignment>left</header_alignment>
  355 + <header_image/>
  356 + <row_font_name>arial</row_font_name>
  357 + <row_font_size>10</row_font_size>
  358 + <row_font_color>black</row_font_color>
  359 + <row_background_color>none</row_background_color>
  360 + </custom>
  361 + <cluster_schema/>
  362 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  363 + <xloc>346</xloc>
  364 + <yloc>66</yloc>
  365 + <draw>Y</draw>
  366 + </GUI>
  367 + </step>
  368 +
  369 + <step>
  370 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  371 + <type>SelectValues</type>
  372 + <description/>
  373 + <distribute>Y</distribute>
  374 + <custom_distribution/>
  375 + <copies>1</copies>
  376 + <partitioning>
  377 + <method>none</method>
  378 + <schema_name/>
  379 + </partitioning>
  380 + <fields> <field> <name>personnel_name</name>
  381 + <rename>&#x59d3;&#x540d;</rename>
  382 + <length>-2</length>
  383 + <precision>-2</precision>
  384 + </field> <field> <name>job_code</name>
  385 + <rename>&#x5de5;&#x53f7;</rename>
  386 + <length>-2</length>
  387 + <precision>-2</precision>
  388 + </field> <field> <name>company</name>
  389 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;</rename>
  390 + <length>-2</length>
  391 + <precision>-2</precision>
  392 + </field> <field> <name>company_code</name>
  393 + <rename>&#x6240;&#x5c5e;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  394 + <length>-2</length>
  395 + <precision>-2</precision>
  396 + </field> <field> <name>branche_company</name>
  397 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;</rename>
  398 + <length>-2</length>
  399 + <precision>-2</precision>
  400 + </field> <field> <name>branche_company_code</name>
  401 + <rename>&#x6240;&#x5c5e;&#x5206;&#x516c;&#x53f8;&#x4ee3;&#x7801;</rename>
  402 + <length>-2</length>
  403 + <precision>-2</precision>
  404 + </field> <select_unspecified>N</select_unspecified>
  405 + </fields> <cluster_schema/>
  406 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  407 + <xloc>221</xloc>
  408 + <yloc>66</yloc>
  409 + <draw>Y</draw>
  410 + </GUI>
  411 + </step>
  412 +
  413 + <step>
  414 + <name>&#x8868;&#x8f93;&#x5165;</name>
  415 + <type>TableInput</type>
  416 + <description/>
  417 + <distribute>Y</distribute>
  418 + <custom_distribution/>
  419 + <copies>1</copies>
  420 + <partitioning>
  421 + <method>none</method>
  422 + <schema_name/>
  423 + </partitioning>
  424 + <connection>bus_control_variable</connection>
  425 + <sql>SELECT &#x2a; FROM bsth_c_personnel&#x3b;</sql>
  426 + <limit>0</limit>
  427 + <lookup/>
  428 + <execute_each_row>N</execute_each_row>
  429 + <variables_active>N</variables_active>
  430 + <lazy_conversion_active>N</lazy_conversion_active>
  431 + <cluster_schema/>
  432 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  433 + <xloc>112</xloc>
  434 + <yloc>66</yloc>
  435 + <draw>Y</draw>
  436 + </GUI>
  437 + </step>
  438 +
  439 + <step_error_handling>
  440 + </step_error_handling>
  441 + <slave-step-copy-partition-distribution>
  442 +</slave-step-copy-partition-distribution>
  443 + <slave_transformation>N</slave_transformation>
  444 +
  445 +</transformation>
src/main/resources/datatools/ktrs/guideboardDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x8def;&#x724c;&#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;02&#x2f;06 11&#x3a;05&#x3a;17.781</created_date>  
81 - <modified_user>-</modified_user>  
82 - <modified_date>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</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 - </notepads>  
88 - <connection>  
89 - <name>bus_control_variable</name>  
90 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
91 - <type>MYSQL</type>  
92 - <access>Native</access>  
93 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
94 - <port>3306</port>  
95 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
96 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
97 - <servername/>  
98 - <data_tablespace/>  
99 - <index_tablespace/>  
100 - <attributes>  
101 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
102 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
103 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
104 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
105 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
106 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
107 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
108 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
109 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
110 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
111 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
112 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
113 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
114 - </attributes>  
115 - </connection>  
116 - <connection>  
117 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
118 - <server>localhost</server>  
119 - <type>MYSQL</type>  
120 - <access>Native</access>  
121 - <database>control</database>  
122 - <port>3306</port>  
123 - <username>root</username>  
124 - <password>Encrypted </password>  
125 - <servername/>  
126 - <data_tablespace/>  
127 - <index_tablespace/>  
128 - <attributes>  
129 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
130 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
131 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
132 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
133 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
134 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
135 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
136 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
137 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
138 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
139 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
140 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
141 - </attributes>  
142 - </connection>  
143 - <connection>  
144 - <name>bus_control_&#x672c;&#x673a;</name>  
145 - <server>localhost</server>  
146 - <type>MYSQL</type>  
147 - <access>Native</access>  
148 - <database>control</database>  
149 - <port>3306</port>  
150 - <username>root</username>  
151 - <password>Encrypted </password>  
152 - <servername/>  
153 - <data_tablespace/>  
154 - <index_tablespace/>  
155 - <attributes>  
156 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
157 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
158 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
159 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
160 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
161 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
162 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
163 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
164 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
165 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
166 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
167 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
168 - </attributes>  
169 - </connection>  
170 - <connection>  
171 - <name>xlab_mysql_youle</name>  
172 - <server>101.231.124.8</server>  
173 - <type>MYSQL</type>  
174 - <access>Native</access>  
175 - <database>xlab_youle</database>  
176 - <port>45687</port>  
177 - <username>xlab-youle</username>  
178 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
179 - <servername/>  
180 - <data_tablespace/>  
181 - <index_tablespace/>  
182 - <attributes>  
183 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
184 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
185 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
186 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
187 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
188 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
189 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
190 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
191 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
192 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
193 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
194 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
195 - </attributes>  
196 - </connection>  
197 - <connection>  
198 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
199 - <server>localhost</server>  
200 - <type>MYSQL</type>  
201 - <access>Native</access>  
202 - <database>xlab_youle</database>  
203 - <port>3306</port>  
204 - <username>root</username>  
205 - <password>Encrypted </password>  
206 - <servername/>  
207 - <data_tablespace/>  
208 - <index_tablespace/>  
209 - <attributes>  
210 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
211 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
212 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
215 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
216 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
217 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
218 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
219 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
220 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
221 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
222 - </attributes>  
223 - </connection>  
224 - <connection>  
225 - <name>xlab_youle</name>  
226 - <server/>  
227 - <type>MYSQL</type>  
228 - <access>JNDI</access>  
229 - <database>xlab_youle</database>  
230 - <port>1521</port>  
231 - <username/>  
232 - <password>Encrypted </password>  
233 - <servername/>  
234 - <data_tablespace/>  
235 - <index_tablespace/>  
236 - <attributes>  
237 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
239 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
240 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
241 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
243 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
244 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
245 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
246 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
247 - </attributes>  
248 - </connection>  
249 - <order>  
250 - <hop> <from>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
251 - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
252 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
253 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
254 - </order>  
255 - <step>  
256 - <name>Excel&#x8f93;&#x51fa;</name>  
257 - <type>ExcelOutput</type>  
258 - <description/>  
259 - <distribute>Y</distribute>  
260 - <custom_distribution/>  
261 - <copies>1</copies>  
262 - <partitioning>  
263 - <method>none</method>  
264 - <schema_name/>  
265 - </partitioning>  
266 - <header>Y</header>  
267 - <footer>N</footer>  
268 - <encoding/>  
269 - <append>N</append>  
270 - <add_to_result_filenames>Y</add_to_result_filenames>  
271 - <file>  
272 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
273 - <extention/>  
274 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
275 - <create_parent_folder>N</create_parent_folder>  
276 - <split>N</split>  
277 - <add_date>N</add_date>  
278 - <add_time>N</add_time>  
279 - <SpecifyFormat>N</SpecifyFormat>  
280 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
281 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
282 - <autosizecolums>N</autosizecolums>  
283 - <nullisblank>N</nullisblank>  
284 - <protect_sheet>N</protect_sheet>  
285 - <password>Encrypted </password>  
286 - <splitevery>0</splitevery>  
287 - <usetempfiles>N</usetempfiles>  
288 - <tempdirectory/>  
289 - </file>  
290 - <template>  
291 - <enabled>N</enabled>  
292 - <append>N</append>  
293 - <filename>template.xls</filename>  
294 - </template>  
295 - <fields>  
296 - <field>  
297 - <name>&#x7ebf;&#x8def;</name>  
298 - <type>String</type>  
299 - <format/>  
300 - </field>  
301 - <field>  
302 - <name>&#x8def;&#x724c;&#x7f16;&#x53f7;</name>  
303 - <type>String</type>  
304 - <format/>  
305 - </field>  
306 - <field>  
307 - <name>&#x8def;&#x724c;&#x540d;&#x79f0;</name>  
308 - <type>String</type>  
309 - <format/>  
310 - </field>  
311 - <field>  
312 - <name>&#x8def;&#x724c;&#x7c7b;&#x578b;</name>  
313 - <type>String</type>  
314 - <format/>  
315 - </field>  
316 - </fields>  
317 - <custom>  
318 - <header_font_name>arial</header_font_name>  
319 - <header_font_size>10</header_font_size>  
320 - <header_font_bold>N</header_font_bold>  
321 - <header_font_italic>N</header_font_italic>  
322 - <header_font_underline>no</header_font_underline>  
323 - <header_font_orientation>horizontal</header_font_orientation>  
324 - <header_font_color>black</header_font_color>  
325 - <header_background_color>none</header_background_color>  
326 - <header_row_height>255</header_row_height>  
327 - <header_alignment>left</header_alignment>  
328 - <header_image/>  
329 - <row_font_name>arial</row_font_name>  
330 - <row_font_size>10</row_font_size>  
331 - <row_font_color>black</row_font_color>  
332 - <row_background_color>none</row_background_color>  
333 - </custom>  
334 - <cluster_schema/>  
335 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
336 - <xloc>644</xloc>  
337 - <yloc>92</yloc>  
338 - <draw>Y</draw>  
339 - </GUI>  
340 - </step>  
341 -  
342 - <step>  
343 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
344 - <type>SelectValues</type>  
345 - <description/>  
346 - <distribute>Y</distribute>  
347 - <custom_distribution/>  
348 - <copies>1</copies>  
349 - <partitioning>  
350 - <method>none</method>  
351 - <schema_name/>  
352 - </partitioning>  
353 - <fields> <select_unspecified>N</select_unspecified>  
354 - <meta> <name>xlmc</name>  
355 - <rename>&#x7ebf;&#x8def;</rename>  
356 - <type>None</type>  
357 - <length>-2</length>  
358 - <precision>-2</precision>  
359 - <conversion_mask/>  
360 - <date_format_lenient>false</date_format_lenient>  
361 - <date_format_locale/>  
362 - <date_format_timezone/>  
363 - <lenient_string_to_number>false</lenient_string_to_number>  
364 - <encoding/>  
365 - <decimal_symbol/>  
366 - <grouping_symbol/>  
367 - <currency_symbol/>  
368 - <storage_type/>  
369 - </meta> <meta> <name>lp_no</name>  
370 - <rename>&#x8def;&#x724c;&#x7f16;&#x53f7;</rename>  
371 - <type>String</type>  
372 - <length>-2</length>  
373 - <precision>-2</precision>  
374 - <conversion_mask>&#x23;</conversion_mask>  
375 - <date_format_lenient>false</date_format_lenient>  
376 - <date_format_locale/>  
377 - <date_format_timezone/>  
378 - <lenient_string_to_number>false</lenient_string_to_number>  
379 - <encoding/>  
380 - <decimal_symbol/>  
381 - <grouping_symbol/>  
382 - <currency_symbol/>  
383 - <storage_type/>  
384 - </meta> <meta> <name>lp_name</name>  
385 - <rename>&#x8def;&#x724c;&#x540d;&#x79f0;</rename>  
386 - <type>None</type>  
387 - <length>-2</length>  
388 - <precision>-2</precision>  
389 - <conversion_mask/>  
390 - <date_format_lenient>false</date_format_lenient>  
391 - <date_format_locale/>  
392 - <date_format_timezone/>  
393 - <lenient_string_to_number>false</lenient_string_to_number>  
394 - <encoding/>  
395 - <decimal_symbol/>  
396 - <grouping_symbol/>  
397 - <currency_symbol/>  
398 - <storage_type/>  
399 - </meta> <meta> <name>lp_type</name>  
400 - <rename>&#x8def;&#x724c;&#x7c7b;&#x578b;</rename>  
401 - <type>None</type>  
402 - <length>-2</length>  
403 - <precision>-2</precision>  
404 - <conversion_mask/>  
405 - <date_format_lenient>false</date_format_lenient>  
406 - <date_format_locale/>  
407 - <date_format_timezone/>  
408 - <lenient_string_to_number>false</lenient_string_to_number>  
409 - <encoding/>  
410 - <decimal_symbol/>  
411 - <grouping_symbol/>  
412 - <currency_symbol/>  
413 - <storage_type/>  
414 - </meta> </fields> <cluster_schema/>  
415 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
416 - <xloc>507</xloc>  
417 - <yloc>91</yloc>  
418 - <draw>Y</draw>  
419 - </GUI>  
420 - </step>  
421 -  
422 - <step>  
423 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
424 - <type>SortRows</type>  
425 - <description/>  
426 - <distribute>Y</distribute>  
427 - <custom_distribution/>  
428 - <copies>1</copies>  
429 - <partitioning>  
430 - <method>none</method>  
431 - <schema_name/>  
432 - </partitioning>  
433 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
434 - <prefix>out</prefix>  
435 - <sort_size>1000000</sort_size>  
436 - <free_memory/>  
437 - <compress>N</compress>  
438 - <compress_variable/>  
439 - <unique_rows>N</unique_rows>  
440 - <fields>  
441 - <field>  
442 - <name>xl</name>  
443 - <ascending>Y</ascending>  
444 - <case_sensitive>N</case_sensitive>  
445 - <presorted>N</presorted>  
446 - </field>  
447 - <field>  
448 - <name>lp_no</name>  
449 - <ascending>Y</ascending>  
450 - <case_sensitive>N</case_sensitive>  
451 - <presorted>N</presorted>  
452 - </field>  
453 - <field>  
454 - <name>is_cancel</name>  
455 - <ascending>N</ascending>  
456 - <case_sensitive>N</case_sensitive>  
457 - <presorted>N</presorted>  
458 - </field>  
459 - </fields>  
460 - <cluster_schema/>  
461 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
462 - <xloc>384</xloc>  
463 - <yloc>91</yloc>  
464 - <draw>Y</draw>  
465 - </GUI>  
466 - </step>  
467 -  
468 - <step>  
469 - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>  
470 - <type>DBLookup</type>  
471 - <description/>  
472 - <distribute>Y</distribute>  
473 - <custom_distribution/>  
474 - <copies>1</copies>  
475 - <partitioning>  
476 - <method>none</method>  
477 - <schema_name/>  
478 - </partitioning>  
479 - <connection>bus_control_variable</connection>  
480 - <cache>Y</cache>  
481 - <cache_load_all>Y</cache_load_all>  
482 - <cache_size>0</cache_size>  
483 - <lookup>  
484 - <schema/>  
485 - <table>bsth_c_line</table>  
486 - <orderby/>  
487 - <fail_on_multiple>N</fail_on_multiple>  
488 - <eat_row_on_failure>N</eat_row_on_failure>  
489 - <key>  
490 - <name>xl</name>  
491 - <field>id</field>  
492 - <condition>&#x3d;</condition>  
493 - <name2/>  
494 - </key>  
495 - <value>  
496 - <name>name</name>  
497 - <rename>xlmc</rename>  
498 - <default/>  
499 - <type>String</type>  
500 - </value>  
501 - </lookup>  
502 - <cluster_schema/>  
503 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
504 - <xloc>262</xloc>  
505 - <yloc>92</yloc>  
506 - <draw>Y</draw>  
507 - </GUI>  
508 - </step>  
509 -  
510 - <step>  
511 - <name>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>  
512 - <type>TableInput</type>  
513 - <description/>  
514 - <distribute>Y</distribute>  
515 - <custom_distribution/>  
516 - <copies>1</copies>  
517 - <partitioning>  
518 - <method>none</method>  
519 - <schema_name/>  
520 - </partitioning>  
521 - <connection>bus_control_variable</connection>  
522 - <sql>select &#x2a; from bsth_c_s_gbi&#xa;where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>  
523 - <limit>0</limit>  
524 - <lookup/>  
525 - <execute_each_row>N</execute_each_row>  
526 - <variables_active>Y</variables_active>  
527 - <lazy_conversion_active>N</lazy_conversion_active>  
528 - <cluster_schema/>  
529 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
530 - <xloc>134</xloc>  
531 - <yloc>92</yloc>  
532 - <draw>Y</draw>  
533 - </GUI>  
534 - </step>  
535 -  
536 - <step_error_handling>  
537 - </step_error_handling>  
538 - <slave-step-copy-partition-distribution>  
539 -</slave-step-copy-partition-distribution>  
540 - <slave_transformation>N</slave_transformation>  
541 -  
542 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x8def;&#x724c;&#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;02&#x2f;06 11&#x3a;05&#x3a;17.781</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;02&#x2f;06 11&#x3a;05&#x3a;17.781</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 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  278 + </order>
  279 + <step>
  280 + <name>Excel&#x8f93;&#x51fa;</name>
  281 + <type>ExcelOutput</type>
  282 + <description/>
  283 + <distribute>Y</distribute>
  284 + <custom_distribution/>
  285 + <copies>1</copies>
  286 + <partitioning>
  287 + <method>none</method>
  288 + <schema_name/>
  289 + </partitioning>
  290 + <header>Y</header>
  291 + <footer>N</footer>
  292 + <encoding/>
  293 + <append>N</append>
  294 + <add_to_result_filenames>Y</add_to_result_filenames>
  295 + <file>
  296 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  297 + <extention>xls</extention>
  298 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  299 + <create_parent_folder>N</create_parent_folder>
  300 + <split>N</split>
  301 + <add_date>N</add_date>
  302 + <add_time>N</add_time>
  303 + <SpecifyFormat>N</SpecifyFormat>
  304 + <date_time_format>yyyyMMddHHmmss</date_time_format>
  305 + <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>
  306 + <autosizecolums>N</autosizecolums>
  307 + <nullisblank>N</nullisblank>
  308 + <protect_sheet>N</protect_sheet>
  309 + <password>Encrypted </password>
  310 + <splitevery>0</splitevery>
  311 + <usetempfiles>N</usetempfiles>
  312 + <tempdirectory/>
  313 + </file>
  314 + <template>
  315 + <enabled>N</enabled>
  316 + <append>N</append>
  317 + <filename>template.xls</filename>
  318 + </template>
  319 + <fields>
  320 + <field>
  321 + <name>&#x7ebf;&#x8def;</name>
  322 + <type>String</type>
  323 + <format/>
  324 + </field>
  325 + <field>
  326 + <name>&#x8def;&#x724c;&#x7f16;&#x53f7;</name>
  327 + <type>String</type>
  328 + <format/>
  329 + </field>
  330 + <field>
  331 + <name>&#x8def;&#x724c;&#x540d;&#x79f0;</name>
  332 + <type>String</type>
  333 + <format/>
  334 + </field>
  335 + <field>
  336 + <name>&#x8def;&#x724c;&#x7c7b;&#x578b;</name>
  337 + <type>String</type>
  338 + <format/>
  339 + </field>
  340 + </fields>
  341 + <custom>
  342 + <header_font_name>arial</header_font_name>
  343 + <header_font_size>10</header_font_size>
  344 + <header_font_bold>N</header_font_bold>
  345 + <header_font_italic>N</header_font_italic>
  346 + <header_font_underline>no</header_font_underline>
  347 + <header_font_orientation>horizontal</header_font_orientation>
  348 + <header_font_color>black</header_font_color>
  349 + <header_background_color>none</header_background_color>
  350 + <header_row_height>255</header_row_height>
  351 + <header_alignment>left</header_alignment>
  352 + <header_image/>
  353 + <row_font_name>arial</row_font_name>
  354 + <row_font_size>10</row_font_size>
  355 + <row_font_color>black</row_font_color>
  356 + <row_background_color>none</row_background_color>
  357 + </custom>
  358 + <cluster_schema/>
  359 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  360 + <xloc>644</xloc>
  361 + <yloc>92</yloc>
  362 + <draw>Y</draw>
  363 + </GUI>
  364 + </step>
  365 +
  366 + <step>
  367 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  368 + <type>SelectValues</type>
  369 + <description/>
  370 + <distribute>Y</distribute>
  371 + <custom_distribution/>
  372 + <copies>1</copies>
  373 + <partitioning>
  374 + <method>none</method>
  375 + <schema_name/>
  376 + </partitioning>
  377 + <fields> <select_unspecified>N</select_unspecified>
  378 + <meta> <name>xlmc</name>
  379 + <rename>&#x7ebf;&#x8def;</rename>
  380 + <type>None</type>
  381 + <length>-2</length>
  382 + <precision>-2</precision>
  383 + <conversion_mask/>
  384 + <date_format_lenient>false</date_format_lenient>
  385 + <date_format_locale/>
  386 + <date_format_timezone/>
  387 + <lenient_string_to_number>false</lenient_string_to_number>
  388 + <encoding/>
  389 + <decimal_symbol/>
  390 + <grouping_symbol/>
  391 + <currency_symbol/>
  392 + <storage_type/>
  393 + </meta> <meta> <name>lp_no</name>
  394 + <rename>&#x8def;&#x724c;&#x7f16;&#x53f7;</rename>
  395 + <type>String</type>
  396 + <length>-2</length>
  397 + <precision>-2</precision>
  398 + <conversion_mask>&#x23;</conversion_mask>
  399 + <date_format_lenient>false</date_format_lenient>
  400 + <date_format_locale/>
  401 + <date_format_timezone/>
  402 + <lenient_string_to_number>false</lenient_string_to_number>
  403 + <encoding/>
  404 + <decimal_symbol/>
  405 + <grouping_symbol/>
  406 + <currency_symbol/>
  407 + <storage_type/>
  408 + </meta> <meta> <name>lp_name</name>
  409 + <rename>&#x8def;&#x724c;&#x540d;&#x79f0;</rename>
  410 + <type>None</type>
  411 + <length>-2</length>
  412 + <precision>-2</precision>
  413 + <conversion_mask/>
  414 + <date_format_lenient>false</date_format_lenient>
  415 + <date_format_locale/>
  416 + <date_format_timezone/>
  417 + <lenient_string_to_number>false</lenient_string_to_number>
  418 + <encoding/>
  419 + <decimal_symbol/>
  420 + <grouping_symbol/>
  421 + <currency_symbol/>
  422 + <storage_type/>
  423 + </meta> <meta> <name>lp_type</name>
  424 + <rename>&#x8def;&#x724c;&#x7c7b;&#x578b;</rename>
  425 + <type>None</type>
  426 + <length>-2</length>
  427 + <precision>-2</precision>
  428 + <conversion_mask/>
  429 + <date_format_lenient>false</date_format_lenient>
  430 + <date_format_locale/>
  431 + <date_format_timezone/>
  432 + <lenient_string_to_number>false</lenient_string_to_number>
  433 + <encoding/>
  434 + <decimal_symbol/>
  435 + <grouping_symbol/>
  436 + <currency_symbol/>
  437 + <storage_type/>
  438 + </meta> </fields> <cluster_schema/>
  439 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  440 + <xloc>507</xloc>
  441 + <yloc>91</yloc>
  442 + <draw>Y</draw>
  443 + </GUI>
  444 + </step>
  445 +
  446 + <step>
  447 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  448 + <type>SortRows</type>
  449 + <description/>
  450 + <distribute>Y</distribute>
  451 + <custom_distribution/>
  452 + <copies>1</copies>
  453 + <partitioning>
  454 + <method>none</method>
  455 + <schema_name/>
  456 + </partitioning>
  457 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  458 + <prefix>out</prefix>
  459 + <sort_size>1000000</sort_size>
  460 + <free_memory/>
  461 + <compress>N</compress>
  462 + <compress_variable/>
  463 + <unique_rows>N</unique_rows>
  464 + <fields>
  465 + <field>
  466 + <name>xl</name>
  467 + <ascending>Y</ascending>
  468 + <case_sensitive>N</case_sensitive>
  469 + <presorted>N</presorted>
  470 + </field>
  471 + <field>
  472 + <name>lp_no</name>
  473 + <ascending>Y</ascending>
  474 + <case_sensitive>N</case_sensitive>
  475 + <presorted>N</presorted>
  476 + </field>
  477 + <field>
  478 + <name>is_cancel</name>
  479 + <ascending>N</ascending>
  480 + <case_sensitive>N</case_sensitive>
  481 + <presorted>N</presorted>
  482 + </field>
  483 + </fields>
  484 + <cluster_schema/>
  485 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  486 + <xloc>384</xloc>
  487 + <yloc>91</yloc>
  488 + <draw>Y</draw>
  489 + </GUI>
  490 + </step>
  491 +
  492 + <step>
  493 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  494 + <type>DBLookup</type>
  495 + <description/>
  496 + <distribute>Y</distribute>
  497 + <custom_distribution/>
  498 + <copies>1</copies>
  499 + <partitioning>
  500 + <method>none</method>
  501 + <schema_name/>
  502 + </partitioning>
  503 + <connection>bus_control_variable</connection>
  504 + <cache>Y</cache>
  505 + <cache_load_all>Y</cache_load_all>
  506 + <cache_size>0</cache_size>
  507 + <lookup>
  508 + <schema/>
  509 + <table>bsth_c_line</table>
  510 + <orderby/>
  511 + <fail_on_multiple>N</fail_on_multiple>
  512 + <eat_row_on_failure>N</eat_row_on_failure>
  513 + <key>
  514 + <name>xl</name>
  515 + <field>id</field>
  516 + <condition>&#x3d;</condition>
  517 + <name2/>
  518 + </key>
  519 + <value>
  520 + <name>name</name>
  521 + <rename>xlmc</rename>
  522 + <default/>
  523 + <type>String</type>
  524 + </value>
  525 + </lookup>
  526 + <cluster_schema/>
  527 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  528 + <xloc>262</xloc>
  529 + <yloc>92</yloc>
  530 + <draw>Y</draw>
  531 + </GUI>
  532 + </step>
  533 +
  534 + <step>
  535 + <name>&#x8def;&#x724c;&#x6570;&#x636e;&#xff08;&#x6ca1;&#x6709;&#x4f5c;&#x5e9f;&#xff09;</name>
  536 + <type>TableInput</type>
  537 + <description/>
  538 + <distribute>Y</distribute>
  539 + <custom_distribution/>
  540 + <copies>1</copies>
  541 + <partitioning>
  542 + <method>none</method>
  543 + <schema_name/>
  544 + </partitioning>
  545 + <connection>bus_control_variable</connection>
  546 + <sql>select &#x2a; from bsth_c_s_gbi&#xa;where is_cancel &#x3d; 0 and xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  547 + <limit>0</limit>
  548 + <lookup/>
  549 + <execute_each_row>N</execute_each_row>
  550 + <variables_active>Y</variables_active>
  551 + <lazy_conversion_active>N</lazy_conversion_active>
  552 + <cluster_schema/>
  553 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  554 + <xloc>134</xloc>
  555 + <yloc>92</yloc>
  556 + <draw>Y</draw>
  557 + </GUI>
  558 + </step>
  559 +
  560 + <step_error_handling>
  561 + </step_error_handling>
  562 + <slave-step-copy-partition-distribution>
  563 +</slave-step-copy-partition-distribution>
  564 + <slave_transformation>N</slave_transformation>
  565 +
  566 +</transformation>
src/main/resources/datatools/ktrs/scheduleRuleDataInput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</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>erroroutputdir</name>  
14 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x5bfc;&#x5165;&#x5bfc;&#x51fa;1</default_value>  
15 - <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>filepath</name>  
19 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x5bfc;&#x5165;&#x5bfc;&#x51fa;1&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;.xls</default_value>  
20 - <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</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;09 10&#x3a;10&#x3a;36.915</created_date>  
81 - <modified_user>-</modified_user>  
82 - <modified_date>2017&#x2f;01&#x2f;09 10&#x3a;10&#x3a;36.915</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>41</xloc>  
90 - <yloc>315</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>bus_control_variable</name>  
111 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
112 - <type>MYSQL</type>  
113 - <access>Native</access>  
114 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
115 - <port>3306</port>  
116 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
117 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
118 - <servername/>  
119 - <data_tablespace/>  
120 - <index_tablespace/>  
121 - <attributes>  
122 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
123 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
124 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
125 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
126 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
127 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
128 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
129 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
130 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
131 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
132 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
133 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
135 - </attributes>  
136 - </connection>  
137 - <connection>  
138 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
139 - <server>localhost</server>  
140 - <type>MYSQL</type>  
141 - <access>Native</access>  
142 - <database>control</database>  
143 - <port>3306</port>  
144 - <username>root</username>  
145 - <password>Encrypted </password>  
146 - <servername/>  
147 - <data_tablespace/>  
148 - <index_tablespace/>  
149 - <attributes>  
150 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
152 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
153 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
154 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
155 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
156 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
157 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
158 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
159 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
161 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
162 - </attributes>  
163 - </connection>  
164 - <connection>  
165 - <name>bus_control_&#x672c;&#x673a;</name>  
166 - <server>localhost</server>  
167 - <type>MYSQL</type>  
168 - <access>Native</access>  
169 - <database>control</database>  
170 - <port>3306</port>  
171 - <username>root</username>  
172 - <password>Encrypted </password>  
173 - <servername/>  
174 - <data_tablespace/>  
175 - <index_tablespace/>  
176 - <attributes>  
177 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
178 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
179 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
180 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
181 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
182 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
183 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
184 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
185 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
188 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
189 - </attributes>  
190 - </connection>  
191 - <connection>  
192 - <name>xlab_mysql_youle</name>  
193 - <server>101.231.124.8</server>  
194 - <type>MYSQL</type>  
195 - <access>Native</access>  
196 - <database>xlab_youle</database>  
197 - <port>45687</port>  
198 - <username>xlab-youle</username>  
199 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
200 - <servername/>  
201 - <data_tablespace/>  
202 - <index_tablespace/>  
203 - <attributes>  
204 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
205 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
206 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
207 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
208 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
209 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
210 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
211 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
212 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
213 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
214 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
215 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
216 - </attributes>  
217 - </connection>  
218 - <connection>  
219 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
220 - <server>localhost</server>  
221 - <type>MYSQL</type>  
222 - <access>Native</access>  
223 - <database>xlab_youle</database>  
224 - <port>3306</port>  
225 - <username>root</username>  
226 - <password>Encrypted </password>  
227 - <servername/>  
228 - <data_tablespace/>  
229 - <index_tablespace/>  
230 - <attributes>  
231 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
232 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
235 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
236 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
237 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
238 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
239 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
240 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
242 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
243 - </attributes>  
244 - </connection>  
245 - <connection>  
246 - <name>xlab_youle</name>  
247 - <server/>  
248 - <type>MYSQL</type>  
249 - <access>JNDI</access>  
250 - <database>xlab_youle</database>  
251 - <port>1521</port>  
252 - <username/>  
253 - <password>Encrypted </password>  
254 - <servername/>  
255 - <data_tablespace/>  
256 - <index_tablespace/>  
257 - <attributes>  
258 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
259 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
260 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
261 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
262 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
264 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
265 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
266 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
267 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
268 - </attributes>  
269 - </connection>  
270 - <order>  
271 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
272 - <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>  
273 - <hop> <from>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</from><to>&#x8def;&#x724c;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
274 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</to><enabled>Y</enabled> </hop>  
275 - <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</from><to>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</to><enabled>Y</enabled> </hop>  
276 - <hop> <from>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</from><to>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
277 - <hop> <from>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</from><to>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
278 - <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</from><to>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</to><enabled>Y</enabled> </hop>  
279 - <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
280 - <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
281 - <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
282 - <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
283 - <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</to><enabled>Y</enabled> </hop>  
284 - <hop> <from>&#x8def;&#x724c;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
285 - <hop> <from>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
286 - <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</from><to>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
287 - <hop> <from>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</to><enabled>Y</enabled> </hop>  
288 - <hop> <from>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</to><enabled>Y</enabled> </hop>  
289 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</to><enabled>Y</enabled> </hop>  
290 - <hop> <from>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>  
291 - <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</from><to>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>  
292 - <hop> <from>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</to><enabled>Y</enabled> </hop>  
293 - </order>  
294 - <step>  
295 - <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</name>  
296 - <type>DBLookup</type>  
297 - <description/>  
298 - <distribute>Y</distribute>  
299 - <custom_distribution/>  
300 - <copies>1</copies>  
301 - <partitioning>  
302 - <method>none</method>  
303 - <schema_name/>  
304 - </partitioning>  
305 - <connection>bus_control_variable</connection>  
306 - <cache>Y</cache>  
307 - <cache_load_all>Y</cache_load_all>  
308 - <cache_size>0</cache_size>  
309 - <lookup>  
310 - <schema/>  
311 - <table>bsth_c_s_ecinfo</table>  
312 - <orderby/>  
313 - <fail_on_multiple>N</fail_on_multiple>  
314 - <eat_row_on_failure>N</eat_row_on_failure>  
315 - <key>  
316 - <name>xlid</name>  
317 - <field>xl</field>  
318 - <condition>&#x3d;</condition>  
319 - <name2/>  
320 - </key>  
321 - <key>  
322 - <name>dbbm1</name>  
323 - <field>dbbm</field>  
324 - <condition>&#x3d;</condition>  
325 - <name2/>  
326 - </key>  
327 - <key>  
328 - <name>isCancel</name>  
329 - <field>is_cancel</field>  
330 - <condition>&#x3d;</condition>  
331 - <name2/>  
332 - </key>  
333 - <value>  
334 - <name>id</name>  
335 - <rename>rycid1</rename>  
336 - <default/>  
337 - <type>Integer</type>  
338 - </value>  
339 - </lookup>  
340 - <cluster_schema/>  
341 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
342 - <xloc>904</xloc>  
343 - <yloc>101</yloc>  
344 - <draw>Y</draw>  
345 - </GUI>  
346 - </step>  
347 -  
348 - <step>  
349 - <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</name>  
350 - <type>DBLookup</type>  
351 - <description/>  
352 - <distribute>Y</distribute>  
353 - <custom_distribution/>  
354 - <copies>1</copies>  
355 - <partitioning>  
356 - <method>none</method>  
357 - <schema_name/>  
358 - </partitioning>  
359 - <connection>bus_control_variable</connection>  
360 - <cache>Y</cache>  
361 - <cache_load_all>Y</cache_load_all>  
362 - <cache_size>0</cache_size>  
363 - <lookup>  
364 - <schema/>  
365 - <table>bsth_c_s_ecinfo</table>  
366 - <orderby/>  
367 - <fail_on_multiple>N</fail_on_multiple>  
368 - <eat_row_on_failure>N</eat_row_on_failure>  
369 - <key>  
370 - <name>xlid</name>  
371 - <field>xl</field>  
372 - <condition>&#x3d;</condition>  
373 - <name2/>  
374 - </key>  
375 - <key>  
376 - <name>dbbm2</name>  
377 - <field>dbbm</field>  
378 - <condition>&#x3d;</condition>  
379 - <name2/>  
380 - </key>  
381 - <key>  
382 - <name>isCancel</name>  
383 - <field>is_cancel</field>  
384 - <condition>&#x3d;</condition>  
385 - <name2/>  
386 - </key>  
387 - <value>  
388 - <name>id</name>  
389 - <rename>rycid2</rename>  
390 - <default/>  
391 - <type>Integer</type>  
392 - </value>  
393 - </lookup>  
394 - <cluster_schema/>  
395 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
396 - <xloc>778</xloc>  
397 - <yloc>103</yloc>  
398 - <draw>Y</draw>  
399 - </GUI>  
400 - </step>  
401 -  
402 - <step>  
403 - <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</name>  
404 - <type>GroupBy</type>  
405 - <description/>  
406 - <distribute>Y</distribute>  
407 - <custom_distribution/>  
408 - <copies>1</copies>  
409 - <partitioning>  
410 - <method>none</method>  
411 - <schema_name/>  
412 - </partitioning>  
413 - <all_rows>N</all_rows>  
414 - <ignore_aggregate>N</ignore_aggregate>  
415 - <field_ignore/>  
416 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
417 - <prefix>grp</prefix>  
418 - <add_linenr>N</add_linenr>  
419 - <linenr_fieldname/>  
420 - <give_back_row>N</give_back_row>  
421 - <group>  
422 - <field>  
423 - <name>xlid</name>  
424 - </field>  
425 - <field>  
426 - <name>cid</name>  
427 - </field>  
428 - <field>  
429 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
430 - </field>  
431 - <field>  
432 - <name>lpids</name>  
433 - </field>  
434 - <field>  
435 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
436 - </field>  
437 - <field>  
438 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
439 - </field>  
440 - <field>  
441 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
442 - </field>  
443 - <field>  
444 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
445 - </field>  
446 - <field>  
447 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
448 - </field>  
449 - <field>  
450 - <name>isCancel</name>  
451 - </field>  
452 - </group>  
453 - <fields>  
454 - <field>  
455 - <aggregate>rycids</aggregate>  
456 - <subject>rycid</subject>  
457 - <type>CONCAT_STRING</type>  
458 - <valuefield>,</valuefield>  
459 - </field>  
460 - </fields>  
461 - <cluster_schema/>  
462 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
463 - <xloc>780</xloc>  
464 - <yloc>291</yloc>  
465 - <draw>Y</draw>  
466 - </GUI>  
467 - </step>  
468 -  
469 - <step>  
470 - <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</name>  
471 - <type>GroupBy</type>  
472 - <description/>  
473 - <distribute>Y</distribute>  
474 - <custom_distribution/>  
475 - <copies>1</copies>  
476 - <partitioning>  
477 - <method>none</method>  
478 - <schema_name/>  
479 - </partitioning>  
480 - <all_rows>N</all_rows>  
481 - <ignore_aggregate>N</ignore_aggregate>  
482 - <field_ignore/>  
483 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
484 - <prefix>grp</prefix>  
485 - <add_linenr>N</add_linenr>  
486 - <linenr_fieldname/>  
487 - <give_back_row>N</give_back_row>  
488 - <group>  
489 - <field>  
490 - <name>xlid</name>  
491 - </field>  
492 - <field>  
493 - <name>cid</name>  
494 - </field>  
495 - <field>  
496 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
497 - </field>  
498 - <field>  
499 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
500 - </field>  
501 - <field>  
502 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
503 - </field>  
504 - <field>  
505 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
506 - </field>  
507 - <field>  
508 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
509 - </field>  
510 - <field>  
511 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
512 - </field>  
513 - <field>  
514 - <name>isCancel</name>  
515 - </field>  
516 - </group>  
517 - <fields>  
518 - <field>  
519 - <aggregate>lpids</aggregate>  
520 - <subject>lpid</subject>  
521 - <type>CONCAT_STRING</type>  
522 - <valuefield>,</valuefield>  
523 - </field>  
524 - </fields>  
525 - <cluster_schema/>  
526 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
527 - <xloc>653</xloc>  
528 - <yloc>119</yloc>  
529 - <draw>Y</draw>  
530 - </GUI>  
531 - </step>  
532 -  
533 - <step>  
534 - <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>  
535 - <type>ExcelInput</type>  
536 - <description/>  
537 - <distribute>Y</distribute>  
538 - <custom_distribution/>  
539 - <copies>1</copies>  
540 - <partitioning>  
541 - <method>none</method>  
542 - <schema_name/>  
543 - </partitioning>  
544 - <header>Y</header>  
545 - <noempty>Y</noempty>  
546 - <stoponempty>N</stoponempty>  
547 - <filefield/>  
548 - <sheetfield/>  
549 - <sheetrownumfield/>  
550 - <rownumfield/>  
551 - <sheetfield/>  
552 - <filefield/>  
553 - <limit>0</limit>  
554 - <encoding/>  
555 - <add_to_result_filenames>Y</add_to_result_filenames>  
556 - <accept_filenames>Y</accept_filenames>  
557 - <accept_field>filepath_</accept_field>  
558 - <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>  
559 - <file>  
560 - <name/>  
561 - <filemask/>  
562 - <exclude_filemask/>  
563 - <file_required>N</file_required>  
564 - <include_subfolders>N</include_subfolders>  
565 - </file>  
566 - <fields>  
567 - <field>  
568 - <name>&#x7ebf;&#x8def;</name>  
569 - <type>String</type>  
570 - <length>-1</length>  
571 - <precision>-1</precision>  
572 - <trim_type>none</trim_type>  
573 - <repeat>N</repeat>  
574 - <format/>  
575 - <currency/>  
576 - <decimal/>  
577 - <group/>  
578 - </field>  
579 - <field>  
580 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
581 - <type>String</type>  
582 - <length>-1</length>  
583 - <precision>-1</precision>  
584 - <trim_type>none</trim_type>  
585 - <repeat>N</repeat>  
586 - <format/>  
587 - <currency/>  
588 - <decimal/>  
589 - <group/>  
590 - </field>  
591 - <field>  
592 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
593 - <type>String</type>  
594 - <length>-1</length>  
595 - <precision>-1</precision>  
596 - <trim_type>none</trim_type>  
597 - <repeat>N</repeat>  
598 - <format/>  
599 - <currency/>  
600 - <decimal/>  
601 - <group/>  
602 - </field>  
603 - <field>  
604 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
605 - <type>String</type>  
606 - <length>-1</length>  
607 - <precision>-1</precision>  
608 - <trim_type>none</trim_type>  
609 - <repeat>N</repeat>  
610 - <format>&#x23;</format>  
611 - <currency/>  
612 - <decimal/>  
613 - <group/>  
614 - </field>  
615 - <field>  
616 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
617 - <type>String</type>  
618 - <length>-1</length>  
619 - <precision>-1</precision>  
620 - <trim_type>none</trim_type>  
621 - <repeat>N</repeat>  
622 - <format>&#x23;</format>  
623 - <currency/>  
624 - <decimal/>  
625 - <group/>  
626 - </field>  
627 - <field>  
628 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
629 - <type>String</type>  
630 - <length>-1</length>  
631 - <precision>-1</precision>  
632 - <trim_type>none</trim_type>  
633 - <repeat>N</repeat>  
634 - <format>&#x23;</format>  
635 - <currency/>  
636 - <decimal/>  
637 - <group/>  
638 - </field>  
639 - <field>  
640 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
641 - <type>String</type>  
642 - <length>-1</length>  
643 - <precision>-1</precision>  
644 - <trim_type>none</trim_type>  
645 - <repeat>N</repeat>  
646 - <format>&#x23;</format>  
647 - <currency/>  
648 - <decimal/>  
649 - <group/>  
650 - </field>  
651 - <field>  
652 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
653 - <type>String</type>  
654 - <length>-1</length>  
655 - <precision>-1</precision>  
656 - <trim_type>none</trim_type>  
657 - <repeat>N</repeat>  
658 - <format>&#x23;</format>  
659 - <currency/>  
660 - <decimal/>  
661 - <group/>  
662 - </field>  
663 - </fields>  
664 - <sheets>  
665 - <sheet>  
666 - <name>&#x5de5;&#x4f5c;&#x8868;1</name>  
667 - <startrow>0</startrow>  
668 - <startcol>0</startcol>  
669 - </sheet>  
670 - </sheets>  
671 - <strict_types>N</strict_types>  
672 - <error_ignored>N</error_ignored>  
673 - <error_line_skipped>N</error_line_skipped>  
674 - <bad_line_files_destination_directory/>  
675 - <bad_line_files_extension>warning</bad_line_files_extension>  
676 - <error_line_files_destination_directory/>  
677 - <error_line_files_extension>error</error_line_files_extension>  
678 - <line_number_files_destination_directory/>  
679 - <line_number_files_extension>line</line_number_files_extension>  
680 - <shortFileFieldName/>  
681 - <pathFieldName/>  
682 - <hiddenFieldName/>  
683 - <lastModificationTimeFieldName/>  
684 - <uriNameFieldName/>  
685 - <rootUriNameFieldName/>  
686 - <extensionFieldName/>  
687 - <sizeFieldName/>  
688 - <spreadsheet_type>JXL</spreadsheet_type>  
689 - <cluster_schema/>  
690 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
691 - <xloc>208</xloc>  
692 - <yloc>21</yloc>  
693 - <draw>Y</draw>  
694 - </GUI>  
695 - </step>  
696 -  
697 - <step>  
698 - <name>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</name>  
699 - <type>ScriptValueMod</type>  
700 - <description/>  
701 - <distribute>Y</distribute>  
702 - <custom_distribution/>  
703 - <copies>1</copies>  
704 - <partitioning>  
705 - <method>none</method>  
706 - <schema_name/>  
707 - </partitioning>  
708 - <compatible>N</compatible>  
709 - <optimizationLevel>9</optimizationLevel>  
710 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
711 - <jsScript_name>Script 1</jsScript_name>  
712 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var rycid&#x3b;&#xa;&#xa;if &#x28;rycid2 &#x3d;&#x3d; null&#x29; &#x7b;&#xa; rycid &#x3d; rycid1&#x3b;&#xa;&#x7d; else &#x7b;&#xa; rycid &#x3d; rycid1 &#x2b; &#x22;-&#x22; &#x2b; rycid2&#x3b;&#xa;&#x7d;</jsScript_script>  
713 - </jsScript> </jsScripts> <fields> <field> <name>rycid</name>  
714 - <rename>rycid</rename>  
715 - <type>String</type>  
716 - <length>-1</length>  
717 - <precision>-1</precision>  
718 - <replace>N</replace>  
719 - </field> </fields> <cluster_schema/>  
720 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
721 - <xloc>917</xloc>  
722 - <yloc>201</yloc>  
723 - <draw>Y</draw>  
724 - </GUI>  
725 - </step>  
726 -  
727 - <step>  
728 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>  
729 - <type>SelectValues</type>  
730 - <description/>  
731 - <distribute>Y</distribute>  
732 - <custom_distribution/>  
733 - <copies>1</copies>  
734 - <partitioning>  
735 - <method>none</method>  
736 - <schema_name/>  
737 - </partitioning>  
738 - <fields> <select_unspecified>N</select_unspecified>  
739 - <meta> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
740 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
741 - <type>Timestamp</type>  
742 - <length>-2</length>  
743 - <precision>-2</precision>  
744 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
745 - <date_format_lenient>false</date_format_lenient>  
746 - <date_format_locale/>  
747 - <date_format_timezone/>  
748 - <lenient_string_to_number>false</lenient_string_to_number>  
749 - <encoding/>  
750 - <decimal_symbol/>  
751 - <grouping_symbol/>  
752 - <currency_symbol/>  
753 - <storage_type/>  
754 - </meta> </fields> <cluster_schema/>  
755 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
756 - <xloc>777</xloc>  
757 - <yloc>368</yloc>  
758 - <draw>Y</draw>  
759 - </GUI>  
760 - </step>  
761 -  
762 - <step>  
763 - <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>  
764 - <type>Constant</type>  
765 - <description/>  
766 - <distribute>Y</distribute>  
767 - <custom_distribution/>  
768 - <copies>1</copies>  
769 - <partitioning>  
770 - <method>none</method>  
771 - <schema_name/>  
772 - </partitioning>  
773 - <fields>  
774 - <field>  
775 - <name>isCancel</name>  
776 - <type>Integer</type>  
777 - <format/>  
778 - <currency/>  
779 - <decimal/>  
780 - <group/>  
781 - <nullif>0</nullif>  
782 - <length>-1</length>  
783 - <precision>-1</precision>  
784 - <set_empty_string>N</set_empty_string>  
785 - </field>  
786 - </fields>  
787 - <cluster_schema/>  
788 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
789 - <xloc>361</xloc>  
790 - <yloc>22</yloc>  
791 - <draw>Y</draw>  
792 - </GUI>  
793 - </step>  
794 -  
795 - <step>  
796 - <name>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
797 - <type>SplitFieldToRows3</type>  
798 - <description/>  
799 - <distribute>Y</distribute>  
800 - <custom_distribution/>  
801 - <copies>1</copies>  
802 - <partitioning>  
803 - <method>none</method>  
804 - <schema_name/>  
805 - </partitioning>  
806 - <splitfield>&#x4eba;&#x5458;&#x8303;&#x56f4;</splitfield>  
807 - <delimiter>,</delimiter>  
808 - <newfield>dbbm</newfield>  
809 - <rownum>N</rownum>  
810 - <rownum_field/>  
811 - <resetrownumber>Y</resetrownumber>  
812 - <delimiter_is_regex>N</delimiter_is_regex>  
813 - <cluster_schema/>  
814 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
815 - <xloc>777</xloc>  
816 - <yloc>22</yloc>  
817 - <draw>Y</draw>  
818 - </GUI>  
819 - </step>  
820 -  
821 - <step>  
822 - <name>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</name>  
823 - <type>FieldSplitter</type>  
824 - <description/>  
825 - <distribute>Y</distribute>  
826 - <custom_distribution/>  
827 - <copies>1</copies>  
828 - <partitioning>  
829 - <method>none</method>  
830 - <schema_name/>  
831 - </partitioning>  
832 - <splitfield>dbbm</splitfield>  
833 - <delimiter>-</delimiter>  
834 - <enclosure/>  
835 - <fields> <field> <name>dbbm1</name>  
836 - <id/>  
837 - <idrem>N</idrem>  
838 - <type>String</type>  
839 - <format/>  
840 - <group/>  
841 - <decimal/>  
842 - <currency/>  
843 - <length>-1</length>  
844 - <precision>-1</precision>  
845 - <nullif/>  
846 - <ifnull/>  
847 - <trimtype>none</trimtype>  
848 - </field> <field> <name>dbbm2</name>  
849 - <id/>  
850 - <idrem>N</idrem>  
851 - <type>String</type>  
852 - <format/>  
853 - <group/>  
854 - <decimal/>  
855 - <currency/>  
856 - <length>-1</length>  
857 - <precision>-1</precision>  
858 - <nullif/>  
859 - <ifnull/>  
860 - <trimtype>none</trimtype>  
861 - </field> </fields> <cluster_schema/>  
862 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
863 - <xloc>901</xloc>  
864 - <yloc>22</yloc>  
865 - <draw>Y</draw>  
866 - </GUI>  
867 - </step>  
868 -  
869 - <step>  
870 - <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
871 - <type>SplitFieldToRows3</type>  
872 - <description/>  
873 - <distribute>Y</distribute>  
874 - <custom_distribution/>  
875 - <copies>1</copies>  
876 - <partitioning>  
877 - <method>none</method>  
878 - <schema_name/>  
879 - </partitioning>  
880 - <splitfield>&#x8def;&#x724c;&#x8303;&#x56f4;</splitfield>  
881 - <delimiter>,</delimiter>  
882 - <newfield>lpname</newfield>  
883 - <rownum>N</rownum>  
884 - <rownum_field/>  
885 - <resetrownumber>Y</resetrownumber>  
886 - <delimiter_is_regex>N</delimiter_is_regex>  
887 - <cluster_schema/>  
888 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
889 - <xloc>364</xloc>  
890 - <yloc>259</yloc>  
891 - <draw>Y</draw>  
892 - </GUI>  
893 - </step>  
894 -  
895 - <step>  
896 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
897 - <type>SortRows</type>  
898 - <description/>  
899 - <distribute>Y</distribute>  
900 - <custom_distribution/>  
901 - <copies>1</copies>  
902 - <partitioning>  
903 - <method>none</method>  
904 - <schema_name/>  
905 - </partitioning>  
906 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
907 - <prefix>out</prefix>  
908 - <sort_size>1000000</sort_size>  
909 - <free_memory/>  
910 - <compress>N</compress>  
911 - <compress_variable/>  
912 - <unique_rows>N</unique_rows>  
913 - <fields>  
914 - <field>  
915 - <name>xlid</name>  
916 - <ascending>Y</ascending>  
917 - <case_sensitive>N</case_sensitive>  
918 - <presorted>N</presorted>  
919 - </field>  
920 - <field>  
921 - <name>cid</name>  
922 - <ascending>Y</ascending>  
923 - <case_sensitive>N</case_sensitive>  
924 - <presorted>N</presorted>  
925 - </field>  
926 - <field>  
927 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
928 - <ascending>Y</ascending>  
929 - <case_sensitive>N</case_sensitive>  
930 - <presorted>N</presorted>  
931 - </field>  
932 - <field>  
933 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
934 - <ascending>Y</ascending>  
935 - <case_sensitive>N</case_sensitive>  
936 - <presorted>N</presorted>  
937 - </field>  
938 - <field>  
939 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
940 - <ascending>Y</ascending>  
941 - <case_sensitive>N</case_sensitive>  
942 - <presorted>N</presorted>  
943 - </field>  
944 - <field>  
945 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
946 - <ascending>Y</ascending>  
947 - <case_sensitive>N</case_sensitive>  
948 - <presorted>N</presorted>  
949 - </field>  
950 - <field>  
951 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
952 - <ascending>Y</ascending>  
953 - <case_sensitive>N</case_sensitive>  
954 - <presorted>N</presorted>  
955 - </field>  
956 - <field>  
957 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
958 - <ascending>Y</ascending>  
959 - <case_sensitive>N</case_sensitive>  
960 - <presorted>N</presorted>  
961 - </field>  
962 - <field>  
963 - <name>isCancel</name>  
964 - <ascending>Y</ascending>  
965 - <case_sensitive>N</case_sensitive>  
966 - <presorted>N</presorted>  
967 - </field>  
968 - </fields>  
969 - <cluster_schema/>  
970 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
971 - <xloc>516</xloc>  
972 - <yloc>119</yloc>  
973 - <draw>Y</draw>  
974 - </GUI>  
975 - </step>  
976 -  
977 - <step>  
978 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</name>  
979 - <type>SortRows</type>  
980 - <description/>  
981 - <distribute>Y</distribute>  
982 - <custom_distribution/>  
983 - <copies>1</copies>  
984 - <partitioning>  
985 - <method>none</method>  
986 - <schema_name/>  
987 - </partitioning>  
988 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
989 - <prefix>out</prefix>  
990 - <sort_size>1000000</sort_size>  
991 - <free_memory/>  
992 - <compress>N</compress>  
993 - <compress_variable/>  
994 - <unique_rows>N</unique_rows>  
995 - <fields>  
996 - <field>  
997 - <name>xlid</name>  
998 - <ascending>Y</ascending>  
999 - <case_sensitive>N</case_sensitive>  
1000 - <presorted>N</presorted>  
1001 - </field>  
1002 - <field>  
1003 - <name>cid</name>  
1004 - <ascending>Y</ascending>  
1005 - <case_sensitive>N</case_sensitive>  
1006 - <presorted>N</presorted>  
1007 - </field>  
1008 - <field>  
1009 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
1010 - <ascending>Y</ascending>  
1011 - <case_sensitive>N</case_sensitive>  
1012 - <presorted>N</presorted>  
1013 - </field>  
1014 - <field>  
1015 - <name>lpids</name>  
1016 - <ascending>Y</ascending>  
1017 - <case_sensitive>N</case_sensitive>  
1018 - <presorted>N</presorted>  
1019 - </field>  
1020 - <field>  
1021 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
1022 - <ascending>Y</ascending>  
1023 - <case_sensitive>N</case_sensitive>  
1024 - <presorted>N</presorted>  
1025 - </field>  
1026 - <field>  
1027 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
1028 - <ascending>Y</ascending>  
1029 - <case_sensitive>N</case_sensitive>  
1030 - <presorted>N</presorted>  
1031 - </field>  
1032 - <field>  
1033 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
1034 - <ascending>Y</ascending>  
1035 - <case_sensitive>N</case_sensitive>  
1036 - <presorted>N</presorted>  
1037 - </field>  
1038 - <field>  
1039 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
1040 - <ascending>Y</ascending>  
1041 - <case_sensitive>N</case_sensitive>  
1042 - <presorted>N</presorted>  
1043 - </field>  
1044 - <field>  
1045 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
1046 - <ascending>Y</ascending>  
1047 - <case_sensitive>N</case_sensitive>  
1048 - <presorted>N</presorted>  
1049 - </field>  
1050 - <field>  
1051 - <name>isCancel</name>  
1052 - <ascending>Y</ascending>  
1053 - <case_sensitive>N</case_sensitive>  
1054 - <presorted>N</presorted>  
1055 - </field>  
1056 - </fields>  
1057 - <cluster_schema/>  
1058 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1059 - <xloc>919</xloc>  
1060 - <yloc>289</yloc>  
1061 - <draw>Y</draw>  
1062 - </GUI>  
1063 - </step>  
1064 -  
1065 - <step>  
1066 - <name>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</name>  
1067 - <type>InsertUpdate</type>  
1068 - <description/>  
1069 - <distribute>Y</distribute>  
1070 - <custom_distribution/>  
1071 - <copies>1</copies>  
1072 - <partitioning>  
1073 - <method>none</method>  
1074 - <schema_name/>  
1075 - </partitioning>  
1076 - <connection>bus_control_variable</connection>  
1077 - <commit>100</commit>  
1078 - <update_bypassed>N</update_bypassed>  
1079 - <lookup>  
1080 - <schema/>  
1081 - <table>bsth_c_s_sr1_flat</table>  
1082 - <key>  
1083 - <name>xlid</name>  
1084 - <field>xl</field>  
1085 - <condition>&#x3d;</condition>  
1086 - <name2/>  
1087 - </key>  
1088 - <key>  
1089 - <name>cid</name>  
1090 - <field>car_config_info</field>  
1091 - <condition>&#x3d;</condition>  
1092 - <name2/>  
1093 - </key>  
1094 - <value>  
1095 - <name>xl</name>  
1096 - <rename>xlid</rename>  
1097 - <update>Y</update>  
1098 - </value>  
1099 - <value>  
1100 - <name>car_config_info</name>  
1101 - <rename>cid</rename>  
1102 - <update>Y</update>  
1103 - </value>  
1104 - <value>  
1105 - <name>lp_names</name>  
1106 - <rename>&#x8def;&#x724c;&#x8303;&#x56f4;</rename>  
1107 - <update>Y</update>  
1108 - </value>  
1109 - <value>  
1110 - <name>lp_ids</name>  
1111 - <rename>lpids</rename>  
1112 - <update>Y</update>  
1113 - </value>  
1114 - <value>  
1115 - <name>lp_start</name>  
1116 - <rename>&#x8d77;&#x59cb;&#x8def;&#x724c;</rename>  
1117 - <update>Y</update>  
1118 - </value>  
1119 - <value>  
1120 - <name>ry_start</name>  
1121 - <rename>&#x8d77;&#x59cb;&#x4eba;&#x5458;</rename>  
1122 - <update>Y</update>  
1123 - </value>  
1124 - <value>  
1125 - <name>ry_dbbms</name>  
1126 - <rename>&#x4eba;&#x5458;&#x8303;&#x56f4;</rename>  
1127 - <update>Y</update>  
1128 - </value>  
1129 - <value>  
1130 - <name>qyrq</name>  
1131 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
1132 - <update>Y</update>  
1133 - </value>  
1134 - <value>  
1135 - <name>ry_config_ids</name>  
1136 - <rename>rycids</rename>  
1137 - <update>Y</update>  
1138 - </value>  
1139 - <value>  
1140 - <name>fbgs</name>  
1141 - <rename>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</rename>  
1142 - <update>Y</update>  
1143 - </value>  
1144 - </lookup>  
1145 - <cluster_schema/>  
1146 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1147 - <xloc>532</xloc>  
1148 - <yloc>297</yloc>  
1149 - <draw>Y</draw>  
1150 - </GUI>  
1151 - </step>  
1152 -  
1153 - <step>  
1154 - <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>  
1155 - <type>DBLookup</type>  
1156 - <description/>  
1157 - <distribute>Y</distribute>  
1158 - <custom_distribution/>  
1159 - <copies>1</copies>  
1160 - <partitioning>  
1161 - <method>none</method>  
1162 - <schema_name/>  
1163 - </partitioning>  
1164 - <connection>bus_control_variable</connection>  
1165 - <cache>Y</cache>  
1166 - <cache_load_all>Y</cache_load_all>  
1167 - <cache_size>0</cache_size>  
1168 - <lookup>  
1169 - <schema/>  
1170 - <table>bsth_c_line</table>  
1171 - <orderby/>  
1172 - <fail_on_multiple>N</fail_on_multiple>  
1173 - <eat_row_on_failure>N</eat_row_on_failure>  
1174 - <key>  
1175 - <name>&#x7ebf;&#x8def;</name>  
1176 - <field>name</field>  
1177 - <condition>&#x3d;</condition>  
1178 - <name2/>  
1179 - </key>  
1180 - <key>  
1181 - <name>isCancel</name>  
1182 - <field>destroy</field>  
1183 - <condition>&#x3d;</condition>  
1184 - <name2/>  
1185 - </key>  
1186 - <value>  
1187 - <name>id</name>  
1188 - <rename>xlid</rename>  
1189 - <default/>  
1190 - <type>Integer</type>  
1191 - </value>  
1192 - </lookup>  
1193 - <cluster_schema/>  
1194 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1195 - <xloc>359</xloc>  
1196 - <yloc>110</yloc>  
1197 - <draw>Y</draw>  
1198 - </GUI>  
1199 - </step>  
1200 -  
1201 - <step>  
1202 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
1203 - <type>GetVariable</type>  
1204 - <description/>  
1205 - <distribute>Y</distribute>  
1206 - <custom_distribution/>  
1207 - <copies>1</copies>  
1208 - <partitioning>  
1209 - <method>none</method>  
1210 - <schema_name/>  
1211 - </partitioning>  
1212 - <fields>  
1213 - <field>  
1214 - <name>filepath_</name>  
1215 - <variable>&#x24;&#x7b;filepath&#x7d;</variable>  
1216 - <type>String</type>  
1217 - <format/>  
1218 - <currency/>  
1219 - <decimal/>  
1220 - <group/>  
1221 - <length>-1</length>  
1222 - <precision>-1</precision>  
1223 - <trim_type>none</trim_type>  
1224 - </field>  
1225 - <field>  
1226 - <name>erroroutputdir_</name>  
1227 - <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>  
1228 - <type>String</type>  
1229 - <format/>  
1230 - <currency/>  
1231 - <decimal/>  
1232 - <group/>  
1233 - <length>-1</length>  
1234 - <precision>-1</precision>  
1235 - <trim_type>none</trim_type>  
1236 - </field>  
1237 - </fields>  
1238 - <cluster_schema/>  
1239 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1240 - <xloc>53</xloc>  
1241 - <yloc>23</yloc>  
1242 - <draw>Y</draw>  
1243 - </GUI>  
1244 - </step>  
1245 -  
1246 - <step>  
1247 - <name>&#x8def;&#x724c;id&#x67e5;&#x8be2;</name>  
1248 - <type>DBLookup</type>  
1249 - <description/>  
1250 - <distribute>Y</distribute>  
1251 - <custom_distribution/>  
1252 - <copies>1</copies>  
1253 - <partitioning>  
1254 - <method>none</method>  
1255 - <schema_name/>  
1256 - </partitioning>  
1257 - <connection>bus_control_variable</connection>  
1258 - <cache>Y</cache>  
1259 - <cache_load_all>Y</cache_load_all>  
1260 - <cache_size>0</cache_size>  
1261 - <lookup>  
1262 - <schema/>  
1263 - <table>bsth_c_s_gbi</table>  
1264 - <orderby/>  
1265 - <fail_on_multiple>N</fail_on_multiple>  
1266 - <eat_row_on_failure>N</eat_row_on_failure>  
1267 - <key>  
1268 - <name>xlid</name>  
1269 - <field>xl</field>  
1270 - <condition>&#x3d;</condition>  
1271 - <name2/>  
1272 - </key>  
1273 - <key>  
1274 - <name>lpname</name>  
1275 - <field>lp_name</field>  
1276 - <condition>&#x3d;</condition>  
1277 - <name2/>  
1278 - </key>  
1279 - <key>  
1280 - <name>isCancel</name>  
1281 - <field>is_cancel</field>  
1282 - <condition>&#x3d;</condition>  
1283 - <name2/>  
1284 - </key>  
1285 - <value>  
1286 - <name>id</name>  
1287 - <rename>lpid</rename>  
1288 - <default/>  
1289 - <type>Integer</type>  
1290 - </value>  
1291 - </lookup>  
1292 - <cluster_schema/>  
1293 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1294 - <xloc>516</xloc>  
1295 - <yloc>21</yloc>  
1296 - <draw>Y</draw>  
1297 - </GUI>  
1298 - </step>  
1299 -  
1300 - <step>  
1301 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</name>  
1302 - <type>DBJoin</type>  
1303 - <description/>  
1304 - <distribute>Y</distribute>  
1305 - <custom_distribution/>  
1306 - <copies>1</copies>  
1307 - <partitioning>  
1308 - <method>none</method>  
1309 - <schema_name/>  
1310 - </partitioning>  
1311 - <connection>bus_control_variable</connection>  
1312 - <rowlimit>1</rowlimit>  
1313 - <sql>select t1.id as cid from bsth_c_s_ccinfo t1 left join bsth_c_cars t2 on t1.cl &#x3d; t2.id&#xa;where t1.xl &#x3d; &#x3f; and t2.inside_code &#x3d; &#x3f; and t1.is_cancel &#x3d; &#x3f;</sql>  
1314 - <outer_join>Y</outer_join>  
1315 - <replace_vars>N</replace_vars>  
1316 - <parameter>  
1317 - <field>  
1318 - <name>xlid</name>  
1319 - <type>Integer</type>  
1320 - </field>  
1321 - <field>  
1322 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
1323 - <type>String</type>  
1324 - </field>  
1325 - <field>  
1326 - <name>isCancel</name>  
1327 - <type>Integer</type>  
1328 - </field>  
1329 - </parameter>  
1330 - <cluster_schema/>  
1331 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1332 - <xloc>360</xloc>  
1333 - <yloc>184</yloc>  
1334 - <draw>Y</draw>  
1335 - </GUI>  
1336 - </step>  
1337 -  
1338 - <step>  
1339 - <name>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
1340 - <type>FilterRows</type>  
1341 - <description/>  
1342 - <distribute>Y</distribute>  
1343 - <custom_distribution/>  
1344 - <copies>1</copies>  
1345 - <partitioning>  
1346 - <method>none</method>  
1347 - <schema_name/>  
1348 - </partitioning>  
1349 -<send_true_to/>  
1350 -<send_false_to/>  
1351 - <compare>  
1352 -<condition>  
1353 - <negated>N</negated>  
1354 - <conditions>  
1355 - <condition>  
1356 - <negated>N</negated>  
1357 - <leftvalue>rycid1</leftvalue>  
1358 - <function>IS NOT NULL</function>  
1359 - <rightvalue/>  
1360 - </condition>  
1361 - <condition>  
1362 - <negated>N</negated>  
1363 - <operator>OR</operator>  
1364 - <leftvalue>rycid2</leftvalue>  
1365 - <function>IS NOT NULL</function>  
1366 - <rightvalue/>  
1367 - </condition>  
1368 - </conditions>  
1369 - </condition>  
1370 - </compare>  
1371 - <cluster_schema/>  
1372 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1373 - <xloc>776</xloc>  
1374 - <yloc>204</yloc>  
1375 - <draw>Y</draw>  
1376 - </GUI>  
1377 - </step>  
1378 -  
1379 - <step>  
1380 - <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
1381 - <type>FilterRows</type>  
1382 - <description/>  
1383 - <distribute>Y</distribute>  
1384 - <custom_distribution/>  
1385 - <copies>1</copies>  
1386 - <partitioning>  
1387 - <method>none</method>  
1388 - <schema_name/>  
1389 - </partitioning>  
1390 -<send_true_to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</send_true_to>  
1391 -<send_false_to/>  
1392 - <compare>  
1393 -<condition>  
1394 - <negated>N</negated>  
1395 - <leftvalue>xlid</leftvalue>  
1396 - <function>IS NOT NULL</function>  
1397 - <rightvalue/>  
1398 - </condition>  
1399 - </compare>  
1400 - <cluster_schema/>  
1401 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1402 - <xloc>203</xloc>  
1403 - <yloc>110</yloc>  
1404 - <draw>Y</draw>  
1405 - </GUI>  
1406 - </step>  
1407 -  
1408 - <step>  
1409 - <name>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
1410 - <type>FilterRows</type>  
1411 - <description/>  
1412 - <distribute>Y</distribute>  
1413 - <custom_distribution/>  
1414 - <copies>1</copies>  
1415 - <partitioning>  
1416 - <method>none</method>  
1417 - <schema_name/>  
1418 - </partitioning>  
1419 -<send_true_to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</send_true_to>  
1420 -<send_false_to/>  
1421 - <compare>  
1422 -<condition>  
1423 - <negated>N</negated>  
1424 - <leftvalue>lpid</leftvalue>  
1425 - <function>IS NOT NULL</function>  
1426 - <rightvalue/>  
1427 - </condition>  
1428 - </compare>  
1429 - <cluster_schema/>  
1430 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1431 - <xloc>653</xloc>  
1432 - <yloc>23</yloc>  
1433 - <draw>Y</draw>  
1434 - </GUI>  
1435 - </step>  
1436 -  
1437 - <step>  
1438 - <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>  
1439 - <type>FilterRows</type>  
1440 - <description/>  
1441 - <distribute>Y</distribute>  
1442 - <custom_distribution/>  
1443 - <copies>1</copies>  
1444 - <partitioning>  
1445 - <method>none</method>  
1446 - <schema_name/>  
1447 - </partitioning>  
1448 -<send_true_to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</send_true_to>  
1449 -<send_false_to/>  
1450 - <compare>  
1451 -<condition>  
1452 - <negated>N</negated>  
1453 - <leftvalue>cid</leftvalue>  
1454 - <function>IS NOT NULL</function>  
1455 - <rightvalue/>  
1456 - </condition>  
1457 - </compare>  
1458 - <cluster_schema/>  
1459 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1460 - <xloc>208</xloc>  
1461 - <yloc>182</yloc>  
1462 - <draw>Y</draw>  
1463 - </GUI>  
1464 - </step>  
1465 -  
1466 - <step>  
1467 - <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>  
1468 - <type>ExcelOutput</type>  
1469 - <description/>  
1470 - <distribute>Y</distribute>  
1471 - <custom_distribution/>  
1472 - <copies>1</copies>  
1473 - <partitioning>  
1474 - <method>none</method>  
1475 - <schema_name/>  
1476 - </partitioning>  
1477 - <header>Y</header>  
1478 - <footer>N</footer>  
1479 - <encoding>UTF-8</encoding>  
1480 - <append>N</append>  
1481 - <add_to_result_filenames>Y</add_to_result_filenames>  
1482 - <file>  
1483 - <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_&#x9519;&#x8bef;</name>  
1484 - <extention>xls</extention>  
1485 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
1486 - <create_parent_folder>N</create_parent_folder>  
1487 - <split>N</split>  
1488 - <add_date>N</add_date>  
1489 - <add_time>N</add_time>  
1490 - <SpecifyFormat>N</SpecifyFormat>  
1491 - <date_time_format/>  
1492 - <sheetname>Sheet1</sheetname>  
1493 - <autosizecolums>N</autosizecolums>  
1494 - <nullisblank>N</nullisblank>  
1495 - <protect_sheet>N</protect_sheet>  
1496 - <password>Encrypted </password>  
1497 - <splitevery>0</splitevery>  
1498 - <usetempfiles>N</usetempfiles>  
1499 - <tempdirectory/>  
1500 - </file>  
1501 - <template>  
1502 - <enabled>N</enabled>  
1503 - <append>N</append>  
1504 - <filename>template.xls</filename>  
1505 - </template>  
1506 - <fields>  
1507 - <field>  
1508 - <name>xlid</name>  
1509 - <type>Integer</type>  
1510 - <format/>  
1511 - </field>  
1512 - <field>  
1513 - <name>cid</name>  
1514 - <type>Integer</type>  
1515 - <format/>  
1516 - </field>  
1517 - <field>  
1518 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
1519 - <type>String</type>  
1520 - <format/>  
1521 - </field>  
1522 - <field>  
1523 - <name>lpids</name>  
1524 - <type>String</type>  
1525 - <format/>  
1526 - </field>  
1527 - <field>  
1528 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
1529 - <type>String</type>  
1530 - <format/>  
1531 - </field>  
1532 - <field>  
1533 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
1534 - <type>String</type>  
1535 - <format/>  
1536 - </field>  
1537 - <field>  
1538 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
1539 - <type>String</type>  
1540 - <format/>  
1541 - </field>  
1542 - <field>  
1543 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
1544 - <type>Timestamp</type>  
1545 - <format/>  
1546 - </field>  
1547 - <field>  
1548 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
1549 - <type>String</type>  
1550 - <format/>  
1551 - </field>  
1552 - <field>  
1553 - <name>isCancel</name>  
1554 - <type>Integer</type>  
1555 - <format/>  
1556 - </field>  
1557 - <field>  
1558 - <name>rycids</name>  
1559 - <type>String</type>  
1560 - <format/>  
1561 - </field>  
1562 - <field>  
1563 - <name>error_count</name>  
1564 - <type>Integer</type>  
1565 - <format/>  
1566 - </field>  
1567 - <field>  
1568 - <name>error_desc</name>  
1569 - <type>String</type>  
1570 - <format/>  
1571 - </field>  
1572 - <field>  
1573 - <name>error_column1</name>  
1574 - <type>String</type>  
1575 - <format/>  
1576 - </field>  
1577 - <field>  
1578 - <name>error_column2</name>  
1579 - <type>String</type>  
1580 - <format/>  
1581 - </field>  
1582 - </fields>  
1583 - <custom>  
1584 - <header_font_name>arial</header_font_name>  
1585 - <header_font_size>10</header_font_size>  
1586 - <header_font_bold>N</header_font_bold>  
1587 - <header_font_italic>N</header_font_italic>  
1588 - <header_font_underline>no</header_font_underline>  
1589 - <header_font_orientation>horizontal</header_font_orientation>  
1590 - <header_font_color>black</header_font_color>  
1591 - <header_background_color>none</header_background_color>  
1592 - <header_row_height>255</header_row_height>  
1593 - <header_alignment>left</header_alignment>  
1594 - <header_image/>  
1595 - <row_font_name>arial</row_font_name>  
1596 - <row_font_size>10</row_font_size>  
1597 - <row_font_color>black</row_font_color>  
1598 - <row_background_color>none</row_background_color>  
1599 - </custom>  
1600 - <cluster_schema/>  
1601 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1602 - <xloc>534</xloc>  
1603 - <yloc>392</yloc>  
1604 - <draw>Y</draw>  
1605 - </GUI>  
1606 - </step>  
1607 -  
1608 - <step_error_handling>  
1609 - <error>  
1610 - <source_step>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</source_step>  
1611 - <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>  
1612 - <is_enabled>Y</is_enabled>  
1613 - <nr_valuename>error_count</nr_valuename>  
1614 - <descriptions_valuename>error_desc</descriptions_valuename>  
1615 - <fields_valuename>error_column1</fields_valuename>  
1616 - <codes_valuename>error_column2</codes_valuename>  
1617 - <max_errors/>  
1618 - <max_pct_errors/>  
1619 - <min_pct_rows/>  
1620 - </error>  
1621 - </step_error_handling>  
1622 - <slave-step-copy-partition-distribution>  
1623 -</slave-step-copy-partition-distribution>  
1624 - <slave_transformation>N</slave_transformation>  
1625 -  
1626 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;</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>erroroutputdir</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x5bfc;&#x5165;&#x5bfc;&#x51fa;1</default_value>
  15 + <description>ktr step&#x914d;&#x7f6e;&#x7684;&#x9519;&#x8bef;&#x8f93;&#x51fa;&#x76ee;&#x5f55;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>filepath</name>
  19 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;bsth_project&#x2f;bsth_control_etl&#x2f;&#x5bfc;&#x5165;&#x5bfc;&#x51fa;1&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;.xls</default_value>
  20 + <description>&#x5f85;&#x5904;&#x7406;&#x5bfc;&#x5165;&#x7684;excel&#x6587;&#x4ef6;</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;09 10&#x3a;10&#x3a;36.915</created_date>
  81 + <modified_user>-</modified_user>
  82 + <modified_date>2017&#x2f;01&#x2f;09 10&#x3a;10&#x3a;36.915</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 + </notepads>
  88 + <connection>
  89 + <name>192.168.168.1_jwgl_dw</name>
  90 + <server>192.168.168.1</server>
  91 + <type>ORACLE</type>
  92 + <access>Native</access>
  93 + <database>orcl</database>
  94 + <port>1521</port>
  95 + <username>jwgl_dw</username>
  96 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  97 + <servername/>
  98 + <data_tablespace/>
  99 + <index_tablespace/>
  100 + <attributes>
  101 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  102 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  103 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  104 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  105 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  106 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  107 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  108 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  109 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  110 + </attributes>
  111 + </connection>
  112 + <connection>
  113 + <name>bus_control_variable</name>
  114 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  115 + <type>MYSQL</type>
  116 + <access>Native</access>
  117 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  118 + <port>3306</port>
  119 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  120 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  121 + <servername/>
  122 + <data_tablespace/>
  123 + <index_tablespace/>
  124 + <attributes>
  125 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  126 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  127 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  130 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  131 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  132 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  133 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  134 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  135 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  136 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  137 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  138 + </attributes>
  139 + </connection>
  140 + <connection>
  141 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  142 + <server>localhost</server>
  143 + <type>MYSQL</type>
  144 + <access>Native</access>
  145 + <database>control</database>
  146 + <port>3306</port>
  147 + <username>root</username>
  148 + <password>Encrypted </password>
  149 + <servername/>
  150 + <data_tablespace/>
  151 + <index_tablespace/>
  152 + <attributes>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  154 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  157 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  158 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  159 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  160 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  162 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  164 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  165 + </attributes>
  166 + </connection>
  167 + <connection>
  168 + <name>bus_control_&#x672c;&#x673a;</name>
  169 + <server>localhost</server>
  170 + <type>MYSQL</type>
  171 + <access>Native</access>
  172 + <database>control</database>
  173 + <port>3306</port>
  174 + <username>root</username>
  175 + <password>Encrypted </password>
  176 + <servername/>
  177 + <data_tablespace/>
  178 + <index_tablespace/>
  179 + <attributes>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  181 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  184 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  185 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  186 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  187 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  191 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  192 + </attributes>
  193 + </connection>
  194 + <connection>
  195 + <name>xlab_mysql_youle</name>
  196 + <server>101.231.124.8</server>
  197 + <type>MYSQL</type>
  198 + <access>Native</access>
  199 + <database>xlab_youle</database>
  200 + <port>45687</port>
  201 + <username>xlab-youle</username>
  202 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  203 + <servername/>
  204 + <data_tablespace/>
  205 + <index_tablespace/>
  206 + <attributes>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  208 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  211 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  212 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  213 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  214 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  215 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  217 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  218 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  219 + </attributes>
  220 + </connection>
  221 + <connection>
  222 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  223 + <server>localhost</server>
  224 + <type>MYSQL</type>
  225 + <access>Native</access>
  226 + <database>xlab_youle</database>
  227 + <port>3306</port>
  228 + <username>root</username>
  229 + <password>Encrypted </password>
  230 + <servername/>
  231 + <data_tablespace/>
  232 + <index_tablespace/>
  233 + <attributes>
  234 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  235 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  236 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  237 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  239 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  240 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  241 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  242 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  243 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  244 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  245 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  246 + </attributes>
  247 + </connection>
  248 + <connection>
  249 + <name>xlab_youle</name>
  250 + <server/>
  251 + <type>MYSQL</type>
  252 + <access>JNDI</access>
  253 + <database>xlab_youle</database>
  254 + <port>1521</port>
  255 + <username/>
  256 + <password>Encrypted </password>
  257 + <servername/>
  258 + <data_tablespace/>
  259 + <index_tablespace/>
  260 + <attributes>
  261 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  263 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  264 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  265 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  266 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  267 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  268 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  269 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  270 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  271 + </attributes>
  272 + </connection>
  273 + <order>
  274 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  275 + <hop> <from>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</from><to>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</to><enabled>Y</enabled> </hop>
  276 + <hop> <from>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</from><to>&#x8def;&#x724c;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  277 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</to><enabled>Y</enabled> </hop>
  278 + <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</from><to>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</to><enabled>Y</enabled> </hop>
  279 + <hop> <from>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</from><to>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  280 + <hop> <from>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</from><to>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  281 + <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</from><to>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</to><enabled>Y</enabled> </hop>
  282 + <hop> <from>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</from><to>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  283 + <hop> <from>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  284 + <hop> <from>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  285 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  286 + <hop> <from>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</to><enabled>Y</enabled> </hop>
  287 + <hop> <from>&#x8def;&#x724c;id&#x67e5;&#x8be2;</from><to>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  288 + <hop> <from>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  289 + <hop> <from>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</from><to>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  290 + <hop> <from>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</from><to>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</to><enabled>Y</enabled> </hop>
  291 + <hop> <from>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</to><enabled>Y</enabled> </hop>
  292 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</from><to>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</to><enabled>Y</enabled> </hop>
  293 + <hop> <from>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</from><to>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</to><enabled>Y</enabled> </hop>
  294 + <hop> <from>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</from><to>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</to><enabled>Y</enabled> </hop>
  295 + <hop> <from>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</from><to>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</to><enabled>Y</enabled> </hop>
  296 + </order>
  297 + <step>
  298 + <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</name>
  299 + <type>DBLookup</type>
  300 + <description/>
  301 + <distribute>Y</distribute>
  302 + <custom_distribution/>
  303 + <copies>1</copies>
  304 + <partitioning>
  305 + <method>none</method>
  306 + <schema_name/>
  307 + </partitioning>
  308 + <connection>bus_control_variable</connection>
  309 + <cache>N</cache>
  310 + <cache_load_all>Y</cache_load_all>
  311 + <cache_size>0</cache_size>
  312 + <lookup>
  313 + <schema/>
  314 + <table>bsth_c_s_ecinfo</table>
  315 + <orderby/>
  316 + <fail_on_multiple>N</fail_on_multiple>
  317 + <eat_row_on_failure>N</eat_row_on_failure>
  318 + <key>
  319 + <name>xlid</name>
  320 + <field>xl</field>
  321 + <condition>&#x3d;</condition>
  322 + <name2/>
  323 + </key>
  324 + <key>
  325 + <name>dbbm1</name>
  326 + <field>dbbm</field>
  327 + <condition>&#x3d;</condition>
  328 + <name2/>
  329 + </key>
  330 + <key>
  331 + <name>isCancel</name>
  332 + <field>is_cancel</field>
  333 + <condition>&#x3d;</condition>
  334 + <name2/>
  335 + </key>
  336 + <value>
  337 + <name>id</name>
  338 + <rename>rycid1</rename>
  339 + <default/>
  340 + <type>Integer</type>
  341 + </value>
  342 + </lookup>
  343 + <cluster_schema/>
  344 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  345 + <xloc>904</xloc>
  346 + <yloc>101</yloc>
  347 + <draw>Y</draw>
  348 + </GUI>
  349 + </step>
  350 +
  351 + <step>
  352 + <name>&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x67e5;&#x8be2; 2</name>
  353 + <type>DBLookup</type>
  354 + <description/>
  355 + <distribute>Y</distribute>
  356 + <custom_distribution/>
  357 + <copies>1</copies>
  358 + <partitioning>
  359 + <method>none</method>
  360 + <schema_name/>
  361 + </partitioning>
  362 + <connection>bus_control_variable</connection>
  363 + <cache>N</cache>
  364 + <cache_load_all>Y</cache_load_all>
  365 + <cache_size>0</cache_size>
  366 + <lookup>
  367 + <schema/>
  368 + <table>bsth_c_s_ecinfo</table>
  369 + <orderby/>
  370 + <fail_on_multiple>N</fail_on_multiple>
  371 + <eat_row_on_failure>N</eat_row_on_failure>
  372 + <key>
  373 + <name>xlid</name>
  374 + <field>xl</field>
  375 + <condition>&#x3d;</condition>
  376 + <name2/>
  377 + </key>
  378 + <key>
  379 + <name>dbbm2</name>
  380 + <field>dbbm</field>
  381 + <condition>&#x3d;</condition>
  382 + <name2/>
  383 + </key>
  384 + <key>
  385 + <name>isCancel</name>
  386 + <field>is_cancel</field>
  387 + <condition>&#x3d;</condition>
  388 + <name2/>
  389 + </key>
  390 + <value>
  391 + <name>id</name>
  392 + <rename>rycid2</rename>
  393 + <default/>
  394 + <type>Integer</type>
  395 + </value>
  396 + </lookup>
  397 + <cluster_schema/>
  398 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  399 + <xloc>778</xloc>
  400 + <yloc>103</yloc>
  401 + <draw>Y</draw>
  402 + </GUI>
  403 + </step>
  404 +
  405 + <step>
  406 + <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</name>
  407 + <type>GroupBy</type>
  408 + <description/>
  409 + <distribute>Y</distribute>
  410 + <custom_distribution/>
  411 + <copies>1</copies>
  412 + <partitioning>
  413 + <method>none</method>
  414 + <schema_name/>
  415 + </partitioning>
  416 + <all_rows>N</all_rows>
  417 + <ignore_aggregate>N</ignore_aggregate>
  418 + <field_ignore/>
  419 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  420 + <prefix>grp</prefix>
  421 + <add_linenr>N</add_linenr>
  422 + <linenr_fieldname/>
  423 + <give_back_row>N</give_back_row>
  424 + <group>
  425 + <field>
  426 + <name>xlid</name>
  427 + </field>
  428 + <field>
  429 + <name>cid</name>
  430 + </field>
  431 + <field>
  432 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  433 + </field>
  434 + <field>
  435 + <name>lpids</name>
  436 + </field>
  437 + <field>
  438 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  439 + </field>
  440 + <field>
  441 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  442 + </field>
  443 + <field>
  444 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  445 + </field>
  446 + <field>
  447 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  448 + </field>
  449 + <field>
  450 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  451 + </field>
  452 + <field>
  453 + <name>isCancel</name>
  454 + </field>
  455 + </group>
  456 + <fields>
  457 + <field>
  458 + <aggregate>rycids</aggregate>
  459 + <subject>rycid</subject>
  460 + <type>CONCAT_STRING</type>
  461 + <valuefield>,</valuefield>
  462 + </field>
  463 + </fields>
  464 + <cluster_schema/>
  465 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  466 + <xloc>780</xloc>
  467 + <yloc>291</yloc>
  468 + <draw>Y</draw>
  469 + </GUI>
  470 + </step>
  471 +
  472 + <step>
  473 + <name>&#x5206;&#x7ec4;&#x5408;&#x5e76;&#x8def;&#x724c;id</name>
  474 + <type>GroupBy</type>
  475 + <description/>
  476 + <distribute>Y</distribute>
  477 + <custom_distribution/>
  478 + <copies>1</copies>
  479 + <partitioning>
  480 + <method>none</method>
  481 + <schema_name/>
  482 + </partitioning>
  483 + <all_rows>N</all_rows>
  484 + <ignore_aggregate>N</ignore_aggregate>
  485 + <field_ignore/>
  486 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  487 + <prefix>grp</prefix>
  488 + <add_linenr>N</add_linenr>
  489 + <linenr_fieldname/>
  490 + <give_back_row>N</give_back_row>
  491 + <group>
  492 + <field>
  493 + <name>xlid</name>
  494 + </field>
  495 + <field>
  496 + <name>cid</name>
  497 + </field>
  498 + <field>
  499 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  500 + </field>
  501 + <field>
  502 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  503 + </field>
  504 + <field>
  505 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  506 + </field>
  507 + <field>
  508 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  509 + </field>
  510 + <field>
  511 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  512 + </field>
  513 + <field>
  514 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  515 + </field>
  516 + <field>
  517 + <name>isCancel</name>
  518 + </field>
  519 + </group>
  520 + <fields>
  521 + <field>
  522 + <aggregate>lpids</aggregate>
  523 + <subject>lpid</subject>
  524 + <type>CONCAT_STRING</type>
  525 + <valuefield>,</valuefield>
  526 + </field>
  527 + </fields>
  528 + <cluster_schema/>
  529 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  530 + <xloc>653</xloc>
  531 + <yloc>119</yloc>
  532 + <draw>Y</draw>
  533 + </GUI>
  534 + </step>
  535 +
  536 + <step>
  537 + <name>&#x539f;&#x59cb;&#x7cfb;&#x7edf;&#x5bfc;&#x51fa;&#x7684;Excel&#x8f93;&#x5165;</name>
  538 + <type>ExcelInput</type>
  539 + <description/>
  540 + <distribute>Y</distribute>
  541 + <custom_distribution/>
  542 + <copies>1</copies>
  543 + <partitioning>
  544 + <method>none</method>
  545 + <schema_name/>
  546 + </partitioning>
  547 + <header>Y</header>
  548 + <noempty>Y</noempty>
  549 + <stoponempty>N</stoponempty>
  550 + <filefield/>
  551 + <sheetfield/>
  552 + <sheetrownumfield/>
  553 + <rownumfield/>
  554 + <sheetfield/>
  555 + <filefield/>
  556 + <limit>0</limit>
  557 + <encoding/>
  558 + <add_to_result_filenames>Y</add_to_result_filenames>
  559 + <accept_filenames>Y</accept_filenames>
  560 + <accept_field>filepath_</accept_field>
  561 + <accept_stepname>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</accept_stepname>
  562 + <file>
  563 + <name/>
  564 + <filemask/>
  565 + <exclude_filemask/>
  566 + <file_required>N</file_required>
  567 + <include_subfolders>N</include_subfolders>
  568 + </file>
  569 + <fields>
  570 + <field>
  571 + <name>&#x7ebf;&#x8def;</name>
  572 + <type>String</type>
  573 + <length>-1</length>
  574 + <precision>-1</precision>
  575 + <trim_type>none</trim_type>
  576 + <repeat>N</repeat>
  577 + <format/>
  578 + <currency/>
  579 + <decimal/>
  580 + <group/>
  581 + </field>
  582 + <field>
  583 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  584 + <type>String</type>
  585 + <length>-1</length>
  586 + <precision>-1</precision>
  587 + <trim_type>none</trim_type>
  588 + <repeat>N</repeat>
  589 + <format/>
  590 + <currency/>
  591 + <decimal/>
  592 + <group/>
  593 + </field>
  594 + <field>
  595 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  596 + <type>String</type>
  597 + <length>-1</length>
  598 + <precision>-1</precision>
  599 + <trim_type>none</trim_type>
  600 + <repeat>N</repeat>
  601 + <format/>
  602 + <currency/>
  603 + <decimal/>
  604 + <group/>
  605 + </field>
  606 + <field>
  607 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  608 + <type>String</type>
  609 + <length>-1</length>
  610 + <precision>-1</precision>
  611 + <trim_type>none</trim_type>
  612 + <repeat>N</repeat>
  613 + <format>&#x23;</format>
  614 + <currency/>
  615 + <decimal/>
  616 + <group/>
  617 + </field>
  618 + <field>
  619 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  620 + <type>String</type>
  621 + <length>-1</length>
  622 + <precision>-1</precision>
  623 + <trim_type>none</trim_type>
  624 + <repeat>N</repeat>
  625 + <format>&#x23;</format>
  626 + <currency/>
  627 + <decimal/>
  628 + <group/>
  629 + </field>
  630 + <field>
  631 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  632 + <type>String</type>
  633 + <length>-1</length>
  634 + <precision>-1</precision>
  635 + <trim_type>none</trim_type>
  636 + <repeat>N</repeat>
  637 + <format>&#x23;</format>
  638 + <currency/>
  639 + <decimal/>
  640 + <group/>
  641 + </field>
  642 + <field>
  643 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  644 + <type>String</type>
  645 + <length>-1</length>
  646 + <precision>-1</precision>
  647 + <trim_type>none</trim_type>
  648 + <repeat>N</repeat>
  649 + <format>&#x23;</format>
  650 + <currency/>
  651 + <decimal/>
  652 + <group/>
  653 + </field>
  654 + <field>
  655 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  656 + <type>String</type>
  657 + <length>-1</length>
  658 + <precision>-1</precision>
  659 + <trim_type>none</trim_type>
  660 + <repeat>N</repeat>
  661 + <format>&#x23;</format>
  662 + <currency/>
  663 + <decimal/>
  664 + <group/>
  665 + </field>
  666 + </fields>
  667 + <sheets>
  668 + <sheet>
  669 + <name>&#x5de5;&#x4f5c;&#x8868;1</name>
  670 + <startrow>0</startrow>
  671 + <startcol>0</startcol>
  672 + </sheet>
  673 + </sheets>
  674 + <strict_types>N</strict_types>
  675 + <error_ignored>N</error_ignored>
  676 + <error_line_skipped>N</error_line_skipped>
  677 + <bad_line_files_destination_directory/>
  678 + <bad_line_files_extension>warning</bad_line_files_extension>
  679 + <error_line_files_destination_directory/>
  680 + <error_line_files_extension>error</error_line_files_extension>
  681 + <line_number_files_destination_directory/>
  682 + <line_number_files_extension>line</line_number_files_extension>
  683 + <shortFileFieldName/>
  684 + <pathFieldName/>
  685 + <hiddenFieldName/>
  686 + <lastModificationTimeFieldName/>
  687 + <uriNameFieldName/>
  688 + <rootUriNameFieldName/>
  689 + <extensionFieldName/>
  690 + <sizeFieldName/>
  691 + <spreadsheet_type>JXL</spreadsheet_type>
  692 + <cluster_schema/>
  693 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  694 + <xloc>208</xloc>
  695 + <yloc>21</yloc>
  696 + <draw>Y</draw>
  697 + </GUI>
  698 + </step>
  699 +
  700 + <step>
  701 + <name>&#x5408;&#x5e76;&#x5206;&#x73ed;&#x4eba;&#x5458;&#x914d;&#x7f6e;id</name>
  702 + <type>ScriptValueMod</type>
  703 + <description/>
  704 + <distribute>Y</distribute>
  705 + <custom_distribution/>
  706 + <copies>1</copies>
  707 + <partitioning>
  708 + <method>none</method>
  709 + <schema_name/>
  710 + </partitioning>
  711 + <compatible>N</compatible>
  712 + <optimizationLevel>9</optimizationLevel>
  713 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  714 + <jsScript_name>Script 1</jsScript_name>
  715 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var rycid&#x3b;&#xa;&#xa;if &#x28;rycid2 &#x3d;&#x3d; null&#x29; &#x7b;&#xa; rycid &#x3d; rycid1&#x3b;&#xa;&#x7d; else &#x7b;&#xa; rycid &#x3d; rycid1 &#x2b; &#x22;-&#x22; &#x2b; rycid2&#x3b;&#xa;&#x7d;</jsScript_script>
  716 + </jsScript> </jsScripts> <fields> <field> <name>rycid</name>
  717 + <rename>rycid</rename>
  718 + <type>String</type>
  719 + <length>-1</length>
  720 + <precision>-1</precision>
  721 + <replace>N</replace>
  722 + </field> </fields> <cluster_schema/>
  723 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  724 + <xloc>917</xloc>
  725 + <yloc>201</yloc>
  726 + <draw>Y</draw>
  727 + </GUI>
  728 + </step>
  729 +
  730 + <step>
  731 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;&#x8f6c;&#x6362;</name>
  732 + <type>SelectValues</type>
  733 + <description/>
  734 + <distribute>Y</distribute>
  735 + <custom_distribution/>
  736 + <copies>1</copies>
  737 + <partitioning>
  738 + <method>none</method>
  739 + <schema_name/>
  740 + </partitioning>
  741 + <fields> <select_unspecified>N</select_unspecified>
  742 + <meta> <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  743 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  744 + <type>Timestamp</type>
  745 + <length>-2</length>
  746 + <precision>-2</precision>
  747 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  748 + <date_format_lenient>false</date_format_lenient>
  749 + <date_format_locale/>
  750 + <date_format_timezone/>
  751 + <lenient_string_to_number>false</lenient_string_to_number>
  752 + <encoding/>
  753 + <decimal_symbol/>
  754 + <grouping_symbol/>
  755 + <currency_symbol/>
  756 + <storage_type/>
  757 + </meta> </fields> <cluster_schema/>
  758 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  759 + <xloc>777</xloc>
  760 + <yloc>368</yloc>
  761 + <draw>Y</draw>
  762 + </GUI>
  763 + </step>
  764 +
  765 + <step>
  766 + <name>&#x542f;&#x7528;&#x88ab;&#x6570;&#x636e;flag</name>
  767 + <type>Constant</type>
  768 + <description/>
  769 + <distribute>Y</distribute>
  770 + <custom_distribution/>
  771 + <copies>1</copies>
  772 + <partitioning>
  773 + <method>none</method>
  774 + <schema_name/>
  775 + </partitioning>
  776 + <fields>
  777 + <field>
  778 + <name>isCancel</name>
  779 + <type>Integer</type>
  780 + <format/>
  781 + <currency/>
  782 + <decimal/>
  783 + <group/>
  784 + <nullif>0</nullif>
  785 + <length>-1</length>
  786 + <precision>-1</precision>
  787 + <set_empty_string>N</set_empty_string>
  788 + </field>
  789 + </fields>
  790 + <cluster_schema/>
  791 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  792 + <xloc>361</xloc>
  793 + <yloc>22</yloc>
  794 + <draw>Y</draw>
  795 + </GUI>
  796 + </step>
  797 +
  798 + <step>
  799 + <name>&#x62c6;&#x5206;&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  800 + <type>SplitFieldToRows3</type>
  801 + <description/>
  802 + <distribute>Y</distribute>
  803 + <custom_distribution/>
  804 + <copies>1</copies>
  805 + <partitioning>
  806 + <method>none</method>
  807 + <schema_name/>
  808 + </partitioning>
  809 + <splitfield>&#x4eba;&#x5458;&#x8303;&#x56f4;</splitfield>
  810 + <delimiter>,</delimiter>
  811 + <newfield>dbbm</newfield>
  812 + <rownum>N</rownum>
  813 + <rownum_field/>
  814 + <resetrownumber>Y</resetrownumber>
  815 + <delimiter_is_regex>N</delimiter_is_regex>
  816 + <cluster_schema/>
  817 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  818 + <xloc>777</xloc>
  819 + <yloc>22</yloc>
  820 + <draw>Y</draw>
  821 + </GUI>
  822 + </step>
  823 +
  824 + <step>
  825 + <name>&#x62c6;&#x5206;&#x5206;&#x73ed;&#x642d;&#x73ed;&#x7f16;&#x7801;&#x5b57;&#x6bb5;</name>
  826 + <type>FieldSplitter</type>
  827 + <description/>
  828 + <distribute>Y</distribute>
  829 + <custom_distribution/>
  830 + <copies>1</copies>
  831 + <partitioning>
  832 + <method>none</method>
  833 + <schema_name/>
  834 + </partitioning>
  835 + <splitfield>dbbm</splitfield>
  836 + <delimiter>-</delimiter>
  837 + <enclosure/>
  838 + <fields> <field> <name>dbbm1</name>
  839 + <id/>
  840 + <idrem>N</idrem>
  841 + <type>String</type>
  842 + <format/>
  843 + <group/>
  844 + <decimal/>
  845 + <currency/>
  846 + <length>-1</length>
  847 + <precision>-1</precision>
  848 + <nullif/>
  849 + <ifnull/>
  850 + <trimtype>none</trimtype>
  851 + </field> <field> <name>dbbm2</name>
  852 + <id/>
  853 + <idrem>N</idrem>
  854 + <type>String</type>
  855 + <format/>
  856 + <group/>
  857 + <decimal/>
  858 + <currency/>
  859 + <length>-1</length>
  860 + <precision>-1</precision>
  861 + <nullif/>
  862 + <ifnull/>
  863 + <trimtype>none</trimtype>
  864 + </field> </fields> <cluster_schema/>
  865 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  866 + <xloc>901</xloc>
  867 + <yloc>22</yloc>
  868 + <draw>Y</draw>
  869 + </GUI>
  870 + </step>
  871 +
  872 + <step>
  873 + <name>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  874 + <type>SplitFieldToRows3</type>
  875 + <description/>
  876 + <distribute>Y</distribute>
  877 + <custom_distribution/>
  878 + <copies>1</copies>
  879 + <partitioning>
  880 + <method>none</method>
  881 + <schema_name/>
  882 + </partitioning>
  883 + <splitfield>&#x8def;&#x724c;&#x8303;&#x56f4;</splitfield>
  884 + <delimiter>,</delimiter>
  885 + <newfield>lpname</newfield>
  886 + <rownum>N</rownum>
  887 + <rownum_field/>
  888 + <resetrownumber>Y</resetrownumber>
  889 + <delimiter_is_regex>N</delimiter_is_regex>
  890 + <cluster_schema/>
  891 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  892 + <xloc>364</xloc>
  893 + <yloc>259</yloc>
  894 + <draw>Y</draw>
  895 + </GUI>
  896 + </step>
  897 +
  898 + <step>
  899 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  900 + <type>SortRows</type>
  901 + <description/>
  902 + <distribute>Y</distribute>
  903 + <custom_distribution/>
  904 + <copies>1</copies>
  905 + <partitioning>
  906 + <method>none</method>
  907 + <schema_name/>
  908 + </partitioning>
  909 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  910 + <prefix>out</prefix>
  911 + <sort_size>1000000</sort_size>
  912 + <free_memory/>
  913 + <compress>N</compress>
  914 + <compress_variable/>
  915 + <unique_rows>N</unique_rows>
  916 + <fields>
  917 + <field>
  918 + <name>xlid</name>
  919 + <ascending>Y</ascending>
  920 + <case_sensitive>N</case_sensitive>
  921 + <presorted>N</presorted>
  922 + </field>
  923 + <field>
  924 + <name>cid</name>
  925 + <ascending>Y</ascending>
  926 + <case_sensitive>N</case_sensitive>
  927 + <presorted>N</presorted>
  928 + </field>
  929 + <field>
  930 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  931 + <ascending>Y</ascending>
  932 + <case_sensitive>N</case_sensitive>
  933 + <presorted>N</presorted>
  934 + </field>
  935 + <field>
  936 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  937 + <ascending>Y</ascending>
  938 + <case_sensitive>N</case_sensitive>
  939 + <presorted>N</presorted>
  940 + </field>
  941 + <field>
  942 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  943 + <ascending>Y</ascending>
  944 + <case_sensitive>N</case_sensitive>
  945 + <presorted>N</presorted>
  946 + </field>
  947 + <field>
  948 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  949 + <ascending>Y</ascending>
  950 + <case_sensitive>N</case_sensitive>
  951 + <presorted>N</presorted>
  952 + </field>
  953 + <field>
  954 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  955 + <ascending>Y</ascending>
  956 + <case_sensitive>N</case_sensitive>
  957 + <presorted>N</presorted>
  958 + </field>
  959 + <field>
  960 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  961 + <ascending>Y</ascending>
  962 + <case_sensitive>N</case_sensitive>
  963 + <presorted>N</presorted>
  964 + </field>
  965 + <field>
  966 + <name>isCancel</name>
  967 + <ascending>Y</ascending>
  968 + <case_sensitive>N</case_sensitive>
  969 + <presorted>N</presorted>
  970 + </field>
  971 + </fields>
  972 + <cluster_schema/>
  973 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  974 + <xloc>516</xloc>
  975 + <yloc>119</yloc>
  976 + <draw>Y</draw>
  977 + </GUI>
  978 + </step>
  979 +
  980 + <step>
  981 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55; 2</name>
  982 + <type>SortRows</type>
  983 + <description/>
  984 + <distribute>Y</distribute>
  985 + <custom_distribution/>
  986 + <copies>1</copies>
  987 + <partitioning>
  988 + <method>none</method>
  989 + <schema_name/>
  990 + </partitioning>
  991 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  992 + <prefix>out</prefix>
  993 + <sort_size>1000000</sort_size>
  994 + <free_memory/>
  995 + <compress>N</compress>
  996 + <compress_variable/>
  997 + <unique_rows>N</unique_rows>
  998 + <fields>
  999 + <field>
  1000 + <name>xlid</name>
  1001 + <ascending>Y</ascending>
  1002 + <case_sensitive>N</case_sensitive>
  1003 + <presorted>N</presorted>
  1004 + </field>
  1005 + <field>
  1006 + <name>cid</name>
  1007 + <ascending>Y</ascending>
  1008 + <case_sensitive>N</case_sensitive>
  1009 + <presorted>N</presorted>
  1010 + </field>
  1011 + <field>
  1012 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  1013 + <ascending>Y</ascending>
  1014 + <case_sensitive>N</case_sensitive>
  1015 + <presorted>N</presorted>
  1016 + </field>
  1017 + <field>
  1018 + <name>lpids</name>
  1019 + <ascending>Y</ascending>
  1020 + <case_sensitive>N</case_sensitive>
  1021 + <presorted>N</presorted>
  1022 + </field>
  1023 + <field>
  1024 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  1025 + <ascending>Y</ascending>
  1026 + <case_sensitive>N</case_sensitive>
  1027 + <presorted>N</presorted>
  1028 + </field>
  1029 + <field>
  1030 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  1031 + <ascending>Y</ascending>
  1032 + <case_sensitive>N</case_sensitive>
  1033 + <presorted>N</presorted>
  1034 + </field>
  1035 + <field>
  1036 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  1037 + <ascending>Y</ascending>
  1038 + <case_sensitive>N</case_sensitive>
  1039 + <presorted>N</presorted>
  1040 + </field>
  1041 + <field>
  1042 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1043 + <ascending>Y</ascending>
  1044 + <case_sensitive>N</case_sensitive>
  1045 + <presorted>N</presorted>
  1046 + </field>
  1047 + <field>
  1048 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  1049 + <ascending>Y</ascending>
  1050 + <case_sensitive>N</case_sensitive>
  1051 + <presorted>N</presorted>
  1052 + </field>
  1053 + <field>
  1054 + <name>isCancel</name>
  1055 + <ascending>Y</ascending>
  1056 + <case_sensitive>N</case_sensitive>
  1057 + <presorted>N</presorted>
  1058 + </field>
  1059 + </fields>
  1060 + <cluster_schema/>
  1061 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1062 + <xloc>919</xloc>
  1063 + <yloc>289</yloc>
  1064 + <draw>Y</draw>
  1065 + </GUI>
  1066 + </step>
  1067 +
  1068 + <step>
  1069 + <name>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</name>
  1070 + <type>InsertUpdate</type>
  1071 + <description/>
  1072 + <distribute>Y</distribute>
  1073 + <custom_distribution/>
  1074 + <copies>1</copies>
  1075 + <partitioning>
  1076 + <method>none</method>
  1077 + <schema_name/>
  1078 + </partitioning>
  1079 + <connection>bus_control_variable</connection>
  1080 + <commit>100</commit>
  1081 + <update_bypassed>N</update_bypassed>
  1082 + <lookup>
  1083 + <schema/>
  1084 + <table>bsth_c_s_sr1_flat</table>
  1085 + <key>
  1086 + <name>xlid</name>
  1087 + <field>xl</field>
  1088 + <condition>&#x3d;</condition>
  1089 + <name2/>
  1090 + </key>
  1091 + <key>
  1092 + <name>cid</name>
  1093 + <field>car_config_info</field>
  1094 + <condition>&#x3d;</condition>
  1095 + <name2/>
  1096 + </key>
  1097 + <value>
  1098 + <name>xl</name>
  1099 + <rename>xlid</rename>
  1100 + <update>Y</update>
  1101 + </value>
  1102 + <value>
  1103 + <name>car_config_info</name>
  1104 + <rename>cid</rename>
  1105 + <update>Y</update>
  1106 + </value>
  1107 + <value>
  1108 + <name>lp_names</name>
  1109 + <rename>&#x8def;&#x724c;&#x8303;&#x56f4;</rename>
  1110 + <update>Y</update>
  1111 + </value>
  1112 + <value>
  1113 + <name>lp_ids</name>
  1114 + <rename>lpids</rename>
  1115 + <update>Y</update>
  1116 + </value>
  1117 + <value>
  1118 + <name>lp_start</name>
  1119 + <rename>&#x8d77;&#x59cb;&#x8def;&#x724c;</rename>
  1120 + <update>Y</update>
  1121 + </value>
  1122 + <value>
  1123 + <name>ry_start</name>
  1124 + <rename>&#x8d77;&#x59cb;&#x4eba;&#x5458;</rename>
  1125 + <update>Y</update>
  1126 + </value>
  1127 + <value>
  1128 + <name>ry_dbbms</name>
  1129 + <rename>&#x4eba;&#x5458;&#x8303;&#x56f4;</rename>
  1130 + <update>Y</update>
  1131 + </value>
  1132 + <value>
  1133 + <name>qyrq</name>
  1134 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  1135 + <update>Y</update>
  1136 + </value>
  1137 + <value>
  1138 + <name>ry_config_ids</name>
  1139 + <rename>rycids</rename>
  1140 + <update>Y</update>
  1141 + </value>
  1142 + <value>
  1143 + <name>fbgs</name>
  1144 + <rename>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</rename>
  1145 + <update>Y</update>
  1146 + </value>
  1147 + </lookup>
  1148 + <cluster_schema/>
  1149 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1150 + <xloc>532</xloc>
  1151 + <yloc>297</yloc>
  1152 + <draw>Y</draw>
  1153 + </GUI>
  1154 + </step>
  1155 +
  1156 + <step>
  1157 + <name>&#x7ebf;&#x8def;id&#x67e5;&#x8be2;</name>
  1158 + <type>DBLookup</type>
  1159 + <description/>
  1160 + <distribute>Y</distribute>
  1161 + <custom_distribution/>
  1162 + <copies>1</copies>
  1163 + <partitioning>
  1164 + <method>none</method>
  1165 + <schema_name/>
  1166 + </partitioning>
  1167 + <connection>bus_control_variable</connection>
  1168 + <cache>N</cache>
  1169 + <cache_load_all>Y</cache_load_all>
  1170 + <cache_size>0</cache_size>
  1171 + <lookup>
  1172 + <schema/>
  1173 + <table>bsth_c_line</table>
  1174 + <orderby/>
  1175 + <fail_on_multiple>N</fail_on_multiple>
  1176 + <eat_row_on_failure>N</eat_row_on_failure>
  1177 + <key>
  1178 + <name>&#x7ebf;&#x8def;</name>
  1179 + <field>name</field>
  1180 + <condition>&#x3d;</condition>
  1181 + <name2/>
  1182 + </key>
  1183 + <key>
  1184 + <name>isCancel</name>
  1185 + <field>destroy</field>
  1186 + <condition>&#x3d;</condition>
  1187 + <name2/>
  1188 + </key>
  1189 + <value>
  1190 + <name>id</name>
  1191 + <rename>xlid</rename>
  1192 + <default/>
  1193 + <type>Integer</type>
  1194 + </value>
  1195 + </lookup>
  1196 + <cluster_schema/>
  1197 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1198 + <xloc>359</xloc>
  1199 + <yloc>110</yloc>
  1200 + <draw>Y</draw>
  1201 + </GUI>
  1202 + </step>
  1203 +
  1204 + <step>
  1205 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  1206 + <type>GetVariable</type>
  1207 + <description/>
  1208 + <distribute>Y</distribute>
  1209 + <custom_distribution/>
  1210 + <copies>1</copies>
  1211 + <partitioning>
  1212 + <method>none</method>
  1213 + <schema_name/>
  1214 + </partitioning>
  1215 + <fields>
  1216 + <field>
  1217 + <name>filepath_</name>
  1218 + <variable>&#x24;&#x7b;filepath&#x7d;</variable>
  1219 + <type>String</type>
  1220 + <format/>
  1221 + <currency/>
  1222 + <decimal/>
  1223 + <group/>
  1224 + <length>-1</length>
  1225 + <precision>-1</precision>
  1226 + <trim_type>none</trim_type>
  1227 + </field>
  1228 + <field>
  1229 + <name>erroroutputdir_</name>
  1230 + <variable>&#x24;&#x7b;erroroutputdir&#x7d;</variable>
  1231 + <type>String</type>
  1232 + <format/>
  1233 + <currency/>
  1234 + <decimal/>
  1235 + <group/>
  1236 + <length>-1</length>
  1237 + <precision>-1</precision>
  1238 + <trim_type>none</trim_type>
  1239 + </field>
  1240 + </fields>
  1241 + <cluster_schema/>
  1242 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1243 + <xloc>53</xloc>
  1244 + <yloc>23</yloc>
  1245 + <draw>Y</draw>
  1246 + </GUI>
  1247 + </step>
  1248 +
  1249 + <step>
  1250 + <name>&#x8def;&#x724c;id&#x67e5;&#x8be2;</name>
  1251 + <type>DBLookup</type>
  1252 + <description/>
  1253 + <distribute>Y</distribute>
  1254 + <custom_distribution/>
  1255 + <copies>1</copies>
  1256 + <partitioning>
  1257 + <method>none</method>
  1258 + <schema_name/>
  1259 + </partitioning>
  1260 + <connection>bus_control_variable</connection>
  1261 + <cache>N</cache>
  1262 + <cache_load_all>Y</cache_load_all>
  1263 + <cache_size>0</cache_size>
  1264 + <lookup>
  1265 + <schema/>
  1266 + <table>bsth_c_s_gbi</table>
  1267 + <orderby/>
  1268 + <fail_on_multiple>N</fail_on_multiple>
  1269 + <eat_row_on_failure>N</eat_row_on_failure>
  1270 + <key>
  1271 + <name>xlid</name>
  1272 + <field>xl</field>
  1273 + <condition>&#x3d;</condition>
  1274 + <name2/>
  1275 + </key>
  1276 + <key>
  1277 + <name>lpname</name>
  1278 + <field>lp_name</field>
  1279 + <condition>&#x3d;</condition>
  1280 + <name2/>
  1281 + </key>
  1282 + <key>
  1283 + <name>isCancel</name>
  1284 + <field>is_cancel</field>
  1285 + <condition>&#x3d;</condition>
  1286 + <name2/>
  1287 + </key>
  1288 + <value>
  1289 + <name>id</name>
  1290 + <rename>lpid</rename>
  1291 + <default/>
  1292 + <type>Integer</type>
  1293 + </value>
  1294 + </lookup>
  1295 + <cluster_schema/>
  1296 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1297 + <xloc>516</xloc>
  1298 + <yloc>21</yloc>
  1299 + <draw>Y</draw>
  1300 + </GUI>
  1301 + </step>
  1302 +
  1303 + <step>
  1304 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</name>
  1305 + <type>DBJoin</type>
  1306 + <description/>
  1307 + <distribute>Y</distribute>
  1308 + <custom_distribution/>
  1309 + <copies>1</copies>
  1310 + <partitioning>
  1311 + <method>none</method>
  1312 + <schema_name/>
  1313 + </partitioning>
  1314 + <connection>bus_control_variable</connection>
  1315 + <rowlimit>1</rowlimit>
  1316 + <sql>select t1.id as cid from bsth_c_s_ccinfo t1 left join bsth_c_cars t2 on t1.cl &#x3d; t2.id&#xa;where t1.xl &#x3d; &#x3f; and t2.inside_code &#x3d; &#x3f; and t1.is_cancel &#x3d; &#x3f;</sql>
  1317 + <outer_join>Y</outer_join>
  1318 + <replace_vars>N</replace_vars>
  1319 + <parameter>
  1320 + <field>
  1321 + <name>xlid</name>
  1322 + <type>Integer</type>
  1323 + </field>
  1324 + <field>
  1325 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  1326 + <type>String</type>
  1327 + </field>
  1328 + <field>
  1329 + <name>isCancel</name>
  1330 + <type>Integer</type>
  1331 + </field>
  1332 + </parameter>
  1333 + <cluster_schema/>
  1334 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1335 + <xloc>360</xloc>
  1336 + <yloc>184</yloc>
  1337 + <draw>Y</draw>
  1338 + </GUI>
  1339 + </step>
  1340 +
  1341 + <step>
  1342 + <name>&#x8fc7;&#x6ee4;&#x4eba;&#x5458;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1343 + <type>FilterRows</type>
  1344 + <description/>
  1345 + <distribute>Y</distribute>
  1346 + <custom_distribution/>
  1347 + <copies>1</copies>
  1348 + <partitioning>
  1349 + <method>none</method>
  1350 + <schema_name/>
  1351 + </partitioning>
  1352 +<send_true_to/>
  1353 +<send_false_to/>
  1354 + <compare>
  1355 +<condition>
  1356 + <negated>N</negated>
  1357 + <conditions>
  1358 + <condition>
  1359 + <negated>N</negated>
  1360 + <leftvalue>rycid1</leftvalue>
  1361 + <function>IS NOT NULL</function>
  1362 + <rightvalue/>
  1363 + </condition>
  1364 + <condition>
  1365 + <negated>N</negated>
  1366 + <operator>OR</operator>
  1367 + <leftvalue>rycid2</leftvalue>
  1368 + <function>IS NOT NULL</function>
  1369 + <rightvalue/>
  1370 + </condition>
  1371 + </conditions>
  1372 + </condition>
  1373 + </compare>
  1374 + <cluster_schema/>
  1375 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1376 + <xloc>776</xloc>
  1377 + <yloc>204</yloc>
  1378 + <draw>Y</draw>
  1379 + </GUI>
  1380 + </step>
  1381 +
  1382 + <step>
  1383 + <name>&#x8fc7;&#x6ee4;&#x7ebf;&#x8def;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1384 + <type>FilterRows</type>
  1385 + <description/>
  1386 + <distribute>Y</distribute>
  1387 + <custom_distribution/>
  1388 + <copies>1</copies>
  1389 + <partitioning>
  1390 + <method>none</method>
  1391 + <schema_name/>
  1392 + </partitioning>
  1393 +<send_true_to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x67e5;&#x8be2;</send_true_to>
  1394 +<send_false_to/>
  1395 + <compare>
  1396 +<condition>
  1397 + <negated>N</negated>
  1398 + <leftvalue>xlid</leftvalue>
  1399 + <function>IS NOT NULL</function>
  1400 + <rightvalue/>
  1401 + </condition>
  1402 + </compare>
  1403 + <cluster_schema/>
  1404 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1405 + <xloc>203</xloc>
  1406 + <yloc>110</yloc>
  1407 + <draw>Y</draw>
  1408 + </GUI>
  1409 + </step>
  1410 +
  1411 + <step>
  1412 + <name>&#x8fc7;&#x6ee4;&#x8def;&#x724c;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1413 + <type>FilterRows</type>
  1414 + <description/>
  1415 + <distribute>Y</distribute>
  1416 + <custom_distribution/>
  1417 + <copies>1</copies>
  1418 + <partitioning>
  1419 + <method>none</method>
  1420 + <schema_name/>
  1421 + </partitioning>
  1422 +<send_true_to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</send_true_to>
  1423 +<send_false_to/>
  1424 + <compare>
  1425 +<condition>
  1426 + <negated>N</negated>
  1427 + <leftvalue>lpid</leftvalue>
  1428 + <function>IS NOT NULL</function>
  1429 + <rightvalue/>
  1430 + </condition>
  1431 + </compare>
  1432 + <cluster_schema/>
  1433 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1434 + <xloc>653</xloc>
  1435 + <yloc>23</yloc>
  1436 + <draw>Y</draw>
  1437 + </GUI>
  1438 + </step>
  1439 +
  1440 + <step>
  1441 + <name>&#x8fc7;&#x6ee4;&#x8f66;&#x8f86;&#x914d;&#x7f6e;id&#x4e3a;&#x7a7a;&#x8bb0;&#x5f55;</name>
  1442 + <type>FilterRows</type>
  1443 + <description/>
  1444 + <distribute>Y</distribute>
  1445 + <custom_distribution/>
  1446 + <copies>1</copies>
  1447 + <partitioning>
  1448 + <method>none</method>
  1449 + <schema_name/>
  1450 + </partitioning>
  1451 +<send_true_to>&#x62c6;&#x5206;&#x8def;&#x724c;&#x8303;&#x56f4;</send_true_to>
  1452 +<send_false_to/>
  1453 + <compare>
  1454 +<condition>
  1455 + <negated>N</negated>
  1456 + <leftvalue>cid</leftvalue>
  1457 + <function>IS NOT NULL</function>
  1458 + <rightvalue/>
  1459 + </condition>
  1460 + </compare>
  1461 + <cluster_schema/>
  1462 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1463 + <xloc>208</xloc>
  1464 + <yloc>182</yloc>
  1465 + <draw>Y</draw>
  1466 + </GUI>
  1467 + </step>
  1468 +
  1469 + <step>
  1470 + <name>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</name>
  1471 + <type>ExcelOutput</type>
  1472 + <description/>
  1473 + <distribute>Y</distribute>
  1474 + <custom_distribution/>
  1475 + <copies>1</copies>
  1476 + <partitioning>
  1477 + <method>none</method>
  1478 + <schema_name/>
  1479 + </partitioning>
  1480 + <header>Y</header>
  1481 + <footer>N</footer>
  1482 + <encoding>UTF-8</encoding>
  1483 + <append>N</append>
  1484 + <add_to_result_filenames>Y</add_to_result_filenames>
  1485 + <file>
  1486 + <name>&#x24;&#x7b;erroroutputdir&#x7d;&#x2f;&#x6392;&#x7248;&#x89c4;&#x5219;&#x4fe1;&#x606f;&#x5bfc;&#x5165;_&#x9519;&#x8bef;</name>
  1487 + <extention>xls</extention>
  1488 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  1489 + <create_parent_folder>N</create_parent_folder>
  1490 + <split>N</split>
  1491 + <add_date>N</add_date>
  1492 + <add_time>N</add_time>
  1493 + <SpecifyFormat>N</SpecifyFormat>
  1494 + <date_time_format/>
  1495 + <sheetname>Sheet1</sheetname>
  1496 + <autosizecolums>N</autosizecolums>
  1497 + <nullisblank>N</nullisblank>
  1498 + <protect_sheet>N</protect_sheet>
  1499 + <password>Encrypted </password>
  1500 + <splitevery>0</splitevery>
  1501 + <usetempfiles>N</usetempfiles>
  1502 + <tempdirectory/>
  1503 + </file>
  1504 + <template>
  1505 + <enabled>N</enabled>
  1506 + <append>N</append>
  1507 + <filename>template.xls</filename>
  1508 + </template>
  1509 + <fields>
  1510 + <field>
  1511 + <name>xlid</name>
  1512 + <type>Integer</type>
  1513 + <format/>
  1514 + </field>
  1515 + <field>
  1516 + <name>cid</name>
  1517 + <type>Integer</type>
  1518 + <format/>
  1519 + </field>
  1520 + <field>
  1521 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  1522 + <type>String</type>
  1523 + <format/>
  1524 + </field>
  1525 + <field>
  1526 + <name>lpids</name>
  1527 + <type>String</type>
  1528 + <format/>
  1529 + </field>
  1530 + <field>
  1531 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  1532 + <type>String</type>
  1533 + <format/>
  1534 + </field>
  1535 + <field>
  1536 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  1537 + <type>String</type>
  1538 + <format/>
  1539 + </field>
  1540 + <field>
  1541 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  1542 + <type>String</type>
  1543 + <format/>
  1544 + </field>
  1545 + <field>
  1546 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  1547 + <type>Timestamp</type>
  1548 + <format/>
  1549 + </field>
  1550 + <field>
  1551 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  1552 + <type>String</type>
  1553 + <format/>
  1554 + </field>
  1555 + <field>
  1556 + <name>isCancel</name>
  1557 + <type>Integer</type>
  1558 + <format/>
  1559 + </field>
  1560 + <field>
  1561 + <name>rycids</name>
  1562 + <type>String</type>
  1563 + <format/>
  1564 + </field>
  1565 + <field>
  1566 + <name>error_count</name>
  1567 + <type>Integer</type>
  1568 + <format/>
  1569 + </field>
  1570 + <field>
  1571 + <name>error_desc</name>
  1572 + <type>String</type>
  1573 + <format/>
  1574 + </field>
  1575 + <field>
  1576 + <name>error_column1</name>
  1577 + <type>String</type>
  1578 + <format/>
  1579 + </field>
  1580 + <field>
  1581 + <name>error_column2</name>
  1582 + <type>String</type>
  1583 + <format/>
  1584 + </field>
  1585 + </fields>
  1586 + <custom>
  1587 + <header_font_name>arial</header_font_name>
  1588 + <header_font_size>10</header_font_size>
  1589 + <header_font_bold>N</header_font_bold>
  1590 + <header_font_italic>N</header_font_italic>
  1591 + <header_font_underline>no</header_font_underline>
  1592 + <header_font_orientation>horizontal</header_font_orientation>
  1593 + <header_font_color>black</header_font_color>
  1594 + <header_background_color>none</header_background_color>
  1595 + <header_row_height>255</header_row_height>
  1596 + <header_alignment>left</header_alignment>
  1597 + <header_image/>
  1598 + <row_font_name>arial</row_font_name>
  1599 + <row_font_size>10</row_font_size>
  1600 + <row_font_color>black</row_font_color>
  1601 + <row_background_color>none</row_background_color>
  1602 + </custom>
  1603 + <cluster_schema/>
  1604 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1605 + <xloc>534</xloc>
  1606 + <yloc>392</yloc>
  1607 + <draw>Y</draw>
  1608 + </GUI>
  1609 + </step>
  1610 +
  1611 + <step_error_handling>
  1612 + <error>
  1613 + <source_step>&#x63d2;&#x5165; &#x2f; &#x66f4;&#x65b0;bsth_c_s_sr1_flat</source_step>
  1614 + <target_step>&#x9519;&#x8bef;&#x8f93;&#x51fa; 2</target_step>
  1615 + <is_enabled>Y</is_enabled>
  1616 + <nr_valuename>error_count</nr_valuename>
  1617 + <descriptions_valuename>error_desc</descriptions_valuename>
  1618 + <fields_valuename>error_column1</fields_valuename>
  1619 + <codes_valuename>error_column2</codes_valuename>
  1620 + <max_errors/>
  1621 + <max_pct_errors/>
  1622 + <min_pct_rows/>
  1623 + </error>
  1624 + </step_error_handling>
  1625 + <slave-step-copy-partition-distribution>
  1626 +</slave-step-copy-partition-distribution>
  1627 + <slave_transformation>N</slave_transformation>
  1628 +
  1629 +</transformation>
src/main/resources/datatools/ktrs/scheduleRuleDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#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>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;test.xls</default_value>  
15 - <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>templatepath</name>  
19 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;template</default_value>  
20 - <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>xlid</name>  
24 - <default_value>115</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;09 13&#x3a;35&#x3a;19.384</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2017&#x2f;01&#x2f;09 13&#x3a;35&#x3a;19.384</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>118</xloc>  
95 - <yloc>158</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 - <notepad>  
114 - <note>&#x4f7f;&#x7528;&#x6a21;&#x7248;&#x4f1a;&#x62a5;&#x9519;&#xff0c;&#xa;PDI-5031&#xa;</note>  
115 - <xloc>806</xloc>  
116 - <yloc>315</yloc>  
117 - <width>106</width>  
118 - <heigth>58</heigth>  
119 - <fontname>YaHei Consolas Hybrid</fontname>  
120 - <fontsize>12</fontsize>  
121 - <fontbold>N</fontbold>  
122 - <fontitalic>N</fontitalic>  
123 - <fontcolorred>0</fontcolorred>  
124 - <fontcolorgreen>0</fontcolorgreen>  
125 - <fontcolorblue>0</fontcolorblue>  
126 - <backgroundcolorred>255</backgroundcolorred>  
127 - <backgroundcolorgreen>205</backgroundcolorgreen>  
128 - <backgroundcolorblue>112</backgroundcolorblue>  
129 - <bordercolorred>100</bordercolorred>  
130 - <bordercolorgreen>100</bordercolorgreen>  
131 - <bordercolorblue>100</bordercolorblue>  
132 - <drawshadow>Y</drawshadow>  
133 - </notepad>  
134 - </notepads>  
135 - <connection>  
136 - <name>bus_control_variable</name>  
137 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
138 - <type>MYSQL</type>  
139 - <access>Native</access>  
140 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
141 - <port>3306</port>  
142 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
143 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
144 - <servername/>  
145 - <data_tablespace/>  
146 - <index_tablespace/>  
147 - <attributes>  
148 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
149 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
150 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
151 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
152 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
153 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
154 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
155 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
157 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
158 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
159 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
160 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
161 - </attributes>  
162 - </connection>  
163 - <connection>  
164 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
165 - <server>localhost</server>  
166 - <type>MYSQL</type>  
167 - <access>Native</access>  
168 - <database>control</database>  
169 - <port>3306</port>  
170 - <username>root</username>  
171 - <password>Encrypted </password>  
172 - <servername/>  
173 - <data_tablespace/>  
174 - <index_tablespace/>  
175 - <attributes>  
176 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
177 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
178 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
179 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
180 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
181 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
182 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
184 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
185 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
186 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
187 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
188 - </attributes>  
189 - </connection>  
190 - <connection>  
191 - <name>bus_control_&#x672c;&#x673a;</name>  
192 - <server>localhost</server>  
193 - <type>MYSQL</type>  
194 - <access>Native</access>  
195 - <database>control</database>  
196 - <port>3306</port>  
197 - <username>root</username>  
198 - <password>Encrypted </password>  
199 - <servername/>  
200 - <data_tablespace/>  
201 - <index_tablespace/>  
202 - <attributes>  
203 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
204 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
205 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
206 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
207 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
208 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
209 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
211 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
212 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
213 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
214 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
215 - </attributes>  
216 - </connection>  
217 - <connection>  
218 - <name>xlab_mysql_youle</name>  
219 - <server>101.231.124.8</server>  
220 - <type>MYSQL</type>  
221 - <access>Native</access>  
222 - <database>xlab_youle</database>  
223 - <port>45687</port>  
224 - <username>xlab-youle</username>  
225 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
226 - <servername/>  
227 - <data_tablespace/>  
228 - <index_tablespace/>  
229 - <attributes>  
230 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
231 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
232 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
233 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
234 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
235 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
236 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
238 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
239 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
241 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
242 - </attributes>  
243 - </connection>  
244 - <connection>  
245 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
246 - <server>localhost</server>  
247 - <type>MYSQL</type>  
248 - <access>Native</access>  
249 - <database>xlab_youle</database>  
250 - <port>3306</port>  
251 - <username>root</username>  
252 - <password>Encrypted </password>  
253 - <servername/>  
254 - <data_tablespace/>  
255 - <index_tablespace/>  
256 - <attributes>  
257 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
258 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
259 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
260 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
261 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
262 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
263 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
265 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
266 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
267 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
268 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
269 - </attributes>  
270 - </connection>  
271 - <connection>  
272 - <name>xlab_youle</name>  
273 - <server/>  
274 - <type>MYSQL</type>  
275 - <access>JNDI</access>  
276 - <database>xlab_youle</database>  
277 - <port>1521</port>  
278 - <username/>  
279 - <password>Encrypted </password>  
280 - <servername/>  
281 - <data_tablespace/>  
282 - <index_tablespace/>  
283 - <attributes>  
284 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
285 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
286 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
287 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
288 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
290 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
291 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
292 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
293 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
294 - </attributes>  
295 - </connection>  
296 - <order>  
297 - <hop> <from>&#x6392;&#x7248;&#x89c4;&#x5219;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
298 - <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
299 - <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>  
300 - <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>  
301 - <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
302 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
303 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
304 - </order>  
305 - <step>  
306 - <name>Excel&#x8f93;&#x51fa;</name>  
307 - <type>ExcelOutput</type>  
308 - <description/>  
309 - <distribute>Y</distribute>  
310 - <custom_distribution/>  
311 - <copies>1</copies>  
312 - <partitioning>  
313 - <method>none</method>  
314 - <schema_name/>  
315 - </partitioning>  
316 - <header>Y</header>  
317 - <footer>N</footer>  
318 - <encoding/>  
319 - <append>N</append>  
320 - <add_to_result_filenames>Y</add_to_result_filenames>  
321 - <file>  
322 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
323 - <extention/>  
324 - <do_not_open_newfile_init>Y</do_not_open_newfile_init>  
325 - <create_parent_folder>N</create_parent_folder>  
326 - <split>N</split>  
327 - <add_date>N</add_date>  
328 - <add_time>N</add_time>  
329 - <SpecifyFormat>N</SpecifyFormat>  
330 - <date_time_format>yyyyMMddHHmmss</date_time_format>  
331 - <sheetname>&#x5de5;&#x4f5c;&#x8868;1</sheetname>  
332 - <autosizecolums>N</autosizecolums>  
333 - <nullisblank>N</nullisblank>  
334 - <protect_sheet>N</protect_sheet>  
335 - <password>Encrypted </password>  
336 - <splitevery>0</splitevery>  
337 - <usetempfiles>N</usetempfiles>  
338 - <tempdirectory/>  
339 - </file>  
340 - <template>  
341 - <enabled>N</enabled>  
342 - <append>N</append>  
343 - <filename>&#x24;&#x7b;templatepath&#x7d;&#x2f;t1.xls</filename>  
344 - </template>  
345 - <fields>  
346 - <field>  
347 - <name>&#x7ebf;&#x8def;</name>  
348 - <type>String</type>  
349 - <format/>  
350 - </field>  
351 - <field>  
352 - <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>  
353 - <type>String</type>  
354 - <format/>  
355 - </field>  
356 - <field>  
357 - <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>  
358 - <type>String</type>  
359 - <format/>  
360 - </field>  
361 - <field>  
362 - <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>  
363 - <type>String</type>  
364 - <format/>  
365 - </field>  
366 - <field>  
367 - <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>  
368 - <type>String</type>  
369 - <format/>  
370 - </field>  
371 - <field>  
372 - <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>  
373 - <type>String</type>  
374 - <format/>  
375 - </field>  
376 - <field>  
377 - <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>  
378 - <type>String</type>  
379 - <format/>  
380 - </field>  
381 - <field>  
382 - <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>  
383 - <type>String</type>  
384 - <format/>  
385 - </field>  
386 - </fields>  
387 - <custom>  
388 - <header_font_name>arial</header_font_name>  
389 - <header_font_size>10</header_font_size>  
390 - <header_font_bold>N</header_font_bold>  
391 - <header_font_italic>N</header_font_italic>  
392 - <header_font_underline>no</header_font_underline>  
393 - <header_font_orientation>horizontal</header_font_orientation>  
394 - <header_font_color>black</header_font_color>  
395 - <header_background_color>none</header_background_color>  
396 - <header_row_height>255</header_row_height>  
397 - <header_alignment>left</header_alignment>  
398 - <header_image/>  
399 - <row_font_name>arial</row_font_name>  
400 - <row_font_size>10</row_font_size>  
401 - <row_font_color>black</row_font_color>  
402 - <row_background_color>none</row_background_color>  
403 - </custom>  
404 - <cluster_schema/>  
405 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
406 - <xloc>707</xloc>  
407 - <yloc>348</yloc>  
408 - <draw>Y</draw>  
409 - </GUI>  
410 - </step>  
411 -  
412 - <step>  
413 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
414 - <type>SelectValues</type>  
415 - <description/>  
416 - <distribute>Y</distribute>  
417 - <custom_distribution/>  
418 - <copies>1</copies>  
419 - <partitioning>  
420 - <method>none</method>  
421 - <schema_name/>  
422 - </partitioning>  
423 - <fields> <field> <name>xlmc</name>  
424 - <rename>&#x7ebf;&#x8def;</rename>  
425 - <length>-2</length>  
426 - <precision>-2</precision>  
427 - </field> <field> <name>zbh</name>  
428 - <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>  
429 - <length>-2</length>  
430 - <precision>-2</precision>  
431 - </field> <field> <name>qyrq</name>  
432 - <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>  
433 - <length>-2</length>  
434 - <precision>-2</precision>  
435 - </field> <field> <name>lp_start</name>  
436 - <rename>&#x8d77;&#x59cb;&#x8def;&#x724c;</rename>  
437 - <length>-2</length>  
438 - <precision>-2</precision>  
439 - </field> <field> <name>lp_names</name>  
440 - <rename>&#x8def;&#x724c;&#x8303;&#x56f4;</rename>  
441 - <length>-2</length>  
442 - <precision>-2</precision>  
443 - </field> <field> <name>ry_start</name>  
444 - <rename>&#x8d77;&#x59cb;&#x4eba;&#x5458;</rename>  
445 - <length>-2</length>  
446 - <precision>-2</precision>  
447 - </field> <field> <name>ry_dbbms</name>  
448 - <rename>&#x4eba;&#x5458;&#x8303;&#x56f4;</rename>  
449 - <length>-2</length>  
450 - <precision>-2</precision>  
451 - </field> <field> <name>fbgs</name>  
452 - <rename>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</rename>  
453 - <length>-2</length>  
454 - <precision>-2</precision>  
455 - </field> <select_unspecified>N</select_unspecified>  
456 - </fields> <cluster_schema/>  
457 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
458 - <xloc>705</xloc>  
459 - <yloc>270</yloc>  
460 - <draw>Y</draw>  
461 - </GUI>  
462 - </step>  
463 -  
464 - <step>  
465 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
466 - <type>SortRows</type>  
467 - <description/>  
468 - <distribute>Y</distribute>  
469 - <custom_distribution/>  
470 - <copies>1</copies>  
471 - <partitioning>  
472 - <method>none</method>  
473 - <schema_name/>  
474 - </partitioning>  
475 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
476 - <prefix>out</prefix>  
477 - <sort_size>1000000</sort_size>  
478 - <free_memory/>  
479 - <compress>N</compress>  
480 - <compress_variable/>  
481 - <unique_rows>N</unique_rows>  
482 - <fields>  
483 - <field>  
484 - <name>xlmc</name>  
485 - <ascending>Y</ascending>  
486 - <case_sensitive>N</case_sensitive>  
487 - <presorted>N</presorted>  
488 - </field>  
489 - <field>  
490 - <name>zbh</name>  
491 - <ascending>Y</ascending>  
492 - <case_sensitive>N</case_sensitive>  
493 - <presorted>N</presorted>  
494 - </field>  
495 - <field>  
496 - <name>qyrq</name>  
497 - <ascending>Y</ascending>  
498 - <case_sensitive>N</case_sensitive>  
499 - <presorted>N</presorted>  
500 - </field>  
501 - <field>  
502 - <name>lp_names</name>  
503 - <ascending>Y</ascending>  
504 - <case_sensitive>N</case_sensitive>  
505 - <presorted>N</presorted>  
506 - </field>  
507 - <field>  
508 - <name>ry_dbbms</name>  
509 - <ascending>Y</ascending>  
510 - <case_sensitive>N</case_sensitive>  
511 - <presorted>N</presorted>  
512 - </field>  
513 - </fields>  
514 - <cluster_schema/>  
515 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
516 - <xloc>705</xloc>  
517 - <yloc>177</yloc>  
518 - <draw>Y</draw>  
519 - </GUI>  
520 - </step>  
521 -  
522 - <step>  
523 - <name>&#x6392;&#x7248;&#x89c4;&#x5219;</name>  
524 - <type>TableInput</type>  
525 - <description/>  
526 - <distribute>Y</distribute>  
527 - <custom_distribution/>  
528 - <copies>1</copies>  
529 - <partitioning>  
530 - <method>none</method>  
531 - <schema_name/>  
532 - </partitioning>  
533 - <connection>bus_control_variable</connection>  
534 - <sql>SELECT &#x2a; FROM bsth_c_s_sr1_flat&#xa;where xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>  
535 - <limit>0</limit>  
536 - <lookup/>  
537 - <execute_each_row>N</execute_each_row>  
538 - <variables_active>Y</variables_active>  
539 - <lazy_conversion_active>N</lazy_conversion_active>  
540 - <cluster_schema/>  
541 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
542 - <xloc>129</xloc>  
543 - <yloc>65</yloc>  
544 - <draw>Y</draw>  
545 - </GUI>  
546 - </step>  
547 -  
548 - <step>  
549 - <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>  
550 - <type>SelectValues</type>  
551 - <description/>  
552 - <distribute>Y</distribute>  
553 - <custom_distribution/>  
554 - <copies>1</copies>  
555 - <partitioning>  
556 - <method>none</method>  
557 - <schema_name/>  
558 - </partitioning>  
559 - <fields> <select_unspecified>N</select_unspecified>  
560 - <meta> <name>qyrq</name>  
561 - <rename>qyrq</rename>  
562 - <type>String</type>  
563 - <length>-2</length>  
564 - <precision>-2</precision>  
565 - <conversion_mask>yyyy-MM-dd</conversion_mask>  
566 - <date_format_lenient>false</date_format_lenient>  
567 - <date_format_locale/>  
568 - <date_format_timezone/>  
569 - <lenient_string_to_number>false</lenient_string_to_number>  
570 - <encoding/>  
571 - <decimal_symbol/>  
572 - <grouping_symbol/>  
573 - <currency_symbol/>  
574 - <storage_type/>  
575 - </meta> <meta> <name>lp_start</name>  
576 - <rename>lp_start</rename>  
577 - <type>String</type>  
578 - <length>-2</length>  
579 - <precision>-2</precision>  
580 - <conversion_mask/>  
581 - <date_format_lenient>false</date_format_lenient>  
582 - <date_format_locale/>  
583 - <date_format_timezone/>  
584 - <lenient_string_to_number>false</lenient_string_to_number>  
585 - <encoding/>  
586 - <decimal_symbol/>  
587 - <grouping_symbol/>  
588 - <currency_symbol/>  
589 - <storage_type/>  
590 - </meta> <meta> <name>ry_start</name>  
591 - <rename>ry_start</rename>  
592 - <type>String</type>  
593 - <length>-2</length>  
594 - <precision>-2</precision>  
595 - <conversion_mask>&#x23;</conversion_mask>  
596 - <date_format_lenient>false</date_format_lenient>  
597 - <date_format_locale/>  
598 - <date_format_timezone/>  
599 - <lenient_string_to_number>false</lenient_string_to_number>  
600 - <encoding/>  
601 - <decimal_symbol/>  
602 - <grouping_symbol/>  
603 - <currency_symbol/>  
604 - <storage_type/>  
605 - </meta> </fields> <cluster_schema/>  
606 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
607 - <xloc>705</xloc>  
608 - <yloc>65</yloc>  
609 - <draw>Y</draw>  
610 - </GUI>  
611 - </step>  
612 -  
613 - <step>  
614 - <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>  
615 - <type>DBLookup</type>  
616 - <description/>  
617 - <distribute>Y</distribute>  
618 - <custom_distribution/>  
619 - <copies>1</copies>  
620 - <partitioning>  
621 - <method>none</method>  
622 - <schema_name/>  
623 - </partitioning>  
624 - <connection>bus_control_variable</connection>  
625 - <cache>Y</cache>  
626 - <cache_load_all>Y</cache_load_all>  
627 - <cache_size>0</cache_size>  
628 - <lookup>  
629 - <schema/>  
630 - <table>bsth_c_line</table>  
631 - <orderby/>  
632 - <fail_on_multiple>N</fail_on_multiple>  
633 - <eat_row_on_failure>N</eat_row_on_failure>  
634 - <key>  
635 - <name>xl</name>  
636 - <field>id</field>  
637 - <condition>&#x3d;</condition>  
638 - <name2/>  
639 - </key>  
640 - <value>  
641 - <name>name</name>  
642 - <rename>xlmc</rename>  
643 - <default/>  
644 - <type>String</type>  
645 - </value>  
646 - </lookup>  
647 - <cluster_schema/>  
648 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
649 - <xloc>329</xloc>  
650 - <yloc>65</yloc>  
651 - <draw>Y</draw>  
652 - </GUI>  
653 - </step>  
654 -  
655 - <step>  
656 - <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>  
657 - <type>DBLookup</type>  
658 - <description/>  
659 - <distribute>Y</distribute>  
660 - <custom_distribution/>  
661 - <copies>1</copies>  
662 - <partitioning>  
663 - <method>none</method>  
664 - <schema_name/>  
665 - </partitioning>  
666 - <connection>bus_control_variable</connection>  
667 - <cache>N</cache>  
668 - <cache_load_all>N</cache_load_all>  
669 - <cache_size>0</cache_size>  
670 - <lookup>  
671 - <schema/>  
672 - <table>bsth_c_cars</table>  
673 - <orderby/>  
674 - <fail_on_multiple>N</fail_on_multiple>  
675 - <eat_row_on_failure>N</eat_row_on_failure>  
676 - <key>  
677 - <name>clid</name>  
678 - <field>id</field>  
679 - <condition>&#x3d;</condition>  
680 - <name2/>  
681 - </key>  
682 - <value>  
683 - <name>inside_code</name>  
684 - <rename>zbh</rename>  
685 - <default/>  
686 - <type>String</type>  
687 - </value>  
688 - </lookup>  
689 - <cluster_schema/>  
690 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
691 - <xloc>600</xloc>  
692 - <yloc>64</yloc>  
693 - <draw>Y</draw>  
694 - </GUI>  
695 - </step>  
696 -  
697 - <step>  
698 - <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</name>  
699 - <type>DBLookup</type>  
700 - <description/>  
701 - <distribute>Y</distribute>  
702 - <custom_distribution/>  
703 - <copies>1</copies>  
704 - <partitioning>  
705 - <method>none</method>  
706 - <schema_name/>  
707 - </partitioning>  
708 - <connection>bus_control_variable</connection>  
709 - <cache>N</cache>  
710 - <cache_load_all>N</cache_load_all>  
711 - <cache_size>0</cache_size>  
712 - <lookup>  
713 - <schema/>  
714 - <table>bsth_c_s_ccinfo</table>  
715 - <orderby/>  
716 - <fail_on_multiple>N</fail_on_multiple>  
717 - <eat_row_on_failure>N</eat_row_on_failure>  
718 - <key>  
719 - <name>car_config_info</name>  
720 - <field>id</field>  
721 - <condition>&#x3d;</condition>  
722 - <name2/>  
723 - </key>  
724 - <value>  
725 - <name>cl</name>  
726 - <rename>clid</rename>  
727 - <default/>  
728 - <type>Integer</type>  
729 - </value>  
730 - </lookup>  
731 - <cluster_schema/>  
732 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
733 - <xloc>471</xloc>  
734 - <yloc>64</yloc>  
735 - <draw>Y</draw>  
736 - </GUI>  
737 - </step>  
738 -  
739 - <step_error_handling>  
740 - </step_error_handling>  
741 - <slave-step-copy-partition-distribution>  
742 -</slave-step-copy-partition-distribution>  
743 - <slave_transformation>N</slave_transformation>  
744 -  
745 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x6392;&#x73ed;&#x89c4;&#x5219;&#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>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;test.xls</default_value>
  15 + <description>excel&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>templatepath</name>
  19 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;template</default_value>
  20 + <description>&#x6a21;&#x7248;&#x6587;&#x4ef6;&#x8def;&#x5f84;</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>115</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;09 13&#x3a;35&#x3a;19.384</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2017&#x2f;01&#x2f;09 13&#x3a;35&#x3a;19.384</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>118</xloc>
  95 + <yloc>158</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 + <notepad>
  114 + <note>Excel output &#x6b65;&#x9aa4;&#xa;&#x4f7f;&#x7528;&#x6a21;&#x7248;&#x4f1a;&#x62a5;&#x9519;&#xff0c;&#xa;PDI-5031&#xa;&#xa;Excel writer &#x4e0d;&#x77e5;&#x9053;&#x62a5;&#x4e0d;&#x62a5;&#x9519;&#xa;</note>
  115 + <xloc>806</xloc>
  116 + <yloc>315</yloc>
  117 + <width>185</width>
  118 + <heigth>106</heigth>
  119 + <fontname>YaHei Consolas Hybrid</fontname>
  120 + <fontsize>12</fontsize>
  121 + <fontbold>N</fontbold>
  122 + <fontitalic>N</fontitalic>
  123 + <fontcolorred>0</fontcolorred>
  124 + <fontcolorgreen>0</fontcolorgreen>
  125 + <fontcolorblue>0</fontcolorblue>
  126 + <backgroundcolorred>255</backgroundcolorred>
  127 + <backgroundcolorgreen>205</backgroundcolorgreen>
  128 + <backgroundcolorblue>112</backgroundcolorblue>
  129 + <bordercolorred>100</bordercolorred>
  130 + <bordercolorgreen>100</bordercolorgreen>
  131 + <bordercolorblue>100</bordercolorblue>
  132 + <drawshadow>Y</drawshadow>
  133 + </notepad>
  134 + </notepads>
  135 + <connection>
  136 + <name>192.168.168.1_jwgl_dw</name>
  137 + <server>192.168.168.1</server>
  138 + <type>ORACLE</type>
  139 + <access>Native</access>
  140 + <database>orcl</database>
  141 + <port>1521</port>
  142 + <username>jwgl_dw</username>
  143 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  144 + <servername/>
  145 + <data_tablespace/>
  146 + <index_tablespace/>
  147 + <attributes>
  148 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  149 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  150 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  151 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  152 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  153 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  154 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  155 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  156 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  157 + </attributes>
  158 + </connection>
  159 + <connection>
  160 + <name>bus_control_variable</name>
  161 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  162 + <type>MYSQL</type>
  163 + <access>Native</access>
  164 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  165 + <port>3306</port>
  166 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  167 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  168 + <servername/>
  169 + <data_tablespace/>
  170 + <index_tablespace/>
  171 + <attributes>
  172 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  173 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  174 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  175 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  176 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  177 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  178 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  179 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  180 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  181 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  182 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  183 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  184 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  185 + </attributes>
  186 + </connection>
  187 + <connection>
  188 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  189 + <server>localhost</server>
  190 + <type>MYSQL</type>
  191 + <access>Native</access>
  192 + <database>control</database>
  193 + <port>3306</port>
  194 + <username>root</username>
  195 + <password>Encrypted </password>
  196 + <servername/>
  197 + <data_tablespace/>
  198 + <index_tablespace/>
  199 + <attributes>
  200 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  201 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  202 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  203 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  204 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  205 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  206 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  207 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  208 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  209 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  210 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  211 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  212 + </attributes>
  213 + </connection>
  214 + <connection>
  215 + <name>bus_control_&#x672c;&#x673a;</name>
  216 + <server>localhost</server>
  217 + <type>MYSQL</type>
  218 + <access>Native</access>
  219 + <database>control</database>
  220 + <port>3306</port>
  221 + <username>root</username>
  222 + <password>Encrypted </password>
  223 + <servername/>
  224 + <data_tablespace/>
  225 + <index_tablespace/>
  226 + <attributes>
  227 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  228 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  229 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  230 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  231 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  232 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  233 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  235 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  236 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  237 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  238 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  239 + </attributes>
  240 + </connection>
  241 + <connection>
  242 + <name>xlab_mysql_youle</name>
  243 + <server>101.231.124.8</server>
  244 + <type>MYSQL</type>
  245 + <access>Native</access>
  246 + <database>xlab_youle</database>
  247 + <port>45687</port>
  248 + <username>xlab-youle</username>
  249 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  250 + <servername/>
  251 + <data_tablespace/>
  252 + <index_tablespace/>
  253 + <attributes>
  254 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  255 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  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>45687</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>N</attribute></attribute>
  264 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  265 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  266 + </attributes>
  267 + </connection>
  268 + <connection>
  269 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  270 + <server>localhost</server>
  271 + <type>MYSQL</type>
  272 + <access>Native</access>
  273 + <database>xlab_youle</database>
  274 + <port>3306</port>
  275 + <username>root</username>
  276 + <password>Encrypted </password>
  277 + <servername/>
  278 + <data_tablespace/>
  279 + <index_tablespace/>
  280 + <attributes>
  281 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  282 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  283 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  284 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  285 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  286 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  287 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  288 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  289 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  290 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  291 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  292 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  293 + </attributes>
  294 + </connection>
  295 + <connection>
  296 + <name>xlab_youle</name>
  297 + <server/>
  298 + <type>MYSQL</type>
  299 + <access>JNDI</access>
  300 + <database>xlab_youle</database>
  301 + <port>1521</port>
  302 + <username/>
  303 + <password>Encrypted </password>
  304 + <servername/>
  305 + <data_tablespace/>
  306 + <index_tablespace/>
  307 + <attributes>
  308 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  309 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  310 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  311 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  312 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  313 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  314 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  315 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  316 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  317 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  318 + </attributes>
  319 + </connection>
  320 + <order>
  321 + <hop> <from>&#x6392;&#x7248;&#x89c4;&#x5219;</from><to>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  322 + <hop> <from>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  323 + <hop> <from>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</from><to>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</to><enabled>Y</enabled> </hop>
  324 + <hop> <from>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</from><to>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</to><enabled>Y</enabled> </hop>
  325 + <hop> <from>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  326 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  327 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Microsoft Excel &#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  328 + </order>
  329 + <step>
  330 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  331 + <type>SelectValues</type>
  332 + <description/>
  333 + <distribute>Y</distribute>
  334 + <custom_distribution/>
  335 + <copies>1</copies>
  336 + <partitioning>
  337 + <method>none</method>
  338 + <schema_name/>
  339 + </partitioning>
  340 + <fields> <field> <name>xlmc</name>
  341 + <rename>&#x7ebf;&#x8def;</rename>
  342 + <length>-2</length>
  343 + <precision>-2</precision>
  344 + </field> <field> <name>zbh</name>
  345 + <rename>&#x5185;&#x90e8;&#x7f16;&#x7801;</rename>
  346 + <length>-2</length>
  347 + <precision>-2</precision>
  348 + </field> <field> <name>qyrq</name>
  349 + <rename>&#x542f;&#x7528;&#x65e5;&#x671f;</rename>
  350 + <length>-2</length>
  351 + <precision>-2</precision>
  352 + </field> <field> <name>lp_start</name>
  353 + <rename>&#x8d77;&#x59cb;&#x8def;&#x724c;</rename>
  354 + <length>-2</length>
  355 + <precision>-2</precision>
  356 + </field> <field> <name>lp_names</name>
  357 + <rename>&#x8def;&#x724c;&#x8303;&#x56f4;</rename>
  358 + <length>-2</length>
  359 + <precision>-2</precision>
  360 + </field> <field> <name>ry_start</name>
  361 + <rename>&#x8d77;&#x59cb;&#x4eba;&#x5458;</rename>
  362 + <length>-2</length>
  363 + <precision>-2</precision>
  364 + </field> <field> <name>ry_dbbms</name>
  365 + <rename>&#x4eba;&#x5458;&#x8303;&#x56f4;</rename>
  366 + <length>-2</length>
  367 + <precision>-2</precision>
  368 + </field> <field> <name>fbgs</name>
  369 + <rename>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</rename>
  370 + <length>-2</length>
  371 + <precision>-2</precision>
  372 + </field> <select_unspecified>N</select_unspecified>
  373 + </fields> <cluster_schema/>
  374 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  375 + <xloc>705</xloc>
  376 + <yloc>270</yloc>
  377 + <draw>Y</draw>
  378 + </GUI>
  379 + </step>
  380 +
  381 + <step>
  382 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  383 + <type>SortRows</type>
  384 + <description/>
  385 + <distribute>Y</distribute>
  386 + <custom_distribution/>
  387 + <copies>1</copies>
  388 + <partitioning>
  389 + <method>none</method>
  390 + <schema_name/>
  391 + </partitioning>
  392 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  393 + <prefix>out</prefix>
  394 + <sort_size>1000000</sort_size>
  395 + <free_memory/>
  396 + <compress>N</compress>
  397 + <compress_variable/>
  398 + <unique_rows>N</unique_rows>
  399 + <fields>
  400 + <field>
  401 + <name>xlmc</name>
  402 + <ascending>Y</ascending>
  403 + <case_sensitive>N</case_sensitive>
  404 + <presorted>N</presorted>
  405 + </field>
  406 + <field>
  407 + <name>zbh</name>
  408 + <ascending>Y</ascending>
  409 + <case_sensitive>N</case_sensitive>
  410 + <presorted>N</presorted>
  411 + </field>
  412 + <field>
  413 + <name>qyrq</name>
  414 + <ascending>Y</ascending>
  415 + <case_sensitive>N</case_sensitive>
  416 + <presorted>N</presorted>
  417 + </field>
  418 + <field>
  419 + <name>lp_names</name>
  420 + <ascending>Y</ascending>
  421 + <case_sensitive>N</case_sensitive>
  422 + <presorted>N</presorted>
  423 + </field>
  424 + <field>
  425 + <name>ry_dbbms</name>
  426 + <ascending>Y</ascending>
  427 + <case_sensitive>N</case_sensitive>
  428 + <presorted>N</presorted>
  429 + </field>
  430 + </fields>
  431 + <cluster_schema/>
  432 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  433 + <xloc>705</xloc>
  434 + <yloc>177</yloc>
  435 + <draw>Y</draw>
  436 + </GUI>
  437 + </step>
  438 +
  439 + <step>
  440 + <name>&#x6392;&#x7248;&#x89c4;&#x5219;</name>
  441 + <type>TableInput</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 + <connection>bus_control_variable</connection>
  451 + <sql>SELECT &#x2a; FROM bsth_c_s_sr1_flat&#xa;where xl &#x3d; &#x24;&#x7b;xlid&#x7d;</sql>
  452 + <limit>0</limit>
  453 + <lookup/>
  454 + <execute_each_row>N</execute_each_row>
  455 + <variables_active>Y</variables_active>
  456 + <lazy_conversion_active>N</lazy_conversion_active>
  457 + <cluster_schema/>
  458 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  459 + <xloc>129</xloc>
  460 + <yloc>65</yloc>
  461 + <draw>Y</draw>
  462 + </GUI>
  463 + </step>
  464 +
  465 + <step>
  466 + <name>&#x683c;&#x5f0f;&#x5316;&#x65e5;&#x671f;</name>
  467 + <type>SelectValues</type>
  468 + <description/>
  469 + <distribute>Y</distribute>
  470 + <custom_distribution/>
  471 + <copies>1</copies>
  472 + <partitioning>
  473 + <method>none</method>
  474 + <schema_name/>
  475 + </partitioning>
  476 + <fields> <select_unspecified>N</select_unspecified>
  477 + <meta> <name>qyrq</name>
  478 + <rename>qyrq</rename>
  479 + <type>String</type>
  480 + <length>-2</length>
  481 + <precision>-2</precision>
  482 + <conversion_mask>yyyy-MM-dd</conversion_mask>
  483 + <date_format_lenient>false</date_format_lenient>
  484 + <date_format_locale/>
  485 + <date_format_timezone/>
  486 + <lenient_string_to_number>false</lenient_string_to_number>
  487 + <encoding/>
  488 + <decimal_symbol/>
  489 + <grouping_symbol/>
  490 + <currency_symbol/>
  491 + <storage_type/>
  492 + </meta> <meta> <name>lp_start</name>
  493 + <rename>lp_start</rename>
  494 + <type>String</type>
  495 + <length>-2</length>
  496 + <precision>-2</precision>
  497 + <conversion_mask/>
  498 + <date_format_lenient>false</date_format_lenient>
  499 + <date_format_locale/>
  500 + <date_format_timezone/>
  501 + <lenient_string_to_number>false</lenient_string_to_number>
  502 + <encoding/>
  503 + <decimal_symbol/>
  504 + <grouping_symbol/>
  505 + <currency_symbol/>
  506 + <storage_type/>
  507 + </meta> <meta> <name>ry_start</name>
  508 + <rename>ry_start</rename>
  509 + <type>String</type>
  510 + <length>-2</length>
  511 + <precision>-2</precision>
  512 + <conversion_mask>&#x23;</conversion_mask>
  513 + <date_format_lenient>false</date_format_lenient>
  514 + <date_format_locale/>
  515 + <date_format_timezone/>
  516 + <lenient_string_to_number>false</lenient_string_to_number>
  517 + <encoding/>
  518 + <decimal_symbol/>
  519 + <grouping_symbol/>
  520 + <currency_symbol/>
  521 + <storage_type/>
  522 + </meta> </fields> <cluster_schema/>
  523 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  524 + <xloc>705</xloc>
  525 + <yloc>65</yloc>
  526 + <draw>Y</draw>
  527 + </GUI>
  528 + </step>
  529 +
  530 + <step>
  531 + <name>&#x7ebf;&#x8def;&#x67e5;&#x8be2;</name>
  532 + <type>DBLookup</type>
  533 + <description/>
  534 + <distribute>Y</distribute>
  535 + <custom_distribution/>
  536 + <copies>1</copies>
  537 + <partitioning>
  538 + <method>none</method>
  539 + <schema_name/>
  540 + </partitioning>
  541 + <connection>bus_control_variable</connection>
  542 + <cache>Y</cache>
  543 + <cache_load_all>Y</cache_load_all>
  544 + <cache_size>0</cache_size>
  545 + <lookup>
  546 + <schema/>
  547 + <table>bsth_c_line</table>
  548 + <orderby/>
  549 + <fail_on_multiple>N</fail_on_multiple>
  550 + <eat_row_on_failure>N</eat_row_on_failure>
  551 + <key>
  552 + <name>xl</name>
  553 + <field>id</field>
  554 + <condition>&#x3d;</condition>
  555 + <name2/>
  556 + </key>
  557 + <value>
  558 + <name>name</name>
  559 + <rename>xlmc</rename>
  560 + <default/>
  561 + <type>String</type>
  562 + </value>
  563 + </lookup>
  564 + <cluster_schema/>
  565 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  566 + <xloc>329</xloc>
  567 + <yloc>65</yloc>
  568 + <draw>Y</draw>
  569 + </GUI>
  570 + </step>
  571 +
  572 + <step>
  573 + <name>&#x8f66;&#x8f86;&#x67e5;&#x8be2;</name>
  574 + <type>DBLookup</type>
  575 + <description/>
  576 + <distribute>Y</distribute>
  577 + <custom_distribution/>
  578 + <copies>1</copies>
  579 + <partitioning>
  580 + <method>none</method>
  581 + <schema_name/>
  582 + </partitioning>
  583 + <connection>bus_control_variable</connection>
  584 + <cache>N</cache>
  585 + <cache_load_all>N</cache_load_all>
  586 + <cache_size>0</cache_size>
  587 + <lookup>
  588 + <schema/>
  589 + <table>bsth_c_cars</table>
  590 + <orderby/>
  591 + <fail_on_multiple>N</fail_on_multiple>
  592 + <eat_row_on_failure>N</eat_row_on_failure>
  593 + <key>
  594 + <name>clid</name>
  595 + <field>id</field>
  596 + <condition>&#x3d;</condition>
  597 + <name2/>
  598 + </key>
  599 + <value>
  600 + <name>inside_code</name>
  601 + <rename>zbh</rename>
  602 + <default/>
  603 + <type>String</type>
  604 + </value>
  605 + </lookup>
  606 + <cluster_schema/>
  607 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  608 + <xloc>600</xloc>
  609 + <yloc>64</yloc>
  610 + <draw>Y</draw>
  611 + </GUI>
  612 + </step>
  613 +
  614 + <step>
  615 + <name>&#x8f66;&#x8f86;&#x914d;&#x7f6e;&#x67e5;&#x8be2;</name>
  616 + <type>DBLookup</type>
  617 + <description/>
  618 + <distribute>Y</distribute>
  619 + <custom_distribution/>
  620 + <copies>1</copies>
  621 + <partitioning>
  622 + <method>none</method>
  623 + <schema_name/>
  624 + </partitioning>
  625 + <connection>bus_control_variable</connection>
  626 + <cache>N</cache>
  627 + <cache_load_all>N</cache_load_all>
  628 + <cache_size>0</cache_size>
  629 + <lookup>
  630 + <schema/>
  631 + <table>bsth_c_s_ccinfo</table>
  632 + <orderby/>
  633 + <fail_on_multiple>N</fail_on_multiple>
  634 + <eat_row_on_failure>N</eat_row_on_failure>
  635 + <key>
  636 + <name>car_config_info</name>
  637 + <field>id</field>
  638 + <condition>&#x3d;</condition>
  639 + <name2/>
  640 + </key>
  641 + <value>
  642 + <name>cl</name>
  643 + <rename>clid</rename>
  644 + <default/>
  645 + <type>Integer</type>
  646 + </value>
  647 + </lookup>
  648 + <cluster_schema/>
  649 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  650 + <xloc>471</xloc>
  651 + <yloc>64</yloc>
  652 + <draw>Y</draw>
  653 + </GUI>
  654 + </step>
  655 +
  656 + <step>
  657 + <name>Microsoft Excel &#x8f93;&#x51fa;</name>
  658 + <type>TypeExitExcelWriterStep</type>
  659 + <description/>
  660 + <distribute>Y</distribute>
  661 + <custom_distribution/>
  662 + <copies>1</copies>
  663 + <partitioning>
  664 + <method>none</method>
  665 + <schema_name/>
  666 + </partitioning>
  667 + <header>Y</header>
  668 + <footer>N</footer>
  669 + <makeSheetActive>Y</makeSheetActive>
  670 + <rowWritingMethod>overwrite</rowWritingMethod>
  671 + <startingCell>A1</startingCell>
  672 + <appendOmitHeader>N</appendOmitHeader>
  673 + <appendOffset>0</appendOffset>
  674 + <appendEmpty>0</appendEmpty>
  675 + <rowWritingMethod>overwrite</rowWritingMethod>
  676 + <forceFormulaRecalculation>N</forceFormulaRecalculation>
  677 + <leaveExistingStylesUnchanged>N</leaveExistingStylesUnchanged>
  678 + <appendLines>N</appendLines>
  679 + <add_to_result_filenames>Y</add_to_result_filenames>
  680 + <file>
  681 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  682 + <extention>xls</extention>
  683 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  684 + <split>N</split>
  685 + <add_date>N</add_date>
  686 + <add_time>N</add_time>
  687 + <SpecifyFormat>N</SpecifyFormat>
  688 + <date_time_format/>
  689 + <sheetname>Sheet1</sheetname>
  690 + <autosizecolums>N</autosizecolums>
  691 + <stream_data>N</stream_data>
  692 + <protect_sheet>N</protect_sheet>
  693 + <password>Encrypted </password>
  694 + <protected_by/>
  695 + <splitevery>0</splitevery>
  696 + <if_file_exists>new</if_file_exists>
  697 + <if_sheet_exists>new</if_sheet_exists>
  698 + </file>
  699 + <template>
  700 + <enabled>N</enabled>
  701 + <sheet_enabled>N</sheet_enabled>
  702 + <filename>template.xls</filename>
  703 + <sheetname/>
  704 + </template>
  705 + <fields>
  706 + <field>
  707 + <name>&#x7ebf;&#x8def;</name>
  708 + <type>String</type>
  709 + <format/>
  710 + <title/>
  711 + <titleStyleCell/>
  712 + <styleCell/>
  713 + <commentField/>
  714 + <commentAuthorField/>
  715 + <formula>N</formula>
  716 + <hyperlinkField/>
  717 + </field>
  718 + <field>
  719 + <name>&#x5185;&#x90e8;&#x7f16;&#x7801;</name>
  720 + <type>String</type>
  721 + <format/>
  722 + <title/>
  723 + <titleStyleCell/>
  724 + <styleCell/>
  725 + <commentField/>
  726 + <commentAuthorField/>
  727 + <formula>N</formula>
  728 + <hyperlinkField/>
  729 + </field>
  730 + <field>
  731 + <name>&#x542f;&#x7528;&#x65e5;&#x671f;</name>
  732 + <type>Date</type>
  733 + <format>yyyy-mm-dd</format>
  734 + <title/>
  735 + <titleStyleCell/>
  736 + <styleCell/>
  737 + <commentField/>
  738 + <commentAuthorField/>
  739 + <formula>N</formula>
  740 + <hyperlinkField/>
  741 + </field>
  742 + <field>
  743 + <name>&#x8d77;&#x59cb;&#x8def;&#x724c;</name>
  744 + <type>Integer</type>
  745 + <format>0</format>
  746 + <title/>
  747 + <titleStyleCell/>
  748 + <styleCell/>
  749 + <commentField/>
  750 + <commentAuthorField/>
  751 + <formula>N</formula>
  752 + <hyperlinkField/>
  753 + </field>
  754 + <field>
  755 + <name>&#x8def;&#x724c;&#x8303;&#x56f4;</name>
  756 + <type>String</type>
  757 + <format/>
  758 + <title/>
  759 + <titleStyleCell/>
  760 + <styleCell/>
  761 + <commentField/>
  762 + <commentAuthorField/>
  763 + <formula>N</formula>
  764 + <hyperlinkField/>
  765 + </field>
  766 + <field>
  767 + <name>&#x8d77;&#x59cb;&#x4eba;&#x5458;</name>
  768 + <type>Integer</type>
  769 + <format>0</format>
  770 + <title/>
  771 + <titleStyleCell/>
  772 + <styleCell/>
  773 + <commentField/>
  774 + <commentAuthorField/>
  775 + <formula>N</formula>
  776 + <hyperlinkField/>
  777 + </field>
  778 + <field>
  779 + <name>&#x4eba;&#x5458;&#x8303;&#x56f4;</name>
  780 + <type>String</type>
  781 + <format/>
  782 + <title/>
  783 + <titleStyleCell/>
  784 + <styleCell/>
  785 + <commentField/>
  786 + <commentAuthorField/>
  787 + <formula>N</formula>
  788 + <hyperlinkField/>
  789 + </field>
  790 + <field>
  791 + <name>&#x7ffb;&#x73ed;&#x683c;&#x5f0f;</name>
  792 + <type>String</type>
  793 + <format/>
  794 + <title/>
  795 + <titleStyleCell/>
  796 + <styleCell/>
  797 + <commentField/>
  798 + <commentAuthorField/>
  799 + <formula>N</formula>
  800 + <hyperlinkField/>
  801 + </field>
  802 + </fields>
  803 + <cluster_schema/>
  804 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  805 + <xloc>572</xloc>
  806 + <yloc>361</yloc>
  807 + <draw>Y</draw>
  808 + </GUI>
  809 + </step>
  810 +
  811 + <step_error_handling>
  812 + </step_error_handling>
  813 + <slave-step-copy-partition-distribution>
  814 +</slave-step-copy-partition-distribution>
  815 + <slave_transformation>N</slave_transformation>
  816 +
  817 +</transformation>
src/main/resources/datatools/ktrs/ttinfodetailDataOutput.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#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 - </parameters>  
13 - <log>  
14 -<trans-log-table><connection/>  
15 -<schema/>  
16 -<table/>  
17 -<size_limit_lines/>  
18 -<interval/>  
19 -<timeout_days/>  
20 -<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>  
21 -<perf-log-table><connection/>  
22 -<schema/>  
23 -<table/>  
24 -<interval/>  
25 -<timeout_days/>  
26 -<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>  
27 -<channel-log-table><connection/>  
28 -<schema/>  
29 -<table/>  
30 -<timeout_days/>  
31 -<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>  
32 -<step-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>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>  
37 -<metrics-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>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>  
42 - </log>  
43 - <maxdate>  
44 - <connection/>  
45 - <table/>  
46 - <field/>  
47 - <offset>0.0</offset>  
48 - <maxdiff>0.0</maxdiff>  
49 - </maxdate>  
50 - <size_rowset>10000</size_rowset>  
51 - <sleep_time_empty>50</sleep_time_empty>  
52 - <sleep_time_full>50</sleep_time_full>  
53 - <unique_connections>N</unique_connections>  
54 - <feedback_shown>Y</feedback_shown>  
55 - <feedback_size>50000</feedback_size>  
56 - <using_thread_priorities>Y</using_thread_priorities>  
57 - <shared_objects_file/>  
58 - <capture_step_performance>N</capture_step_performance>  
59 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
60 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
61 - <dependencies>  
62 - </dependencies>  
63 - <partitionschemas>  
64 - </partitionschemas>  
65 - <slaveservers>  
66 - </slaveservers>  
67 - <clusterschemas>  
68 - </clusterschemas>  
69 - <created_user>-</created_user>  
70 - <created_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</created_date>  
71 - <modified_user>-</modified_user>  
72 - <modified_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</modified_date>  
73 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
74 - <is_key_private>N</is_key_private>  
75 - </info>  
76 - <notepads>  
77 - <notepad>  
78 - <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>  
79 - <xloc>114</xloc>  
80 - <yloc>227</yloc>  
81 - <width>333</width>  
82 - <heigth>90</heigth>  
83 - <fontname>YaHei Consolas Hybrid</fontname>  
84 - <fontsize>12</fontsize>  
85 - <fontbold>N</fontbold>  
86 - <fontitalic>N</fontitalic>  
87 - <fontcolorred>0</fontcolorred>  
88 - <fontcolorgreen>0</fontcolorgreen>  
89 - <fontcolorblue>0</fontcolorblue>  
90 - <backgroundcolorred>255</backgroundcolorred>  
91 - <backgroundcolorgreen>205</backgroundcolorgreen>  
92 - <backgroundcolorblue>112</backgroundcolorblue>  
93 - <bordercolorred>100</bordercolorred>  
94 - <bordercolorgreen>100</bordercolorgreen>  
95 - <bordercolorblue>100</bordercolorblue>  
96 - <drawshadow>Y</drawshadow>  
97 - </notepad>  
98 - </notepads>  
99 - <connection>  
100 - <name>bus_control_variable</name>  
101 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
102 - <type>MYSQL</type>  
103 - <access>Native</access>  
104 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
105 - <port>3306</port>  
106 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
107 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
108 - <servername/>  
109 - <data_tablespace/>  
110 - <index_tablespace/>  
111 - <attributes>  
112 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
113 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
114 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
115 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
116 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
117 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
118 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
119 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
120 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
121 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
122 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
123 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
124 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
125 - </attributes>  
126 - </connection>  
127 - <connection>  
128 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
129 - <server>localhost</server>  
130 - <type>MYSQL</type>  
131 - <access>Native</access>  
132 - <database>control</database>  
133 - <port>3306</port>  
134 - <username>root</username>  
135 - <password>Encrypted </password>  
136 - <servername/>  
137 - <data_tablespace/>  
138 - <index_tablespace/>  
139 - <attributes>  
140 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
141 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
142 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
143 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
144 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
145 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
146 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
147 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
148 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
149 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
150 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
151 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
152 - </attributes>  
153 - </connection>  
154 - <connection>  
155 - <name>bus_control_&#x672c;&#x673a;</name>  
156 - <server>localhost</server>  
157 - <type>MYSQL</type>  
158 - <access>Native</access>  
159 - <database>control</database>  
160 - <port>3306</port>  
161 - <username>root</username>  
162 - <password>Encrypted </password>  
163 - <servername/>  
164 - <data_tablespace/>  
165 - <index_tablespace/>  
166 - <attributes>  
167 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
168 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
169 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
170 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
171 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
172 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
173 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
174 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
175 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
176 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
177 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
178 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
179 - </attributes>  
180 - </connection>  
181 - <connection>  
182 - <name>xlab_mysql_youle</name>  
183 - <server>101.231.124.8</server>  
184 - <type>MYSQL</type>  
185 - <access>Native</access>  
186 - <database>xlab_youle</database>  
187 - <port>45687</port>  
188 - <username>xlab-youle</username>  
189 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
190 - <servername/>  
191 - <data_tablespace/>  
192 - <index_tablespace/>  
193 - <attributes>  
194 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
195 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
196 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
197 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
198 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
199 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
200 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
201 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
202 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
203 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
204 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
205 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
206 - </attributes>  
207 - </connection>  
208 - <connection>  
209 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
210 - <server>localhost</server>  
211 - <type>MYSQL</type>  
212 - <access>Native</access>  
213 - <database>xlab_youle</database>  
214 - <port>3306</port>  
215 - <username>root</username>  
216 - <password>Encrypted </password>  
217 - <servername/>  
218 - <data_tablespace/>  
219 - <index_tablespace/>  
220 - <attributes>  
221 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
222 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
223 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
224 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
225 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
226 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
227 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
228 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
229 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
230 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
231 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
232 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
233 - </attributes>  
234 - </connection>  
235 - <connection>  
236 - <name>xlab_youle</name>  
237 - <server/>  
238 - <type>MYSQL</type>  
239 - <access>JNDI</access>  
240 - <database>xlab_youle</database>  
241 - <port>1521</port>  
242 - <username/>  
243 - <password>Encrypted </password>  
244 - <servername/>  
245 - <data_tablespace/>  
246 - <index_tablespace/>  
247 - <attributes>  
248 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
249 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
250 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
251 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
252 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
253 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
254 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
255 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
256 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
257 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
258 - </attributes>  
259 - </connection>  
260 - <order>  
261 - <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>  
262 - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>  
263 - <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
264 - <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</from><to>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</to><enabled>Y</enabled> </hop>  
265 - <hop> <from>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>  
266 - </order>  
267 - <step>  
268 - <name>Excel&#x8f93;&#x51fa;</name>  
269 - <type>ExcelOutput</type>  
270 - <description/>  
271 - <distribute>Y</distribute>  
272 - <custom_distribution/>  
273 - <copies>1</copies>  
274 - <partitioning>  
275 - <method>none</method>  
276 - <schema_name/>  
277 - </partitioning>  
278 - <header>Y</header>  
279 - <footer>N</footer>  
280 - <encoding/>  
281 - <append>N</append>  
282 - <add_to_result_filenames>Y</add_to_result_filenames>  
283 - <file>  
284 - <name>&#x24;&#x7b;filepath&#x7d;</name>  
285 - <extention/>  
286 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
287 - <create_parent_folder>N</create_parent_folder>  
288 - <split>N</split>  
289 - <add_date>N</add_date>  
290 - <add_time>N</add_time>  
291 - <SpecifyFormat>N</SpecifyFormat>  
292 - <date_time_format/>  
293 - <sheetname>Sheet1</sheetname>  
294 - <autosizecolums>N</autosizecolums>  
295 - <nullisblank>N</nullisblank>  
296 - <protect_sheet>N</protect_sheet>  
297 - <password>Encrypted </password>  
298 - <splitevery>0</splitevery>  
299 - <usetempfiles>N</usetempfiles>  
300 - <tempdirectory/>  
301 - </file>  
302 - <template>  
303 - <enabled>N</enabled>  
304 - <append>N</append>  
305 - <filename>template.xls</filename>  
306 - </template>  
307 - <fields>  
308 - </fields>  
309 - <custom>  
310 - <header_font_name>arial</header_font_name>  
311 - <header_font_size>10</header_font_size>  
312 - <header_font_bold>N</header_font_bold>  
313 - <header_font_italic>N</header_font_italic>  
314 - <header_font_underline>no</header_font_underline>  
315 - <header_font_orientation>horizontal</header_font_orientation>  
316 - <header_font_color>black</header_font_color>  
317 - <header_background_color>none</header_background_color>  
318 - <header_row_height>255</header_row_height>  
319 - <header_alignment>left</header_alignment>  
320 - <header_image/>  
321 - <row_font_name>arial</row_font_name>  
322 - <row_font_size>10</row_font_size>  
323 - <row_font_color>black</row_font_color>  
324 - <row_background_color>none</row_background_color>  
325 - </custom>  
326 - <cluster_schema/>  
327 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
328 - <xloc>731</xloc>  
329 - <yloc>65</yloc>  
330 - <draw>Y</draw>  
331 - </GUI>  
332 - </step>  
333 -  
334 - <step>  
335 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
336 - <type>Denormaliser</type>  
337 - <description/>  
338 - <distribute>Y</distribute>  
339 - <custom_distribution/>  
340 - <copies>1</copies>  
341 - <partitioning>  
342 - <method>none</method>  
343 - <schema_name/>  
344 - </partitioning>  
345 - <key_field>fcno</key_field>  
346 - <group>  
347 - <field>  
348 - <name>lp</name>  
349 - </field>  
350 - </group>  
351 - <fields>  
352 - <field>  
353 - <field_name>fcsj</field_name>  
354 - <key_value>1</key_value>  
355 - <target_name>&#x51fa;&#x573a;1</target_name>  
356 - <target_type>String</target_type>  
357 - <target_format/>  
358 - <target_length>-1</target_length>  
359 - <target_precision>-1</target_precision>  
360 - <target_decimal_symbol/>  
361 - <target_grouping_symbol/>  
362 - <target_currency_symbol/>  
363 - <target_null_string/>  
364 - <target_aggregation_type>-</target_aggregation_type>  
365 - </field>  
366 - <field>  
367 - <field_name>fcsj</field_name>  
368 - <key_value>2</key_value>  
369 - <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;2</target_name>  
370 - <target_type>String</target_type>  
371 - <target_format/>  
372 - <target_length>-1</target_length>  
373 - <target_precision>-1</target_precision>  
374 - <target_decimal_symbol/>  
375 - <target_grouping_symbol/>  
376 - <target_currency_symbol/>  
377 - <target_null_string/>  
378 - <target_aggregation_type>-</target_aggregation_type>  
379 - </field>  
380 - <field>  
381 - <field_name>fcsj</field_name>  
382 - <key_value>3</key_value>  
383 - <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;3</target_name>  
384 - <target_type>String</target_type>  
385 - <target_format/>  
386 - <target_length>-1</target_length>  
387 - <target_precision>-1</target_precision>  
388 - <target_decimal_symbol/>  
389 - <target_grouping_symbol/>  
390 - <target_currency_symbol/>  
391 - <target_null_string/>  
392 - <target_aggregation_type>-</target_aggregation_type>  
393 - </field>  
394 - <field>  
395 - <field_name>fcsj</field_name>  
396 - <key_value>4</key_value>  
397 - <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;4</target_name>  
398 - <target_type>String</target_type>  
399 - <target_format/>  
400 - <target_length>-1</target_length>  
401 - <target_precision>-1</target_precision>  
402 - <target_decimal_symbol/>  
403 - <target_grouping_symbol/>  
404 - <target_currency_symbol/>  
405 - <target_null_string/>  
406 - <target_aggregation_type>-</target_aggregation_type>  
407 - </field>  
408 - <field>  
409 - <field_name>fcsj</field_name>  
410 - <key_value>5</key_value>  
411 - <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;5</target_name>  
412 - <target_type>String</target_type>  
413 - <target_format/>  
414 - <target_length>-1</target_length>  
415 - <target_precision>-1</target_precision>  
416 - <target_decimal_symbol/>  
417 - <target_grouping_symbol/>  
418 - <target_currency_symbol/>  
419 - <target_null_string/>  
420 - <target_aggregation_type>-</target_aggregation_type>  
421 - </field>  
422 - <field>  
423 - <field_name>fcsj</field_name>  
424 - <key_value>6</key_value>  
425 - <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;6</target_name>  
426 - <target_type>String</target_type>  
427 - <target_format/>  
428 - <target_length>-1</target_length>  
429 - <target_precision>-1</target_precision>  
430 - <target_decimal_symbol/>  
431 - <target_grouping_symbol/>  
432 - <target_currency_symbol/>  
433 - <target_null_string/>  
434 - <target_aggregation_type>-</target_aggregation_type>  
435 - </field>  
436 - <field>  
437 - <field_name>fcsj</field_name>  
438 - <key_value>7</key_value>  
439 - <target_name>&#x8fdb;&#x573a;7</target_name>  
440 - <target_type>String</target_type>  
441 - <target_format/>  
442 - <target_length>-1</target_length>  
443 - <target_precision>-1</target_precision>  
444 - <target_decimal_symbol/>  
445 - <target_grouping_symbol/>  
446 - <target_currency_symbol/>  
447 - <target_null_string/>  
448 - <target_aggregation_type>-</target_aggregation_type>  
449 - </field>  
450 - </fields>  
451 - <cluster_schema/>  
452 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
453 - <xloc>531</xloc>  
454 - <yloc>65</yloc>  
455 - <draw>Y</draw>  
456 - </GUI>  
457 - </step>  
458 -  
459 - <step>  
460 - <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>  
461 - <type>SelectValues</type>  
462 - <description/>  
463 - <distribute>Y</distribute>  
464 - <custom_distribution/>  
465 - <copies>1</copies>  
466 - <partitioning>  
467 - <method>none</method>  
468 - <schema_name/>  
469 - </partitioning>  
470 - <fields> <field> <name>lp_name</name>  
471 - <rename>&#x8def;&#x724c;</rename>  
472 - <length>-2</length>  
473 - <precision>-2</precision>  
474 - </field> <select_unspecified>Y</select_unspecified>  
475 - </fields> <cluster_schema/>  
476 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
477 - <xloc>534</xloc>  
478 - <yloc>243</yloc>  
479 - <draw>Y</draw>  
480 - </GUI>  
481 - </step>  
482 -  
483 - <step>  
484 - <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>  
485 - <type>SortRows</type>  
486 - <description/>  
487 - <distribute>Y</distribute>  
488 - <custom_distribution/>  
489 - <copies>1</copies>  
490 - <partitioning>  
491 - <method>none</method>  
492 - <schema_name/>  
493 - </partitioning>  
494 - <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>  
495 - <prefix>out</prefix>  
496 - <sort_size>1000000</sort_size>  
497 - <free_memory/>  
498 - <compress>N</compress>  
499 - <compress_variable/>  
500 - <unique_rows>N</unique_rows>  
501 - <fields>  
502 - <field>  
503 - <name>lp</name>  
504 - <ascending>Y</ascending>  
505 - <case_sensitive>N</case_sensitive>  
506 - <presorted>N</presorted>  
507 - </field>  
508 - <field>  
509 - <name>fcno</name>  
510 - <ascending>Y</ascending>  
511 - <case_sensitive>N</case_sensitive>  
512 - <presorted>N</presorted>  
513 - </field>  
514 - </fields>  
515 - <cluster_schema/>  
516 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
517 - <xloc>331</xloc>  
518 - <yloc>65</yloc>  
519 - <draw>Y</draw>  
520 - </GUI>  
521 - </step>  
522 -  
523 - <step>  
524 - <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</name>  
525 - <type>TableInput</type>  
526 - <description/>  
527 - <distribute>Y</distribute>  
528 - <custom_distribution/>  
529 - <copies>1</copies>  
530 - <partitioning>  
531 - <method>none</method>  
532 - <schema_name/>  
533 - </partitioning>  
534 - <connection>bus_control_variable</connection>  
535 - <sql>select &#x2a; from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;</sql>  
536 - <limit>0</limit>  
537 - <lookup/>  
538 - <execute_each_row>N</execute_each_row>  
539 - <variables_active>Y</variables_active>  
540 - <lazy_conversion_active>N</lazy_conversion_active>  
541 - <cluster_schema/>  
542 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
543 - <xloc>131</xloc>  
544 - <yloc>65</yloc>  
545 - <draw>Y</draw>  
546 - </GUI>  
547 - </step>  
548 -  
549 - <step>  
550 - <name>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</name>  
551 - <type>DBLookup</type>  
552 - <description/>  
553 - <distribute>Y</distribute>  
554 - <custom_distribution/>  
555 - <copies>1</copies>  
556 - <partitioning>  
557 - <method>none</method>  
558 - <schema_name/>  
559 - </partitioning>  
560 - <connection>bus_control_variable</connection>  
561 - <cache>Y</cache>  
562 - <cache_load_all>Y</cache_load_all>  
563 - <cache_size>0</cache_size>  
564 - <lookup>  
565 - <schema/>  
566 - <table>bsth_c_s_gbi</table>  
567 - <orderby/>  
568 - <fail_on_multiple>N</fail_on_multiple>  
569 - <eat_row_on_failure>N</eat_row_on_failure>  
570 - <key>  
571 - <name>lp</name>  
572 - <field>id</field>  
573 - <condition>&#x3d;</condition>  
574 - <name2/>  
575 - </key>  
576 - <value>  
577 - <name>lp_name</name>  
578 - <rename>lp_name</rename>  
579 - <default/>  
580 - <type>String</type>  
581 - </value>  
582 - </lookup>  
583 - <cluster_schema/>  
584 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
585 - <xloc>237</xloc>  
586 - <yloc>156</yloc>  
587 - <draw>Y</draw>  
588 - </GUI>  
589 - </step>  
590 -  
591 - <step_error_handling>  
592 - </step_error_handling>  
593 - <slave-step-copy-partition-distribution>  
594 -</slave-step-copy-partition-distribution>  
595 - <slave_transformation>N</slave_transformation>  
596 -  
597 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#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 + </parameters>
  13 + <log>
  14 +<trans-log-table><connection/>
  15 +<schema/>
  16 +<table/>
  17 +<size_limit_lines/>
  18 +<interval/>
  19 +<timeout_days/>
  20 +<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>
  21 +<perf-log-table><connection/>
  22 +<schema/>
  23 +<table/>
  24 +<interval/>
  25 +<timeout_days/>
  26 +<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>
  27 +<channel-log-table><connection/>
  28 +<schema/>
  29 +<table/>
  30 +<timeout_days/>
  31 +<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>
  32 +<step-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>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>
  37 +<metrics-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>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>
  42 + </log>
  43 + <maxdate>
  44 + <connection/>
  45 + <table/>
  46 + <field/>
  47 + <offset>0.0</offset>
  48 + <maxdiff>0.0</maxdiff>
  49 + </maxdate>
  50 + <size_rowset>10000</size_rowset>
  51 + <sleep_time_empty>50</sleep_time_empty>
  52 + <sleep_time_full>50</sleep_time_full>
  53 + <unique_connections>N</unique_connections>
  54 + <feedback_shown>Y</feedback_shown>
  55 + <feedback_size>50000</feedback_size>
  56 + <using_thread_priorities>Y</using_thread_priorities>
  57 + <shared_objects_file/>
  58 + <capture_step_performance>N</capture_step_performance>
  59 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  60 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  61 + <dependencies>
  62 + </dependencies>
  63 + <partitionschemas>
  64 + </partitionschemas>
  65 + <slaveservers>
  66 + </slaveservers>
  67 + <clusterschemas>
  68 + </clusterschemas>
  69 + <created_user>-</created_user>
  70 + <created_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</created_date>
  71 + <modified_user>-</modified_user>
  72 + <modified_date>2016&#x2f;11&#x2f;15 13&#x3a;00&#x3a;52.076</modified_date>
  73 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  74 + <is_key_private>N</is_key_private>
  75 + </info>
  76 + <notepads>
  77 + <notepad>
  78 + <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>
  79 + <xloc>114</xloc>
  80 + <yloc>227</yloc>
  81 + <width>333</width>
  82 + <heigth>90</heigth>
  83 + <fontname>YaHei Consolas Hybrid</fontname>
  84 + <fontsize>12</fontsize>
  85 + <fontbold>N</fontbold>
  86 + <fontitalic>N</fontitalic>
  87 + <fontcolorred>0</fontcolorred>
  88 + <fontcolorgreen>0</fontcolorgreen>
  89 + <fontcolorblue>0</fontcolorblue>
  90 + <backgroundcolorred>255</backgroundcolorred>
  91 + <backgroundcolorgreen>205</backgroundcolorgreen>
  92 + <backgroundcolorblue>112</backgroundcolorblue>
  93 + <bordercolorred>100</bordercolorred>
  94 + <bordercolorgreen>100</bordercolorgreen>
  95 + <bordercolorblue>100</bordercolorblue>
  96 + <drawshadow>Y</drawshadow>
  97 + </notepad>
  98 + </notepads>
  99 + <connection>
  100 + <name>192.168.168.1_jwgl_dw</name>
  101 + <server>192.168.168.1</server>
  102 + <type>ORACLE</type>
  103 + <access>Native</access>
  104 + <database>orcl</database>
  105 + <port>1521</port>
  106 + <username>jwgl_dw</username>
  107 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  108 + <servername/>
  109 + <data_tablespace/>
  110 + <index_tablespace/>
  111 + <attributes>
  112 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  113 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  114 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  115 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  116 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  117 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  118 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  119 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  120 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  121 + </attributes>
  122 + </connection>
  123 + <connection>
  124 + <name>bus_control_variable</name>
  125 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  126 + <type>MYSQL</type>
  127 + <access>Native</access>
  128 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  129 + <port>3306</port>
  130 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  131 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  132 + <servername/>
  133 + <data_tablespace/>
  134 + <index_tablespace/>
  135 + <attributes>
  136 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  137 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  138 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  139 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  140 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  141 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  142 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  143 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  144 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  145 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  146 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  147 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  148 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  149 + </attributes>
  150 + </connection>
  151 + <connection>
  152 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  153 + <server>localhost</server>
  154 + <type>MYSQL</type>
  155 + <access>Native</access>
  156 + <database>control</database>
  157 + <port>3306</port>
  158 + <username>root</username>
  159 + <password>Encrypted </password>
  160 + <servername/>
  161 + <data_tablespace/>
  162 + <index_tablespace/>
  163 + <attributes>
  164 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  165 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  166 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  167 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  168 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  169 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  170 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  171 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  172 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  173 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  174 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  175 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  176 + </attributes>
  177 + </connection>
  178 + <connection>
  179 + <name>bus_control_&#x672c;&#x673a;</name>
  180 + <server>localhost</server>
  181 + <type>MYSQL</type>
  182 + <access>Native</access>
  183 + <database>control</database>
  184 + <port>3306</port>
  185 + <username>root</username>
  186 + <password>Encrypted </password>
  187 + <servername/>
  188 + <data_tablespace/>
  189 + <index_tablespace/>
  190 + <attributes>
  191 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  192 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  193 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  194 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  195 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  196 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  197 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  198 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  199 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  200 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  201 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  202 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  203 + </attributes>
  204 + </connection>
  205 + <connection>
  206 + <name>xlab_mysql_youle</name>
  207 + <server>101.231.124.8</server>
  208 + <type>MYSQL</type>
  209 + <access>Native</access>
  210 + <database>xlab_youle</database>
  211 + <port>45687</port>
  212 + <username>xlab-youle</username>
  213 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  214 + <servername/>
  215 + <data_tablespace/>
  216 + <index_tablespace/>
  217 + <attributes>
  218 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  219 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  220 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  221 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  222 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  223 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  224 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  225 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  226 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  227 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  228 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  229 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  230 + </attributes>
  231 + </connection>
  232 + <connection>
  233 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  234 + <server>localhost</server>
  235 + <type>MYSQL</type>
  236 + <access>Native</access>
  237 + <database>xlab_youle</database>
  238 + <port>3306</port>
  239 + <username>root</username>
  240 + <password>Encrypted </password>
  241 + <servername/>
  242 + <data_tablespace/>
  243 + <index_tablespace/>
  244 + <attributes>
  245 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  246 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  247 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  248 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  249 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  250 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  251 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  252 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  253 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  254 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  255 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  256 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  257 + </attributes>
  258 + </connection>
  259 + <connection>
  260 + <name>xlab_youle</name>
  261 + <server/>
  262 + <type>MYSQL</type>
  263 + <access>JNDI</access>
  264 + <database>xlab_youle</database>
  265 + <port>1521</port>
  266 + <username/>
  267 + <password>Encrypted </password>
  268 + <servername/>
  269 + <data_tablespace/>
  270 + <index_tablespace/>
  271 + <attributes>
  272 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  273 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  274 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  275 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  276 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  277 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  278 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  279 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  280 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  281 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  282 + </attributes>
  283 + </connection>
  284 + <order>
  285 + <hop> <from>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  286 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</to><enabled>Y</enabled> </hop>
  287 + <hop> <from>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  288 + <hop> <from>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</from><to>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</to><enabled>Y</enabled> </hop>
  289 + <hop> <from>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</from><to>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</to><enabled>Y</enabled> </hop>
  290 + </order>
  291 + <step>
  292 + <name>Excel&#x8f93;&#x51fa;</name>
  293 + <type>ExcelOutput</type>
  294 + <description/>
  295 + <distribute>Y</distribute>
  296 + <custom_distribution/>
  297 + <copies>1</copies>
  298 + <partitioning>
  299 + <method>none</method>
  300 + <schema_name/>
  301 + </partitioning>
  302 + <header>Y</header>
  303 + <footer>N</footer>
  304 + <encoding/>
  305 + <append>N</append>
  306 + <add_to_result_filenames>Y</add_to_result_filenames>
  307 + <file>
  308 + <name>&#x24;&#x7b;filepath&#x7d;</name>
  309 + <extention>xls</extention>
  310 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  311 + <create_parent_folder>N</create_parent_folder>
  312 + <split>N</split>
  313 + <add_date>N</add_date>
  314 + <add_time>N</add_time>
  315 + <SpecifyFormat>N</SpecifyFormat>
  316 + <date_time_format/>
  317 + <sheetname>Sheet1</sheetname>
  318 + <autosizecolums>N</autosizecolums>
  319 + <nullisblank>N</nullisblank>
  320 + <protect_sheet>N</protect_sheet>
  321 + <password>Encrypted </password>
  322 + <splitevery>0</splitevery>
  323 + <usetempfiles>N</usetempfiles>
  324 + <tempdirectory/>
  325 + </file>
  326 + <template>
  327 + <enabled>N</enabled>
  328 + <append>N</append>
  329 + <filename>template.xls</filename>
  330 + </template>
  331 + <fields>
  332 + </fields>
  333 + <custom>
  334 + <header_font_name>arial</header_font_name>
  335 + <header_font_size>10</header_font_size>
  336 + <header_font_bold>N</header_font_bold>
  337 + <header_font_italic>N</header_font_italic>
  338 + <header_font_underline>no</header_font_underline>
  339 + <header_font_orientation>horizontal</header_font_orientation>
  340 + <header_font_color>black</header_font_color>
  341 + <header_background_color>none</header_background_color>
  342 + <header_row_height>255</header_row_height>
  343 + <header_alignment>left</header_alignment>
  344 + <header_image/>
  345 + <row_font_name>arial</row_font_name>
  346 + <row_font_size>10</row_font_size>
  347 + <row_font_color>black</row_font_color>
  348 + <row_background_color>none</row_background_color>
  349 + </custom>
  350 + <cluster_schema/>
  351 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  352 + <xloc>731</xloc>
  353 + <yloc>65</yloc>
  354 + <draw>Y</draw>
  355 + </GUI>
  356 + </step>
  357 +
  358 + <step>
  359 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  360 + <type>Denormaliser</type>
  361 + <description/>
  362 + <distribute>Y</distribute>
  363 + <custom_distribution/>
  364 + <copies>1</copies>
  365 + <partitioning>
  366 + <method>none</method>
  367 + <schema_name/>
  368 + </partitioning>
  369 + <key_field>fcno</key_field>
  370 + <group>
  371 + <field>
  372 + <name>lp</name>
  373 + </field>
  374 + </group>
  375 + <fields>
  376 + <field>
  377 + <field_name>fcsj</field_name>
  378 + <key_value>1</key_value>
  379 + <target_name>&#x51fa;&#x573a;1</target_name>
  380 + <target_type>String</target_type>
  381 + <target_format/>
  382 + <target_length>-1</target_length>
  383 + <target_precision>-1</target_precision>
  384 + <target_decimal_symbol/>
  385 + <target_grouping_symbol/>
  386 + <target_currency_symbol/>
  387 + <target_null_string/>
  388 + <target_aggregation_type>-</target_aggregation_type>
  389 + </field>
  390 + <field>
  391 + <field_name>fcsj</field_name>
  392 + <key_value>2</key_value>
  393 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;2</target_name>
  394 + <target_type>String</target_type>
  395 + <target_format/>
  396 + <target_length>-1</target_length>
  397 + <target_precision>-1</target_precision>
  398 + <target_decimal_symbol/>
  399 + <target_grouping_symbol/>
  400 + <target_currency_symbol/>
  401 + <target_null_string/>
  402 + <target_aggregation_type>-</target_aggregation_type>
  403 + </field>
  404 + <field>
  405 + <field_name>fcsj</field_name>
  406 + <key_value>3</key_value>
  407 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;3</target_name>
  408 + <target_type>String</target_type>
  409 + <target_format/>
  410 + <target_length>-1</target_length>
  411 + <target_precision>-1</target_precision>
  412 + <target_decimal_symbol/>
  413 + <target_grouping_symbol/>
  414 + <target_currency_symbol/>
  415 + <target_null_string/>
  416 + <target_aggregation_type>-</target_aggregation_type>
  417 + </field>
  418 + <field>
  419 + <field_name>fcsj</field_name>
  420 + <key_value>4</key_value>
  421 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;4</target_name>
  422 + <target_type>String</target_type>
  423 + <target_format/>
  424 + <target_length>-1</target_length>
  425 + <target_precision>-1</target_precision>
  426 + <target_decimal_symbol/>
  427 + <target_grouping_symbol/>
  428 + <target_currency_symbol/>
  429 + <target_null_string/>
  430 + <target_aggregation_type>-</target_aggregation_type>
  431 + </field>
  432 + <field>
  433 + <field_name>fcsj</field_name>
  434 + <key_value>5</key_value>
  435 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;5</target_name>
  436 + <target_type>String</target_type>
  437 + <target_format/>
  438 + <target_length>-1</target_length>
  439 + <target_precision>-1</target_precision>
  440 + <target_decimal_symbol/>
  441 + <target_grouping_symbol/>
  442 + <target_currency_symbol/>
  443 + <target_null_string/>
  444 + <target_aggregation_type>-</target_aggregation_type>
  445 + </field>
  446 + <field>
  447 + <field_name>fcsj</field_name>
  448 + <key_value>6</key_value>
  449 + <target_name>&#x9752;&#x5b89;&#x8def;&#x6c7d;&#x8f66;&#x7ad9;6</target_name>
  450 + <target_type>String</target_type>
  451 + <target_format/>
  452 + <target_length>-1</target_length>
  453 + <target_precision>-1</target_precision>
  454 + <target_decimal_symbol/>
  455 + <target_grouping_symbol/>
  456 + <target_currency_symbol/>
  457 + <target_null_string/>
  458 + <target_aggregation_type>-</target_aggregation_type>
  459 + </field>
  460 + <field>
  461 + <field_name>fcsj</field_name>
  462 + <key_value>7</key_value>
  463 + <target_name>&#x8fdb;&#x573a;7</target_name>
  464 + <target_type>String</target_type>
  465 + <target_format/>
  466 + <target_length>-1</target_length>
  467 + <target_precision>-1</target_precision>
  468 + <target_decimal_symbol/>
  469 + <target_grouping_symbol/>
  470 + <target_currency_symbol/>
  471 + <target_null_string/>
  472 + <target_aggregation_type>-</target_aggregation_type>
  473 + </field>
  474 + </fields>
  475 + <cluster_schema/>
  476 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  477 + <xloc>531</xloc>
  478 + <yloc>65</yloc>
  479 + <draw>Y</draw>
  480 + </GUI>
  481 + </step>
  482 +
  483 + <step>
  484 + <name>&#x5b57;&#x6bb5;&#x9009;&#x62e9;</name>
  485 + <type>SelectValues</type>
  486 + <description/>
  487 + <distribute>Y</distribute>
  488 + <custom_distribution/>
  489 + <copies>1</copies>
  490 + <partitioning>
  491 + <method>none</method>
  492 + <schema_name/>
  493 + </partitioning>
  494 + <fields> <field> <name>lp_name</name>
  495 + <rename>&#x8def;&#x724c;</rename>
  496 + <length>-2</length>
  497 + <precision>-2</precision>
  498 + </field> <select_unspecified>Y</select_unspecified>
  499 + </fields> <cluster_schema/>
  500 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  501 + <xloc>534</xloc>
  502 + <yloc>243</yloc>
  503 + <draw>Y</draw>
  504 + </GUI>
  505 + </step>
  506 +
  507 + <step>
  508 + <name>&#x6392;&#x5e8f;&#x8bb0;&#x5f55;</name>
  509 + <type>SortRows</type>
  510 + <description/>
  511 + <distribute>Y</distribute>
  512 + <custom_distribution/>
  513 + <copies>1</copies>
  514 + <partitioning>
  515 + <method>none</method>
  516 + <schema_name/>
  517 + </partitioning>
  518 + <directory>&#x25;&#x25;java.io.tmpdir&#x25;&#x25;</directory>
  519 + <prefix>out</prefix>
  520 + <sort_size>1000000</sort_size>
  521 + <free_memory/>
  522 + <compress>N</compress>
  523 + <compress_variable/>
  524 + <unique_rows>N</unique_rows>
  525 + <fields>
  526 + <field>
  527 + <name>lp</name>
  528 + <ascending>Y</ascending>
  529 + <case_sensitive>N</case_sensitive>
  530 + <presorted>N</presorted>
  531 + </field>
  532 + <field>
  533 + <name>fcno</name>
  534 + <ascending>Y</ascending>
  535 + <case_sensitive>N</case_sensitive>
  536 + <presorted>N</presorted>
  537 + </field>
  538 + </fields>
  539 + <cluster_schema/>
  540 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  541 + <xloc>331</xloc>
  542 + <yloc>65</yloc>
  543 + <draw>Y</draw>
  544 + </GUI>
  545 + </step>
  546 +
  547 + <step>
  548 + <name>&#x65f6;&#x523b;&#x8868;&#x660e;&#x7ec6;&#x6570;&#x636e;&#x8868;</name>
  549 + <type>TableInput</type>
  550 + <description/>
  551 + <distribute>Y</distribute>
  552 + <custom_distribution/>
  553 + <copies>1</copies>
  554 + <partitioning>
  555 + <method>none</method>
  556 + <schema_name/>
  557 + </partitioning>
  558 + <connection>bus_control_variable</connection>
  559 + <sql>select &#x2a; from bsth_c_s_ttinfo_detail&#xa;where ttinfo &#x3d; &#x24;&#x7b;ttinfoid&#x7d;</sql>
  560 + <limit>0</limit>
  561 + <lookup/>
  562 + <execute_each_row>N</execute_each_row>
  563 + <variables_active>Y</variables_active>
  564 + <lazy_conversion_active>N</lazy_conversion_active>
  565 + <cluster_schema/>
  566 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  567 + <xloc>131</xloc>
  568 + <yloc>65</yloc>
  569 + <draw>Y</draw>
  570 + </GUI>
  571 + </step>
  572 +
  573 + <step>
  574 + <name>&#x8def;&#x724c;&#x540d;&#x5b57;&#x67e5;&#x627e;</name>
  575 + <type>DBLookup</type>
  576 + <description/>
  577 + <distribute>Y</distribute>
  578 + <custom_distribution/>
  579 + <copies>1</copies>
  580 + <partitioning>
  581 + <method>none</method>
  582 + <schema_name/>
  583 + </partitioning>
  584 + <connection>bus_control_variable</connection>
  585 + <cache>Y</cache>
  586 + <cache_load_all>Y</cache_load_all>
  587 + <cache_size>0</cache_size>
  588 + <lookup>
  589 + <schema/>
  590 + <table>bsth_c_s_gbi</table>
  591 + <orderby/>
  592 + <fail_on_multiple>N</fail_on_multiple>
  593 + <eat_row_on_failure>N</eat_row_on_failure>
  594 + <key>
  595 + <name>lp</name>
  596 + <field>id</field>
  597 + <condition>&#x3d;</condition>
  598 + <name2/>
  599 + </key>
  600 + <value>
  601 + <name>lp_name</name>
  602 + <rename>lp_name</rename>
  603 + <default/>
  604 + <type>String</type>
  605 + </value>
  606 + </lookup>
  607 + <cluster_schema/>
  608 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  609 + <xloc>237</xloc>
  610 + <yloc>156</yloc>
  611 + <draw>Y</draw>
  612 + </GUI>
  613 + </step>
  614 +
  615 + <step_error_handling>
  616 + </step_error_handling>
  617 + <slave-step-copy-partition-distribution>
  618 +</slave-step-copy-partition-distribution>
  619 + <slave_transformation>N</slave_transformation>
  620 +
  621 +</transformation>
src/main/resources/static/pages/scheduleApp/Gruntfile.js
@@ -86,7 +86,8 @@ module.exports = function (grunt) { @@ -86,7 +86,8 @@ module.exports = function (grunt) {
86 'module/common/dts2/employeeGroup/saEmployeegroup.js', // 人员选饿整合指令 86 'module/common/dts2/employeeGroup/saEmployeegroup.js', // 人员选饿整合指令
87 'module/common/dts2/bcGroup/saBcgroup.js', // 班次选择整合指令 87 'module/common/dts2/bcGroup/saBcgroup.js', // 班次选择整合指令
88 'module/common/dts2/ttinfotable/saTimeTable.js', // 时刻表显示指令 88 'module/common/dts2/ttinfotable/saTimeTable.js', // 时刻表显示指令
89 - 'module/common/dts2/scheduleplan/saScpdate.js' // saScpdate指令(非通用指令,只在排版计划form中使用) 89 + 'module/common/dts2/scheduleplan/saScpdate.js', // saScpdate指令(非通用指令,只在排版计划form中使用)
  90 + 'module/common/dts2/scheduleplan/saPlaninfoedit.js' // saPlaninfoedit指令(非通用指令,只在调度执勤日报中使用)
90 ], 91 ],
91 dest: 'module/common/prj-common-directive.js' 92 dest: 'module/common/prj-common-directive.js'
92 }, 93 },
src/main/resources/static/pages/scheduleApp/module/basicInfo/employeeInfoManage/module.js
@@ -260,6 +260,13 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -260,6 +260,13 @@ angular.module(&#39;ScheduleApp&#39;).controller(
260 260
261 // 提交方法 261 // 提交方法
262 self.submit = function() { 262 self.submit = function() {
  263 + // 在工号前添加公司编码
  264 + var gh = self.employeeInfoForSave.jobCode;
  265 + if (gh.indexOf("-") < 0) {
  266 + gh = self.employeeInfoForSave.companyCode + "-" + gh;
  267 + self.employeeInfoForSave.jobCode = gh;
  268 + }
  269 +
263 console.log(self.employeeInfoForSave); 270 console.log(self.employeeInfoForSave);
264 271
265 // 保存或更新 272 // 保存或更新
src/main/resources/static/pages/scheduleApp/module/common/dts1/select/saSelect5.js
@@ -20,7 +20,8 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -20,7 +20,8 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
20 '$timeout', 20 '$timeout',
21 '$$SearchInfoService_g', 21 '$$SearchInfoService_g',
22 'UserPrincipal', 22 'UserPrincipal',
23 - function($timeout, $$searchInfoService_g, UserPrincipal) { 23 + 'DataStore',
  24 + function($timeout, $$searchInfoService_g, UserPrincipal, DataStore) {
24 return { 25 return {
25 restrict: 'E', 26 restrict: 'E',
26 templateUrl: '/pages/scheduleApp/module/common/dts1/select/saSelect5Template.html', 27 templateUrl: '/pages/scheduleApp/module/common/dts1/select/saSelect5Template.html',
@@ -302,11 +303,17 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -302,11 +303,17 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
302 var calcu_str = scope[ctrlAs].$$internal_match_str(result[i]); 303 var calcu_str = scope[ctrlAs].$$internal_match_str(result[i]);
303 if (calcu_str) { 304 if (calcu_str) {
304 // 全拼 305 // 全拼
305 - result[i]["$fullChars"] = pinyin.getFullChars(calcu_str); 306 + if (!result[i]["$fullChars"]) {
  307 + result[i]["$fullChars"] = pinyin.getFullChars(calcu_str);
  308 + }
306 // 简拼 309 // 简拼
307 - result[i]["$camelChars"] = pinyin.getCamelChars(calcu_str); 310 + if (!result[i]["$camelChars"]) {
  311 + result[i]["$camelChars"] = pinyin.getCamelChars(calcu_str);
  312 + }
308 // 原值 313 // 原值
309 - result[i]["$calcu_str"] = calcu_str; 314 + if (!result[i]["$calcu_str"]) {
  315 + result[i]["$calcu_str"] = calcu_str;
  316 + }
310 317
311 scope[ctrlAs].$$data_real.push(result[i]); 318 scope[ctrlAs].$$data_real.push(result[i]);
312 } 319 }
@@ -367,18 +374,26 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -367,18 +374,26 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
367 374
368 /** 375 /**
369 * 内部方法,读取本地动态数据源。 376 * 内部方法,读取本地动态数据源。
370 - * @param ldata 377 + * @param type
371 */ 378 */
372 - scope[ctrlAs].$$internal_local_data = function(ldata) { 379 + scope[ctrlAs].$$internal_local_data = function(type) {
373 // 重新创建内部保存的数据 380 // 重新创建内部保存的数据
374 scope[ctrlAs].$$data_real = []; 381 scope[ctrlAs].$$data_real = [];
375 - // 重新创建内部ui-select显示用数据,默认取10条记录显示  
376 - scope[ctrlAs].$$data = [];  
377 -  
378 // 本地动态数据直接显示,暂时不优化 382 // 本地动态数据直接显示,暂时不优化
  383 + var ldata = DataStore.getData(type);
379 for (var i = 0; i < ldata.length; i++) { 384 for (var i = 0; i < ldata.length; i++) {
380 scope[ctrlAs].$$data_real.push(ldata[i]); 385 scope[ctrlAs].$$data_real.push(ldata[i]);
381 - scope[ctrlAs].$$data.push(ldata[i]); 386 +
  387 + }
  388 +
  389 + // 重新创建内部ui-select显示用数据,默认取10条记录显示
  390 + scope[ctrlAs].$$data = [];
  391 + for (var k = 0; k < scope[ctrlAs].$$data_real.length; k++) {
  392 + if (scope[ctrlAs].$$data.length < 10) {
  393 + scope[ctrlAs].$$data.push(scope[ctrlAs].$$data_real[k]);
  394 + } else {
  395 + break;
  396 + }
382 } 397 }
383 398
384 scope[ctrlAs].$$internal_validate_model(); 399 scope[ctrlAs].$$internal_validate_model();
@@ -393,7 +408,9 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -393,7 +408,9 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
393 console.log("saSelect5 监控到dsparams属性变化,old=" + $dsparams_attr + ",new=" + value); 408 console.log("saSelect5 监控到dsparams属性变化,old=" + $dsparams_attr + ",new=" + value);
394 409
395 // dsparams格式如下: 410 // dsparams格式如下:
396 - // {type: 'dic/ajax', param: 'dic名字'/'ajax查询参数对象', atype: 'ajax查询类型'} 411 + // {type: 'ajax', param: 'ajax查询参数对象', atype: 'ajax查询累西'}
  412 + // {type: 'dic', param: 'dic名字'}
  413 + // {type: 'local', param: '本地存储type名字'}
397 414
398 if (obj.type == 'dic') { 415 if (obj.type == 'dic') {
399 dataModelType = 'dic'; 416 dataModelType = 'dic';
@@ -404,7 +421,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -404,7 +421,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
404 scope[ctrlAs].$$internal_ajax_data(obj.atype, obj.param); 421 scope[ctrlAs].$$internal_ajax_data(obj.atype, obj.param);
405 } else if (obj.type == 'local') { 422 } else if (obj.type == 'local') {
406 dataModelType = 'local'; 423 dataModelType = 'local';
407 - scope[ctrlAs].$$internal_local_data(obj.ldata); 424 + scope[ctrlAs].$$internal_local_data(obj.param);
408 } else { 425 } else {
409 throw new Error("dsparams参数格式异常=" + obj); 426 throw new Error("dsparams参数格式异常=" + obj);
410 } 427 }
src/main/resources/static/pages/scheduleApp/module/common/dts2/scheduleplan/saPlanInfoEdit.js 0 → 100644
  1 +/**
  2 + * saPlaninfoedit指令,排班明细编辑控件,用在调度执勤日报的修改功能
  3 + * name(必须),控件的名字
  4 + * ds,外部数据源
  5 + * cl1,车辆1属性
  6 + * cl2,车辆2属性
  7 + * j1,驾驶员1属性
  8 + * j2,驾驶员2属性
  9 + * s1,售票员1属性
  10 + * s2,售票员2属性
  11 + */
  12 +angular.module('ScheduleApp').directive(
  13 + 'saPlaninfoedit',
  14 + [
  15 + function() {
  16 + return {
  17 + restrict: 'E',
  18 + templateUrl: '/pages/scheduleApp/module/common/dts2/scheduleplan/saPlaninfoeditTemplate.html',
  19 + scope: { // 独立作用域
  20 + ds: '=ngModel'
  21 + },
  22 + controllerAs: '$saPlanInfoEditCtrl',
  23 + bindToController: true,
  24 + controller: function() {
  25 + var self = this;
  26 +
  27 + // TODO:
  28 + },
  29 +
  30 + compile: function(tElem, tAttrs) {
  31 + // 获取属性
  32 + var $attr_name = tAttrs["name"]; // 控件的名字
  33 + if (!$attr_name) {
  34 + throw {msg: "saPlaninfoedit指令name属性不能为空"};
  35 + }
  36 +
  37 + // 内部controlAs名字
  38 + var ctrlAs = '$saPlanInfoEditCtrl';
  39 +
  40 +
  41 + // 内部变量,原始车辆,人员数据
  42 + var old_cl = {}; // key:{车辆id_车辆自编号},value:所在list下标数组
  43 + var old_j = {}; // key:{驾驶员id_姓名_工号}, value:所在list下标数组
  44 + var old_s = {}; // key:{售票员id_姓名_工号}, value:所在list下标数组
  45 +
  46 + // 内部变量,变更的车辆,变更的人员
  47 +
  48 + return {
  49 + pre: function(scope, element, attr) {
  50 +
  51 + },
  52 + post: function(scope, element, attr) {
  53 +
  54 + // -------------- 监控function ---------------//
  55 + scope.$watch(
  56 + function() {
  57 + return scope[ctrlAs].ds;
  58 + },
  59 + function(newValue, oldValue) {
  60 + if (newValue && newValue.length > 0) {
  61 + angular.forEach(newValue, function(obj, index) {
  62 + var k1 = obj.cl + "_" + obj.clZbh;
  63 + var k2 = obj.j + "_" + obj.jName + "_" + obj.jGh;
  64 + var k3 = obj.s + "_" + obj.sName + "_" + obj.sGh;
  65 +
  66 + if (!old_cl.k1) {
  67 + old_cl[k1] = [];
  68 + }
  69 + if (!old_j.k2) {
  70 + old_j[k2] = [];
  71 + }
  72 + if (!old_s.k3) {
  73 + old_s[k3] = [];
  74 + }
  75 +
  76 + old_cl[k1].push(index);
  77 + old_j[k2].push(index);
  78 + old_s[k3].push(index);
  79 +
  80 + })
  81 + }
  82 + }
  83 + );
  84 + }
  85 + }
  86 + }
  87 + };
  88 + }
  89 + ]
  90 +);
0 \ No newline at end of file 91 \ No newline at end of file
src/main/resources/static/pages/scheduleApp/module/common/dts2/scheduleplan/saPlaninfoeditTemplate.html 0 → 100644
  1 +<style>
  2 +
  3 +</style>
  4 +
  5 +<div>
  6 + <table class="fixTable table table-striped table-bordered table-hover table-checkable order-column">
  7 + <thead>
  8 + <tr role="row" class="heading">
  9 + <th style="width: 50px;">序号</th>
  10 + <th style="width: 80px;">发车时间</th>
  11 + <th style="width: 60px;">驾驶员</th>
  12 + <th style="width: 60px;">售票员</th>
  13 + <th style="width: 100px;">停车场</th>
  14 + </tr>
  15 + </thead>
  16 + <tbody>
  17 + <tr ng-repeat="info in $saPlanInfoEditCtrl.ds">
  18 + <td>
  19 + <span ng-bind="$index + 1"></span>
  20 + </td>
  21 + <td>
  22 + <a href="#">
  23 + <span ng-bind="info.fcsj"></span>
  24 + </a>
  25 + </td>
  26 + <td>
  27 + <a href="#">
  28 + <span ng-bind="info.jName"></span>
  29 + </a>
  30 + </td>
  31 + <td>
  32 + <a href="#">
  33 + <span ng-bind="info.sName"></span>
  34 + </a>
  35 + </td>
  36 + <td>
  37 + <a href="#">
  38 + <span ng-bind="info.zdzName"></span>
  39 + </a>
  40 + </td>
  41 + </tr>
  42 + </tbody>
  43 + </table>
  44 +</div>
src/main/resources/static/pages/scheduleApp/module/common/main.js
@@ -51,6 +51,60 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [ @@ -51,6 +51,60 @@ ScheduleApp.factory(&#39;UserPrincipal&#39;, [
51 } 51 }
52 ]); 52 ]);
53 53
  54 +ScheduleApp.factory('DataStore', [
  55 + '$http',
  56 + function($http) {
  57 + // 本地数据存储,如车辆数据,人员数据
  58 + var dataMap = {
  59 + "cl": [],
  60 + "ry": []
  61 + };
  62 +
  63 + $http({
  64 + method: 'GET',
  65 + url: '/cars_sc/all'
  66 + }).then(function(result) {
  67 + // 简拼数据
  68 + dataMap.cl = result.data.data;
  69 + angular.forEach(result.data.data, function(obj) {
  70 + // 全拼
  71 + obj["$fullChars"] = pinyin.getFullChars(obj.insideCode ? "": obj.insideCode);
  72 + // 简拼
  73 + obj["$camelChars"] = pinyin.getCamelChars(obj.insideCode ? "": obj.insideCode);
  74 + // 原值
  75 + obj["$calcu_str"] = obj.insideCode? "": obj.insideCode;
  76 + });
  77 + });
  78 +
  79 + $http({
  80 + method: 'GET',
  81 + url: '/ee/all'
  82 + }).then(function(result) {
  83 + // 简拼数据
  84 + dataMap.ry = result.data.data;
  85 + angular.forEach(dataMap.ryInfos, function(obj) {
  86 + // 全拼
  87 + obj["$fullChars"] = pinyin.getFullChars(obj.personnelName + "-" + obj.jobCode);
  88 + // 简拼
  89 + obj["$camelChars"] = pinyin.getCamelChars(obj.personnelName + "-" + obj.jobCode);
  90 + // 原值
  91 + obj["$calcu_str"] = obj.personnelName + "-" + obj.jobCode;
  92 + });
  93 + });
  94 +
  95 + return {
  96 + getData: function(type) {
  97 + if (dataMap[type]) {
  98 + return dataMap[type];
  99 + } else {
  100 + return [];
  101 + }
  102 + }
  103 + }
  104 +
  105 + }
  106 +]);
  107 +
54 /** 108 /**
55 * 用于请求通知。 109 * 用于请求通知。
56 */ 110 */
@@ -199,12 +253,16 @@ ScheduleApp.factory(&#39;settings&#39;, [&#39;$rootScope&#39;, function($rootScope) { @@ -199,12 +253,16 @@ ScheduleApp.factory(&#39;settings&#39;, [&#39;$rootScope&#39;, function($rootScope) {
199 ScheduleApp.controller('ScheduleAppController', [ 253 ScheduleApp.controller('ScheduleAppController', [
200 '$scope', 254 '$scope',
201 'UserPrincipal', 255 'UserPrincipal',
202 - function($scope, UserPrincipal) { 256 + 'DataStore',
  257 + function($scope, UserPrincipal, DataStore) {
203 $scope.$on('$viewContentLoaded', function(event) { 258 $scope.$on('$viewContentLoaded', function(event) {
204 console.log("子页面已载入:" + event); 259 console.log("子页面已载入:" + event);
205 }); 260 });
206 261
207 // 获取一次用户身份信息 262 // 获取一次用户身份信息
208 UserPrincipal.getGsStrs(); 263 UserPrincipal.getGsStrs();
  264 + // 获取本地数据
  265 + DataStore.getData("cl");
  266 + DataStore.getData("ry");
209 } 267 }
210 ]); 268 ]);
211 \ No newline at end of file 269 \ No newline at end of file
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
@@ -1325,7 +1325,8 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -1325,7 +1325,8 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
1325 '$timeout', 1325 '$timeout',
1326 '$$SearchInfoService_g', 1326 '$$SearchInfoService_g',
1327 'UserPrincipal', 1327 'UserPrincipal',
1328 - function($timeout, $$searchInfoService_g, UserPrincipal) { 1328 + 'DataStore',
  1329 + function($timeout, $$searchInfoService_g, UserPrincipal, DataStore) {
1329 return { 1330 return {
1330 restrict: 'E', 1331 restrict: 'E',
1331 templateUrl: '/pages/scheduleApp/module/common/dts1/select/saSelect5Template.html', 1332 templateUrl: '/pages/scheduleApp/module/common/dts1/select/saSelect5Template.html',
@@ -1607,11 +1608,17 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -1607,11 +1608,17 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
1607 var calcu_str = scope[ctrlAs].$$internal_match_str(result[i]); 1608 var calcu_str = scope[ctrlAs].$$internal_match_str(result[i]);
1608 if (calcu_str) { 1609 if (calcu_str) {
1609 // 全拼 1610 // 全拼
1610 - result[i]["$fullChars"] = pinyin.getFullChars(calcu_str); 1611 + if (!result[i]["$fullChars"]) {
  1612 + result[i]["$fullChars"] = pinyin.getFullChars(calcu_str);
  1613 + }
1611 // 简拼 1614 // 简拼
1612 - result[i]["$camelChars"] = pinyin.getCamelChars(calcu_str); 1615 + if (!result[i]["$camelChars"]) {
  1616 + result[i]["$camelChars"] = pinyin.getCamelChars(calcu_str);
  1617 + }
1613 // 原值 1618 // 原值
1614 - result[i]["$calcu_str"] = calcu_str; 1619 + if (!result[i]["$calcu_str"]) {
  1620 + result[i]["$calcu_str"] = calcu_str;
  1621 + }
1615 1622
1616 scope[ctrlAs].$$data_real.push(result[i]); 1623 scope[ctrlAs].$$data_real.push(result[i]);
1617 } 1624 }
@@ -1672,18 +1679,26 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -1672,18 +1679,26 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
1672 1679
1673 /** 1680 /**
1674 * 内部方法,读取本地动态数据源。 1681 * 内部方法,读取本地动态数据源。
1675 - * @param ldata 1682 + * @param type
1676 */ 1683 */
1677 - scope[ctrlAs].$$internal_local_data = function(ldata) { 1684 + scope[ctrlAs].$$internal_local_data = function(type) {
1678 // 重新创建内部保存的数据 1685 // 重新创建内部保存的数据
1679 scope[ctrlAs].$$data_real = []; 1686 scope[ctrlAs].$$data_real = [];
1680 - // 重新创建内部ui-select显示用数据,默认取10条记录显示  
1681 - scope[ctrlAs].$$data = [];  
1682 -  
1683 // 本地动态数据直接显示,暂时不优化 1687 // 本地动态数据直接显示,暂时不优化
  1688 + var ldata = DataStore.getData(type);
1684 for (var i = 0; i < ldata.length; i++) { 1689 for (var i = 0; i < ldata.length; i++) {
1685 scope[ctrlAs].$$data_real.push(ldata[i]); 1690 scope[ctrlAs].$$data_real.push(ldata[i]);
1686 - scope[ctrlAs].$$data.push(ldata[i]); 1691 +
  1692 + }
  1693 +
  1694 + // 重新创建内部ui-select显示用数据,默认取10条记录显示
  1695 + scope[ctrlAs].$$data = [];
  1696 + for (var k = 0; k < scope[ctrlAs].$$data_real.length; k++) {
  1697 + if (scope[ctrlAs].$$data.length < 10) {
  1698 + scope[ctrlAs].$$data.push(scope[ctrlAs].$$data_real[k]);
  1699 + } else {
  1700 + break;
  1701 + }
1687 } 1702 }
1688 1703
1689 scope[ctrlAs].$$internal_validate_model(); 1704 scope[ctrlAs].$$internal_validate_model();
@@ -1698,7 +1713,9 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -1698,7 +1713,9 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
1698 console.log("saSelect5 监控到dsparams属性变化,old=" + $dsparams_attr + ",new=" + value); 1713 console.log("saSelect5 监控到dsparams属性变化,old=" + $dsparams_attr + ",new=" + value);
1699 1714
1700 // dsparams格式如下: 1715 // dsparams格式如下:
1701 - // {type: 'dic/ajax', param: 'dic名字'/'ajax查询参数对象', atype: 'ajax查询类型'} 1716 + // {type: 'ajax', param: 'ajax查询参数对象', atype: 'ajax查询累西'}
  1717 + // {type: 'dic', param: 'dic名字'}
  1718 + // {type: 'local', param: '本地存储type名字'}
1702 1719
1703 if (obj.type == 'dic') { 1720 if (obj.type == 'dic') {
1704 dataModelType = 'dic'; 1721 dataModelType = 'dic';
@@ -1709,7 +1726,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [ @@ -1709,7 +1726,7 @@ angular.module(&#39;ScheduleApp&#39;).directive(&#39;saSelect5&#39;, [
1709 scope[ctrlAs].$$internal_ajax_data(obj.atype, obj.param); 1726 scope[ctrlAs].$$internal_ajax_data(obj.atype, obj.param);
1710 } else if (obj.type == 'local') { 1727 } else if (obj.type == 'local') {
1711 dataModelType = 'local'; 1728 dataModelType = 'local';
1712 - scope[ctrlAs].$$internal_local_data(obj.ldata); 1729 + scope[ctrlAs].$$internal_local_data(obj.param);
1713 } else { 1730 } else {
1714 throw new Error("dsparams参数格式异常=" + obj); 1731 throw new Error("dsparams参数格式异常=" + obj);
1715 } 1732 }
@@ -4260,4 +4277,94 @@ angular.module(&#39;ScheduleApp&#39;).directive( @@ -4260,4 +4277,94 @@ angular.module(&#39;ScheduleApp&#39;).directive(
4260 }; 4277 };
4261 } 4278 }
4262 ] 4279 ]
  4280 +);
  4281 +/**
  4282 + * saPlaninfoedit指令,排班明细编辑控件,用在调度执勤日报的修改功能
  4283 + * name(必须),控件的名字
  4284 + * ds,外部数据源
  4285 + * cl1,车辆1属性
  4286 + * cl2,车辆2属性
  4287 + * j1,驾驶员1属性
  4288 + * j2,驾驶员2属性
  4289 + * s1,售票员1属性
  4290 + * s2,售票员2属性
  4291 + */
  4292 +angular.module('ScheduleApp').directive(
  4293 + 'saPlaninfoedit',
  4294 + [
  4295 + function() {
  4296 + return {
  4297 + restrict: 'E',
  4298 + templateUrl: '/pages/scheduleApp/module/common/dts2/scheduleplan/saPlaninfoeditTemplate.html',
  4299 + scope: { // 独立作用域
  4300 + ds: '=ngModel'
  4301 + },
  4302 + controllerAs: '$saPlanInfoEditCtrl',
  4303 + bindToController: true,
  4304 + controller: function() {
  4305 + var self = this;
  4306 +
  4307 + // TODO:
  4308 + },
  4309 +
  4310 + compile: function(tElem, tAttrs) {
  4311 + // 获取属性
  4312 + var $attr_name = tAttrs["name"]; // 控件的名字
  4313 + if (!$attr_name) {
  4314 + throw {msg: "saPlaninfoedit指令name属性不能为空"};
  4315 + }
  4316 +
  4317 + // 内部controlAs名字
  4318 + var ctrlAs = '$saPlanInfoEditCtrl';
  4319 +
  4320 +
  4321 + // 内部变量,原始车辆,人员数据
  4322 + var old_cl = {}; // key:{车辆id_车辆自编号},value:所在list下标数组
  4323 + var old_j = {}; // key:{驾驶员id_姓名_工号}, value:所在list下标数组
  4324 + var old_s = {}; // key:{售票员id_姓名_工号}, value:所在list下标数组
  4325 +
  4326 + // 内部变量,变更的车辆,变更的人员
  4327 +
  4328 + return {
  4329 + pre: function(scope, element, attr) {
  4330 +
  4331 + },
  4332 + post: function(scope, element, attr) {
  4333 +
  4334 + // -------------- 监控function ---------------//
  4335 + scope.$watch(
  4336 + function() {
  4337 + return scope[ctrlAs].ds;
  4338 + },
  4339 + function(newValue, oldValue) {
  4340 + if (newValue && newValue.length > 0) {
  4341 + angular.forEach(newValue, function(obj, index) {
  4342 + var k1 = obj.cl + "_" + obj.clZbh;
  4343 + var k2 = obj.j + "_" + obj.jName + "_" + obj.jGh;
  4344 + var k3 = obj.s + "_" + obj.sName + "_" + obj.sGh;
  4345 +
  4346 + if (!old_cl.k1) {
  4347 + old_cl[k1] = [];
  4348 + }
  4349 + if (!old_j.k2) {
  4350 + old_j[k2] = [];
  4351 + }
  4352 + if (!old_s.k3) {
  4353 + old_s[k3] = [];
  4354 + }
  4355 +
  4356 + old_cl[k1].push(index);
  4357 + old_j[k2].push(index);
  4358 + old_s[k3].push(index);
  4359 +
  4360 + })
  4361 + }
  4362 + }
  4363 + );
  4364 + }
  4365 + }
  4366 + }
  4367 + };
  4368 + }
  4369 + ]
4263 ); 4370 );
4264 \ No newline at end of file 4371 \ No newline at end of file
src/main/resources/static/pages/scheduleApp/module/common/prj-common-globalservice.js
@@ -486,12 +486,20 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;SchedulePlanInfoManageService_g&#39;, [&#39;$reso @@ -486,12 +486,20 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;SchedulePlanInfoManageService_g&#39;, [&#39;$reso
486 return { 486 return {
487 rest : $resource( 487 rest : $resource(
488 '/spic/:id', 488 '/spic/:id',
489 - {order: 'scheduleDate,lp,fcno', direction: 'ASC,ASC,ASC', id: '@id_route'}, 489 + {order: 'scheduleDate,lp,fcno', direction: 'ASC,ASC,ASC', id: '@id'},
490 { 490 {
491 list: { 491 list: {
492 method: 'GET', 492 method: 'GET',
493 params: { 493 params: {
494 page: 0 494 page: 0
  495 + },
  496 + transformResponse: function(rs) {
  497 + var dst = angular.fromJson(rs);
  498 + if (dst.status == 'SUCCESS') {
  499 + return dst.data;
  500 + } else {
  501 + return dst; // 业务错误留给控制器处理
  502 + }
495 } 503 }
496 }, 504 },
497 get: { 505 get: {
src/main/resources/static/pages/scheduleApp/module/common/prj-common-ui-route-state.js
@@ -895,9 +895,25 @@ ScheduleApp.config([ @@ -895,9 +895,25 @@ ScheduleApp.config([
895 }] 895 }]
896 } 896 }
897 }) 897 })
898 -  
899 -  
900 - ; 898 + .state("schedulePlanInfoExtFormManage_edit", { // 修改套跑form
  899 + url: '/schedulePlanInfoExtFormManage_edit/:xlId/:xlName/:sd/:lpId/:lpName',
  900 + views: {
  901 + "": {templateUrl: 'pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html'}
  902 + },
  903 + resolve: {
  904 + deps: ['$ocLazyLoad', function($ocLazyLoad) {
  905 + return $ocLazyLoad.load({
  906 + name: 'schedulePlanManage_module',
  907 + insertBefore: '#ng_load_plugins_before', // 动态载入模块时放置的位置
  908 + files: [
  909 + "assets/bower_components/angular-ui-select/dist/select.min.css",
  910 + "assets/bower_components/angular-ui-select/dist/select.min.js",
  911 + "pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js"
  912 + ]
  913 + });
  914 + }]
  915 + }
  916 + });
901 917
902 } 918 }
903 ]); 919 ]);
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/info/list_info.html
@@ -56,7 +56,7 @@ @@ -56,7 +56,7 @@
56 </tr> 56 </tr>
57 </thead> 57 </thead>
58 <tbody> 58 <tbody>
59 - <tr ng-repeat="info in ctrl.pageInfo.infos" class="odd gradeX"> 59 + <tr ng-repeat="info in ctrl.page()['content']" class="odd gradeX">
60 <td> 60 <td>
61 <span ng-bind="$index + 1"></span> 61 <span ng-bind="$index + 1"></span>
62 </td> 62 </td>
@@ -139,9 +139,9 @@ @@ -139,9 +139,9 @@
139 </div> 139 </div>
140 140
141 <div style="text-align: right;"> 141 <div style="text-align: right;">
142 - <uib-pagination total-items="ctrl.pageInfo.totalItems"  
143 - ng-model="ctrl.pageInfo.currentPage"  
144 - ng-change="ctrl.pageChanaged()" 142 + <uib-pagination total-items="ctrl.page()['totalElements']"
  143 + ng-model="ctrl.page()['uiNumber']"
  144 + ng-change="ctrl.doPage()"
145 rotate="false" 145 rotate="false"
146 max-size="10" 146 max-size="10"
147 boundary-links="true" 147 boundary-links="true"
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/info/module.js
1 // 车辆配置管理 service controller 等写在一起 1 // 车辆配置管理 service controller 等写在一起
2 -angular.module('ScheduleApp').factory('SchedulePlanInfoManageService', ['SchedulePlanInfoManageService_g', function(service) {  
3 - /** 当前的查询条件信息 */  
4 - var currentSearchCondition = {};  
5 -  
6 - /** 当前第几页 */  
7 - var currentPageNo = 1;  
8 -  
9 - return {  
10 - /**  
11 - * 获取查询条件信息,  
12 - * 用于给controller用来和页面数据绑定。  
13 - */  
14 - getSearchCondition: function() {  
15 - return currentSearchCondition;  
16 - },  
17 - /**  
18 - * 重置查询条件信息。  
19 - */  
20 - resetSearchCondition: function() {  
21 - var key;  
22 - for (key in currentSearchCondition) {  
23 - currentSearchCondition[key] = undefined; 2 +angular.module('ScheduleApp').factory(
  3 + 'SchedulePlanInfoManageService',
  4 + [
  5 + 'SchedulePlanInfoManageService_g',
  6 + function(service) {
  7 + /** 当前的查询条件信息 */
  8 + var currentSearchCondition = {};
  9 +
  10 + // 当前查询返回的信息
  11 + var currentPage = { // 后台spring data返回的格式
  12 + totalElements: 0,
  13 + number: 0, // 后台返回的页码,spring返回从0开始
  14 + content: [],
  15 +
  16 + uiNumber: 1 // 页面绑定的页码
  17 + };
  18 +
  19 + // 查询对象
  20 + var queryClass = service.rest;
  21 +
  22 + return {
  23 + getQueryClass: function() {
  24 + return queryClass;
  25 + },
  26 + getSearchCondition: function() {
  27 + currentSearchCondition.page = currentPage.uiNumber - 1;
  28 + return currentSearchCondition;
  29 + },
  30 + getPage: function(page) {
  31 + if (page) {
  32 + currentPage.totalElements = page.totalElements;
  33 + currentPage.number = page.number;
  34 + currentPage.content = page.content;
  35 + }
  36 + return currentPage;
  37 + },
  38 + resetStatus: function() {
  39 + currentSearchCondition = {page: 0};
  40 + currentPage = {
  41 + totalElements: 0,
  42 + number: 0,
  43 + content: [],
  44 + uiNumber: 1
  45 + };
  46 + }
  47 + };
  48 +
  49 + }
  50 + ]
  51 +);
  52 +
  53 +// index.html页面
  54 +angular.module('ScheduleApp').controller(
  55 + 'SchedulePlanInfoManageCtrl',
  56 + [
  57 + '$state',
  58 + '$stateParams',
  59 + '$scope',
  60 + function($state, $stateParams, $scope) {
  61 + var self = this;
  62 + var spid = $stateParams.spid; // 排班规则id
  63 + var xlname = $stateParams.xlname; // 线路名字
  64 + var ttname = $stateParams.ttname; // 时刻表名字
  65 + var stime = $stateParams.stime; // 开始时间
  66 + var etime = $stateParams.etime; // 结束时间
  67 +
  68 + $scope.spid = spid;
  69 + $scope.xlname = xlname;
  70 + $scope.ttname = ttname;
  71 + $scope.stime = stime;
  72 + $scope.etime = etime;
  73 +
  74 + // 切换到form状态
  75 + self.goForm = function() {
  76 + alert("等待生成");
  77 +
24 } 78 }
25 - },  
26 - /**  
27 - * 设置当前页码。  
28 - * @param cpn 从1开始,后台是从0开始的  
29 - */  
30 - setCurrentPageNo: function(cpn) {  
31 - currentPageNo = cpn;  
32 - },  
33 - /**  
34 - * 组装查询参数,返回一个promise查询结果。  
35 - * @param params 查询参数  
36 - * @return 返回一个 promise  
37 - */  
38 - getPage: function(spid) {  
39 - var params = currentSearchCondition; // 查询条件  
40 - params.page = currentPageNo - 1; // 服务端页码从0开始  
41 - params["schedulePlan.id_eq"] = spid; // 排班id  
42 - return service.rest.list(params).$promise;  
43 } 79 }
44 80
45 - };  
46 -  
47 -}]);  
48 -  
49 -angular.module('ScheduleApp').controller('SchedulePlanInfoManageCtrl', ['SchedulePlanInfoManageService', '$state', '$stateParams', '$scope', function(schedulePlanInfoManageService, $state, $stateParams, $scope) {  
50 - var self = this;  
51 - var spid = $stateParams.spid; // 排班规则id  
52 - var xlname = $stateParams.xlname; // 线路名字  
53 - var ttname = $stateParams.ttname; // 时刻表名字  
54 - var stime = $stateParams.stime; // 开始时间  
55 - var etime = $stateParams.etime; // 结束时间  
56 -  
57 - $scope.spid = spid;  
58 - $scope.xlname = xlname;  
59 - $scope.ttname = ttname;  
60 - $scope.stime = stime;  
61 - $scope.etime = etime;  
62 -  
63 - // 切换到form状态  
64 - self.goForm = function() {  
65 - alert("等待生成");  
66 -  
67 - }  
68 -}]);  
69 -  
70 -angular.module('ScheduleApp').controller('SchedulePlanInfoManageListCtrl', ['SchedulePlanInfoManageService', '$scope', function(schedulePlanInfoManageService, $scope) {  
71 - var self = this;  
72 - self.pageInfo = {  
73 - totalItems : 0,  
74 - currentPage : 1,  
75 - infos: []  
76 - };  
77 -  
78 - // 日期 日期控件开关  
79 - self.scheduleDate = false;  
80 - self.scheduleDate_open = function() {  
81 - self.scheduleDate = true;  
82 - };  
83 -  
84 - var spid = $scope.spid;  
85 -  
86 - // 初始创建的时候,获取一次列表数据  
87 - schedulePlanInfoManageService.getPage(spid).then(  
88 - function(result) {  
89 - self.pageInfo.totalItems = result.totalElements;  
90 - self.pageInfo.currentPage = result.number + 1;  
91 - self.pageInfo.infos = result.content;  
92 - schedulePlanInfoManageService.setCurrentPageNo(result.number + 1);  
93 - },  
94 - function(result) {  
95 - alert("出错啦!"); 81 + ]
  82 +);
  83 +
  84 +// list.html页面
  85 +angular.module('ScheduleApp').controller(
  86 + 'SchedulePlanInfoManageListCtrl',
  87 + [
  88 + 'SchedulePlanInfoManageService',
  89 + '$scope',
  90 + function(service, $scope) {
  91 + var self = this;
  92 +
  93 + // 日期 日期控件开关
  94 + self.scheduleDate = false;
  95 + self.scheduleDate_open = function() {
  96 + self.scheduleDate = true;
  97 + };
  98 +
  99 + // query类
  100 + var SPlanInfo = service.getQueryClass();
  101 +
  102 + service.resetStatus();
  103 +
  104 + var spid = $scope.spid;
  105 +
  106 + self.page = function() {
  107 + return service.getPage();
  108 + };
  109 + self.searchCondition = function() {
  110 + return service.getSearchCondition();
  111 + };
  112 +
  113 + self.searchCondition()["schedulePlan.id_eq"] = spid;
  114 +
  115 + self.doPage = function() {
  116 + SPlanInfo.list(self.searchCondition(),
  117 + function(rst) {
  118 + service.getPage(rst);
  119 + },
  120 + function(err) {
  121 + console.log(err);
  122 + }
  123 + );
  124 + };
  125 +
  126 + self.doPage();
  127 +
  128 + $scope.$watch(
  129 + function() {
  130 + return self.searchCondition()['scheduleDate_eq'];
  131 + },
  132 + function(newValue, oldValue) {
  133 + if (newValue == undefined && oldValue == undefined) {
  134 +
  135 + } else {
  136 + self.doPage();
  137 + }
  138 + }
  139 + );
  140 +
96 } 141 }
97 - );  
98 -  
99 - //$scope.$watch("ctrl.pageInfo.currentPage", function() {  
100 - // alert("dfdfdf");  
101 - //});  
102 -  
103 - // 翻页的时候调用  
104 - self.pageChanaged = function() {  
105 - schedulePlanInfoManageService.setCurrentPageNo(self.pageInfo.currentPage);  
106 - schedulePlanInfoManageService.getPage(spid).then(  
107 - function(result) {  
108 - self.pageInfo.totalItems = result.totalElements;  
109 - self.pageInfo.currentPage = result.number + 1;  
110 - self.pageInfo.infos = result.content;  
111 - schedulePlanInfoManageService.setCurrentPageNo(result.number + 1);  
112 - },  
113 - function(result) {  
114 - alert("出错啦!");  
115 - }  
116 - );  
117 - };  
118 - // 获取查询条件数据  
119 - self.searchCondition = function() {  
120 - return schedulePlanInfoManageService.getSearchCondition();  
121 - };  
122 - // 重置查询条件  
123 - self.resetSearchCondition = function() {  
124 - return schedulePlanInfoManageService.resetSearchCondition();  
125 - };  
126 -  
127 - $scope.$watch(  
128 - function() {  
129 - return self.searchCondition()['scheduleDate_eq'];  
130 - },  
131 - function(newValue, oldValue) {  
132 - if (newValue == undefined && oldValue == undefined) {  
133 -  
134 - } else {  
135 - self.pageChanaged();  
136 - }  
137 - }); 142 + ]
  143 +);
  144 +
138 145
139 -}]);  
140 146
141 147
142 148
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html 0 → 100644
  1 +<div class="page-head">
  2 + <div class="page-title">
  3 + <h1>排班规则管理</h1>
  4 + </div>
  5 +</div>
  6 +
  7 +<ul class="page-breadcrumb breadcrumb">
  8 + <li>
  9 + <a href="/pages/home.html" data-pjax>首页</a>
  10 + <i class="fa fa-circle"></i>
  11 + </li>
  12 + <li>
  13 + <span class="active">运营计划管理</span>
  14 + <i class="fa fa-circle"></i>
  15 + </li>
  16 + <li>
  17 + <a ui-sref="schedulePlanReportExtManage">调度值勤日报</a>
  18 + <i class="fa fa-circle"></i>
  19 + </li>
  20 + <li>
  21 + <span class="active">修改排班信息</span>
  22 + </li>
  23 +</ul>
  24 +
  25 +<div class="portlet light bordered" ng-controller="ScheduleRuleManageExtFormCtrl as ctrl">
  26 + <div class="portlet-title">
  27 + <div class="caption">
  28 + <i class="fa fa-database font-dark"></i>
  29 + <span class="caption-subject bold uppercase">
  30 + {{"修改 " + ctrl.xlName}}
  31 + <span ng-bind="ctrl.sd | date: 'yyyy年MM月dd日 '"></span>
  32 + {{"路牌" + ctrl.lpName + " 排班明细"}}
  33 + </span>
  34 + </div>
  35 + </div>
  36 +
  37 + <div class="portlet-body form">
  38 + <form ng-submit="ctrl.submit()" class="form-horizontal" novalidate name="myForm">
  39 + <!--<div class="alert alert-danger display-hide">-->
  40 + <!--<button class="close" data-close="alert"></button>-->
  41 + <!--您的输入有误,请检查下面的输入项-->
  42 + <!--</div>-->
  43 +
  44 +
  45 + <!-- 其他信息放置在这里 -->
  46 + <div class="form-body">
  47 + <div class="form-group">
  48 + <div class="col-md-5">
  49 + <div class="form-group has-success has-feedback">
  50 + <label class="col-md-5 control-label">车辆1*:</label>
  51 + <div class="col-md-7">
  52 + <sa-Select5 name="cl1"
  53 + model="ctrl.formData"
  54 + cmaps="{'cl1.id': 'id'}"
  55 + dcname="cl1.id"
  56 + icname="id"
  57 + dsparams="{{ {type: 'local', param: 'cl' } | json }}"
  58 + iterobjname="item"
  59 + iterobjexp="item.insideCode"
  60 + searchph="请输拼音..."
  61 + searchexp="this.insideCode"
  62 + required >
  63 + </sa-Select5>
  64 + </div>
  65 + <!-- 隐藏块,显示验证信息 -->
  66 + <div class="alert alert-danger well-sm" ng-show="myForm.cl1.$error.required">
  67 + 车辆1必须选择
  68 + </div>
  69 + </div>
  70 + <div class="form-group has-success has-feedback">
  71 + <label class="col-md-5 control-label">车辆2:</label>
  72 + <div class="col-md-7">
  73 + <sa-Select5 name="cl2"
  74 + model="ctrl.formData"
  75 + cmaps="{'cl2.id': 'id'}"
  76 + dcname="cl2.id"
  77 + icname="id"
  78 + dsparams="{{ {type: 'local', param: 'cl' } | json }}"
  79 + iterobjname="item"
  80 + iterobjexp="item.insideCode"
  81 + searchph="请输拼音..."
  82 + searchexp="this.insideCode"
  83 + >
  84 + </sa-Select5>
  85 + </div>
  86 + </div>
  87 +
  88 + <div class="form-group has-success has-feedback">
  89 + <label class="col-md-5 control-label">驾驶员1*:</label>
  90 + <div class="col-md-7">
  91 + <sa-Select5 name="j1"
  92 + model="ctrl.formData"
  93 + cmaps="{'j1.id' : 'id'}"
  94 + dcname="j1.id"
  95 + icname="id"
  96 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  97 + iterobjname="item"
  98 + iterobjexp="item.personnelName"
  99 + searchph="请输拼音..."
  100 + searchexp="this.personnelName"
  101 + required >
  102 + </sa-Select5>
  103 + </div>
  104 + <!-- 隐藏块,显示验证信息 -->
  105 + <div class="alert alert-danger well-sm" ng-show="myForm.j1.$error.required">
  106 + 驾驶员必须选择
  107 + </div>
  108 + </div>
  109 + <div class="form-group has-success has-feedback">
  110 + <label class="col-md-5 control-label">售票员1:</label>
  111 + <div class="col-md-7">
  112 + <sa-Select5 name="s1"
  113 + model="ctrl.formData"
  114 + cmaps="{'s1.id' : 'id'}"
  115 + dcname="s1.id"
  116 + icname="id"
  117 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  118 + iterobjname="item"
  119 + iterobjexp="item.personnelName"
  120 + searchph="请输拼音..."
  121 + searchexp="this.personnelName"
  122 + >
  123 + </sa-Select5>
  124 + </div>
  125 + </div>
  126 +
  127 + <div class="form-group has-success has-feedback">
  128 + <label class="col-md-5 control-label">驾驶员2:</label>
  129 + <div class="col-md-7">
  130 + <sa-Select5 name="j2"
  131 + model="ctrl.formData"
  132 + cmaps="{'j2.id' : 'id'}"
  133 + dcname="j2.id"
  134 + icname="id"
  135 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  136 + iterobjname="item"
  137 + iterobjexp="item.personnelName"
  138 + searchph="请输拼音..."
  139 + searchexp="this.personnelName"
  140 + >
  141 + </sa-Select5>
  142 + </div>
  143 + </div>
  144 + <div class="form-group has-success has-feedback">
  145 + <label class="col-md-5 control-label">售票员2:</label>
  146 + <div class="col-md-7">
  147 + <sa-Select5 name="s2"
  148 + model="ctrl.formData"
  149 + cmaps="{'s2.id' : 'id'}"
  150 + dcname="s2.id"
  151 + icname="id"
  152 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  153 + iterobjname="item"
  154 + iterobjexp="item.personnelName"
  155 + searchph="请输拼音..."
  156 + searchexp="this.personnelName"
  157 + >
  158 + </sa-Select5>
  159 + </div>
  160 + </div>
  161 +
  162 + <div class="form-group has-success has-feedback">
  163 + <label class="col-md-5 control-label">驾驶员3:</label>
  164 + <div class="col-md-7">
  165 + <sa-Select5 name="j3"
  166 + model="ctrl.formData"
  167 + cmaps="{'j3.id' : 'id'}"
  168 + dcname="j3.id"
  169 + icname="id"
  170 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  171 + iterobjname="item"
  172 + iterobjexp="item.personnelName"
  173 + searchph="请输拼音..."
  174 + searchexp="this.personnelName"
  175 + >
  176 + </sa-Select5>
  177 + </div>
  178 + </div>
  179 + <div class="form-group has-success has-feedback">
  180 + <label class="col-md-5 control-label">售票员3:</label>
  181 + <div class="col-md-7">
  182 + <sa-Select5 name="s3"
  183 + model="ctrl.formData"
  184 + cmaps="{'s3.id' : 'id'}"
  185 + dcname="s3.id"
  186 + icname="id"
  187 + dsparams="{{ {type: 'local', param: 'ry' } | json }}"
  188 + iterobjname="item"
  189 + iterobjexp="item.personnelName"
  190 + searchph="请输拼音..."
  191 + searchexp="this.personnelName"
  192 + >
  193 + </sa-Select5>
  194 + </div>
  195 + </div>
  196 + </div>
  197 +
  198 + <div class="col-md-7">
  199 + <div class="form-group has-success has-feedback">
  200 + <label class="col-md-2 control-label">排班明细:</label>
  201 + <div class="col-md-10">
  202 + <sa-Planinfoedit name="spi"
  203 + ng-model="ctrl.formData.planInfos"
  204 + ng-model-options="{ getterSetter: true }"
  205 + cl1="{{ctrl.formData.cl1}}"
  206 + cl2="{{ctrl.formData.cl2}}"
  207 + j1="{{ctrl.formData.j1}}"
  208 + j2="{{ctrl.formData.j2}}"
  209 + s1="{{ctrl.formData.s1}}"
  210 + s2="{{ctrl.formData.s2}}"
  211 + >
  212 +
  213 + </sa-Planinfoedit>
  214 + </div>
  215 + </div>
  216 + </div>
  217 + </div>
  218 +
  219 +
  220 +
  221 + </div>
  222 +
  223 + <!-- TODO:!myForm.$valid 在这里有点问题,改用以下方法验证 -->
  224 + <div class="form-actions">
  225 + <div class="row">
  226 + <div class="col-md-offset-3 col-md-4">
  227 + <button type="submit" class="btn green"
  228 + ng-disabled="!myForm.$valid"><i class="fa fa-check"></i> 提交</button>
  229 + <a type="button" class="btn default" ui-sref="schedulePlanReportExtManage" ><i class="fa fa-times"></i> 取消</a>
  230 + </div>
  231 + </div>
  232 + </div>
  233 +
  234 + </form>
  235 +
  236 + </div>
  237 +
  238 +
  239 +</div>
0 \ No newline at end of file 240 \ No newline at end of file
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/list.html
@@ -71,7 +71,7 @@ @@ -71,7 +71,7 @@
71 <span ng-bind="$index + 1"></span> 71 <span ng-bind="$index + 1"></span>
72 </td> 72 </td>
73 <td> 73 <td>
74 - <a ui-sref="" class="btn btn-info btn-sm" > 修改 </a> 74 + <!--<a ui-sref="schedulePlanInfoExtFormManage_edit({xlId: info.xlId, xlName: info.xlName, sd: info.scheduleDate, lpId: info.lpId, lpName: info.lpName})" class="btn btn-info btn-sm" > 修改 </a>-->
75 </td> 75 </td>
76 <td> 76 <td>
77 <span ng-bind="info.xlName"></span> 77 <span ng-bind="info.xlName"></span>
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js
1 // 调度值勤日报管理 service controller 等写在一起 1 // 调度值勤日报管理 service controller 等写在一起
2 // TODO:使用的global服务需要修正 2 // TODO:使用的global服务需要修正
3 -angular.module('ScheduleApp').factory('SchedulePlanReportExtManageService', [  
4 - 'SchedulePlanInfoManageService_g', 'SchedulePlanManageService_g', '$q',  
5 - function(service, service2, $q) {  
6 - /** 当前的查询条件信息 */  
7 - var currentSearchCondition = {};  
8 -  
9 - return {  
10 - /**  
11 - * 获取查询条件信息,  
12 - * 用于给controller用来和页面数据绑定。  
13 - */  
14 - getSearchCondition: function() {  
15 - return currentSearchCondition;  
16 - },  
17 - /**  
18 - * 重置查询条件信息。  
19 - */  
20 - resetSearchCondition: function() {  
21 - var key;  
22 - for (key in currentSearchCondition) {  
23 - currentSearchCondition[key] = undefined;  
24 - }  
25 - },  
26 - /**  
27 - * 组装查询参数,返回一个promise查询结果。  
28 - * @param params 查询参数  
29 - * @return 返回一个 promise  
30 - */  
31 - getPage: function() {  
32 - var params = currentSearchCondition; // 查询条件  
33 - return service.groupInfo_ext.list(params).$promise; 3 +angular.module('ScheduleApp').factory(
  4 + 'SchedulePlanReportExtManageService',
  5 + [
  6 + 'SchedulePlanInfoManageService_g',
  7 + 'SchedulePlanManageService_g',
  8 + '$q',
  9 + function(service, service2, $q) {
  10 + /** 当前的查询条件信息 */
  11 + var currentSearchCondition = {};
  12 +
  13 + // 查询对象
  14 + var queryClass = service.rest;
  15 +
  16 + return {
  17 + getQueryClass: function() {
  18 + return queryClass;
  19 + },
34 20
35 - } 21 + /**
  22 + * 获取查询条件信息,
  23 + * 用于给controller用来和页面数据绑定。
  24 + */
  25 + getSearchCondition: function() {
  26 + return currentSearchCondition;
  27 + },
  28 + /**
  29 + * 重置查询条件信息。
  30 + */
  31 + resetSearchCondition: function() {
  32 + var key;
  33 + for (key in currentSearchCondition) {
  34 + currentSearchCondition[key] = undefined;
  35 + }
  36 + },
  37 + /**
  38 + * 组装查询参数,返回一个promise查询结果。
  39 + * @param params 查询参数
  40 + * @return 返回一个 promise
  41 + */
  42 + getPage: function() {
  43 + var params = currentSearchCondition; // 查询条件
  44 + return service.groupInfo_ext.list(params).$promise;
36 45
37 - }; 46 + }
38 47
39 - }]); 48 + };
40 49
  50 + }
  51 + ]
  52 +);
  53 +
  54 +// index.html页面
41 angular.module('ScheduleApp').controller( 55 angular.module('ScheduleApp').controller(
42 'SchedulePlanReportExtManageCtrl', 56 'SchedulePlanReportExtManageCtrl',
43 [ 57 [
@@ -54,6 +68,7 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -54,6 +68,7 @@ angular.module(&#39;ScheduleApp&#39;).controller(
54 68
55 ); 69 );
56 70
  71 +// list.html控制器
57 angular.module('ScheduleApp').controller( 72 angular.module('ScheduleApp').controller(
58 'SchedulePlanReportExtManageListCtrl', 73 'SchedulePlanReportExtManageListCtrl',
59 [ 74 [
@@ -133,5 +148,61 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -133,5 +148,61 @@ angular.module(&#39;ScheduleApp&#39;).controller(
133 ] 148 ]
134 ); 149 );
135 150
  151 +// edit.html页面
  152 +angular.module('ScheduleApp').controller(
  153 + 'ScheduleRuleManageExtFormCtrl',
  154 + [
  155 + 'SchedulePlanReportExtManageService',
  156 + '$stateParams',
  157 + function(service, $stateParams) {
  158 + var self = this;
  159 +
  160 + var SPlanInfo = service.getQueryClass();
  161 +
  162 + // 获取参数
  163 + self.xlId = $stateParams.xlId; // 线路Id
  164 + self.xlName = $stateParams.xlName; // 线路名字
  165 + self.sd = $stateParams.sd; // 排班日期
  166 + self.lpId = $stateParams.lpId; // 路牌Id
  167 + self.lpName = $stateParams.lpName; // 路牌名字
  168 +
  169 + // 表单的数据
  170 + self.formData = {};
  171 + self.formData.cl1 = {}; // 车辆1(必填)
  172 + self.formData.cl2 = {}; // 车辆2(选填)
  173 + self.formData.j1 = {}; // 驾驶员1(必填)
  174 + self.formData.s1 = {}; // 售票员1
  175 + self.formData.j2 = {}; // 驾驶员2
  176 + self.formData.s2 = {}; // 售票员2
  177 + self.formData.j3 = {}; // 驾驶员3
  178 + self.formData.s3 = {}; // 售票员3
  179 +
  180 + self.formData.planInfos = undefined; // 排班明细
  181 +
  182 + var sdd = new Date();
  183 + sdd.setTime(self.sd);
  184 + var params = {
  185 + xl_eq: self.xlId,
  186 + scheduleDate_eq: sdd,
  187 + lp_eq: self.lpId,
  188 + size: 100
  189 + };
  190 +
  191 + // 获取排班明细数据
  192 + SPlanInfo.list(params, function(rst) {
  193 + self.formData.planInfos = rst.content;
  194 + });
  195 +
  196 + // 提交方法
  197 + self.submit = function() {
  198 + // TODO:保存更新排班明细
  199 +
  200 + };
  201 +
  202 +
  203 + }
  204 + ]
  205 +);
  206 +
136 207
137 208
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/report/ext/route.js
@@ -34,9 +34,25 @@ ScheduleApp.config([ @@ -34,9 +34,25 @@ ScheduleApp.config([
34 }] 34 }]
35 } 35 }
36 }) 36 })
37 -  
38 -  
39 - ; 37 + .state("schedulePlanInfoExtFormManage_edit", { // 修改套跑form
  38 + url: '/schedulePlanInfoExtFormManage_edit/:xlId/:xlName/:sd/:lpId/:lpName',
  39 + views: {
  40 + "": {templateUrl: 'pages/scheduleApp/module/core/schedulePlanManage/report/ext/edit.html'}
  41 + },
  42 + resolve: {
  43 + deps: ['$ocLazyLoad', function($ocLazyLoad) {
  44 + return $ocLazyLoad.load({
  45 + name: 'schedulePlanManage_module',
  46 + insertBefore: '#ng_load_plugins_before', // 动态载入模块时放置的位置
  47 + files: [
  48 + "assets/bower_components/angular-ui-select/dist/select.min.css",
  49 + "assets/bower_components/angular-ui-select/dist/select.min.js",
  50 + "pages/scheduleApp/module/core/schedulePlanManage/report/ext/module.js"
  51 + ]
  52 + });
  53 + }]
  54 + }
  55 + });
40 56
41 } 57 }
42 ]); 58 ]);
43 \ No newline at end of file 59 \ No newline at end of file
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/service.js
@@ -64,12 +64,20 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;SchedulePlanInfoManageService_g&#39;, [&#39;$reso @@ -64,12 +64,20 @@ angular.module(&#39;ScheduleApp&#39;).factory(&#39;SchedulePlanInfoManageService_g&#39;, [&#39;$reso
64 return { 64 return {
65 rest : $resource( 65 rest : $resource(
66 '/spic/:id', 66 '/spic/:id',
67 - {order: 'scheduleDate,lp,fcno', direction: 'ASC,ASC,ASC', id: '@id_route'}, 67 + {order: 'scheduleDate,lp,fcno', direction: 'ASC,ASC,ASC', id: '@id'},
68 { 68 {
69 list: { 69 list: {
70 method: 'GET', 70 method: 'GET',
71 params: { 71 params: {
72 page: 0 72 page: 0
  73 + },
  74 + transformResponse: function(rs) {
  75 + var dst = angular.fromJson(rs);
  76 + if (dst.status == 'SUCCESS') {
  77 + return dst.data;
  78 + } else {
  79 + return dst; // 业务错误留给控制器处理
  80 + }
73 } 81 }
74 }, 82 },
75 get: { 83 get: {
src/main/resources/static/pages/scheduleApp/module/core/scheduleRuleManage/module.js
@@ -124,8 +124,9 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -124,8 +124,9 @@ angular.module(&#39;ScheduleApp&#39;).controller(
124 124
125 // 导出excel 125 // 导出excel
126 self.exportData = function() { 126 self.exportData = function() {
127 - if (service.dataExport()) {  
128 - service.dataExport().then( 127 + var p = service.dataExport();
  128 + if (p) {
  129 + p.then(
129 function(result) { 130 function(result) {
130 fileDownload.downloadFile(result.data, "application/octet-stream", "排版规则信息.xls"); 131 fileDownload.downloadFile(result.data, "application/octet-stream", "排版规则信息.xls");
131 }, 132 },
src/test/resources/testdata/problem.properties
@@ -19,4 +19,9 @@ @@ -19,4 +19,9 @@
19 19=线路运营概览 19 19=线路运营概览
20 20=排班规则备注 20 20=排班规则备注
21 21=时刻表,两点间空驶,算空驶 21 21=时刻表,两点间空驶,算空驶
  22 +22=搭班编码自动生成
  23 +23=时刻表明细修改终点站停驶(停止1个半小时以上)
  24 +##24=线路标准里如果里程是0,用标准里程
  25 +25=规则导出的日期格式修正
  26 +##26=人员录入,工号规则前加 "{公司编码}-"
22 27