单选题You have created an Oracle 10g database named SALES, which will be used by an application named SalesOrders. Users of the SalesOrders application complain that application response time is slow when they generate reports. The SalesOrders application accesses a table that contains 10 million rows. You decide to create an index on this table using the NOLOGGING option so that the index creation process is completed in the least amount of time. Which of the following is NOT true about an index created with the NOLOGGING option?()A The index can be changed from NOLOGGING to LOGGINGB The index cannot be recovered even in the ARCHIVELOG mode.C The index can only be created if the base table is created with the NOLOGGING option.D The index can be recovered if you perform a backup after the CREATE INDEX statement.
单选题
You have created an Oracle 10g database named SALES, which will be used by an application named SalesOrders. Users of the SalesOrders application complain that application response time is slow when they generate reports. The SalesOrders application accesses a table that contains 10 million rows. You decide to create an index on this table using the NOLOGGING option so that the index creation process is completed in the least amount of time. Which of the following is NOT true about an index created with the NOLOGGING option?()
A
The index can be changed from NOLOGGING to LOGGING
B
The index cannot be recovered even in the ARCHIVELOG mode.
C
The index can only be created if the base table is created with the NOLOGGING option.
D
The index can be recovered if you perform a backup after the CREATE INDEX statement.
参考解析
解析:
暂无解析
相关考题:
多选题You executed the following command in Recovery Manager (RMAN) to perform a backup of the DETTBS tablespace: RMAN BACKUP TABLESPACE DETTBS; Under which conditions would this command execute successfully? ()AThe database is in NOMOUNT state.BThe database is in NOARCHIVELOG mode and the tablespace is online.CThe database is in NOARCHIVELOG mode and the tablespace is offline.DThe database is in ARCHIVELOG mode and the tablespace is offline.EThe database is in ARCHIVELOG mode and the tablespace is online.
单选题You dropped a schema of a user in an Oracle 10g by mistake. You decide to flash the database back to its previous state to restore the deleted schema. Which process writes the before images of the physical database blocks to the flashback database logs?()A LGWRB DBWRC MMOND RVWR
单选题You issued the following command: ALTER TABLE SCOTT.EMP SHRINK SPACE; The SCOTT.EMP table is stored in the DATA1 tablespace that has the following properties: DATA1 is a read/write tablespace. DATA1 is not autoextensible to an unlimited size. DATA1 is online. Segment space management for the DATA1 tablespace is manual. You issued the ALTER TABLE SCOTT.EMP SHRINK SPACE; command that generates the following error: ORA-10635: Invalid segment or tablespace type What could be the reason for the failure of the command?()A The tablespace, DATA1, is not read-only.B The tablespace, DATA1, is not autoextensible.C The tablespace, DATA1, is not offline.D The segment space management for the tablespace, DATA1, is manual.
单选题View the Exhibits. You performed operations on the DEPT4 table as shown in the Exhibit. When you perform the FlashbackVersions Query, you find that the first two updates are not listed. What could be the reason?()A The row movement is not enabled on the table.B The first two updates were not explicitly committed.C The Flashback Versions Query lists only the most recent update.D The Flashback Versions Query stops producing rows after it encounters a time in the past when the table structure was changed.
多选题You are enabling the Automatic Shared Memory Management feature in the Oracle Database 10g to ensure that the important memory structures of the System Global Area (SGA) are automatically adjusted depending on the database workload. You are using Enterprise Manager 10g to enable this feature. You are currently on the Administration tab page. Which two links should you click to go to the Memory Advisor page?()AAdvisor CentralBGlobal AttributesCResource MonitorsDMemory ParametersEDatabase Usage StatisticsFAll Initialization ParametersGAutomatic Workload Repository
多选题For an incomplete recovery, which four backup types can be used by Recovery Manager (RMAN) to restore data files? ()ARMAN image copiesBRMAN database backupsCRMAN tablespace backupsDusermanaged backups placed in the flash recovery areaEusermanaged backups that have been cataloged with RMANFusermanaged data file backups for which the full path name is specified
多选题In the parameter file of your production database, the FAST_START_MTTR_TARGET parameter is set to 300 to optimize instance recovery. While observing the performance of the database during instance recovery, you find that the redo log files are not sized properly to support this activity. Which two sources could you use to determine the optimal size of the redo log files?()Athe V$LOG viewBthe V$DBFILE viewCthe V$LOGFILE viewDthe V$INSTANCE_RECOVERY viewEOracle Enterprise Manager Database Control
单选题You are specifying French case-insensitive sorts by using the NSL_SORT parameter for the user session of the user, Scott. Which value will you set for the NLS_SORT parameter?()A FRENCH_AIB FRENCH_CIC AI_FRENCHD CI_FRENCH
多选题You performed a backup of the flash recovery area by using the following command for the first time: RMAN BACKUP RECOVERY AREA; Which files in the flash recovery area are backed up?()Aflashback logsBcurrent control fileCcontrol file autobackupsDincremental backup sets
单选题You decide to enable Flashback Database in your Oracle 10g database so that future recoveries will take less time than traditional recoveries. Which of the following parameters must be included in your initialization parameter file before enabling Flashback Database?()A DB_RECOVERY_FILE_DEST onlyB DB_FLASHBACK_RETENTION_TARGET onlyC DB_RECOVERY_FILE_DEST_SIZE and DB_RECOVERY_FILE_DEST onlyD DB_RECOVERY_FILE_DEST and DB_FLASHBACK_RETENTION_TARGET onlyE DB_RECOVERY_FILE_DEST_SIZE, DB_RECOVERY_FILE_DEST andF DB_FLASHBACK_RETENTION_TARGET
多选题You are working on an Oracle Database 10g database. Because of data loss, you decided to perform a Flashback Database operation using the following command: SQL FLASHBACK DATABASE TO TIMESTAMP(SYSDATE 5/24); Which two statements are true? ()ASYSDATE should not be used with TIMESTAMP.BThe database must have multiplexed redo log files.CThe database must be in the MOUNT state to execute the command.DThe database must be opened with the RESETLOGS option after the flashback operation.EThe entire database needs to be restored from the most recent backup before the flashback operation.