|
我整理的好东西-2
我自己这门还没有考试呢,正在准备,若刚过的同志希望给点意见,我也只是将自己整理出来的东西分享给大家,希望多少对正在努力的同志有用!
有你有我,这个世界将不再寂寞!
31.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.
32.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.
33.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.
34.which data dictionary view would you query to display the value of the NLS-SORT value initialized at start up? D
A) DBA-CATALOG
B) NLS-SESSION-PARAMETER
C) NLS-DATABASE-PARAMETERS
D) NLS-INSTANCE-PARAMETERS
备注: d)display the values of NLS initialization parameters listed in the parameter file.
35.according to the Optimal Architecture, how should you organize your DB files: A
A) directly below the oracle directory
B) directly below the application directory
C) directly below the oracle Server Directory
D) within the appropriate product version directory
备注:The Optimal Flexible Architecture is a set of guidelines created by Oracle that provide a template for configuring oracle system.The OFA recommends that DB files be placed in directories directly below the oracle directory. DB file include datafiles, control files and redo log files.
36.whici Export utility keyword allows associated triggers to be included with a table during an Export when run by a privileges user? C
A)ROWS B)DIRECT C)TABLES D)PARFILE E)CONSISTENT F)CONSTRAINT
37.which benefit does oracle Fast Commit offer? C
A) transactions are immediately written to the datafiles
B) smaller transactions are processed more quickly than large one
C) minimal information is required to record the changes in the redo logs.
D) Transactions requesting a COMMIT are given priority over other redo log records.
备注:oracle’s Fast Commit allows LGWR to record only the changes and SCN in the redo log files. The size of the transaction does not affect the time required to write to the redo log files. These writes are sequential and faster than writing entire blocks to the datafiles. Writes to the datafiles occur independently of the COMMIT.
38.What are three ways that data integrity can be maintained to ensure that data adhere to the business rules? B C F
A) DB tunning
B) Application code
C) DB triggers
D) Index utilization
E) DB backup and recovery
F) Declare integrity constraints
39.which view would a query to display the value assigned to the MAXDATAFIELS parameter for the PROD database: D
A) V$database
B) V$datafile
C) V$controlfile
D) V$controlfile-Record-Setction (displays information stored in the control file)
40. which SHUTDOWN mode will only wait for the pending transaction of a correct user to end before ending their session: D
A)ABORT B)NORMAL C)IMMEDIATE D)TRANSACTIONAL
备注: users will be unable to create new session ,no new transactions are allowed and users are not disconnected until their current transaction commits or roll back. When all the transactions have ended. The db is closed and dismounted and the instance is shut down.
Normal Mode: users will wait for all pending transactions to be end and all users to disconnect before shutting down the DB. |
|