H2 数据库中的最大表数是多少?
What is the maxium number of tables in a H2 database?
H2 数据库中的最大表数是多少?我在文档中找不到任何信息。我当然可以测试它,但我想知道是否有official/documented上限。
因此,您可以在 H2 数据库中创建的表的数量没有上限。
There is no limit for the following entities, except the memory and
storage capacity: maximum identifier length (table name, column name,
and so on); maximum number of tables, columns, indexes, triggers, and
other database objects; maximum statement length, number of parameters
per statement, tables per statement, expressions in order by, group
by, having, and so on; maximum rows per query; maximum columns per
table, columns per index, indexes per table, lob columns per table,
and so on; maximum row length, index row length, select row length;
maximum length of a varchar column, decimal column, literal in a
statement.
http://www.h2database.com/html/advanced.html 状态:
除内存和存储容量外,以下实体没有限制:最大标识符长度(table名称、列名称等);
tables、列、索引、触发器和其他数据库对象的最大数量;最大语句长度,每条语句的参数数量,每条语句tables,order by,group by,having等表达式;每个查询的最大行数;每个 table 的最大列数、每个索引的列数、每个 table 的索引数、每个 table 的 lob 列数,等等;最大行长,索引行长,select行长;语句中 varchar 列、decimal 列、文字的最大长度。
H2 数据库中的最大表数是多少?我在文档中找不到任何信息。我当然可以测试它,但我想知道是否有official/documented上限。
因此,您可以在 H2 数据库中创建的表的数量没有上限。
There is no limit for the following entities, except the memory and storage capacity: maximum identifier length (table name, column name, and so on); maximum number of tables, columns, indexes, triggers, and other database objects; maximum statement length, number of parameters per statement, tables per statement, expressions in order by, group by, having, and so on; maximum rows per query; maximum columns per table, columns per index, indexes per table, lob columns per table, and so on; maximum row length, index row length, select row length; maximum length of a varchar column, decimal column, literal in a statement.
http://www.h2database.com/html/advanced.html 状态:
除内存和存储容量外,以下实体没有限制:最大标识符长度(table名称、列名称等); tables、列、索引、触发器和其他数据库对象的最大数量;最大语句长度,每条语句的参数数量,每条语句tables,order by,group by,having等表达式;每个查询的最大行数;每个 table 的最大列数、每个索引的列数、每个 table 的索引数、每个 table 的 lob 列数,等等;最大行长,索引行长,select行长;语句中 varchar 列、decimal 列、文字的最大长度。