1 准备测试数据
导出测试对象:表test_0102,others字段为clob类型
--创建中间表test_0101
create table test_0101(
id number,
name varchar2(20),
others clob);--插入100条测试数据
beginfor i in 1..100 loopinsert into test_0101 values(i,i||_a,l…
mysql dublewrite 双写缓存机制,像不像主板双bois系统, 在MySQL的InnoDB存储引擎中,当进行数据写操作时,会先将数据写入到内存中的缓冲池(Buffer Pool),然后异步刷新到磁盘上的数据文件。为了提…