2017-11-08 7 views
2

私はOCA試験に関する質問に直面している、質問です:セグメントスペースの縮小は、再開できない操作ですか?

Select the true statments about space managemnt: 

a. Segment creation in oracle database 12c is deffered for all tables. There are no exeptions. 
b. All UNUSABLE indexes and index partitions are created without a segment. 
c. Shrinking segments space is a nonresumable operation. 
d. You can set thresholds by tablespace. 

Answer (according to oracle book): b, d 

第三のポイントは、(縮小セグメントスペースがnonresumable操作です)答えではない理由を私は理解できませんでした。状況がこのようである理由 は、Oracleのドキュメントhttps://docs.oracle.com/cd/B28359_01/server.111/b28310/schema002.htm#ADMIN11582

The resumable operation are: 

-Queries 
SELECT statements that run out of temporary space (for sort areas) are candidates for resumable execution. When using OCI, the calls OCIStmtExecute() and OCIStmtFetch() are candidates. 

-DML 
INSERT, UPDATE, and DELETE statements are candidates. The interface used to execute them does not matter; it can be OCI, SQLJ, PL/SQL, or another interface. Also, INSERT INTO...SELECT from external tables can be resumable. 

-Import/Export 
As for SQL*Loader, a command line parameter controls whether statements are resumable after recoverable errors. 

-DDL 
The following statements are candidates for resumable execution: 

CREATE TABLE ... AS SELECT 
CREATE INDEX 
ALTER INDEX ... REBUILD 
ALTER TABLE ... MOVE PARTITION 
ALTER TABLE ... SPLIT PARTITION 
ALTER INDEX ... REBUILD PARTITION 
ALTER INDEX ... SPLIT PARTITION 
CREATE MATERIALIZED VIEW 
CREATE MATERIALIZED VIEW LOG 

に応じて、誰かが私に説明してくださいでした。

ありがとうございました。

+0

ありがとうございます。私の研究の結果、「セグメント空間を縮小することは、回復不能な操作です」。 OCA試験の質問の答えが間違っています。 –

+1

あなたの答えをありがとう、私はそうだと思ったが、私を混乱させ、答えがオラクルの "Administration Workshop"の本の中に与えられたことを確かめる必要があった。再び@BarbarosÖzhanありがとう –

答えて

0

@BarbarosÖzhan研究、およびブック "OCA:Oracle Databaseの12cの管理者認定アソシエイト研究ガイド... Bijuトーマス" に応じて、ページの "1101" に聞こえる回答番号 "14"、:

ALTER TABLE ... SHRINK SPACEは新しいエクステントを作成せず、再開できません。

これは、OCA試験の質問の答えが間違っていることを示しています。

関連する問題