首页 数据库 mysql教程 Oracle 行迁移 & 行链接的检测与消除

Oracle 行迁移 & 行链接的检测与消除

Jun 07, 2016 pm 05:39 PM
oracle

什么是行迁移行链接?#以下描述来自Oracle11gR2Document1.行链接Therowistoolargetofitintoonedatablockwhenitisfirstinserted.Inrowchaining,OracleDatabasestor




什么是行迁移 & 行链接?



#     以下描述来自Oracle 11gR2 Document



1.       行链接


The row is too large to fit into one data block when it is first inserted.

In row chaining, Oracle Database stores the data for the row in a chain of one or more data blocks reserved for the segment. Row chaining most often occurs with large rows. Examples include rows that contain a column of data type LONG or LONG RAW, a VARCHAR2(4000) column in a 2 KB block, or a row with a huge number of columns. Row chaining in these cases is unavoidable.


2.       行迁移


A row that originally fit into one data block is updated so that the overall row length increases, but insufficient free space exists to hold the updated row.

In row migration, Oracle Database moves the entire row to a new data block, assuming the row can fit in a new block. The original row piece of a migrated row contains a pointer or "forwarding address" to the new block containing the migrated row. The rowid of a migrated row does not change.




本文的主题是消除行迁移,既然如此,那就必须先模拟出行迁移来:



--创建chained_rows表 SQL> @$ORACLE_HOME/rdbms/admin/utlchain.sql Table created. SQL> --创建测试表EMPLOYEES SQL> CREATE TABLE EMPLOYEES TABLESPACE TEST16K PCTFREE 0 AS SELECT * FROM HR.EMPLOYEES; Table created. SQL> COMMIT; Commit complete. SQL> --分析测试表EMPLOYEES SQL> analyze table employees list chained rows into chained_rows; Table analyzed. SQL> --查询可知当前测试表EMPLOYEES上不存在行迁移 SQL> select count(*) from chained_rows where table_name='EMPLOYEES'; COUNT(*) ---------- 0 SQL> --更新测试表EMPLOYEES结构 SQL> alter table employees modify FIRST_NAME varchar2(2000); Table altered. SQL> alter table employees modify LAST_NAME varchar2(2000); Table altered. SQL> alter table employees modify EMAIL varchar2(2000); Table altered. SQL> alter table employees modify PHONE_NUMBER varchar2(2000); Table altered. SQL> --更新测试表EMPLOYEES SQL> update employees set FIRST_NAME=LPAD('1',2000,'*'),LAST_NAME=LPAD('1',2000,'*'),EMAIL=LPAD('1',2000,'*'),PHONE_NUMBER=LPAD('1',2000,'*'); 107 rows updated. SQL> commit; Commit complete. SQL> --分析测试表EMPLOYEES SQL> analyze table employees list chained rows into chained_rows; Table analyzed. SQL> --查询可知已经产生行迁移 SQL> select count(*) from chained_rows where table_name='EMPLOYEES'; COUNT(*) ---------- 106 SQL> --行迁移模拟成功,我把这个过程保存为一个脚本reset_employees.sql: CREATE TABLE EMPLOYEES TABLESPACE TEST16K PCTFREE 0 AS SELECT * FROM HR.EMPLOYEES; alter table employees modify FIRST_NAME varchar2(2000); alter table employees modify LAST_NAME varchar2(2000); alter table employees modify EMAIL varchar2(2000); alter table employees modify PHONE_NUMBER varchar2(2000); update employees set FIRST_NAME=LPAD('1',2000,'*'),LAST_NAME=LPAD('1',2000,'*'),EMAIL=LPAD('1',2000,'*'),PHONE_NUMBER=LPAD('1',2000,'*'); --之后模拟行迁移直接执行这个脚本就OK了.



以上就生成了行迁移模拟脚本




第一种消除行迁移的方式:



--准备脚本Solution1.sql CREATE TABLE employees_tmp tablespace test16k AS SELECT * FROM employees WHERE ROWID IN (SELECT HEAD_ROWID FROM CHAINED_ROWS WHERE TABLE_NAME = 'EMPLOYEES'); DELETE FROM employees WHERE ROWID IN (SELECT HEAD_ROWID FROM CHAINED_ROWS WHERE TABLE_NAME = 'EMPLOYEES'); INSERT INTO EMPLOYEES SELECT * FROM EMPLOYEES_TMP; DROP TABLE EMPLOYEES_TMP; DELETE FROM CHAINED_ROWS WHERE TABLE_NAME = 'EMPLOYEES'; COMMIT; --执行脚本Solution1.sql SQL> @Solution1.sql Table created. 106 rows deleted. 106 rows created. Table dropped. 106 rows deleted. Commit complete. SQL> --分析测试表EMPLOYEES SQL> analyze table employees list chained rows into chained_rows; Table analyzed. SQL> --查询可知行迁移已经消除 SQL> select count(*) from chained_rows where table_name='EMPLOYEES'; COUNT(*) ---------- 0 SQL>




第二种消除行迁移的方式:



--清理测试环境 SQL> truncate table chained_rows; Table truncated. SQL> drop table employees; Table dropped. SQL> commit; Commit complete. SQL> --以上清理过程也保存为脚本clear_employees.sql: truncate table chained_rows; drop table employees; commit; --之后的清理工作都会使用这个脚本来进行 --模拟行迁移 SQL> @reset_employees.sql Table created. Table altered. Table altered. Table altered. Table altered. 107 rows updated. SQL> commit; Commit complete. SQL> --准备脚本Solution2.sql create table employees_tmp tablespace test16k as select * from employees; truncate table employees; insert into employees select * from employees_tmp; drop table employees_tmp; commit; --执行脚本Solution2.sql SQL> @Solution2.sql Table created. Table truncated. 107 rows created. Table dropped. Commit complete. SQL> --分析测试表EMPLOYEES SQL> analyze table employees list chained rows into chained_rows; Table analyzed. SQL> --查询可知行迁移已经消除 SQL> select count(*) from chained_rows where table_name='EMPLOYEES'; COUNT(*) ---------- 0 SQL>





本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前 By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

oracle数据库日志会保存多久 oracle数据库日志会保存多久 May 10, 2024 am 03:27 AM

Oracle 数据库日志的保留期限取决于日志类型和配置,包括:重做日志:由 "LOG_ARCHIVE_DEST" 参数配置的最大大小决定。归档重做日志:由 "DB_RECOVERY_FILE_DEST_SIZE" 参数配置的最大大小决定。在线重做日志:不归档,在数据库重启时丢失,保留期限与实例运行时间一致。审计日志:由 "AUDIT_TRAIL" 参数配置,默认保留 30 天。

oracle中计算两个日期之间天数的函数 oracle中计算两个日期之间天数的函数 May 08, 2024 pm 07:45 PM

Oracle 中计算两个日期之间天数的函数是 DATEDIFF()。具体用法如下:指定时间间隔单位:interval(如 day、month、year)指定两个日期值:date1 和 date2DATEDIFF(interval, date1, date2) 返回天数差

oracle数据库启动步骤顺序为 oracle数据库启动步骤顺序为 May 10, 2024 am 01:48 AM

Oracle 数据库启动顺序为:1. 检查前置条件;2. 启动监听器;3. 启动数据库实例;4. 等待数据库打开;5. 连接到数据库;6. 验证数据库状态;7. 启用服务(如果需要);8. 测试连接。

oracle中interval的用法 oracle中interval的用法 May 08, 2024 pm 07:54 PM

Oracle 中的 INTERVAL 数据类型用于表示时间间隔,语法为 INTERVAL <精度> <单位>,可使用加减乘除运算操作 INTERVAL,适用于存储时间数据、计算日期差值等场景。

oracle中如何判断包含两个字符串 oracle中如何判断包含两个字符串 May 08, 2024 pm 07:00 PM

在 Oracle 中,可使用嵌套 INSTR 函数判断一个字符串是否同时包含两个子字符串:当INSTR(string1, string2a)大于0且INSTR(string1, string2b)大于0时,则包含;否则不包含。

oracle中某个字符出现的次数怎么看出来 oracle中某个字符出现的次数怎么看出来 May 09, 2024 pm 09:33 PM

要在 Oracle 中查找字符出现的次数,执行以下步骤:获取字符串的总长度;获取字符所在子字符串的长度;计算字符出现的次数:用总长度减去子字符串长度。

oracle数据库服务器硬件配置要求 oracle数据库服务器硬件配置要求 May 10, 2024 am 04:00 AM

Oracle 数据库服务器硬件配置要求:处理器:多核,主频至少 2.5 GHz,大型数据库建议 32 核以上。内存:小型数据库至少 8GB,中等规模 16-64GB,大型数据库或高负载工作负载高达 512GB 或更多。存储:SSD 或 NVMe 磁盘,RAID 阵列提高冗余和性能。网络:高速网络(10GbE 或更高),专用网卡,低延迟网络。其他:稳定电源、冗余组件、兼容操作系统和软件、散热和冷却系统。

oracle需要多少内存 oracle需要多少内存 May 10, 2024 am 04:12 AM

Oracle 所需内存量取决于数据库大小、活动水平和所需性能水平:用于存储数据缓冲区、索引缓冲区、执行 SQL 语句和管理数据字典缓存。具体数量受数据库大小、活动水平和所需性能水平影响。最佳实践包括设置适当的 SGA 大小、调整 SGA 组件大小、使用 AMM 和监控内存使用情况。

See all articles