$ 0 0 #1: Yes, but you don't create the error tables, this is done automatically by the tool. You just might change their default names. #2: MLoad: aquisition phase -> ET-table and application phase -> UV-table #3: BTEQ :-) Both MLoad and FastLoad need to create additional tables (error/work/log-tables), but FastLoad should aways be faster. #4: BTEQ: .IMPORT ... SKIP 20 .REPEAT 60 FastLoad: .RECORD 20 THRU 80 MLoad: .IMPORT .... FROM 20 THRU 80 (or FROM 20 FOR 60) Dieter
#1: Yes, but you don't create the error tables, this is done automatically by the tool.
You just might change their default names.
#2: MLoad: aquisition phase -> ET-table and application phase -> UV-table
#3: BTEQ :-)
Both MLoad and FastLoad need to create additional tables (error/work/log-tables), but FastLoad should aways be faster.
#4: BTEQ:
.IMPORT ... SKIP 20
.REPEAT 60
FastLoad:
.RECORD 20 THRU 80
MLoad:
.IMPORT .... FROM 20 THRU 80 (or FROM 20 FOR 60)
Dieter