A. The tape I/O performed is asynchronous
B. The tape buffer is allocated from the System Global Area (SGA)
C. The tape buffer is allocated from the Program Global Area (PGA)
D. Oracle I/O uses an interrupt mechanism to determine when each I/O completes
第1题:
You performed an incremental level 0 backup of a database:RMAN > BACKUP INCREMENTAL LEVEL 0 DATABASE;To enable block change tracking after the incremental level 0 backup, you issued this command:SQL > ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE ‘ /mydir/rman_change_track.f’;To perform an incremental level 1 cumulative backup, you issued this command:RMAN> BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE;Which three statements are true?()
A. Backup change tracking will sometimes reduce I/O performed during cumulative incremental backups.
B. The change tracking file must always be backed up when you perform a full database backup.
C. Block change tracking will always reduce I/O performed during cumulative incremental backups.
D. More than one database block may be read by an incremental backup for a change made to a single block.
E. The incremental level 1 backup that immediately follows the enabling of block change tracking will not read the change tracking file to discover changed blocks.
第2题:
在while循环中,只能将循环条件设置为True或False。
第3题:
下面哪个函数可以返回逻辑值TRUE()
A.AND(TRUE, TRUE, FALSE)
B.OR(TRUE, TRUE, FALSE)
C.OR(FALSE, FALSE, FALSE)
D.NOT(TRUE)
第4题:
Examinethecode:CREATEROLEreadonlyIDENTIFIESUSINGapp.chk_readwrite;CREATEROLEreadwriteIDENTIFIEDUSINGapp.chk_readwrite;CREATEORREPLACEPROCEDUREapp.chk_readwriteAUTHIDCURRENT_USERISipchkSTRING(30);BEGINIFsys_context(‘USERENV’,’ISDBA’)=’TRUE’THENDBMS_SESSION.SET_ROLE‘READWRITE’);ELSEDBMS_SESSION.SET_ROLE(‘READONLY’);END;/WhichthreestatementscorrectlydescribetheSecureApplicationroledefinition?()
A.Nouserorapplicationhastorememberorhideapassword.
B.ItpreventseveryoneexceptatrueDBAsessionfromacquiringtheREADWRITErole.
C.app.chk_readwriteiscalledwheneverausertriestoaccessrowsprotectedbytheREADONLYorREADWRITElabel.
D.app.chk_readwriteiscalledbyusersorapplicationswhentheywanttoenabletheREADONLYor READWRITErole.
第5题:
下列选项中,关于page指令中指明需要内置Session对象的设置是()。
A.session=”false”
B.session=”0”
C.session=”1”
D.session=”true”
第6题:
【单选题】以下命令的输出是什么?grepl(“neeraj”,c(“dheeraj”,”Neeraj”,”neeraj”,”is”,”NEERAJ”))
A.["FALSE ","TRUE ","TRUE ","FALSE ",true]
B.["FALSE ","TRUE ","TRUE ","FALSE ",false]
C.["FALSE ","FALSE ","TRUE ","FALSE ",false]
D.None of the above