View this parameter setting in your database:   DB_CREATE_FILE_DEST=’D:// /oracle/product/10.2.0/oradata/oracle’  You created a tablespace by using this command:   CREATE TABLESPACE USERS;  Which two statements are true about the USERS tablespace?()A、The 

题目

View this parameter setting in your database:   DB_CREATE_FILE_DEST=’D:// /oracle/product/10.2.0/oradata/oracle’  You created a tablespace by using this command:   CREATE TABLESPACE USERS;  Which two statements are true about the USERS tablespace?()

  • A、The tablespace has two data files.
  • B、An error is reported and tablespace creation fails.
  • C、Data files are created with names generated by the instance.
  • D、The tablespace can be extended without specifying the data file.
  • E、Data files belonging to the USERS tablespace cannot be renamed.
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

To accomplish user-managed backup for the USERS tablespace, you issued the following command to put the database in backup mode:   SQL> ALTER TABLESPACE users BEGIN BACKUP;   While copying the file to the backup destination a power outage caused the instance to te minate abnormally.  Which statement is true about the next database startup and the USERS tablespace?()  

  • A、 The database will open,and the tablespace automatically comes out of the backup mode.
  • B、 The database will be mounted,and recovery must be performed on the USERS tablespace.
  • C、 The database will be mounted,and data files in the USERS tablespace must be taken out of the backup mode.
  • D、 The database will not be mounted,and you must restore all the data files for the USERS tablespace from the backup,and perform recovery.

正确答案:C

第2题:

Examine the command that is used to create a table:  SQL> CREATE TABLE orders(oid NUMBER(6) PRIMARY KEY, odate DATE, ccode NUMBER(6), oamt NUMBER(10,2)) TABLESPACE users;  Which two statements are true about the effect of the above command) ()

  • A、A CHECK constraint is created on the OID column.
  • B、A NOT NULL constraint is created on the OID column.
  • C、The ORDERS table is the only object created in the USERS tablespace.
  • D、The ORDERS table and a unique index are created in the USERS tablespace.
  • E、The ORDERS table is created in the USERS tablespace and a unique index is created on the OIDcolumn in the SYSTEM tablespace.

正确答案:B,D

第3题:

Twenty database users are connected to your database. Five of the users are running long queries involving sort operations. The TEMP tablespace is the default temporary tablespace for your database. You are performing offline tablespace backups of individual tablespaces and erroneously execute the following statement:   SQL>ALTER TABLSPACE temp OFFLINE NORMAL;   What is the result of this statement?()

  • A、 The TEMP tablespace is taken offline. The users using the TEMP tablespace for sorting are disconnected after their queries complete.
  • B、 The TEMP tablespace is taken offline. The users using the TEMP tablespace for sorting are disconnected and must re-execute their queries.
  • C、 The TEMP tablespace is taken offline. The users using the TEMP tablespace for sorting are not disconnected, but these users must re-execute their queries.
  • D、 The TEMP tablespace is not taken offline. The users using the TEMP tablespace for sorting are not disconnected, and their queries execute successfully.

正确答案:D

第4题:

Adam is working as a Database Administrator (DBA) for TeleSoft Corporation. His database is running in the ARCHIVELOG mode. During database startup, he discovers that one of the disks crashed, resulting in the permanent loss of a read-write USERS tablespace. The USERS01.dbf datafile belongs to the USERS tablespace and is 500 MB in size. He needs to recover the USERS tablespace from the backup. While reviewing the backup details, he discovers that the most recent available backup is five days old. This backup was taken when the USERS tablespace was read-only. After correcting the hardware problem that caused the failure, what should Adam do to recover the USERS tablespace?()

  • A、 Restore the USERS01.dbf file from the backup, and open the database using the STARTUP command.
  • B、 Restore the USERS01.dbf file using the RECOVER TABLESPACE command, and open the database using the ALTER DATABASE OPEN statement.
  • C、 Restore the USERS01.dbf file from the backup, recover the USERS tablespace using the RECOVER TABLESPACE command, and open the database using the ALTER DATABASE OPEN statement.
  • D、 Restore the USERS01.dbf file from the backup and change the status of the USERS tablespace from read-only to read-write using the ALTER TABLESPACE USERS READ WRITE statement. Then, recover the USERS tablespace using the RECOVER TABLESPACE command, and open the database using the ALTER DATABASE OPEN statement.

正确答案:C

第5题:

You are managing an Oracle Database 11g database. You want to take a backup on tape drives of the USERS tablespace that has a single data file of 900 MB. You have tape drives of 300 MB each. To accomplish the backup, you issued the following RMAN command: RMAN> BACKUP SECTION SIZE 300M TABLESPACE users; Identify the appropriate configuration to accomplish faster and optimized backups using the above command.()

  • A、The SBT channel must be configured, with the MAXPIECESIZE set to 300 mb.
  • B、The SBT channel must be configured, with the parallelism setting for the SBT devices set to 3.
  • C、The COMPATIBLE initialization parameter for the database instance must be set to at least 10.0.
  • D、The SBT channel must be configured, with the default parallelism setting for the SBT devices set to 1

正确答案:B

第6题:

You are a DBA of your company. You created a database named SALES on an Oracle 10g instance. You have defined an index named INDEX1 on the database table named INVENTORY. Users are complaining that queries accessing the INVENTORY table are running slow. Upon investigation you determine that the tablespace where the index is located is experiencing high I/O and you decide to relocate the index to another tablespace. Which of these will be the best way to accomplish this objective?()

  • A、 Rebuild the index.
  • B、 Coalesce the index.
  • C、 Drop and re-create the index in the new tablespace.
  • D、 Relocate the index using the ALTER INDEX...MOVE statement.

正确答案:A

第7题:

You want to drop the TBS1 tablespace from your database.  You also want to delete the corresponding data files automatically, and not have to do it manually.  What should you do?()

  • A、Use the DROP DATAFILE command.
  • B、Use the DROP TABLESPACE command.
  • C、Ensure that all database files are Oracle Managed Files before using the DROP TABLESPACE command.
  • D、Ensure that the DB_FILE_CREATE_DEST initialization parameter is set before using the DROP TABLESPACE command.

正确答案:B

第8题:

Which command would correctly start a TSPITR of the USERS tablespace?()  

  • A、 recover tablespace users until time ,,10/06/2008:22:42:00 auxiliary ,,c/oracle/auxiliary
  • B、 recover tablespace users time ,,10/06/2008:22:42:00 auxiliary destination ,,c:/oracle/auxiliary; time ,, 10/06/2008:22:42:00 auxiliary destination ,,c/oracle/auxiliary
  • C、 recover tablespace users to point-in.
  • D、 recover tablespace users except time ,,10/06/2008:22:42:00 auxiliary destination ,,c:/oracle/auxiliary
  • E、 recover tablespace users until time ,,10/06/2008:22:42:00 auxiliary destination ,,c:/oracle/auxiliary

正确答案:E

第9题:

While creating a database using Database Configuration Assistant tool, you created a database default temporary tablespace. Which activity would cause the default temporary tablespace of the database to be used?()

  • A、the CREATE TABLE .. command
  • B、sorting of the SYSTEM tablespace’s data
  • C、sorting of data required by recursive SQL statements
  • D、the CREATE TABLE .. ORGANIZATION EXTERNAL .. command
  • E、sorting of data if the users have not been allocated temporary tablespace explicitly
  • F、sorting of data if the users have been allocated temporary tablespace explicitly

正确答案:E

第10题:

Examine the commands executed in a DBA session:SQL> CREATE BIGFILE TABLESPACE MRKT 2 DATAFILE ’/u01/app/oracle/oradata/orcl/mrkt.dbf’ size 10M LOGGING 3 EXTENT MANAGEMENT LOCALSEGMENT SPACE MANAGEMENT AUTO; Tablespace created. SQL> ALTER DATABASE DEFAULT TABLESPACE MRKT; Database altered.  Which two statements are trueregarding the MRKT tablespace()

  • A、No more data files can be added to the tablespace.
  • B、Segment space is managed by free lists in the tablespace.
  • C、A user created without being assigned a default tablespace uses this tablespace.
  • D、The tablespace can be dropped with the current setting with segments present in it

正确答案:A,C

更多相关问题