|
share some tests of Boson
which table cannot be accomplished using the Alter Index Command? D
A) coalseing an index
B) rebuilding an online index
C) moving an index to a different tablespace
D) Changing the size of an existing index using the RESIZE keyword.
该命令可做的动作:
(1) to move an index to a different tablespace;
(2) remove deleted entries
(3) change a reverse key index to a normal B-tree index or a Norman B-tree index to a reverse key index.
(4) To change the index parameter
(5) Indexes can be rebuilt online using the Online keyword or can be coalesced using the COALESCE keywords
which two command could you use to immediately allocate more space to an existing tablespace: A B
A) ALTER TABLESPACE ADD DATAFILE
B) ALTER DATABASE DATAFILE RESIZE
C) CREATE TABLESPACE DATAFILE SIZE
D) ALTER TABLESPACE MINIMUM EXTENT
E) ALTER TABLESPACE DEFAULT STORAGE
You need to verify the structure of the LAB_RESULT table before it is backed up. Which option could you use with the ANALYZE TABLE command to check this table for corruption? A
A) validate structure
B) compute statistics
C) estimate structure
D) validate statistics
while setting up password file authentication ,you set the REMOTE-LOGIN-PASSWORDFILE initalization parameter to SHARED,which two will be recognized bye the password fiel? A E
A)sys B) sysdba C)system D)sysoper E)internal
备注:to set up password file authentication:
(1) use the ORAPWD on UNIX or WINNT to create a password file
(2) set the Remote-Login-Passwordfile initalization to EXECLUSIVE(for only one instance) or SHARED (for multiple instance) If you use the SHARED option,the password file will only reorgnize user SYS and INTERNAL.
(3) When connecting to the DB,you must provide a valid username and password .This is an example connect string: CONNECT internal/oracle
When using the password utility to create a password file,you must specify a file name and location, a password for the SYS and INTERNAL users, and the manximum number of DBAs using the password file.
The REMOTE-LOGIN-PASSWORD-FILE initialization parameter is set to EXECLUSIVE for the PROD DB,which view should you query to determine which users have been granted the SYSOPER privileges? D
A)v$DATABASE B)V$INSTANCE C)V$PARAMETERS D)V$PWFILE-USERS
备注:when password file authenticated is enabled,V$PWFILE-USERS will display the names of the uses with the SYSDBA or SYSOPER privileges.
when a record is inserted into a table,which portion of a DB block holds the records data: B
A)BLOCK HEADER B)DATA SPACE C)FREE SPACE
D)ROW DIRECTORY E)TABLE DIRECTORY
备注:Each DB block has bytes reserved for the header,free space for growth,and data space. In a database block,row data is stored in the bytes allocated for data space,Data is inserted into the Block from the bottom up. |
|