我的编程空间,编程开发者的网络收藏夹
学习永远不晚

数据库中如何降低高水位

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

数据库中如何降低高水位

这篇文章主要为大家展示了“数据库中如何降低高水位”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“数据库中如何降低高水位”这篇文章吧。

降低高水位方法

1. move

a.move不但可以重置水位线(HWM),解决松散表带来的 IO 浪费,还可以解决表中的行迁移问题;

b.move可以将表移动到其他表空间,也可以在原表空移动,这样可以一定程度解决表空间碎片;

c.如果表空间上有大量表、索引被 drop(或者 truncate),导致表空间前半部分出现大量空闲空间,可以通过 move 将靠后的表移动到前面的空闲空间,从而收缩数据文件。

 

实验:

sys@ORCL>conn shall/shall

Connected.

shall@ORCL>create table zhong(x int);

Table created.

 

shall@ORCL>begin

  2  for i in 1..100000 loop

  3  insert into zhong values(i);

  4  end loop;

  5  commit;

  6  end;

  7  /

 

PL/SQL procedure successfully completed.

 

----收集统计信息

shall@ORCL>analyze table zhong compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 244           12

 

----deletezhong

shall@ORCL>delete zhong;

100000 rows deleted.

 

shall@ORCL>analyze table zhong compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 244           12

 

----move整理碎片

shall@ORCL>alter table zhong move;

Table altered.

或者 alter table zhong move tablespace hct;    ----move到hct表空间

 

shall@ORCL>analyze table zhong compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                   0            8

 

----高水位已经降下来了。move到该表空间,需要保证有足够的剩余空间

 

----重建索引

shall@ORCL> alter index inx_t_x rebuild;

Index altered.

或 alter index inx_t_x rebuild tablespace users;

 

----查看索引状态

SCOTT@test> set linesize 200

SCOTT@test> select index_name,table_name,tablespace_name,status from user_indexes;

 

 

----注意事项:

----Rebuild index

在对表进行 move 操作后,表中的 rowid 发生了改变,这样导致索引无法定位到原来表中的数据,从而触发了索引失效,所以需要 alter index index_name rebuild [online] 的命令进行重建。

----空间分配

alter table move操作,必须给move的表空间足够的剩余空间,否则可能会出现 ORA-01652 告警。

----exclusive lock

move 操作相当于将表中所有数据移动,因此在move的过程中,oracle会对表放置了 exclusive lock 锁,此时只能对它进行 select 操作。

 

2. shrink space

此命令为 Oracle 10g 新增功能,shrink 操作是将原本松散的数据存放结构,通过将表中靠后的行向前面的空闲块迁移,在完成后将完全空闲的区释放,并前置 HWM 到表中最后一个使用块的位置,从而实现松散表重新结构紧凑。

 

使用条件

                自动段管理模式。只支持 ASSM 管理的表空间,如果不是会报ORA-10635: Invalid segment or tablespace type

                打开行移动  alter table table_name enable row movement

 

参数:

alter table TABLE_NAME shrink space [compact|cascate]

 

alter table TABLE_NAME shrink space; 整理碎片并回收空间

alter table TABLE_NAME shrink space compact; 只整理碎片 不回收空间

alter table TABLE_NAME shrink space cascate; 整理碎片回收空间 并连同表的级联对象一起整理(比如索引)

 

使用步骤

1. alter table t1 enable ROW MOVEMENT;

2. shrink 操作

3. alter table t1 disable ROW MOVEMENT;

 

实验:

----查看表空间段管理模式

sys@ORCL>select tablespace_name,block_size,extent_management,allocation_type,segment_space_management from dba_tablespaces order by segment_space_management;

TABLESPACE_NAME                BLOCK_SIZE EXTENT_MAN ALLOCATIO SEGMEN

------------------------------ ---------- ---------- --------- ------

SYSAUX                               8192 LOCAL      SYSTEM    AUTO

HCT                                  8192 LOCAL      SYSTEM    AUTO

USERS                                8192 LOCAL      SYSTEM    AUTO

EXAMPLE                              8192 LOCAL      SYSTEM    AUTO

TEMP                                 8192 LOCAL      UNIFORM   MANUAL

UNDOTBS1                             8192 LOCAL      SYSTEM    MANUAL

SYSTEM                               8192 LOCAL      SYSTEM    MANUAL

 

----查看shall用户使用的默认表空间

sys@ORCL>select username,default_tablespace,temporary_tablespace from dba_users where username='SHALL';

USERNAME                       DEFAULT_TABLESPACE             TEMPORARY_TABLESPACE

------------------------------ ------------------------------ ------------------------------

SHALL                          USERS                          TEMP

 

----创建表及插入数据

sys@ORCL>conn shall/shall

Connected.

shall@ORCL>create table shall(ttt int);

Table created.

 

sys@ORCL>begin

  2  for i in 1..1000000 loop

  3    insert into shall values(i);

  4   end loop;

  5   commit;

  6  end;

  7  /

PL/SQL procedure successfully completed.

 

shall@ORCL>analyze table shall compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='SHALL';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

SHALL                                1630           34

 

----deleteshall

shall@ORCL>delete shall;

1000000 rows deleted.

 

shall@ORCL>analyze table shall compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='SHALL';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

SHALL                                1630           34

 

----开始shrink整理碎片

shall@ORCL>alter table shall enable row movement;

Table altered.

 

shall@ORCL>alter table shall shrink space;

Table altered.

 

shall@ORCL>alter table shall disable row movement;

Table altered.

 

----为刷新统计信息之前,高水位未降

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='SHALL';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

SHALL                                1630           34

 

shall@ORCL>analyze table shall compute statistics;

Table analyzed.

 

shall@ORCL>select table_name,blocks,empty_blocks from user_tables where table_name='SHALL';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

SHALL                                   1            7

 

使用shrink降低高水位的优点:

1)能在线进行,不影响表上的DML操作,当然,并发的DML操作在shrink结束的时刻会出现短暂的block;

2)shrink的另外一个优点是在碎片整理结束后,表上相关的index仍然enable。

                对于第二点进一步说明下,shrink在整理表碎片的时候,行的rowid已经发生改变,那为什么相关的索引还能enable呢?其实oracle在进行shrink的时候会对相应的索引进行维护,以保证index在shrink结束的时候index仍然有效。这个维护不同于索引rebuild,不会对索引的空间进行整理,shrink有cascede选项,如果在shrink的时候加上该选项,就会对表上相应的索引空间进行整理。 ALTER TABLE tablename SHRINK SPACE CASCADE;

       

shrink也可以分两步进行

1)先执行ALTER TABLE tablename SHRINK SPACE compact,此时oracle会在高水位线以下将row尽量向segment的顶部移动,但不收缩高水位线,即不释放空间。这个操作对于那些在尝试读取已经被释放的块的查询是有益的。

2)然后在执行ALTER TABLE test SHRINK SPACE,此时第一步中的结果已经存储到磁盘,不会重新在整理碎片,只是收缩高水位,释放空间。第二步操作应该在系统不繁忙时候进行。

 

shrink的工作原理

shrink的算法是从segment的底部开始,移动row到segment的顶部,移动的过程相当于delete/insert操作的组合,在这个过程中会产生大量的undo和redo信息。

 

另外, 对于空间的要求,shrink不需要额外的空间,move需要两倍的空间。

 

3. rename to

复制要保留的数据到临时表t,drop原表,然后rename to临时表t为原表

验证:

   begin

                for i in 1..100000 loop

                  insert into t2 values(i);

                end loop;

                commit;

   end;

   /

   analyze table t2 compute statistics;

   select table_name,blocks,empty_blocks

                from dba_tables

      where table_name='T2';

 

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

T2                                    152          103

 

SQL> delete t2;

100000 rows deleted.

SQL> create table t3 as select * from t2;

SQL> analyze table t2 compute statistics;

SQL> select table_name,blocks,empty_blocks

  2  from dba_tables

  3  where table_name='T2';

 

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

T2                                    152          103

 

SQL> drop table t2;

SQL> alter table t3 rename to t2;

SQL> analyze table t2 compute statistics;

SQL> select table_name,blocks,empty_blocks

  2  from dba_tables

  3  where table_name='T2';

 

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

T2                                      1            6

 

4. exp/imp

用EXP导出后,删除原表/表空间,之后用IMP重新导入

实验:

shall@ORCL>create table zhong(id int);

Table created.

 

shall@ORCL>begin

  2  for i in 1..1000000 loop

  3  insert into zhong values(i);

  4  end loop;

  5  commit;

  6  end;

  7  /

PL/SQL procedure successfully completed.

 

shall@ORCL>analyze table zhong compute statistics;

Table analyzed.

sys@ORCL> select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                1630           34

 

----删除然后导出表

shall@ORCL>delete zhong where id>50000;

950000 rows deleted.

[oracle@zyx ~]$ exp \'/ as sysdba\' tables=shall.zhong file=zhong.dmp log=zhong.log

Export: Release 11.2.0.4.0 - Production on Sun May 1 18:34:39 2016

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export done in ZHS16GBK character set and AL16UTF16 NCHAR character set

About to export specified tables via Conventional Path ...

Current user changed to SHALL

. . exporting table                          ZHONG      50000 rows exported

Export terminated successfully without warnings.

[oracle@zyx ~]$

 

----drop原表

shall@ORCL>drop table zhong;

Table dropped.

 

----导入表

[oracle@zyx ~]$ imp \'/ as sysdba\' tables=zhong file=zhong.dmp fromuser=shall touser=shall;

Import: Release 11.2.0.4.0 - Production on Sun May 1 18:37:44 2016

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Export file created by EXPORT:V11.02.00 via conventional path

import done in ZHS16GBK character set and AL16UTF16 NCHAR character set

. importing SHALL's objects into SHALL

. . importing table                        "ZHONG"      50000 rows imported

Import terminated successfully without warnings.

[oracle@zyx ~]$

----未刷新统计信息时

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                1630            0

 

----刷新统计信息后

shall@ORCL>analyze table zhong compute statistics;

Table analyzed.

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 110         1554

 

---- BLOCKS 列代表该表中曾经使用过得数据库块的数目,即水线。EMPTY_BLOCKS 代表分配给该表,但是在水线以上的数据库块,即从来没有使用的数据块

 

 

5. deallocate unused

alter table table_name deallocate unused;

注:这证明,DEALLOCATE UNUSED为释放HWM上面的未使用空间,但是并不会释放HWM下面的自由空间,也不会移动HWM的位置。

truncate table 后,有可能表空间仍没有释放,可以使用如下语句:

            alter table 表名称 deallocate   UNUSED KEEP 0;

例如:

alter table tablename deallocate UNUSED KEEP 0;

或者:

truncate table  tablename DROP STORAGE; 才能释放表空间

注意:如果不加KEEP 0的话,表空间是不会释放的。

实验:接上面导入导出实验

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 110         1554

 

----开始整理

sys@ORCL>alter table shall.zhong deallocate unused keep 0;

Table altered.

 

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 110         1554

 

sys@ORCL>analyze table shall.zhong compute statistics;

Table analyzed.

 

----整理之后

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 110           18

 

6. truncate

尽量使用truncate (如:truncate t1)

实验:接上面实验

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                 110           18

 

sys@ORCL>truncate table shall.zhong;

Table truncated.

 

sys@ORCL>analyze table shall.zhong compute statistics;

Table analyzed.

 

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                   0          128

 

sys@ORCL>alter table shall.zhong deallocate unused keep 0;

Table altered.

 

sys@ORCL>analyze table shall.zhong compute statistics;

Table analyzed.

 

sys@ORCL>select table_name,blocks,empty_blocks from dba_tables  where table_name='ZHONG';

TABLE_NAME                         BLOCKS EMPTY_BLOCKS

------------------------------ ---------- ------------

ZHONG                                   0           24


以上是“数据库中如何降低高水位”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注亿速云行业资讯频道!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

数据库中如何降低高水位

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

数据库同步的经济影响:提高生产力和降低成本

数据库同步可以带来经济效益,包括提高生产力、降低成本和提高准确性。它可以确保不同系统之间的数据一致性和实时性,从而改善业务流程。
数据库同步的经济影响:提高生产力和降低成本
2024-02-29

找阿里云的数据库地址:如何快速定位数据库位置

简介在使用阿里云提供的数据库服务时,了解数据库的位置是非常重要的。本文将介绍如何快速找到阿里云数据库的地址,帮助您更好地管理和操作数据库。步骤一:登录阿里云控制台首先,打开浏览器,访问阿里云官方网站(https://www.aliyun.com/),点击右上角的"登录"按钮,输入您的账号和密码,成功登录后进入阿里云控制
找阿里云的数据库地址:如何快速定位数据库位置
2024-01-30

php数据库读取的数据错位如何解决

今天小编给大家分享一下php数据库读取的数据错位如何解决的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。问题描述我们先看一个简
2023-07-05

如何看sql数据库的存储位置

要查看SQL数据库的存储位置,可以按照以下步骤进行操作:1. 打开SQL Server Management Studio(SSMS)或任何其他SQL数据库管理工具。2. 连接到要查看的数据库服务器。3. 在对象资源管理器窗口中,展开数据库
2023-08-30

如何修改gitlab数据库存储位置

GitLab是一个流行的开源代码托管平台,许多企业和开发者使用它来管理他们的代码。GitLab提供了可以自定义的存储位置,这意味着您可以将GitLab数据库的存储位置指定为您选择的任何位置。在本文中,我们将向您展示如何修改GitLab数据库
2023-10-22

如何查找Discuz数据库所在位置?

如何查找Discuz数据库所在位置?Discuz是一款常见的开源论坛系统,许多网站都在使用这款系统来搭建在线社区。在开发和维护过程中,我们可能需要查找Discuz数据库所在位置以方便进行数据管理和备份。下面将介绍如何通过具体的代码示例来查
如何查找Discuz数据库所在位置?
2024-03-10

php数据库如何修改字段位置

本文小编为大家详细介绍“php数据库如何修改字段位置”,内容详细,步骤清晰,细节处理妥当,希望这篇“php数据库如何修改字段位置”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。首先,我们需要连接到数据库。在连接到数
2023-07-06

编程热搜

目录