Hi,
I have a requirement to import excel file (csv/xlsx/xls) data into Progress Openegde 10.2B database. Is there any SQL query to do this in one go, similar to mysql query "Load Data Infile"?
Please suggest.
you can read csv files with just a repeat and import statements.
you can easily read xlsx files with the xml parser but there are lots of command line tools like xlsx2csv etc.
to read an xls file you can use a "headless" (no ui) version of openoffice/libreoffice from the command line to convert to csv.
hth
Hi Alon,
Thanks for the response.
My application is not using "ABL" code or queries. I have an idea on how to read excel files.
I want to know if there is any SQL command to import the file directly into progress database. Like "load data infile" SQL command in mysql.