06 2022 档案
摘要:alter table s_test enable row movement; flashback table s_test to timestamp to_timestamp('2018-03-05 15:25:00','yyyy-mm-dd HH24:MI:SS');
阅读全文
摘要:@PostConstruct 被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器调用一次。被@PostConstruct修饰的方法会在构造函数之后,init()方法之前运行。被@PostConstruct注解的方法将在该类中所有注入操作完成之后执行。 与
阅读全文
摘要:MongoDb 创建 删除collection 例1. db.createCollection('test'); 创建collection名字为test 例2. collection允许隐式创建 语法:db.collectionName.insert(document); db.test.inser
阅读全文