How to import big sqlite3 table in Matlab?
조회 수: 3 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
Amith
2024년 10월 17일
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!
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!