ciao a tutti
non capisco cosa fa dummy filler con sql loader
esempio per il caricamento di un xml
codice:
load data
  infile * "str '</contact>'" 
INSERT
 into table address_book
TRUNCATE
      FIELDS(
             dummy1 filler char(2000) terminated by "<contact>",
             contact_name char(2000) enclosed by "<contact_name>" and "</contact_name>",
             address char(2000) enclosed by "<address>" and "</address>",
             dummy2 filler char(2000) terminated by "</start>"
            )
BEGINDATA
dummy1 significa ignora tutto quello che incontri fino al tag contact?

grazie