I'm getting data as an Access file.
My application uses PostgreSQL/Java. I'd like to convert the Access database to PostgreSQL. can any one help me to code this
I'm getting data as an Access file.
My application uses PostgreSQL/Java. I'd like to convert the Access database to PostgreSQL. can any one help me to code this
I doubt there is any simple automatic method. You will have to create ddl statements to make the tables in postgresql (not sure if you can export ddl from access), export the data from access to a csv, and then use postgresql copy from command to populate the tables.
Or you could consider trying this tool:
http://docman.sourceforge.net/home_html/projects/sql/exportSQL3.txt
but it looks like a dev version, it may not be mature.