# schema.表名,分片字段(必须整型，如果是2.5之后版本，该字段实际不用，随意),表数据量（每20GB会自动分片，v2.5版本之后不建议配置，设置为1即可）,预留字段(不能为空，默认设置为f即可，当前无用)。可通过下列语句生成分片字段和数据量以外的所有配置项
# SELECT owner || '.' || table_name || ',,,','f' FROM dba_tab_columns WHERE (owner,table_name) in (
#   select owner,table_name from dba_tables where owner = 'BENCHMARKSQL'
# )
# AND (owner,table_name) NOT IN (SELECT owner,table_name from dba_tables WHERE partitioned='YES')
# and owner = 'BENCHMARKSQL'
# group by owner || '.' || table_name;
# 井号开头的注释会自动跳过
#BENCHMARKSQL.BMSQL_CUSTOMER,C_ID,1,f
#BENCHMARKSQL.BMSQL_ITEM,I_ID,1,f
#BENCHMARKSQL.BMSQL_STOCK,S_W_ID,1,f