Hi, in the database i have some tables where i save/update/delete my data and a table like this:
create table files( id identity not null primary key, file blob); in this table, from my application, i store some little files (less than 100KB), the number of these entries will grow in the time but i never use these data from my application, i just use this table like a log's table where i store these files and if i need later i take the db and analyze them. Can this affect the opening time of the database ? H2 will slow down if i have a table with blob data and a lot of entries ? The database is used in embedded mode, these data will affect the memory usage of h2 ? Thanks -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/h2-database?hl=en.
