I am able to run the code successfully when I dont use parallel runs. It gives error when I am running the code parallely. On 21 Nov 2011, at 9:44pm, gavyas wrote:
> I am using SQLite to handle database while running a simulation on > supercomputers here. I am using MPI process to do multiple threading. I am > keep getting error that says "database or disk is full" while passing any > querry to SQLite. I have checked the space quota and I have so much of the > space available. I dont know why I am getting this error, so can you tell > me > what is causing this problem? Are you able to process any SQL statement at all, or do you get this error every time ? If you access the database file using the sqlite3 command-line tool, and try to execute the same SQL commands, do you get the same error ? SQLite makes a temporary 'journal' file while it's working. I think that, on your platform, by default it will be in the same directory as the database file. Does your application have enough privilages to create new files in that directory ? Simon. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users -- View this message in context: http://old.nabble.com/SQLite%3A-Database-or-disk-full-tp32871505p32871706.html Sent from the SQLite mailing list archive at Nabble.com. _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users