How to import big sqlite3 table in Matlab?

3 visualizaciones (últimos 30 días)
Michiel bangels
Michiel bangels el 6 de Oct. de 2021
Respondida: Amith el 17 de Oct. de 2024
Hi,
I have a big sqlite3 database (37gb) with 17 tables that i want to import into Matlab to analyse. I can import 15 of the 17 tables using the fetch command, but the 2 biggest tables give problems (19 gb and 2gb).
dbfile='D:\data\output.sqlite3' ;
conn = sqlite(dbfile);
sqlquery = 'SELECT * From senor1';
sensor1 = fetch(conn,sqlquery);
What would be the best solution to import these sql tables? I tried these solutions but without luck:
  • converting first to csv and than importing to matlab
  • increasing java heap memory
  • increasing windows virtual memory
  • splitsqlquery, this doesn't work with sqlite3
Thanks

Respuestas (1)

Amith
Amith el 17 de Oct. de 2024
Hi Michiel,
If you want to import a large SQLite database into MATLAB, you can use the sqlread command. Please refer to the documentation below to learn more about this command.
I hope this helps!

Productos


Versión

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by