场景3 Data Management
数据管理
性能优化
OLTP OLAP
物化视图 :表的快照
传输表空间 :异构平台的数据迁移
星型转换 :事实表
OLTP : 在线事务处理
1. transaction —> DML
2. 数据量小
3. 处理时间短 —> SQL 共享,绑定变量
4. 并发量大
OLAP,DSS
1. 以查询为主(海量)—> 数据汇总 —> 结果放到表(物化视图)里
2. 处理时间长
3. 几乎无并发
4. 做并行处理
SGA + PGA
memory_target : 自动按需分配SGA和PGA
eg :
set autotrace on
set linesize 120
set time on
set timing on
set pagesize 20
set sqlprompt
db link :连接前置数据库和后台数据库
前置database(查询)
后台database(统计)
物化视图 —> 读写分离
eg :
grant create materialized view to scott
set auto trace off
create materialized view emp_mv1 as select sum(sal) sum_al, avg(sal) avg_sal, min(sal) min_al, dept no from emp group by deptno;
desc user_segments
col segment_name for a20
select segment_name, segment_type, tablespace_name, extents, bytes/1024 from user_segments where segment_name=‘EMP_MV1’;
eg :
set autotrace on
select …; (查看资源消耗)执行计划 execution plan
将复杂的查询结果存储到物化视图里
PCTFREE : 一般表预留10%的空间来做update等DML操作
eg:show parameter rewrite
drop materialized view emp_mv1
create materialized view emp_mv1 enable query rewrite as select sum(sal) sum_al, avg(sal) avg_sal, min(sal) min_al, dept no from emp group by deptno;
李全新 邮箱 :quanxin.li@enmotech.com
手工建库脚本从官方文档拷贝修改
eg : desc dbms_mview
set autotrace off;
select * from emp;
update emp set deptno=40 where empno = …;
commit;
select * from emp;
select * from emp_mv1;
exec dbms_mview.refresh(‘emp_mv1’);
select * from emp_mv1;
物化视图日志记录基表数据的变化以便进行快速刷新
eg :
select * from tab;
create index emp_mv1_ind on emp_mv1(deptno) tablespace indx;
analyze index emp_mv1_ind compute …;
PCT Refresh
表空间移动
数据迁移 :
1. expdp, impdp(exp, imp)(异构平台)
2. tablespace transport(异构平台)expdp metadata, copu datafile
3. dg (Data Guard) :容灾 数据克隆 (同构平台)
4. ogg (Oracle Golden Gate) : 收费软件
5. 存储镜像
表空间自包含的检测 :
execute dbms_tts.transport_set_check(‘users’);
eg :
create table emp1 as select * from emp;
create index emp1_empno on emp1(empno) tablespace indx;
alter table emp1 add constraint pk_emp1 primary key(empno);
alter table emp1 move tablespace indx;
execute dbms_tts.transport_set_check(‘users’);
会用expdp
外部表 external table
重建 OEM :
emca -config dbcontrol db -repos -recreate
解锁sh用户
事实表
维度表
select constraint_name, table_name from user_constraints;
desc user_indexes
select index_name, table_name from user_indexes;
星型查询 : 在事实表和维度表之间进行连接查询
bitmap index
show parameter star
set star_tranformation_enabled to true
eg :
emctl status dbconsole
emctl start dbconsole
merge join cartesian
对表 t2 做分析 :
analyze table t2 compute statistatics;
星型转换
并行查询
设置并行度(DOP degree of parallelism)
eg :
alter session force parallel query;
alter session set parallel_degree_policy=limited;(设置所有SQL执行并行)
eg :
show parameter parallel
parallel_min_servers : 指定最少启用几个并行进程
set autotrace on
r
eg :
alter session enable parallel dml;
set autotrace on
insert /*+ parallel(4) */ into emp1 select /*+ parallel(4) */ from emp;
eg :alter table sh.sales parallel 8; (设置表sales的并行度为8)
parallel_min_time_threshold : 指定执行时间,超过则自动开启并行查询,DOP
场景3 Data Management的更多相关文章
-
场景4 Data Warehouse Management 数据仓库
场景4 Data Warehouse Management 数据仓库 parallel 4 100% —> 必须获得指定的4个并行度,如果获得的进程个数小于设置的并行度个数,则操作失败 para ...
-
场景7 Data Guard
场景7 Data Guard 官方文档 :Oracle Data Guard Concepts and Administration 用于数据容灾,通过主备库同步(主库将redo日志传送到备库,一个 ...
-
场景5 Performance Management
场景5 Performance Management 性能调优(不能重启数据库) 索引 资源管理器 性能优化 统计分析 SQL性能分析 SPM (SQL执行计划管理) 堆表 :数据存储无序 位图索引 ...
-
MySQL vs. MongoDB: Choosing a Data Management Solution
原文地址:http://www.javacodegeeks.com/2015/07/mysql-vs-mongodb.html 1. Introduction It would be fair to ...
-
[Windows Azure] Data Management and Business Analytics
http://www.windowsazure.com/en-us/develop/net/fundamentals/cloud-storage/ Managing and analyzing dat ...
-
Data Management Technology(1) -- Introduction
1.Database concepts (1)Data & Information Information Is any kind of event that affects the stat ...
-
Data Management and Data Management Tools
Data Management ObjectivesBy the end o this module, you should understand the fundamentals of data m ...
-
Building Applications with Force.com and VisualForce(Dev401)(十七):Data Management: Data management Tools
ev401-018:Data Management: Data management ToolsModule Objectives1.List objects exposed in the impor ...
-
Building Applications with Force.com and VisualForce(Dev401)(十六):Data Management: Introduction to Upsert
Dev401-017:Data Management: Introduction to Upsert Module Objectives1.Define upsert.2.Define externa ...
随机推荐
-
BZOJ 2440: [中山市选2011]完全平方数 [容斥原理 莫比乌斯函数]
2440: [中山市选2011]完全平方数 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 3028 Solved: 1460[Submit][Sta ...
-
【记录】WCF IIS 404
WCF IIS 发布报"404错误": 修改 Web.config 如下: <system.webServer> <handlers> <remove ...
-
hdu 小希的迷宫
真是被这道并查集的水题给坑哭了...忘记给uset数组初始化我也是醉了. 题目意思是找到判断是不是连通无环的图,首先想到的就是并查集. 1判断成环的时候,只要判断输入边的两个点.有一个共同的父节点,那 ...
-
python深复制和浅复制
深复制:一个更改后不会影响到其他的变量,另一个变量B赋值给变量A时,虽然A和B的内存空间仍然相同,但当A的值发生变化时,会重新给A分配空间,A和B的地址变得不再相同 浅复制:改变一个就会引起另一个的改 ...
-
ZOJ题目分类
ZOJ题目分类初学者题: 1001 1037 1048 1049 1051 1067 1115 1151 1201 1205 1216 1240 1241 1242 1251 1292 1331 13 ...
-
【C#4.0图解教程】笔记(第19章~第25章)
第19章 泛型 1.泛型概念 泛型提供了一种更准确地使用有一种以上的类型的代码的方式. 泛型允许我们声明类型参数化的代码,我们可以用不同的类型进行实例化. 泛型不是类型,而是类型的模板. 2.声明 ...
-
页游AS客户端架构设计历程记录
以下是一个只用JAVA做过服务器架构的程序员做的AS客户端架构,希望大家能推荐好的框架和意见,也求AS高程们的引导,等到基本功能成形后,低调开源,框架可以支持一个中度型页游的开发,本文不断更新中... ...
-
Windows在结构FTPserver
同Windows8 案件,结构介绍 FTPserver脚步: 1.为Windows开启FTP功能:控制面板->程序->启用或关闭Windows功能.将下图所看到的的复选框选中 waterm ...
-
Gradient Boosted Regression
3.2.4.3.6. sklearn.ensemble.GradientBoostingRegressor class sklearn.ensemble.GradientBoostingRegress ...
-
CDlinux制作U盘启动盘,打造自己的口袋系统
工具: 1.8G或以上U盘一枚: 2.CDlinux0.9.7.1镜像文件,注意其他版本不一定能成功(传送门http://pan.baidu.com/s/1o7P6Gu2): 3.UltraISO或U ...