博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[bbk5222] 第111集 -第14章 - 数据库空间管理 00
阅读量:4984 次
发布时间:2019-06-12

本文共 1403 字,大约阅读时间需要 4 分钟。

以前市场上大都是512字节的磁盘,现在Oracle提供了4K扇区的磁盘,大大提高了I/O效率

通过可传输表空间,实现数据移植,平台间的移植;

通过可传输数据库,实现数据库整体移植.

Oracle可以不通过操作系统,直接操作物理磁盘,大大提高存储效率.

采用逻辑块访问,效率比访问直接物理地址要快.

数据库管理的核心,主要涉及到文件存储相关的管理配置.

SQL> select group#,blocksize from v$log;    GROUP#  BLOCKSIZE---------- ----------         1        512         2        512         3        512

Objectives

After completing this lesson,you should be able to:

  • Describe the concepts and use of 4KB-sector disks
  • Use transportable tablespaces
  • Describ the concepts of transportable databases

Database Storage

 

Supporting 4-KB Sector Disks

 

Using 4-KB Sector Disks

Emulation mode:

  • Recommended 4-KB blokc size for logs
  • Recommended 4-KB block size for(or large) for data files

Native mode:

  • Mandatory 4-KB block size for logs
  • Mandatory 4-KB block size(or large) for data files

Not affected:

  • Control file block size :16KB

Specifying the Disk Sector Size

Using the SECTOR_SIZE and BLOCKSIZE clauses of the following commands

  • CREATE DISKGROUP
  • ALTER DATABASE
  • CREATE DATABASE
  • CREATE CONTROL FILE

Default sector size based on hardware(not the earlier 512-byte sectors)

CREATE DATABASE sample NORESETLOGS FORCE LOGGING  ARCHIVELOG  LOGFILE    GROUP 1 '$ORACLE_BASE/oradata/sample/redo01.log' SIZE 100M BLOCKSIZE 4096,    GROUP 2 '$ORACLE_BASE/oradata/sample/redo02.log' SIZE 100M BLOCKSIZE 4096  DATAFILE  ...

 

1024*16*63*512=528M

 

转载于:https://www.cnblogs.com/arcer/archive/2013/06/09/3129095.html

你可能感兴趣的文章
mac之homebrew安装
查看>>
Hdu 4268 multiset函数的应用
查看>>
CentOS7下账号与用户
查看>>
小程序天/小时/分秒倒计时封装
查看>>
Android中的ImageView的getDrawableCache获取背景图片的时候注意的问题
查看>>
Android中让View匀速旋转
查看>>
EventBus
查看>>
电驴下载地址提取
查看>>
Brocade 光纤交换机下zone划分 --- 基础篇
查看>>
自定义HtmlHelper方法
查看>>
文件 MD5 SHA1 SHA256 SHA512 校验码生成工具 V1.3
查看>>
模板标签
查看>>
apache安装
查看>>
RMQ—ST表
查看>>
单点fastDfs+centos7搭建
查看>>
模块02
查看>>
chapter1:using neural nets to recognize handwritten digits
查看>>
关于java中“使用了未经检查或不安全的操作、有关详细信息,请使用 ——Xlint:unchecked重新编译”...
查看>>
删除语句
查看>>
vi常用命令
查看>>