c# - Data accessing while database file size more than 4 GB -
i working on ormlite-servicestack
, asp.net/c#
sqlite database
. facing issue while accessing data database file. size of database file 4.5 gb approximately.
i trying load data complex sql
query (atleast 6-7 million records in each table) asp.net
, using sqlitedatareader
executereader()
. application hangs. in fact not able run sql
query via sqlite-manager firefox (version 0.8.3.1) github sqlite
browser. both tool become hang, have kill task manager.
please suggest optimization tool or configuration setting sqlite database. can able access data via web application or web service.
i believe sqlite have 2gb limit, apparently went beyond 2gb.
here limitations of sqlite https://www.sqlite.org/limits.html
if needs go beyond that, need consider using different database system sql server.
Comments
Post a Comment