数据库中如何降低高水位

发布时间:2021-11-11 09:28:14 作者:小新
来源:亿速云 阅读:143

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

降低高水位方法

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;    ----movehct表空间

/*

如果movehct表空间了,可以看见表空间已经变了,如下

shall@ORCL>select table_name,tablespace_name from user_tables;

TABLE_NAME                     TABLESPACE_NAME

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

TTTT                           USERS

ZHONG                          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

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

                对于第二点进一步说明下,shrink在整理表碎片的时候,行的rowid已经发生改变,那为什么相关的索引还能enable呢?其实oracle在进行shrink的时候会对相应的索引进行维护,以保证indexshrink结束的时候index仍然有效。这个维护不同于索引rebuild,不会对索引的空间进行整理,shrinkcascede选项,如果在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的底部开始,移动rowsegment的顶部,移动的过程相当于delete/insert操作的组合,在这个过程中会产生大量的undoredo信息。

 

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

 

3. rename to

复制要保留的数据到临时表tdrop原表,然后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


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

推荐阅读:
  1. ORACLE解决高水位线问题
  2. 降低高水位线

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

数据库

上一篇:Shader Lab中如何实现可赋纹理贴图的顶点片断

下一篇:Django中的unittest应用是什么

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》