importing file with header

2011-03-18 Thread Patrick Meyer
Is it possible to import data via SYSCS_UTIL.SYSCS_IMPORT_DATA when the first row of data is a header that contains column names? For example the data are orgnized like this: name,age,weight bob,17,150 sue,18,120 If not, does anyone know a workaround? I have large data files and the

Re: importing file with header

2011-03-18 Thread Bryan Pendleton
Is it possible to import data via SYSCS_UTIL.SYSCS_IMPORT_DATA when the first row of data is a header that contains column names? For example the data are orgnized like this: name,age,weight bob,17,150 sue,18,120 If not, does anyone know a workaround? I've always just stripped off that first

Re: importing file with header

2011-03-18 Thread Patrick Meyer
I suppose not, but I was hoping to avoid having to read the whole file and write a new one before the import. Do you have any ways of easily and quickly removing the first line? Thanks On Fri, Mar 18, 2011 at 10:02 PM, Bryan Pendleton bpendleton.de...@gmail.com wrote: Is it possible to import