其他分享
首页 > 其他分享> > 053试题 96 - shrink space compact

053试题 96 - shrink space compact

作者:互联网

题目:

96.Examine the following command:
SQL> ALTER TABLE booking SHRINK SPACE COMPACT;
Which activity is performed when the preceding command is executed?
A. The shrink operation touches every block in the BOOKING table
B. The high-water mark (HWM) for the BOOKING table is shifted from its original position
C. The progress of the shrink operation is saved in the bitmap blocks of the BOOKING table
D. The data manipulation language (DML) triggers on the BOOKING table are executed because the shrink operation is internally handled by the INSERT/DELETE operation

参考答案 C
解析
题目意思是,对表booking执行了shrink space compact命令。问执行该命令时候执行那个活动?
高水位线是不会调整的。所以B错误。
使用了compact参数,Oracle数据库对段空间进行碎片化,压缩表行,但将高水位的重置和空间的重新分配推迟到将来。如果您有可能跨操作的长时间运行的查询,并试图从已回收的块中读取数据,则此选项非常有用。碎片整理和压缩结果保存到磁盘上,因此不必在第二阶段重新进行数据移动。所以C正确。
您可以在非高峰时间重新发出收缩空间子句,而不使用COMPACT子句,以完成第二阶段。 所以A错误。
D选项的意思是说,因为shrink操作,在表内部进行了insert/delete操作,这个操作触发了触发器。这个说法是错误的。

 


参考文档:

https://docs.oracle.com/cd/E11882_01/server.112/e25494/schema.htm#ADMIN10161

You can shrink space in a table, index-organized table, index, partition, subpartition, materialized view, or materialized view log. You do this using ALTER TABLE, ALTER INDEX, ALTER MATERIALIZED VIEW, or ALTER MATERIALIZED VIEW LOG statement with the SHRINK SPACE clause.

Two optional clauses let you control how the shrink operation proceeds:

As with other DDL operations, segment shrink causes subsequent SQL statements to be reparsed because of invalidation of cursors unless you specify the COMPACT clause.

END

标签:compact,COMPACT,space,clause,ALTER,table,operation,shrink,053
来源: https://blog.csdn.net/xxzhaobb/article/details/99692636