-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OutOfMemoryError with very large (>200MB) MDB files (was: build instructions) #5
Comments
Hello. Yes it would be nice to include compile instructions and I will do it at some point, but really you don't have to compile your own version to use the current code, I have it already compiled and you can download it at releases here on github repo. Just visit this link https://github.com/clytras/AccessConverter/releases/download/v1.1/AccessConverter_v1.1.zip and you'll download the latest jar compiled file along with the dependencies inside a zip file. |
Ah, awesome, thank you so much! Funny, i tried looking for pre-built releases, but couldn't find them, even though they were available. |
Well, I don't have compiled/uploaded the v1.1.1 release which fixes some bugs when importing huge amount of data which is also at the online tool, so, if you face any problems with the compiled v1.1 jar, let me know and I'll try to find some time and upload a release for v1.1.1. |
That would be excellent. I've downloaded the v1.1 release to import the Access file, but it's giving out of memory errors, even if i increase the heap size to 16GB. |
I have uploaded the v1.1.1 release, you can get it here https://github.com/clytras/AccessConverter/releases/download/v1.1.1/AccessConverter_v1.1.1.zip, but I don't think it will fix your issue, because for JSON or MySQL conversion it uses a |
Awesome, thanks for making that release so quickly. Unfortunately, i still get out of heap errors. However, this new version does actually show progress when using the I've also tried the If you want to reproduce the error, the MDB file is over here. It contains all monuments in the Netherlands. |
Got the MDB file, thanks. I'll try and check it out tomorrow cause it's late here in Greece!
Here is the link if you want to download it (200MB): |
Wow, efcharisto! Thanks so much for converting that file! |
You're welcome! |
Hey Clytras,
I wrote a (pretty hacky) Python script to 'fix' those bugs (available here). After running that i could import the SQL dump, but i still need to validate the actual data to see if anything is missing. |
Hey @hay, it's been quite a few years since the last release. I now have tackled the performance issues for exporting huge files, but I can't find the file with your dataset to try it out. If you care and you still have that file, I'd love to get it and test it on the latest release. |
Hey,
i've used your online version of this tool before, thanks so much for providing that. However, i now have a 350+ MB Access File, so i want to use this tool directly from the command line. Unfortunately, i have some trouble building a
.jar
file. I have very little experience with building Java applications, so maybe a build instruction in theREADME
would be handy.Where i'm stuck: i've cloned the repo and used
mvn clean install
in the root of the directory. This works, and i get aaccessconverter-1.1.1.jar
file in thetarget
directory. However, when i try running that usingjava -jar accessconverter-1.1.1.jar
i get an error:no main manifest attribute, in accessconverter-1.1.1.jar
.Is there any way i could solve this error and build a working
.jar
file?The text was updated successfully, but these errors were encountered: