SQL调优实战
SQL调优实战1-常规调优
项目建表语句
-- ----------------------------
-- Table structure for carousel
-- ----------------------------
DROP TABLE IF EXISTS carousel;
CREATE TABLE carousel (id varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_09…
客户经常有这样的需求,数据库已迁移,但还是希望原库可以打开,就只能只读模式打开了
方法一
SYSorcl> STARTUP OPEN READ ONLY; ORACLE instance started.
Total System Global Area 4.0086E10 bytes Fixed Size 22549…