重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1838|回复: 0
打印 上一主题 下一主题

[Oracle] dba_data_files中BYTES字段大于MAXbytes字段值

[复制链接]
跳转到指定楼层
楼主
发表于 2020-6-18 11:04:42 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
PURPOSE
-------
This document explains why the value in BYTES column of DBA_DATA_FILES can be
GREATER than MAXBYTES value.

SCOPE & APPLICATION
-------------------

This article can be used by DBAs and Support Analysts.

Description
-----------

The BYTES column in DBA_DATA_FILES has a value greater than MAXBYTES column when
a datafile was manually resized to a value GREATER than MAXSIZE (MAXBYTES).
The MAXBYTES column in DBA_DATA_FILES is populated automatically with non-zero
value when a datafile is defined as autoextend ON.
The BYTES column in DBA_DATA_FILES displays the current size of the file in bytes.

Here is an example of how this can happen.

Step-1: Create a New Tablespace
======  =======================

   SQL> create tablespace tst
     2  datafile 'd:\oracle\tst01.dbf' size 5m autoextend on;

   Tablespace created.

   SQL> select file_name, bytes, maxbytes, autoextensible from dba_data_files;

   FILE_NAME                                     BYTES   MAXBYTES AUT
   ---------------------------------------- ---------- ---------- ---
   D:\ORACLE\TST01.DBF                         5242880 1.7180E+10 YES

   1 rows selected.

Step-2: Alter the MAXSIZE value from default value
======  ==========================================

   SQL> alter database datafile 'd:\oracle\tst01.dbf' autoextend on maxsize 10m;

   Database altered.

   SQL> select file_name, bytes, maxbytes,a utoextensible from dba_data_files;

   FILE_NAME                                     BYTES   MAXBYTES AUT
   ---------------------------------------- ---------- ---------- ---
   D:\ORACLE\TST01.DBF                         5242880   10485760 YES

   1 rows selected.


Step-3: Resize the datafile to a value higher than MAXBYTES
======  ===================================================

   SQL> alter database datafile 'd:\oracle\tst01.dbf' resize 20m;

   Database altered.


   SQL> select file_name, bytes, maxbytes, autoextensible from dba_data_files;

   FILE_NAME                                     BYTES   MAXBYTES AUT
   ---------------------------------------- ---------- ---------- ---
   D:\ORACLE\TST01.DBF                        20971520   10485760 YES

   1 rows selected.


The value in BYTES column is GREATER than MAXBYTES.


Explanation
-----------
The MAXBYTES column in DBA_DATA_FILES is not updated when the datafile has been
resized. The only column that is updated is BYTES. The MAXBYTES is updated by
the ALTER DATABASE command with MAXSIZE option as described above.

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-4-19 21:35 , Processed in 0.087815 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表