Sharding-JDBC的动态分表
如果一张表想实现动态分表,如每个月自动分出新的表,或者超过1万条记录自动分出新表?请问这种情况下Sharding-JDBC如何实现? 自己维护Map<String,…
sharding-jdbc 1.5.4.1 默认主键生成器,主键冲突
@亮_dangdang 你好,想跟你请教个问题: 使用默认的主键生成器,报主键冲突。请问为什么会冲突呢?不是分布式自增id吗? 两台服务均衡。 错误信息: or…
sharding-jdbc 3.0.0M1版本单库部分表分表,该库中其他未分表的表能使用distinct等聚合查询吗?
sharding-jdbc 3.0.0M1版本单库部分表分表,该库中其他未分表的表能使用distinct等聚合查询吗? 比如数据库 db_test 中有张表test1需要分表,其他表未…
oracle 分页查询 rownum + order by,查询结果异常
逻辑SQL: select * from ( select temp.*, rownum row_id from ( select logid,portal,moduleid,modulename,operid,opername,operip,content,logresu…
sharding-jdbc 3.0.0M1版本Sqlserver分页问题
开发环境:mybatis3.4.4,springboot1.5.6,sqlserver2012,sharding-jdbc 3.0.0M1 现象: 1.用ROW_NUMBER() OVER()方式分页,只能拿到第一页的数据;…
sharding-jdbc-1.5.0不再支持批量插入了
我先使用sharding-jdbc-1.3.1 + druid-1.0.12 + mybatis + mysql支持批量插入,但是我将sharding-jdbc升级到1.5.0之后的版本都不再支持批量插入了,1.…
sharing-jdbc ParameterList 数组越界
### SQL: SELECT   t.TRANS_ID as transNo,   t.CUST_NAME as   paymengtName,   t.TRANS_AMOUNT as payAmount,&nbs…
sharding-jdbc1.5.3,无需分库分表的表,配置default-data-source,单表查询正常,多表关联查询找不到数据源
spring + mybatis + sharding-jdbc1.5.3 + oracle 多表关联查询时,报错: ### SQL: select a.roleid,a.rolename,a.remark,a.createtime?? from mr_ro…
sharding jdbc 未分表的关联查询报错 Cannot find table rule and default data source with logic tables
报错异常信息: sharding-jdbc.xml: 查询sql: select r.* from T_REQ_EXT as r join wf_order as o on r.req_id = o.ref_id where r.PUBLISH_STATUS=…
Cannot find table rule and default data source with logic tables: '[]'
报的异常信息如下: com.dangdang.ddframe.rdb.sharding.exception.ShardingJdbcException: Cannot find table rule and default data source with lo…
求一个springboot+mybatisplus+sharding-jdbc的demo
求一个springboot+mybatisplus+sharding-jdbc的demo 或者springboot+sharding-jdbc的demo…
ShardingJdbcException: Cannot find table rule and default data source with logic tables: '[]'
 问题  1.5.4 sharding-jdbc ,单库 ,有一部分 分表,其余的部分表 <dependency> <groupId>com.dangdang</groupId> <artifactI…
sharding-jdbc 3.0.0M1 根据时间字段进行分片,进不了分片路由doSharding方法?
ssm框架环境,利用sharding-jdb对时间字段进行分表路由进行最简单的测试 执行sql: 始终不会进入分片doSharding函数,查出来的数据是所有分表的数据,…