回答错误 +0分
回答错误 +0分
Which two statements are true about redefining the table? 分值1分
A. All the triggers for the table are disabled without changing any of the column names or column types in the table.
B. The primary key constraint on the EMPLOYEES table is disabled during redefinition.
C. VPD policies are copied from the original table to the new table during online redefinition.
D. You must copy the VPD policies manually from the original table to the new table during online redefinition.
正确答案:
答案解析:
C (not D): CONS_VPD_AUTO
Used to indicate to copy VPD policies automatically
DBMS_RLS.ADD_POLICY
/ The DBMS_RLS package contains the fine‐grained access control administrative interface, which is used to implemen
t Virtual Private Database (VPD).DBMS_RLS is available with the Enterprise Edition only.
Note:
CONS_USE_PK and CONS_USE_ROWID are constants used as input to the "options_flag" parameter in both the STA
RT_REDEF_TABLE Procedure and CAN_REDEF_TABLE Procedure. CONS_USE_ROWID is used to indicate that the
redefinition should be done using rowids while CONS_USE_PK implies that the redefinition should be done using prima
ry keys or pseudo primary keys (which are unique keys with all component columns having NOT NULL constraints).
DBMS_REDEFINITION.START_REDEF_TABLE
To achieve online redefinition, incrementally maintainable local materialized views are used. These logs keep track of th
e changes to the master tables and are used by the materialized views during refresh synchronization.
START_REDEF_TABLE Procedure
Prior to calling this procedure, you must manually create an empty interim table (in the same schema as the table to be
redefined) with the desired attributes of the post redefinition table, and then call this procedure to initiate the redefinitio
n.
3. QUESTION NO: 153
Which two statements are true about the use of the procedures listed in the v$sysaux_occupants.mov
e_procedure column? 分值1分
A. The procedure may be used for some components to relocate component data to the SYSAUX tablespace from its c
urrent tablespace.
B. The procedure may be used for some components to relocate component data from theSYSAUX tablespace to anot
her tablespace.
C. All the components may be moved into SYSAUX tablespace.
D. All the components may be moved from the SYSAUX tablespace.
正确答案:
B. The primary key constraint on the EMPLOYEES table is disabled during redefinition.┋C. VPD policies are copied fro
m the original table to the new table during online redefinition.
A. The procedure may be used for some components to relocate component data to the SYSAUX tablespace from its c
urrent tablespace.┋B. The procedure may be used for some components to relocate component data from theSYSAUX
评论