I am using Access 2007 and I wish to export my data into a text file with a \'.\' separator. I don\'t seem to have any luck finding an answer so I wondering if it were possi
Working with a schema.ini file
In MS Access
Sub TransferData()
'Assuming file exits
Kill "z:\docs\export.txt"
CurrentDb.Execute "select * into [text;database=z:\docs\].[export.txt] from table1"
End Sub
The Schema.ini file, which must be in the directory that is used for the export:
[export.txt]
Format=Delimited(.)
DecimalSymbol=,
More information: Schema.ini