-
Notifications
You must be signed in to change notification settings - Fork 16
/
GP.java
executable file
·1118 lines (917 loc) · 30.1 KB
/
GP.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import java.sql.*;
import java.net.*;
import java.io.*;
import java.util.*;
public class GP
{
private static String myclass = "GP";
public static boolean debug = false;
public static String externalSchema = "ext";
public static String getVersion(Connection conn) throws SQLException
{
String method = "getVersion";
int location = 1000;
try
{
location = 2000;
String value = "";
location = 2100;
Statement stmt = conn.createStatement();
String strSQL = "SELECT CASE " +
"WHEN POSITION ('HAWQ' in version) > 0 THEN 'HAWQ' " +
"WHEN POSITION ('HAWQ' in version) = 0 AND POSITION ('Greenplum Database' IN version) > 0 THEN 'GPDB' " +
"ELSE 'OTHER' END " +
"FROM version()";
if (debug)
Logger.printMsg("Getting Variable: " + strSQL);
location = 2200;
ResultSet rs = stmt.executeQuery(strSQL);
while (rs.next())
{
value = rs.getString(1);
}
location = 2300;
return value;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void customStartAll(Connection conn) throws SQLException
{
String method = "customStartAll";
int location = 1000;
try
{
Statement stmt = conn.createStatement();
int id = 0;
int gpfdistPort = 0;
String strSQL = "SELECT id\n";
strSQL += "FROM os.custom_sql";
ResultSet rs = stmt.executeQuery(strSQL);
while (rs.next())
{
id = rs.getInt(1);
gpfdistPort = GpfdistRunner.customStart(OSProperties.osHome);
strSQL = "INSERT INTO os.ao_custom_sql\n";
strSQL += "(id, table_name, columns, column_datatypes, sql_text, source_type, source_server_name, source_instance_name, source_port, source_database_name, source_user_name, source_pass, gpfdist_port)\n";
strSQL += "SELECT id, table_name, columns, column_datatypes, sql_text, source_type, source_server_name, source_instance_name, source_port, source_database_name, source_user_name, source_pass, " + gpfdistPort + "\n";
strSQL += "FROM os.custom_sql\n";
strSQL += "WHERE id = " + id;
stmt.executeUpdate(strSQL);
}
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void failJobs(Connection conn) throws SQLException
{
String method = "failJobs";
int location = 1000;
try
{
Statement stmt = conn.createStatement();
String strSQL = "INSERT INTO os.ao_queue (queue_id, status, queue_date, start_date, end_date, " +
"error_message, num_rows, id, refresh_type, target_schema_name, target_table_name, target_append_only, " +
"target_compressed, target_row_orientation, source_type, source_server_name, source_instance_name, " +
"source_port, source_database_name, source_schema_name, source_table_name, source_user_name, " +
"source_pass, column_name, sql_text, snapshot) " +
"SELECT queue_id, 'failed' as status, queue_date, start_date, now() as end_date, " +
"'Outsourcer stop requested' as error_message, num_rows, id, refresh_type, target_schema_name, " +
"target_table_name, target_append_only, target_compressed, target_row_orientation, source_type, " +
"source_server_name, source_instance_name, source_port, source_database_name, source_schema_name, " +
"source_table_name, source_user_name, source_pass, column_name, sql_text, snapshot " +
"FROM os.queue WHERE status = 'queued'";
stmt.executeUpdate(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void emailAlert(Connection conn, String errorMsg) throws SQLException
{
String method = "emailAlert";
int location = 1000;
try
{
Statement stmt = conn.createStatement();
String strSQL = "SELECT gp_elog('" + errorMsg + "',true)";
ResultSet rs = stmt.executeQuery(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void cancelJobs(Connection conn) throws SQLException
{
String method = "cancelJobs";
int location = 1000;
try
{
List<String> jobIdList = new ArrayList<String>();
Statement stmt = conn.createStatement();
String strSQL = "SELECT id FROM os.queue WHERE status = 'processing'";
ResultSet rs = stmt.executeQuery(strSQL);
while (rs.next())
{
jobIdList.add(rs.getString(1));
}
for (String jobId : jobIdList)
{
strSQL = "SELECT os.fn_cancel_job(" + jobId + ")";
rs = stmt.executeQuery(strSQL);
}
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static int executeSQL(Connection conn, String strSQL) throws SQLException
{
String method = "executeSQL";
int location = 1000;
if (strSQL == null)
strSQL = "";
try
{
location = 2000;
int numRows = 0;
location = 2100;
String SQL = "";
location = 2150;
strSQL = strSQL.trim();
location = 2200;
int endPosition = strSQL.indexOf(";");
location = 2300;
Statement stmt = conn.createStatement();
location = 2400;
if (endPosition > -1)
{
location = 2500;
while (endPosition > - 1)
{
location = 2600;
SQL = strSQL.substring(0, endPosition);
if (debug)
Logger.printMsg("Executing sql: " + SQL);
//if select, execute query else execute update
if ( (strSQL.toUpperCase()).startsWith("SELECT") )
{
location = 2700;
stmt.execute(SQL);
}
else
{
location = 2900;
numRows = numRows + stmt.executeUpdate(SQL);
}
location = 3100;
strSQL = strSQL.substring(endPosition + 1).trim();
location = 3200;
endPosition = strSQL.indexOf(";");
}
}
else if (strSQL.length() > 0)
{
location = 4000;
if (debug)
Logger.printMsg("Executing sql: " + SQL);
//if select, execute query else execute update
if ( (strSQL.toUpperCase()).startsWith("SELECT") )
{
location = 4200;
stmt.execute(strSQL);
//discard results
}
else
{
location = 4300;
numRows = stmt.executeUpdate(strSQL);
}
}
location = 5000;
return numRows;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static String getVariable(Connection conn, String name) throws SQLException
{
String method = "getVariable";
int location = 1000;
try
{
location = 2000;
String value = "";
location = 2100;
Statement stmt = conn.createStatement();
String strSQL = "SELECT os.fn_get_variable('" + name + "')";
if (debug)
Logger.printMsg("Getting Variable: " + strSQL);
location = 2200;
ResultSet rs = stmt.executeQuery(strSQL);
while (rs.next())
{
value = rs.getString(1);
}
location = 2300;
return value;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void executeReplication(Connection conn, String targetSchema, String targetTable, String appendColumnName) throws SQLException
{
String method = "executeReplication";
int location = 1000;
try
{
location = 2000;
Statement stmt = conn.createStatement();
location = 2100;
String externalTable = getExternalTableName(targetSchema, targetTable);
location = 2200;
String stageTable = getStageTableName(targetSchema, targetTable);
location = 2301;
String strSQL = "SELECT os.fn_replication('" + targetSchema + "', '" + targetTable + "', '" +
externalSchema + "', '" + stageTable + "', '" +
appendColumnName + "');";
if (debug)
Logger.printMsg("Executing function: " + strSQL);
location = 2400;
stmt.executeQuery(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static String setErrorMessage(String errorMessage) throws SQLException
{
String method = "setErrorMessage";
int location = 1000;
try
{
location = 2000;
errorMessage = errorMessage.replace("\"", "");
location = 2200;
errorMessage = errorMessage.replace("'", "");
location = 2302;
errorMessage = errorMessage.replace("\n", " ");
location = 3000;
return errorMessage;
}
catch (Exception ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
private static String setSQLString(boolean columnValue)
{
String strColumnValue = "";
if (columnValue)
strColumnValue = "true";
else
strColumnValue = "false";
return strColumnValue;
}
private static String setSQLString(int columnValue)
{
String strColumnValue = Integer.toString(columnValue);
return strColumnValue;
}
private static String setSQLString(String columnValue)
{
if (columnValue != null)
{
if (columnValue.equals(""))
columnValue = "null::text";
else
{
columnValue = columnValue.replace("'", "''");
columnValue = "'" + columnValue + "'";
}
}
else
columnValue = "null";
return columnValue;
}
public static String setSQLString(Timestamp columnValue)
{
String strColumnValue = "";
if (columnValue != null)
strColumnValue = "'" + columnValue.toString() + "'::timestamp";
else
strColumnValue = "null::timestamp";
return strColumnValue;
}
public static void updateStatus(Connection conn, int queueId, String status, Timestamp queueDate, Timestamp startDate, String errorMessage, int numRows, int id, String refreshType, String targetSchema, String targetTable, boolean targetAppendOnly, boolean targetCompressed, boolean targetRowOrientation, String sourceType, String sourceServer, String sourceInstance, int sourcePort, String sourceDatabase, String sourceSchema, String sourceTable, String sourceUser, String sourcePass, String columnName, String sqlText, boolean snapshot) throws SQLException
{
String method = "updateStatus";
int location = 1000;
String strQueueId = setSQLString(queueId);
status = setSQLString(status);
String strQueueDate = setSQLString(queueDate);
String strStartDate = setSQLString(startDate);
errorMessage = setSQLString(errorMessage);
String strNumRows = setSQLString(numRows);
String strId = setSQLString(id);
refreshType = setSQLString(refreshType);
targetSchema = setSQLString(targetSchema);
targetTable = setSQLString(targetTable);
String strTargetAppendOnly = setSQLString(targetAppendOnly);
String strTargetCompressed = setSQLString(targetCompressed);
String strTargetRowOrientation = setSQLString(targetRowOrientation);
sourceType = setSQLString(sourceType);
sourceServer = setSQLString(sourceServer);
sourceInstance = setSQLString(sourceInstance);
String strSourcePort = setSQLString(sourcePort);
sourceDatabase = setSQLString(sourceDatabase);
sourceSchema = setSQLString(sourceSchema);
sourceTable = setSQLString(sourceTable);
sourceUser = setSQLString(sourceUser);
sourcePass = setSQLString(sourcePass);
columnName = setSQLString(columnName);
sqlText = setSQLString(sqlText);
String strSnapshot = setSQLString(snapshot);
try
{
location = 2000;
Statement stmt = conn.createStatement();
location = 2400;
String strSQL = "SELECT os.fn_update_status(" + strQueueId + ", " + status + ", " + strQueueDate + ", " + strStartDate + ", ";
strSQL += errorMessage + ", " + strNumRows + ", " + strId + ", " + refreshType + ", " + targetSchema + ", " + targetTable + ", ";
strSQL += strTargetAppendOnly + ", " + strTargetCompressed + ", " + strTargetRowOrientation + ", " + sourceType + ", ";
strSQL += sourceServer + ", " + sourceInstance + ", " + strSourcePort + ", " + sourceDatabase + ", " + sourceSchema + ", ";
strSQL += sourceTable + ", " + sourceUser + ", " + sourcePass + ", " + columnName + ", " + sqlText + ", " + strSnapshot + ")";
if (debug)
Logger.printMsg("Updating Status: " + strSQL);
location = 2500;
stmt.executeQuery(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void dropExternalReplTable(Connection conn, String sourceType, String targetSchema, String targetTable, String sourceTable) throws SQLException
{
String method = "dropExternalReplTable";
int location = 1000;
try
{
location = 2000;
String replTargetSchema = externalSchema;
location = 2100;
String replTargetTable = getStageTableName(targetSchema, targetTable);
location = 2200;
String replSourceTable = getReplTableName(sourceType, sourceTable);
location = 2315;
dropExternalTable(conn, replTargetSchema, replTargetTable);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void dropExternalTable(Connection conn, String targetSchema, String targetTable) throws SQLException
{
String method = "dropExternalTable";
int location = 1000;
try
{
location = 2000;
String externalTable = getExternalTableName(targetSchema, targetTable);
location = 2100;
Statement stmt = conn.createStatement();
location = 2200;
String strSQL = "DROP EXTERNAL TABLE IF EXISTS \"" + externalSchema + "\".\"" + externalTable + "\"";
if (debug)
Logger.printMsg("Dropping External Table (if exists): " + strSQL);
location = 2303;
stmt.executeUpdate(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static int insertTargetTable(Connection conn, String targetSchema, String targetTable) throws SQLException
{
String method = "insertTargetTable";
int location = 1000;
int numRows = 0;
try
{
location = 2000;
String externalTable = getExternalTableName(targetSchema, targetTable);
location = 2100;
Statement stmt = conn.createStatement();
location = 2200;
String strSQL = "INSERT INTO \"" + targetSchema + "\".\"" + targetTable + "\" \n" +
"SELECT * FROM \"" + externalSchema + "\".\"" + externalTable + "\"";
if (debug)
Logger.printMsg("Executing SQL: " + strSQL);
location = 2304;
numRows = stmt.executeUpdate(strSQL);
location = 2400;
return numRows;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static int insertReplTable(Connection conn, String targetSchema, String targetTable) throws SQLException
{
String method = "insertReplTable";
int location = 1000;
int numRows = 0;
try
{
location = 2000;
String replTargetSchema = externalSchema;
location = 2100;
String replTargetTable = getStageTableName(targetSchema, targetTable);
location = 2200;
String externalTable = getExternalTableName(replTargetSchema, replTargetTable);
location = 2305;
//truncate the stage table before loading
truncateTable(conn, replTargetSchema, replTargetTable);
location = 2400;
Statement stmt = conn.createStatement();
location = 2500;
String strSQL = "INSERT INTO \"" + replTargetSchema + "\".\"" + replTargetTable + "\" \n" +
"SELECT * FROM \"" + externalSchema + "\".\"" + externalTable + "\"";
if (debug)
Logger.printMsg("Executing SQL: " + strSQL);
location = 2600;
numRows = stmt.executeUpdate(strSQL);
location = 2700;
return numRows;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void truncateTable(Connection conn, String schema, String table) throws SQLException
{
String method = "truncateTable";
int location = 1000;
try
{
location = 2000;
Statement stmt = conn.createStatement();
location = 2100;
String strSQL = "truncate table \"" + schema + "\".\"" + table + "\"";
if (debug)
Logger.printMsg("Truncating table: " + strSQL);
location = 2200;
stmt.executeUpdate(strSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static boolean createSchema(Connection conn, String schema) throws SQLException
{
String method = "createSchema";
int location = 1000;
try
{
location = 2000;
boolean found = false;
String strSQL = "SELECT COUNT(*) \n" +
"FROM INFORMATION_SCHEMA.SCHEMATA \n" +
"WHERE SCHEMA_NAME = '" + schema + "'";
location = 2100;
Statement stmt = conn.createStatement();
location = 2200;
ResultSet rs = stmt.executeQuery(strSQL);
location = 2306;
while (rs.next())
{
if (rs.getInt(1) > 0)
found = true;
}
location = 2400;
if (!(found))
{
location = 2500;
String schemaDDL = "CREATE SCHEMA \"" + schema + "\"";;
if (debug)
Logger.printMsg("Schema DDL: " + schemaDDL);
location = 2600;
stmt.executeUpdate(schemaDDL);
}
location = 2700;
return found;
}
catch (SQLException ex)
{
return true;
}
}
public static boolean createTargetTable(Connection conn, String targetSchema, String targetTable, boolean targetAppendOnly, boolean targetCompressed, boolean targetRowOrientation, String sourceType, String sourceServer, String sourceInstance, int sourcePort, String sourceDatabase, String sourceSchema, String sourceTable, String sourceUser, String sourcePass) throws Exception
{
String method = "createTargetTable";
int location = 1000;
try
{
location = 2000;
boolean found = false;
String strSQL = "SELECT COUNT(*) \n" +
"FROM INFORMATION_SCHEMA.TABLES \n" +
"WHERE TABLE_SCHEMA = '" + targetSchema + "' \n" +
" AND TABLE_NAME = '" + targetTable + "'";
location = 2100;
Statement stmt = conn.createStatement();
location = 2200;
ResultSet rs = stmt.executeQuery(strSQL);
location = 2307;
while (rs.next())
{
if (rs.getInt(1) > 0)
found = true;
}
location = 2400;
if (!(found))
{
String tableDDL = CommonDB.getGPTableDDL(sourceType, sourceServer, sourceInstance, sourcePort, sourceDatabase, sourceSchema, sourceTable, sourceUser, sourcePass, targetSchema, targetTable, targetAppendOnly, targetCompressed, targetRowOrientation);
if (debug)
Logger.printMsg("Table DDL: " + tableDDL);
location = 2800;
stmt.executeUpdate(tableDDL);
}
location = 3000;
return found;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static String getReplTableName(String sourceType, String sourceTable) throws SQLException
{
String method = "getReplTableName";
int location = 1000;
try
{
location = 2000;
String tableSuffix = "_OS";
int suffixLength = tableSuffix.length();
int maxLength = 0;
String replSourceTable = sourceTable + tableSuffix;
if (sourceType.equals("oracle"))
{
//max length for Oracle is 30 bytes
//triggers created are t_<tablename><suffix>_aiud which add 7 characters
//make the max length 23 + suffix so that this output can be used for triggers too
maxLength = 23 - suffixLength;
} else if (sourceType.equals("sqlserver"))
{
//max length for SQL Server is 128 characters
//triggers created are t_<tablename><suffix>_i which add 4 characters
//make the max length 124 + suffix so that this output can be used for triggers too
maxLength = 124 - suffixLength;
}
if (sourceTable.length() > maxLength)
{
replSourceTable = sourceTable.substring(0, maxLength) + tableSuffix;
}
return replSourceTable;
}
catch (Exception ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void createReplExternalTable(Connection conn, String osServer, String refreshType, String targetSchema, String targetTable, String sourceType, String sourceTable, String maxId, int queueId, int jobPort) throws SQLException
{
String method = "createReplExternalTable";
int location = 1000;
try
{
location = 2000;
String replTargetSchema = externalSchema;
location = 2100;
String replTargetTable = getStageTableName(targetSchema, targetTable);
location = 2200;
String replSourceTable = getReplTableName(sourceType, sourceTable);
location = 2308;
createExternalTable(conn, osServer, refreshType, replSourceTable, replTargetSchema, replTargetTable, maxId, queueId, jobPort);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void createExternalTable(Connection conn, String osServer, String refreshType, String sourceTable, String targetSchema, String targetTable, String maxId, int queueId, int jobPort) throws SQLException
{
String method = "createExternalTable";
int location = 1000;
try
{
location = 2000;
String externalTable = getExternalTableName(targetSchema, targetTable);
location = 2100;
Statement stmt = conn.createStatement();
String createSQL = "CREATE EXTERNAL TABLE \"" + externalSchema + "\".\"" + externalTable + "\" \n (";
location = 2309;
String strSQL = "SELECT c.column_name, \n" +
" CASE WHEN c.data_type = 'character' THEN c.data_type || '(' || c.character_maximum_length || ')' ELSE c.data_type END AS data_type \n" +
"FROM INFORMATION_SCHEMA.COLUMNS c \n" +
"WHERE table_schema = '" + targetSchema + "' \n" +
" AND table_name = '" + targetTable + "' \n" +
"ORDER BY ordinal_position";
location = 2400;
ResultSet rs = stmt.executeQuery(strSQL);
location = 2500;
while (rs.next())
{
location = 2600;
if (rs.getRow() == 1)
{
location = 2700;
createSQL = createSQL + "\"" + rs.getString(1) + "\" " + rs.getString(2);
}
else
{
location = 2800;
createSQL = createSQL + ", \n \"" + rs.getString(1) + "\" " + rs.getString(2);
}
}
location = 2900;
createSQL = createSQL + ") \n";
////////////////////////////////////////////
//Create location for External Table
////////////////////////////////////////////
location = 3000;
//replace space in the maxId because this could now be a date
maxId = maxId.replace(" ", "SPACE");
location = 3100;
String extLocation = "LOCATION ('gpfdist://" + osServer + ":" + jobPort +
"/config.properties+" + queueId + "+" + maxId + "+" + refreshType + "+" + sourceTable + "#transform=externaldata" + "')";
location = 3400;
extLocation = extLocation + "\n" + "FORMAT 'TEXT' (delimiter '|' null 'null')";
////////////////////////////////////////////
//Add createSQL with Java Command to exec.
////////////////////////////////////////////
location = 3500;
createSQL = createSQL + extLocation;
////////////////////////////////////////////
//Create new external web table
////////////////////////////////////////////
location = 4000;
if (debug)
Logger.printMsg("Creating External Table: " + createSQL);
stmt.executeUpdate(createSQL);
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
catch (Exception e)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + e.getMessage() + ")");
}
}
private static String getExternalTableName(String targetSchema, String targetTable) throws SQLException
{
String method = "getExternalTableName";
int location = 1000;
try
{
location = 2000;
String returnString = targetSchema + "_" + targetTable;
return returnString;
}
catch (Exception ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
private static String getArchTableName(String targetSchema, String targetTable) throws SQLException
{
String method = "getArchTableName";
int location = 1000;
try
{
location = 2000;
String returnString = targetSchema + "_" + targetTable + "_arch";;
return returnString;
}
catch (Exception ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
private static String getStageTableName(String targetSchema, String targetTable) throws SQLException
{
String method = "getStageTableName";
int location = 1000;
try
{
location = 2000;
String returnString = targetSchema + "_" + targetTable + "_stage";;
return returnString;
}
catch (Exception ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static boolean checkStageTable(Connection conn, String targetSchema, String targetTable) throws SQLException
{
String method = "checkStageTable";
int location = 1000;
try
{
location = 2000;
boolean found = false;
String stageTable = getStageTableName(targetSchema, targetTable);
location = 2100;
String strSQL = "SELECT NULL \n" +
"FROM INFORMATION_SCHEMA.TABLES \n" +
"WHERE table_schema = '" + externalSchema + "' \n" +
" AND table_name = '" + stageTable + "'";
if (debug)
Logger.printMsg("Executing sql: " + strSQL);
location = 2200;
Statement stmt = conn.createStatement();
location = 2310;
ResultSet rs = stmt.executeQuery(strSQL);
location = 2400;
while (rs.next())
{
found = true;
}
location = 2500;
return found;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static boolean checkArchTable(Connection conn, String targetSchema, String targetTable) throws SQLException
{
String method = "checkArchTable";
int location = 1000;
try
{
location = 2000;
boolean found = false;
String archTable = getArchTableName(targetSchema, targetTable);
location = 2100;
String strSQL = "SELECT NULL \n" +
"FROM INFORMATION_SCHEMA.TABLES \n" +
"WHERE table_schema = '" + externalSchema + "' \n" +
" AND table_name = '" + archTable + "'";
if (debug)
Logger.printMsg("Executing sql: " + strSQL);
location = 2200;
Statement stmt = conn.createStatement();
location = 2311;
ResultSet rs = stmt.executeQuery(strSQL);
location = 2400;
while (rs.next())
{
found = true;
}
location = 2500;
return found;
}
catch (SQLException ex)
{
throw new SQLException("(" + myclass + ":" + method + ":" + location + ":" + ex.getMessage() + ")");
}
}
public static void setupReplicationTables(Connection conn, String targetSchema, String targetTable, String columnName) throws SQLException
{
String method = "setupReplicationTables";
int location = 1000;
try
{
location = 2000;
String archTable = getArchTableName(targetSchema, targetTable);
location = 2100;
String stageTable = getStageTableName(targetSchema, targetTable);
location = 2200;
String strSQL = "SELECT os.fn_replication_setup('" + targetSchema + "', '" + targetTable + "', '" +
externalSchema + "', '" + stageTable + "', '" + archTable + "', '" + columnName + "')";
location = 2312;
Statement stmt = conn.createStatement();
location = 2400;
stmt.executeQuery(strSQL);
}
catch (SQLException ex)