摘要:
测试需要往数据库插入一大批数据10w,100w,1000w;手动导入太费时间,直接上存储过程吧 DELIMITER $$ CREATE PROCEDURE `snshelper`.`initPrize`() BEGIN DECLARE i INT DEFAULT 0; SET i=0; START 阅读全文
摘要:
Every bean has one or more identifiers. These identifiers must be unique within the container that hosts the bean. A bean usually has only one identif 阅读全文
摘要:
有时候连得上数据库,有时候又连不上. 可能是数据库上当前的连接数目已经超过了它能够处理的最大值. select count(*) from v$process --当前的连接数 select value from v$parameter where name = 'processes' --数据库允 阅读全文