我有一个包含大JSON文本的表,每行大约100 KB。因此,整个数据库文件可能会增长到15 GB,这使其非常慢,甚至需要花费很多时间才能打开数据库。尽管c_data
是CLOB列。
create table t_data (
id integer auto_increment not null,
c_some_column_1 integer,
c_some_column_2 integer,
c_data text,
constraint pk_t_data primary key (id)
);
我做错什么了吗?我是否应该将数据存储在单独的文本文件中,以使DB尽可能轻巧,快速?有更好的解决方案吗?
我使用H2数据库1.4.197。