Choosing the Database Solution for Large Data Application

Posted by GµårÐïåñ on Programmers See other posts from Programmers or by GµårÐïåñ
Published on 2013-10-22T20:59:10Z Indexed on 2013/10/22 22:02 UTC
Read the original article Hit count: 189

I have been tasked to write an application that will be a combination of document and inventory management in VB.net which will be used to store document images in TIFF, PDF, XPS, TXT, DOC, PPT and so on as binary data that can be retrieved for viewing, printing, and possible OCR to be searchable as well along with meta data such as sender, recipient, type of document, date, source, etc. So the table would probably be something like:

DOC_NAME, DOC_DATE, NOTES, ... DOC_BINARY (where the actual document will be put inside)

What my concern is finding a database solution that will not become unstable due to size restrictions, records limitations and performance. Some of the options are MS_SQL, SQL Express, SQLite, mySQL, and Access. Now I can pretty much eliminate Access right off the bat as it is just too limiting and not scalable. I can further eliminate SQL Express because of the 2 GB limit and again scalability.

So that leaves me with MS_SQL, SQLite and mySQL (although if anyone has other options they think would be good as well, please feel free to share them, by no means am I set on these only). So this brings me to what you guys think is the best option for what I have described. The goal is that the data is all in one place (a single file) that will make backup and portability easier. For small volume usage, pretty much any solution will hold for a while, but my goal is to think ahead and make sure its able to withstand heavy large volume usage as well. Another consideration is also the interoperability with .NET and stability of such code to avoid errors and memory leaks.

Your feedback would be greatly appreciated.

© Programmers or respective owner

Related posts about mysql

Related posts about sql-server