A. Multiple change tracking files can be created for a database.
B. The change tracking file must be created after the first level 0 backup.
C. RMAN does not support backup and recovery of the change tracking file.
D. The database clears the change tracking file and starts tracking changes again, after whole database restore and recovery operations.
第1题:
A.OnlydatablocksoftheSYSTEMtablespacewillbechecked.
B.OnlydatablocksoftheSYSAUXtablespacewillbechecked.
C.Achecksumwilloccuronlyonthecheckpoint.
D.Achecksumwilloccureverytimeablockismodified.
第2题:
A.alterdatabasecreateblockchangetrackingfile
B.alterdatabaseenableblockchangefile
C.alterdatabaseenableblockchangetrackingusingfile,/ora01/opt/block_change_tracking.fil
D.altersystemenableblockchangetrackingusingfile’/ora01/opt/block_change_tracking.fil’
E.altersystemblockchangetrackingon
第3题:
要使文件列表框中的文件随目录列表框中所选择的当前目录的不同而发生变化,应该
A.在File1中的Change事件中,输入File1.Path=Dir1.Path
B.在Dirl中的Change事件中,输入File1.Path=Dir1.Path
C.在File1中的Change事件中,输入Dir1.Path=File1.Path
D.在Dir1中的Change事件中,输入Dir1.Path=File1.Path
第4题:
A.V$BLOCK_CHANGE
B.V$BLOCK_CHANGE_TRACKING
C.V$BLOCKCHANGE
D.V$BLOCK_TRACKING
第5题:
______ processing offers many ways to edit text and establish document formats.you can easily insert, delete, change, move and copy words or blocks of text.
A.Data
B.Database
C.Word
D.File
第6题:
在窗体上画一个名称为Drive1的驱动器列表框,一个名称为Dir1的目录列表框,一个名称为File1的文件列表框,两个名称分别为Label1、Label2,标题分别为空白和“共有文件”的标签。编写程序,使得驱动器列表框与目录列表框、目录列表框与文件列表框同步变化,并且在标签kabel1中显示当前文件夹中文件的数量,如图所示。
能够正确实现上述功能的程序是
A.Private Sub Dir1_Change( ) Filc1.Path=Dir1.Path End Sub Private Sub Drive1_Change( ) Dir1.Path=Drive1.Drive Label1.Caption=File1.ListCount End Sub
B.Private Sub Dir1_Change( ) File1.Path=Dir1.Path End Sub Private Sub Drive1_Change( ) Dir1.Path=Drive1.Drive Label1.Caption=File1.List End Sub
C.Private Sub Dir1_Change( ) File1.Path=Dir1.Path Label1.Caption=File1.ListCount End Sub Private Sub Drive1_Change( ) Dir1.Path=Drive1.Drive Label1.Caption=File1.ListCount End Sub
D.Private Sub Dir1_Change( ) File1.Path=Dir1.Path Label1.Caption=File1.List End Sub Private Sub Drive1_Change( ) Dir1.Path=Drive1.Drive Label1.Caption=File1.List End Sub