-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.txt
18287 lines (17701 loc) · 757 KB
/
README.txt
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
##
##csvextractor32.exe -h ALL
----------------------------------------------------------------------
#FreeUkraine #SaveUkraine #StopRussia #PutinKhuilo #CrimeaIsUkraine
----------------------------------------------------------------------
CSV*Extractor PRO (v1.23.9, beta, 2014/12/04 11:18:35) [32bit]
Copyright (c): 2014 Alex Buzunov, All rigts reserved.
Agreement: Use this tool at your own risk. Author is not liable for any damages or losses related to the use of this software.
----------------------------------------------------------------------
--USE CASES--
1. DB2AdvancedEnterpriseServer_to_CSV. 37 use cases.
2. MySQL_to_CSV. 37 use cases.
3. SAPSybaseASE_to_CSV. 25 use cases.
4. MariaDB_to_CSV. 37 use cases.
5. SQLLite_to_CSV. 14 use cases.
6. DB2AdvancedWorkgroupServer_to_CSV. 37 use cases.
7. SQLServerEnterprise_to_CSV. 31 use cases.
8. SybaseSQLAnywhere_to_CSV. 14 use cases.
9. DB2WorkgroupServer_to_CSV. 37 use cases.
10. PostgreSQL_to_CSV. 31 use cases.
11. DB2DeveloperEdition_to_CSV. 37 use cases.
12. DB2Express_to_CSV. 37 use cases.
13. Oracle_to_CSV. 35 use cases.
14. DB2EnterpriseServer_to_CSV. 37 use cases.
15. SQLServerExpress_to_CSV. 23 use cases.
16. InformixIDS_to_CSV. 29 use cases.
17. DB2ExpressC_to_CSV. 37 use cases.
18. TimesTen_to_CSV. 27 use cases.
DB2AdvancedEnterpriseServer_to_CSV: 37 use case(s) available:
1. DBTAES_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer sharded partition into CSV Dir location.
2. DBTAES_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2AdvancedEnterpriseServer partition into CSV Default location.
3. DBTAES_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedEnterpriseServer query results into CSV Default location.
4. DBTAES_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Dir location.
5. DBTAES_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2AdvancedEnterpriseServer sharded partition into CSV Dir location.
6. DBTAES_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Dir location.
7. DBTAES_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2AdvancedEnterpriseServer table1 into CSV File location.
8. DBTAES_Table_to_CSV_File - Extract DB2AdvancedEnterpriseServer table1 into CSV File location.
9. DBTAES_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV File location.
10. DBTAES_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedEnterpriseServer query results into CSV File location.
11. DBTAES_Partition_to_CSV_Default - Extract DB2AdvancedEnterpriseServer partition into CSV Default location.
12. DBTAES_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2AdvancedEnterpriseServer partition into CSV File location.
13. DBTAES_Table_to_CSV_Dir - Extract DB2AdvancedEnterpriseServer table1 into CSV Dir location.
14. DBTAES_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer sharded partition into CSV Default location.
15. DBTAES_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2AdvancedEnterpriseServer table1 into CSV Default location.
16. DBTAES_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2AdvancedEnterpriseServer partition into CSV Dir location.
17. DBTAES_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Default location.
18. DBTAES_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Dir location.
19. DBTAES_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer query results into CSV Dir location.
20. DBTAES_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedEnterpriseServer query results into CSV Default location.
21. DBTAES_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer table1 into CSV Dir location.
22. DBTAES_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer query results into CSV Default location.
23. DBTAES_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Default location.
24. DBTAES_Table_to_CSV_Default - Extract DB2AdvancedEnterpriseServer table1 into CSV Default location.
25. DBTAES_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedEnterpriseServer table1 into CSV Default location.
26. DBTAES_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedEnterpriseServer query results into CSV Dir location.
27. DBTAES_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV Default location.
28. DBTAES_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2AdvancedEnterpriseServer table1 into CSV Dir location.
29. DBTAES_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedEnterpriseServer query results into CSV Dir location.
30. DBTAES_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedEnterpriseServer query results into CSV Dir location.
31. DBTAES_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2AdvancedEnterpriseServer table1 into CSV Default location.
32. DBTAES_Partition_to_CSV_File - Extract DB2AdvancedEnterpriseServer partition into CSV File location.
33. DBTAES_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedEnterpriseServer query results into CSV Default location.
34. DBTAES_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2AdvancedEnterpriseServer table1 into CSV Dir location.
35. DBTAES_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedEnterpriseServer query results into CSV File location.
36. DBTAES_Partition_to_CSV_Dir - Extract DB2AdvancedEnterpriseServer partition into CSV Dir location.
37. DBTAES_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2AdvancedEnterpriseServer sharded partition into CSV Default location.
MySQL_to_CSV: 37 use case(s) available:
38. MYSQL_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL sharded partition into CSV Default location.
39. MYSQL_Table_to_CSV_Dir - Extract MySQL table1 into CSV Dir location.
40. MYSQL_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract MySQL query results into CSV Default location.
41. MYSQL_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract MySQL query results into CSV Dir location.
42. MYSQL_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract MySQL query results into CSV Default location.
43. MYSQL_Partition_Limit22_to_CSV_Default - Extract only 22 rows from MySQL partition into CSV Default location.
44. MYSQL_Table_Limit1000_to_CSV_Default - Extract only 1000 rows from MySQL table1 into CSV Default location.
45. MYSQL_Partition_Limit22_to_CSV_File - Extract only 22 rows from MySQL partition into CSV File location.
46. MYSQL_QueryFile_Limit100_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract only 100 rows from MySQL query results into CSV Default location.
47. MYSQL_QueryFile_Limit100_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract only 100 rows from MySQL query results into CSV Dir location.
48. MYSQL_ShardedQuery_to_CSV_Dir - Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL query results into CSV Dir location.
49. MYSQL_Partition_to_CSV_Default - Extract MySQL partition into CSV Default location.
50. MYSQL_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL table1 into CSV Default location.
51. MYSQL_ShardedSubpartition_to_CSV_Dir - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL sharded sub-partition into CSV Dir location.
52. MYSQL_Partition_to_CSV_Dir - Extract MySQL partition into CSV Dir location.
53. MYSQL_Subpartition_to_CSV_Default - Extract MySQL sub-partition into CSV Default location.
54. MYSQL_Subpartition_to_CSV_File - Extract MySQL sub-partition into CSV File location.
55. MYSQL_QueryDir_Limit333_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MySQL query results into CSV File location.
56. MYSQL_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract MySQL query results into CSV File location.
57. MYSQL_QueryDir_Limit333_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MySQL query results into CSV Dir location.
58. MYSQL_QueryFile_Limit100_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mysql_query.sql".
Extract only 100 rows from MySQL query results into CSV File location.
59. MYSQL_QueryDir_Limit333_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MySQL query results into CSV Default location.
60. MYSQL_ShardedSubpartition_to_CSV_Default - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL sharded sub-partition into CSV Default location.
61. MYSQL_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract MySQL query results into CSV Dir location.
62. MYSQL_Subpartition_Limit33_to_CSV_Dir - Extract only 33 rows from MySQL sub-partition into CSV Dir location.
63. MYSQL_ShardedQuery_to_CSV_Default - Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL query results into CSV Default location.
64. MYSQL_Table_Limit1000_to_CSV_File - Extract only 1000 rows from MySQL table1 into CSV File location.
65. MYSQL_Partition_Limit22_to_CSV_Dir - Extract only 22 rows from MySQL partition into CSV Dir location.
66. MYSQL_Table_Limit1000_to_CSV_Dir - Extract only 1000 rows from MySQL table1 into CSV Dir location.
67. MYSQL_Subpartition_Limit33_to_CSV_Default - Extract only 33 rows from MySQL sub-partition into CSV Default location.
68. MYSQL_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL sharded partition into CSV Dir location.
69. MYSQL_Subpartition_Limit33_to_CSV_File - Extract only 33 rows from MySQL sub-partition into CSV File location.
70. MYSQL_Partition_to_CSV_File - Extract MySQL partition into CSV File location.
71. MYSQL_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MySQL table1 into CSV Dir location.
72. MYSQL_Table_to_CSV_File - Extract MySQL table1 into CSV File location.
73. MYSQL_Subpartition_to_CSV_Dir - Extract MySQL sub-partition into CSV Dir location.
74. MYSQL_Table_to_CSV_Default - Extract MySQL table1 into CSV Default location.
SAPSybaseASE_to_CSV: 25 use case(s) available:
75. SYASE_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SAPSybaseASE query results into CSV Default location.
76. SYASE_Table_to_CSV_Default - Extract SAPSybaseASE table1 into CSV Default location.
77. SYASE_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SAPSybaseASE query results into CSV File location.
78. SYASE_Table_Limit22_to_CSV_Default - Extract only 22 rows from SAPSybaseASE table1 into CSV Default location.
79. SYASE_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SAPSybaseASE table1 into CSV Default location.
80. SYASE_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract only 10 rows from SAPSybaseASE query results into CSV Default location.
81. SYASE_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract only 10 rows from SAPSybaseASE query results into CSV Dir location.
82. SYASE_Table_Limit22_to_CSV_Dir - Extract only 22 rows from SAPSybaseASE table1 into CSV Dir location.
83. SYASE_QueryDir_Limit15_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract only 15 rows from SAPSybaseASE query results into CSV Dir location.
84. SYASE_QueryDir_Limit15_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract only 15 rows from SAPSybaseASE query results into CSV Default location.
85. SYASE_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "-1".
Extract SAPSybaseASE query results into CSV Dir location.
86. SYASE_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract SAPSybaseASE query results into CSV Dir location.
87. SYASE_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SAPSybaseASE query results into CSV Default location.
88. SYASE_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "-1".
Extract SAPSybaseASE query results into CSV Default location.
89. SYASE_Table_to_CSV_File - Extract SAPSybaseASE table1 into CSV File location.
90. SYASE_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SAPSybaseASE query results into CSV Dir location.
91. SYASE_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract only 10 rows from SAPSybaseASE query results into CSV File location.
92. SYASE_QueryDir_Limit15_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract only 15 rows from SAPSybaseASE query results into CSV File location.
93. SYASE_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract SAPSybaseASE query results into CSV Default location.
94. SYASE_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SAPSybaseASE table1 into CSV Dir location.
95. SYASE_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SAPSybaseASE query results into CSV Dir location.
96. SYASE_ParallelQueryDir_Limit14_to_CSV_Dir - Read each SQL query file from a directory "-1".
Extract only 14 rows from SAPSybaseASE query results into CSV Dir location.
97. SYASE_ParallelQueryDir_Limit14_to_CSV_Default - Read each SQL query file from a directory "-1".
Extract only 14 rows from SAPSybaseASE query results into CSV Default location.
98. SYASE_Table_to_CSV_Dir - Extract SAPSybaseASE table1 into CSV Dir location.
99. SYASE_Table_Limit22_to_CSV_File - Extract only 22 rows from SAPSybaseASE table1 into CSV File location.
MariaDB_to_CSV: 37 use case(s) available:
100. MARIA_Partition_to_CSV_File - Extract MariaDB partition into CSV File location.
101. MARIA_QueryFile_Limit100_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract only 100 rows from MariaDB query results into CSV Dir location.
102. MARIA_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB sharded partition into CSV Dir location.
103. MARIA_Subpartition_Limit33_to_CSV_File - Extract only 33 rows from MariaDB sub-partition into CSV File location.
104. MARIA_Subpartition_Limit33_to_CSV_Default - Extract only 33 rows from MariaDB sub-partition into CSV Default location.
105. MARIA_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract MariaDB query results into CSV Dir location.
106. MARIA_Table_Limit1000_to_CSV_File - Extract only 1000 rows from MariaDB table1 into CSV File location.
107. MARIA_Partition_Limit22_to_CSV_File - Extract only 22 rows from MariaDB partition into CSV File location.
108. MARIA_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract MariaDB query results into CSV Default location.
109. MARIA_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract MariaDB query results into CSV Dir location.
110. MARIA_Table_to_CSV_File - Extract MariaDB table1 into CSV File location.
111. MARIA_Partition_to_CSV_Default - Extract MariaDB partition into CSV Default location.
112. MARIA_Table_Limit1000_to_CSV_Default - Extract only 1000 rows from MariaDB table1 into CSV Default location.
113. MARIA_QueryDir_Limit333_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MariaDB query results into CSV File location.
114. MARIA_Subpartition_to_CSV_Dir - Extract MariaDB sub-partition into CSV Dir location.
115. MARIA_Table_to_CSV_Default - Extract MariaDB table1 into CSV Default location.
116. MARIA_Subpartition_to_CSV_File - Extract MariaDB sub-partition into CSV File location.
117. MARIA_Table_Limit1000_to_CSV_Dir - Extract only 1000 rows from MariaDB table1 into CSV Dir location.
118. MARIA_QueryFile_Limit100_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract only 100 rows from MariaDB query results into CSV Default location.
119. MARIA_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract MariaDB query results into CSV File location.
120. MARIA_ShardedQuery_to_CSV_Default - Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB query results into CSV Default location.
121. MARIA_QueryDir_Limit333_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MariaDB query results into CSV Default location.
122. MARIA_QueryFile_Limit100_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract only 100 rows from MariaDB query results into CSV File location.
123. MARIA_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB sharded partition into CSV Default location.
124. MARIA_Partition_Limit22_to_CSV_Default - Extract only 22 rows from MariaDB partition into CSV Default location.
125. MARIA_ShardedQuery_to_CSV_Dir - Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB query results into CSV Dir location.
126. MARIA_Table_to_CSV_Dir - Extract MariaDB table1 into CSV Dir location.
127. MARIA_Subpartition_Limit33_to_CSV_Dir - Extract only 33 rows from MariaDB sub-partition into CSV Dir location.
128. MARIA_Partition_to_CSV_Dir - Extract MariaDB partition into CSV Dir location.
129. MARIA_Partition_Limit22_to_CSV_Dir - Extract only 22 rows from MariaDB partition into CSV Dir location.
130. MARIA_Subpartition_to_CSV_Default - Extract MariaDB sub-partition into CSV Default location.
131. MARIA_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\mariadb_query.sql".
Extract MariaDB query results into CSV Default location.
132. MARIA_ShardedSubpartition_to_CSV_Default - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB sharded sub-partition into CSV Default location.
133. MARIA_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB table1 into CSV Default location.
134. MARIA_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB table1 into CSV Dir location.
135. MARIA_QueryDir_Limit333_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_mysql".
Extract only 333 rows from MariaDB query results into CSV Dir location.
136. MARIA_ShardedSubpartition_to_CSV_Dir - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract MariaDB sharded sub-partition into CSV Dir location.
SQLLite_to_CSV: 14 use case(s) available:
137. SLITE_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sqllite_query.sql".
Extract SQLLite query results into CSV File location.
138. SLITE_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sqllite_query.sql".
Extract SQLLite query results into CSV Dir location.
139. SLITE_Table_to_CSV_File - Extract SQLLite table1 into CSV File location.
140. SLITE_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLLite table1 into CSV Dir location.
141. SLITE_Table_to_CSV_Default - Extract SQLLite table1 into CSV Default location.
142. SLITE_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sqllite_query.sql".
Extract SQLLite query results into CSV Default location.
143. SLITE_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sqllite_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLLite query results into CSV Dir location.
144. SLITE_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_slite".
Extract SQLLite query results into CSV Default location.
145. SLITE_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sqllite_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLLite query results into CSV Default location.
146. SLITE_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_slite".
Extract SQLLite query results into CSV Dir location.
147. SLITE_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLLite table1 into CSV Default location.
148. SLITE_Table_to_CSV_Dir - Extract SQLLite table1 into CSV Dir location.
149. SLITE_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_slite".
Extract SQLLite query results into CSV Dir location.
150. SLITE_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_slite".
Extract SQLLite query results into CSV Default location.
DB2AdvancedWorkgroupServer_to_CSV: 37 use case(s) available:
151. DBTAWS_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Default location.
152. DBTAWS_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Dir location.
153. DBTAWS_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2AdvancedWorkgroupServer table1 into CSV Default location.
154. DBTAWS_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer table1 into CSV Dir location.
155. DBTAWS_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Dir location.
156. DBTAWS_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer sharded partition into CSV Dir location.
157. DBTAWS_Table_to_CSV_Default - Extract DB2AdvancedWorkgroupServer table1 into CSV Default location.
158. DBTAWS_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Default location.
159. DBTAWS_Table_to_CSV_File - Extract DB2AdvancedWorkgroupServer table1 into CSV File location.
160. DBTAWS_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2AdvancedWorkgroupServer table1 into CSV Default location.
161. DBTAWS_Partition_to_CSV_Default - Extract DB2AdvancedWorkgroupServer partition into CSV Default location.
162. DBTAWS_Table_to_CSV_Dir - Extract DB2AdvancedWorkgroupServer table1 into CSV Dir location.
163. DBTAWS_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Default location.
164. DBTAWS_Partition_to_CSV_File - Extract DB2AdvancedWorkgroupServer partition into CSV File location.
165. DBTAWS_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer sharded partition into CSV Default location.
166. DBTAWS_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV File location.
167. DBTAWS_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2AdvancedWorkgroupServer sharded partition into CSV Default location.
168. DBTAWS_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2AdvancedWorkgroupServer partition into CSV File location.
169. DBTAWS_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedWorkgroupServer query results into CSV Default location.
170. DBTAWS_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2AdvancedWorkgroupServer table1 into CSV Dir location.
171. DBTAWS_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2AdvancedWorkgroupServer partition into CSV Default location.
172. DBTAWS_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV File location.
173. DBTAWS_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2AdvancedWorkgroupServer table1 into CSV File location.
174. DBTAWS_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedWorkgroupServer query results into CSV Dir location.
175. DBTAWS_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer query results into CSV Dir location.
176. DBTAWS_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedWorkgroupServer query results into CSV Dir location.
177. DBTAWS_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2AdvancedWorkgroupServer query results into CSV Dir location.
178. DBTAWS_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedWorkgroupServer query results into CSV File location.
179. DBTAWS_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2AdvancedWorkgroupServer partition into CSV Dir location.
180. DBTAWS_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2AdvancedWorkgroupServer table1 into CSV Dir location.
181. DBTAWS_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2AdvancedWorkgroupServer sharded partition into CSV Dir location.
182. DBTAWS_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2AdvancedWorkgroupServer query results into CSV Dir location.
183. DBTAWS_Partition_to_CSV_Dir - Extract DB2AdvancedWorkgroupServer partition into CSV Dir location.
184. DBTAWS_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedWorkgroupServer query results into CSV Default location.
185. DBTAWS_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2AdvancedWorkgroupServer query results into CSV Default location.
186. DBTAWS_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer query results into CSV Default location.
187. DBTAWS_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2AdvancedWorkgroupServer table1 into CSV Default location.
SQLServerEnterprise_to_CSV: 31 use case(s) available:
188. SSENT_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise query results into CSV Dir location.
189. SSENT_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise sharded partition into CSV Default location.
190. SSENT_Table_to_CSV_Default - Extract SQLServerEnterprise table1 into CSV Default location.
191. SSENT_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract SQLServerEnterprise query results into CSV Dir location.
192. SSENT_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract SQLServerEnterprise query results into CSV Default location.
193. SSENT_Table_Limit10_to_CSV_Dir - Extract only 10 rows from SQLServerEnterprise table1 into CSV Dir location.
194. SSENT_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerEnterprise query results into CSV Default location.
195. SSENT_Partition_to_CSV_Dir - Extract SQLServerEnterprise partition into CSV Dir location.
196. SSENT_QueryDir_Limit25_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerEnterprise query results into CSV Dir location.
197. SSENT_Partition_Limit20_to_CSV_Default - Extract only 20 rows from SQLServerEnterprise partition into CSV Default location.
198. SSENT_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise table1 into CSV Default location.
199. SSENT_ShardedTable_Limit50_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from SQLServerEnterprise table1 into CSV Dir location.
200. SSENT_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise query results into CSV Default location.
201. SSENT_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise sharded partition into CSV Dir location.
202. SSENT_QueryDir_Limit25_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerEnterprise query results into CSV File location.
203. SSENT_Table_to_CSV_Dir - Extract SQLServerEnterprise table1 into CSV Dir location.
204. SSENT_QueryFile_Limit15_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerEnterprise query results into CSV Dir location.
205. SSENT_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerEnterprise table1 into CSV Dir location.
206. SSENT_Partition_to_CSV_Default - Extract SQLServerEnterprise partition into CSV Default location.
207. SSENT_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerEnterprise query results into CSV Dir location.
208. SSENT_Table_to_CSV_File - Extract SQLServerEnterprise table1 into CSV File location.
209. SSENT_QueryDir_Limit25_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerEnterprise query results into CSV Default location.
210. SSENT_Table_Limit10_to_CSV_Default - Extract only 10 rows from SQLServerEnterprise table1 into CSV Default location.
211. SSENT_QueryFile_Limit15_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerEnterprise query results into CSV Default location.
212. SSENT_QueryFile_Limit15_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerEnterprise query results into CSV File location.
213. SSENT_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerEnterprise query results into CSV File location.
214. SSENT_Partition_Limit20_to_CSV_Dir - Extract only 20 rows from SQLServerEnterprise partition into CSV Dir location.
215. SSENT_Table_Limit10_to_CSV_File - Extract only 10 rows from SQLServerEnterprise table1 into CSV File location.
216. SSENT_Partition_to_CSV_File - Extract SQLServerEnterprise partition into CSV File location.
217. SSENT_ShardedTable_Limit50_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from SQLServerEnterprise table1 into CSV Default location.
218. SSENT_Partition_Limit20_to_CSV_File - Extract only 20 rows from SQLServerEnterprise partition into CSV File location.
SybaseSQLAnywhere_to_CSV: 14 use case(s) available:
219. SYANY_Table_to_CSV_Default - Extract SybaseSQLAnywhere table1 into CSV Default location.
220. SYANY_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SybaseSQLAnywhere query results into CSV Dir location.
221. SYANY_Table_to_CSV_File - Extract SybaseSQLAnywhere table1 into CSV File location.
222. SYANY_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SybaseSQLAnywhere query results into CSV Default location.
223. SYANY_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Extract SybaseSQLAnywhere query results into CSV File location.
224. SYANY_Table_to_CSV_Dir - Extract SybaseSQLAnywhere table1 into CSV Dir location.
225. SYANY_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "-1".
Extract SybaseSQLAnywhere query results into CSV Default location.
226. SYANY_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SybaseSQLAnywhere table1 into CSV Default location.
227. SYANY_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SybaseSQLAnywhere query results into CSV Default location.
228. SYANY_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SybaseSQLAnywhere table1 into CSV Dir location.
229. SYANY_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\sybase_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SybaseSQLAnywhere query results into CSV Dir location.
230. SYANY_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract SybaseSQLAnywhere query results into CSV Dir location.
231. SYANY_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_sy".
Extract SybaseSQLAnywhere query results into CSV Default location.
232. SYANY_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "-1".
Extract SybaseSQLAnywhere query results into CSV Dir location.
DB2WorkgroupServer_to_CSV: 37 use case(s) available:
233. DBTWS_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Dir location.
234. DBTWS_Partition_to_CSV_Dir - Extract DB2WorkgroupServer partition into CSV Dir location.
235. DBTWS_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2WorkgroupServer query results into CSV Default location.
236. DBTWS_Table_to_CSV_File - Extract DB2WorkgroupServer table1 into CSV File location.
237. DBTWS_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2WorkgroupServer table1 into CSV Dir location.
238. DBTWS_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2WorkgroupServer query results into CSV Dir location.
239. DBTWS_Table_to_CSV_Dir - Extract DB2WorkgroupServer table1 into CSV Dir location.
240. DBTWS_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2WorkgroupServer sharded partition into CSV Dir location.
241. DBTWS_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2WorkgroupServer sharded partition into CSV Default location.
242. DBTWS_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer table1 into CSV Dir location.
243. DBTWS_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2WorkgroupServer query results into CSV Default location.
244. DBTWS_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Default location.
245. DBTWS_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer query results into CSV Dir location.
246. DBTWS_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Default location.
247. DBTWS_Table_to_CSV_Default - Extract DB2WorkgroupServer table1 into CSV Default location.
248. DBTWS_Partition_to_CSV_Default - Extract DB2WorkgroupServer partition into CSV Default location.
249. DBTWS_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer query results into CSV Default location.
250. DBTWS_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Dir location.
251. DBTWS_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer sharded partition into CSV Dir location.
252. DBTWS_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer table1 into CSV Default location.
253. DBTWS_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2WorkgroupServer partition into CSV Dir location.
254. DBTWS_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2WorkgroupServer table1 into CSV File location.
255. DBTWS_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2WorkgroupServer query results into CSV File location.
256. DBTWS_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2WorkgroupServer query results into CSV File location.
257. DBTWS_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2WorkgroupServer query results into CSV File location.
258. DBTWS_Partition_to_CSV_File - Extract DB2WorkgroupServer partition into CSV File location.
259. DBTWS_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2WorkgroupServer partition into CSV Default location.
260. DBTWS_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2WorkgroupServer table1 into CSV Default location.
261. DBTWS_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2WorkgroupServer table1 into CSV Default location.
262. DBTWS_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2WorkgroupServer query results into CSV Dir location.
263. DBTWS_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2WorkgroupServer query results into CSV Dir location.
264. DBTWS_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2WorkgroupServer sharded partition into CSV Default location.
265. DBTWS_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2WorkgroupServer partition into CSV File location.
266. DBTWS_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2WorkgroupServer query results into CSV Default location.
267. DBTWS_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Dir location.
268. DBTWS_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2WorkgroupServer query results into CSV Default location.
269. DBTWS_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2WorkgroupServer table1 into CSV Dir location.
PostgreSQL_to_CSV: 31 use case(s) available:
270. PGRES_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract PostgreSQL query results into CSV Dir location.
271. PGRES_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract PostgreSQL query results into CSV Dir location.
272. PGRES_QueryFile_Limit11_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract only 11 rows from PostgreSQL query results into CSV Default location.
273. PGRES_Partition_to_CSV_Dir - Extract PostgreSQL partition into CSV Dir location.
274. PGRES_Table_to_CSV_Dir - Extract PostgreSQL table1 into CSV Dir location.
275. PGRES_QueryDir_Limit12_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract only 12 rows from PostgreSQL query results into CSV Default location.
276. PGRES_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL query results into CSV Default location.
277. PGRES_Partition_to_CSV_File - Extract PostgreSQL partition into CSV File location.
278. PGRES_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL sharded partition into CSV Dir location.
279. PGRES_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract PostgreSQL query results into CSV Default location.
280. PGRES_Table_Limit15_to_CSV_Default - Extract only 15 rows from PostgreSQL table1 into CSV Default location.
281. PGRES_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract PostgreSQL query results into CSV Default location.
282. PGRES_Table_to_CSV_Default - Extract PostgreSQL table1 into CSV Default location.
283. PGRES_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL table1 into CSV Dir location.
284. PGRES_Partition_Limit33_to_CSV_File - Extract only 33 rows from PostgreSQL partition into CSV File location.
285. PGRES_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL query results into CSV Dir location.
286. PGRES_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract PostgreSQL query results into CSV Default location.
287. PGRES_Table_Limit15_to_CSV_Dir - Extract only 15 rows from PostgreSQL table1 into CSV Dir location.
288. PGRES_Table_Limit15_to_CSV_File - Extract only 15 rows from PostgreSQL table1 into CSV File location.
289. PGRES_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL table1 into CSV Default location.
290. PGRES_QueryDir_Limit12_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract only 12 rows from PostgreSQL query results into CSV Dir location.
291. PGRES_Table_to_CSV_File - Extract PostgreSQL table1 into CSV File location.
292. PGRES_Partition_Limit33_to_CSV_Dir - Extract only 33 rows from PostgreSQL partition into CSV Dir location.
293. PGRES_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract PostgreSQL sharded partition into CSV Default location.
294. PGRES_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract PostgreSQL query results into CSV File location.
295. PGRES_QueryDir_Limit12_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_pgres".
Extract only 12 rows from PostgreSQL query results into CSV File location.
296. PGRES_QueryFile_Limit11_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract only 11 rows from PostgreSQL query results into CSV Dir location.
297. PGRES_Partition_to_CSV_Default - Extract PostgreSQL partition into CSV Default location.
298. PGRES_Partition_Limit33_to_CSV_Default - Extract only 33 rows from PostgreSQL partition into CSV Default location.
299. PGRES_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract PostgreSQL query results into CSV Dir location.
300. PGRES_QueryFile_Limit11_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\postgre_query.sql".
Extract only 11 rows from PostgreSQL query results into CSV File location.
DB2DeveloperEdition_to_CSV: 37 use case(s) available:
301. DBTDE_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2DeveloperEdition query results into CSV Default location.
302. DBTDE_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition table1 into CSV Dir location.
303. DBTDE_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Dir location.
304. DBTDE_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2DeveloperEdition partition into CSV File location.
305. DBTDE_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Dir location.
306. DBTDE_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Default location.
307. DBTDE_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2DeveloperEdition sharded partition into CSV Dir location.
308. DBTDE_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2DeveloperEdition query results into CSV Dir location.
309. DBTDE_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2DeveloperEdition table1 into CSV File location.
310. DBTDE_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2DeveloperEdition query results into CSV Dir location.
311. DBTDE_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2DeveloperEdition query results into CSV Dir location.
312. DBTDE_Partition_to_CSV_Default - Extract DB2DeveloperEdition partition into CSV Default location.
313. DBTDE_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2DeveloperEdition query results into CSV File location.
314. DBTDE_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Default location.
315. DBTDE_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2DeveloperEdition table1 into CSV Dir location.
316. DBTDE_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2DeveloperEdition query results into CSV Default location.
317. DBTDE_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2DeveloperEdition query results into CSV File location.
318. DBTDE_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition sharded partition into CSV Dir location.
319. DBTDE_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition sharded partition into CSV Default location.
320. DBTDE_Partition_to_CSV_File - Extract DB2DeveloperEdition partition into CSV File location.
321. DBTDE_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2DeveloperEdition table1 into CSV Default location.
322. DBTDE_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Default location.
323. DBTDE_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2DeveloperEdition table1 into CSV Dir location.
324. DBTDE_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition query results into CSV Default location.
325. DBTDE_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2DeveloperEdition query results into CSV File location.
326. DBTDE_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition table1 into CSV Default location.
327. DBTDE_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2DeveloperEdition sharded partition into CSV Default location.
328. DBTDE_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2DeveloperEdition table1 into CSV Default location.
329. DBTDE_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2DeveloperEdition query results into CSV Dir location.
330. DBTDE_Table_to_CSV_File - Extract DB2DeveloperEdition table1 into CSV File location.
331. DBTDE_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2DeveloperEdition partition into CSV Dir location.
332. DBTDE_Partition_to_CSV_Dir - Extract DB2DeveloperEdition partition into CSV Dir location.
333. DBTDE_Table_to_CSV_Default - Extract DB2DeveloperEdition table1 into CSV Default location.
334. DBTDE_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2DeveloperEdition partition into CSV Default location.
335. DBTDE_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2DeveloperEdition query results into CSV Default location.
336. DBTDE_Table_to_CSV_Dir - Extract DB2DeveloperEdition table1 into CSV Dir location.
337. DBTDE_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2DeveloperEdition query results into CSV Dir location.
DB2Express_to_CSV: 37 use case(s) available:
338. DBTE_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express query results into CSV Default location.
339. DBTE_Partition_to_CSV_File - Extract DB2Express partition into CSV File location.
340. DBTE_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2Express sharded partition into CSV Default location.
341. DBTE_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2Express table1 into CSV Default location.
342. DBTE_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2Express query results into CSV Dir location.
343. DBTE_Table_to_CSV_File - Extract DB2Express table1 into CSV File location.
344. DBTE_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2Express query results into CSV Default location.
345. DBTE_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2Express partition into CSV Default location.
346. DBTE_Table_to_CSV_Default - Extract DB2Express table1 into CSV Default location.
347. DBTE_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2Express query results into CSV Default location.
348. DBTE_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2Express query results into CSV File location.
349. DBTE_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2Express partition into CSV File location.
350. DBTE_Table_to_CSV_Dir - Extract DB2Express table1 into CSV Dir location.
351. DBTE_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2Express query results into CSV Dir location.
352. DBTE_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2Express query results into CSV Default location.
353. DBTE_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2Express query results into CSV Default location.
354. DBTE_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express table1 into CSV Dir location.
355. DBTE_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2Express query results into CSV Dir location.
356. DBTE_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2Express query results into CSV Dir location.
357. DBTE_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2Express query results into CSV Dir location.
358. DBTE_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2Express query results into CSV Default location.
359. DBTE_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2Express sharded partition into CSV Dir location.
360. DBTE_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2Express table1 into CSV File location.
361. DBTE_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express query results into CSV Dir location.
362. DBTE_Partition_to_CSV_Dir - Extract DB2Express partition into CSV Dir location.
363. DBTE_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2Express query results into CSV Dir location.
364. DBTE_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express sharded partition into CSV Dir location.
365. DBTE_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2Express query results into CSV File location.
366. DBTE_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2Express table1 into CSV Dir location.
367. DBTE_Partition_to_CSV_Default - Extract DB2Express partition into CSV Default location.
368. DBTE_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2Express query results into CSV File location.
369. DBTE_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express sharded partition into CSV Default location.
370. DBTE_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2Express table1 into CSV Default location.
371. DBTE_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2Express table1 into CSV Default location.
372. DBTE_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2Express partition into CSV Dir location.
373. DBTE_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2Express table1 into CSV Dir location.
374. DBTE_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2Express query results into CSV Default location.
Oracle_to_CSV: 35 use case(s) available:
375. ORA_Subpartition_Limit10_to_CSV_Default - Extract only 10 rows from Oracle sub-partition into CSV Default location.
376. ORA_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle sharded partition into CSV Dir location.
377. ORA_Table_Limit10_to_CSV_Dir - Extract only 10 rows from Oracle table1 into CSV Dir location.
378. ORA_Subpartition_to_CSV_Default - Extract Oracle sub-partition into CSV Default location.
379. ORA_Subpartition_to_CSV_Dir - Extract Oracle sub-partition into CSV Dir location.
380. ORA_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ora".
Extract only 10 rows from Oracle query results into CSV Dir location.
381. ORA_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract Oracle query results into CSV File location.
382. ORA_Table_to_CSV_Default - Extract Oracle table1 into CSV Default location.
383. ORA_Subpartition_Limit10_to_CSV_File - Extract only 10 rows from Oracle sub-partition into CSV File location.
384. ORA_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract only 10 rows from Oracle query results into CSV File location.
385. ORA_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract only 10 rows from Oracle query results into CSV Dir location.
386. ORA_Table_Limit10_to_CSV_File - Extract only 10 rows from Oracle table1 into CSV File location.
387. ORA_Partition_Limit10_to_CSV_Default - Extract only 10 rows from Oracle partition into CSV Default location.
388. ORA_ShardedSubpartition_to_CSV_Dir - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle sharded sub-partition into CSV Dir location.
389. ORA_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ora".
Extract Oracle query results into CSV Default location.
390. ORA_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle sharded partition into CSV Default location.
391. ORA_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract Oracle query results into CSV Default location.
392. ORA_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ora".
Extract only 10 rows from Oracle query results into CSV Default location.
393. ORA_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract only 10 rows from Oracle query results into CSV Default location.
394. ORA_Table_to_CSV_File - Extract Oracle table1 into CSV File location.
395. ORA_Partition_to_CSV_File - Extract Oracle partition into CSV File location.
396. ORA_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle table1 into CSV Default location.
397. ORA_Partition_Limit10_to_CSV_File - Extract only 10 rows from Oracle partition into CSV File location.
398. ORA_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle table1 into CSV Dir location.
399. ORA_Subpartition_to_CSV_File - Extract Oracle sub-partition into CSV File location.
400. ORA_Table_to_CSV_Dir - Extract Oracle table1 into CSV Dir location.
401. ORA_Partition_to_CSV_Dir - Extract Oracle partition into CSV Dir location.
402. ORA_Table_Limit10_to_CSV_Default - Extract only 10 rows from Oracle table1 into CSV Default location.
403. ORA_Partition_to_CSV_Default - Extract Oracle partition into CSV Default location.
404. ORA_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\oracle_query.sql".
Extract Oracle query results into CSV Dir location.
405. ORA_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ora".
Extract Oracle query results into CSV Dir location.
406. ORA_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ora".
Extract only 10 rows from Oracle query results into CSV File location.
407. ORA_Subpartition_Limit10_to_CSV_Dir - Extract only 10 rows from Oracle sub-partition into CSV Dir location.
408. ORA_ShardedSubpartition_to_CSV_Default - Break input sharded sub-partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract Oracle sharded sub-partition into CSV Default location.
409. ORA_Partition_Limit10_to_CSV_Dir - Extract only 10 rows from Oracle partition into CSV Dir location.
DB2EnterpriseServer_to_CSV: 37 use case(s) available:
410. DBTES_QueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Dir location.
411. DBTES_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer table1 into CSV Dir location.
412. DBTES_Partition_to_CSV_Dir - Extract DB2EnterpriseServer partition into CSV Dir location.
413. DBTES_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2EnterpriseServer query results into CSV Dir location.
414. DBTES_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2EnterpriseServer query results into CSV Dir location.
415. DBTES_Table_to_CSV_Dir - Extract DB2EnterpriseServer table1 into CSV Dir location.
416. DBTES_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2EnterpriseServer query results into CSV File location.
417. DBTES_ShardedPartition_Limit50_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2EnterpriseServer sharded partition into CSV Dir location.
418. DBTES_Table_Limit20_to_CSV_Dir - Extract only 20 rows from DB2EnterpriseServer table1 into CSV Dir location.
419. DBTES_Table_Limit20_to_CSV_Default - Extract only 20 rows from DB2EnterpriseServer table1 into CSV Default location.
420. DBTES_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer query results into CSV Default location.
421. DBTES_ShardedTable_Limit65_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2EnterpriseServer table1 into CSV Dir location.
422. DBTES_ParallelQueryDir_Limit10_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Dir location.
423. DBTES_Partition_Limit30_to_CSV_File - Extract only 30 rows from DB2EnterpriseServer partition into CSV File location.
424. DBTES_Partition_to_CSV_Default - Extract DB2EnterpriseServer partition into CSV Default location.
425. DBTES_ShardedPartition_to_CSV_Dir - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer sharded partition into CSV Dir location.
426. DBTES_QueryFile_Limit10_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Default location.
427. DBTES_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract DB2EnterpriseServer query results into CSV Default location.
428. DBTES_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2EnterpriseServer query results into CSV Default location.
429. DBTES_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer table1 into CSV Default location.
430. DBTES_ShardedTable_Limit65_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 65 rows from DB2EnterpriseServer table1 into CSV Default location.
431. DBTES_Partition_Limit30_to_CSV_Default - Extract only 30 rows from DB2EnterpriseServer partition into CSV Default location.
432. DBTES_Partition_to_CSV_File - Extract DB2EnterpriseServer partition into CSV File location.
433. DBTES_Table_to_CSV_File - Extract DB2EnterpriseServer table1 into CSV File location.
434. DBTES_QueryDir_Limit10_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2EnterpriseServer query results into CSV File location.
435. DBTES_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer query results into CSV Dir location.
436. DBTES_Partition_Limit30_to_CSV_Dir - Extract only 30 rows from DB2EnterpriseServer partition into CSV Dir location.
437. DBTES_ShardedPartition_Limit50_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from DB2EnterpriseServer sharded partition into CSV Default location.
438. DBTES_ShardedPartition_to_CSV_Default - Break input sharded partition into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract DB2EnterpriseServer sharded partition into CSV Default location.
439. DBTES_QueryFile_Limit10_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Dir location.
440. DBTES_QueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Default location.
441. DBTES_QueryFile_Limit10_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\db2_query.sql".
Extract only 10 rows from DB2EnterpriseServer query results into CSV File location.
442. DBTES_ParallelQueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2EnterpriseServer query results into CSV Dir location.
443. DBTES_Table_to_CSV_Default - Extract DB2EnterpriseServer table1 into CSV Default location.
444. DBTES_Table_Limit20_to_CSV_File - Extract only 20 rows from DB2EnterpriseServer table1 into CSV File location.
445. DBTES_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract DB2EnterpriseServer query results into CSV Default location.
446. DBTES_ParallelQueryDir_Limit10_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_db2".
Extract only 10 rows from DB2EnterpriseServer query results into CSV Default location.
SQLServerExpress_to_CSV: 23 use case(s) available:
447. SSEXP_Table_to_CSV_Default - Extract SQLServerExpress table1 into CSV Default location.
448. SSEXP_ShardedQueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerExpress query results into CSV Dir location.
449. SSEXP_Table_Limit10_to_CSV_File - Extract only 10 rows from SQLServerExpress table1 into CSV File location.
450. SSEXP_QueryFile_Limit15_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerExpress query results into CSV Dir location.
451. SSEXP_ShardedTable_Limit50_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from SQLServerExpress table1 into CSV Dir location.
452. SSEXP_QueryFile_Limit15_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerExpress query results into CSV File location.
453. SSEXP_QueryDir_Limit25_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerExpress query results into CSV File location.
454. SSEXP_QueryDir_Limit25_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerExpress query results into CSV Dir location.
455. SSEXP_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerExpress table1 into CSV Default location.
456. SSEXP_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerExpress query results into CSV Default location.
457. SSEXP_QueryDir_Limit25_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract only 25 rows from SQLServerExpress query results into CSV Default location.
458. SSEXP_Table_to_CSV_Dir - Extract SQLServerExpress table1 into CSV Dir location.
459. SSEXP_ShardedQueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerExpress query results into CSV Default location.
460. SSEXP_QueryFile_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerExpress query results into CSV Dir location.
461. SSEXP_Table_to_CSV_File - Extract SQLServerExpress table1 into CSV File location.
462. SSEXP_QueryDir_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract SQLServerExpress query results into CSV Dir location.
463. SSEXP_Table_Limit10_to_CSV_Default - Extract only 10 rows from SQLServerExpress table1 into CSV Default location.
464. SSEXP_QueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_ss".
Extract SQLServerExpress query results into CSV Default location.
465. SSEXP_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract SQLServerExpress query results into CSV File location.
466. SSEXP_ShardedTable_to_CSV_Dir - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract SQLServerExpress table1 into CSV Dir location.
467. SSEXP_Table_Limit10_to_CSV_Dir - Extract only 10 rows from SQLServerExpress table1 into CSV Dir location.
468. SSEXP_ShardedTable_Limit50_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 50 rows from SQLServerExpress table1 into CSV Default location.
469. SSEXP_QueryFile_Limit15_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\ss_query.sql".
Extract only 15 rows from SQLServerExpress query results into CSV Default location.
InformixIDS_to_CSV: 29 use case(s) available:
470. INFOR_Table_Limit15_to_CSV_Dir - Extract only 15 rows from InformixIDS table1 into CSV Dir location.
471. INFOR_Table_to_CSV_Dir - Extract InformixIDS table1 into CSV Dir location.
472. INFOR_QueryDir_Limit25_to_CSV_File - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_infor".
Extract only 25 rows from InformixIDS query results into CSV File location.
473. INFOR_ParallelQueryDir_to_CSV_Default - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_infor".
Extract InformixIDS query results into CSV Default location.
474. INFOR_ShardedTable_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract InformixIDS table1 into CSV Default location.
475. INFOR_ShardedQueryFile_Limit55_to_CSV_Dir - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\informix_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 55 rows from InformixIDS query results into CSV Dir location.
476. INFOR_Table_Limit15_to_CSV_File - Extract only 15 rows from InformixIDS table1 into CSV File location.
477. INFOR_ShardedTable_Limit66_to_CSV_Default - Break input table1 into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 66 rows from InformixIDS table1 into CSV Default location.
478. INFOR_ParallelQueryDir_Limit30_to_CSV_Dir - Read each SQL query file from a directory "c:\Python27\data_migrator_1239\test\v101\query\query_dir_infor".
Extract only 30 rows from InformixIDS query results into CSV Dir location.
479. INFOR_QueryFile_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\informix_query.sql".
Extract InformixIDS query results into CSV Default location.
480. INFOR_QueryFile_to_CSV_File - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\informix_query.sql".
Extract InformixIDS query results into CSV File location.
481. INFOR_ShardedQueryFile_Limit55_to_CSV_Default - Read SQL from a query file "c:\Python27\data_migrator_1239\test\v101\query\informix_query.sql".
Break input query results into 3 logical shards (-r[--num_of_shards] 3)
and run extract process on each shard in thread pool (-o[--pool_size] 3).
Extract only 55 rows from InformixIDS query results into CSV Default location.