单选题During regular database operation, which background process will take smaller blocks of free space in a dictionary-managed tablespace and move things around to make bigger pieces of free space?()ADBW0 BLGWR CARCH DSMON EPMON

单选题
During regular database operation, which background process will take smaller blocks of free space in a dictionary-managed tablespace and move things around to make bigger pieces of free space?()
A

DBW0 

B

LGWR 

C

ARCH 

D

SMON 

E

PMON


参考解析

解析: 暂无解析

相关考题:

You executed the following commands in a database session:What could have caused the recycle bin to clean up?() A. There is demand for space from the new table从B. The undo tablespace does not have sufficient free spaceC. The new table name is the same as the table name in the recycle binD. The temporary tablespace that is assigned to you does not have sufficient free space

Evaluate the following command and its output:Which two statements correctly interpret the output?() A. FREE_SPACE indicates only the space that is currently unallocated.B. ALLOCATED_SPACE indicates only the space currently allocated and in use.C. FREE_SPACE indicates only the space that is currently allocated and available for reuse.D. ALLOCATED_SPACE indicates both the space currently allocated and used, and the space that is available for reuse.E. FREE_SPACE indicates both the space that is currently allocated and available for reuse, and the space that is currently unallocated.

Note the functionalities of various background processes:  1:Perform recovery at instance startup. SMON  2:Free the resources used by a user process when it fails. PMON  3:Cleanup the database buffer cache when a process fails. PMON  4:Dynamically register database services with listeners. PMON  5:Monitor sessions for idle session timeout. PMON  6:Cleanup unused temporary segments. SMON  7:Record the checkpoint information in control file. CKPT  Which option has the correct functionalities listed for a background process()A、Checkpoint (CKPT): 1, 2, 5B、System Monitor (SMON): 1, 6C、Process Monitor (PMON): 4, 6, 7D、Database Writer (DBWR): 1, 3, 4

An administrator has added a new hard drive to a server that is running out of space on its C Drive and is experiencing slow performance.  The administrator needs to free up space on the C Drive.Which of the following is the BEST action for the administrator to take to free up space on the drive?()A、Move the page file to the new drive.B、Copy the system32 directory to the new drive.C、Convert the C drive to a basic disk.D、Setup a software RAID to mirror the C drive.

While Monitoring the space usage in your database that is in ARCHIVELOG mode you observed that the flash recovery area does not have enough free space to accommodate any more files and you do not have necessary permissions to add more space to it. Identify the two events that can occur in the event of a log switch? ()(Choose two.)A、An entry is created in the alert log file and the database instance continues to function normallyB、The log switch hangs occur for transactions until free space is available in the flash recovery areaC、The Oracle database server deletes a file that is on the obsolete file list to make free space in the flash recovery areaD、The database instance status is implicitly changed to RESTRICTED mode and file creations to the flash recovery area are prevented

Evaluate the following command and its output:   SQLSELECT * FROM dba_temp_free_space;  TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE  LMTEMP 250609664 101048576 149561088 Which two statements correctly interpret the output?()A、 FREE_SPACE indicates only the space that is currently unallocated.B、 ALLOCATED_SPACE indicates only the space currently allocated and in use.C、 FREE_SPACE indicates only the space that is currently allocated and available for reuse.D、 ALLOCATED_SPACE indicates both the space currently allocated and used,and the space that is available for reuse.E、 FREE_SPACE indicates both the space that is currently allocated and available for reuse,and the space that is currently unallocated.

You want to be notified when the space usage of an existing critical tablespace has reached 75% of the allocated space. Which option would you use to achieve this?()A、run a procedure to check the tablespace space usageB、define the warning threshold for the tablespace at 75% in Database ControlC、create a trigger to be executed when tablespace space usage reaches 75%D、submit a job by using DBMS_JOB package to check the free space in the tablespace at regular intervalsE、define the warning threshold to be 75% for the tablespace by ALTER TABLESPACE .. ADD THRESHOLD command

During regular database operation, which background process will take smaller blocks of free space in a dictionary-managed tablespace and move things around to make bigger pieces of free space?()A、DBW0 B、LGWR C、ARCH D、SMON E、PMON

As a database administrator you spend a lot of time observing and setting various storage parameter values for your application tables in order to gain performance benefits. Which task would you perform to reduce this overhead?()A、Coalesce the application tables at a regular interval.B、Export and Import the application tables a regular interval.C、Drop and recreate the application tables at a regular interval.D、Move the application tables to a tablespace with less space usage.E、Distribute the application tables across multiple tablespaces depending on usage.F、Move the application tables to automatic segment space management tablespace.

Note the following functionalities of various background processes:  1:Record the checkpoint information in data file headers. CKPT  2:Perform recovery at instance startup. SMON  3:Cleanup unused temporary segments. SMON  4:Free the resources used by a user process when it fails.  5:Dynamically register database services with listeners.  6:Monitor sessions for idle session timeout.  Which option has the correct functionalities listed for a background process()A、Archiver Process (ARCn):1, 2,5B、System Monitor Process (SMON):1,4,5C、Process Monitor Process (PMON):4,5,6D、Database Writer Process (DBWn):1,3,4

You have set Tablespace Full Metrics Threshold values for the USERS tablespace as follows:Warning (%): 90Critical (%): 95 Which background process is responsible for issuing alerts when the threshold is crossed()A、System monitor (SMON)B、Process monitor (PMON)C、Memory manager process (MMAN)D、Manageability Monitor process (MMON)

You executed the following command to create a tablespace called SALES_DATA: SQL CREATE TABLESPACE sales_data DATAFILE SIZE 100M SEGMENT SPACE MANAGEMENT AUTO; Which two statements are true about the SALES_DATA tablespace()A、The database automatically determines the extent-sizing policy for the tablespace.B、The segments are automatically shrunk when the contents are removed from them.C、The allocation of extents within the tablespace is managed through the dictionary tables.D、The space utilization description of the data blocks in segments is recorded in bitmap blocks.E、The space utilization description of the data blocks in segments is managed through free lists.

By default, checkpoints happen at least as often as().A、Redo log switches. B、UPDATE statements are issued against the database. C、The SYSTEM tablespace is accessed. D、SMON coalesces free space in a tablespase.

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

You executed the following command to create a tablespace called SALES_DATA:   CREATE TABLESPACE sales_data DATAFILE SIZE 100M SEGMENT SPACE MANAGEMENT AUTO;  Which two statements are true about the SALES_DATA tablespace ()A、The database automatically determines the extent-sizing policy for the tablespace.B、The segments are automatically shrunk when the contents are removed from them.C、The allocation of extents within the tablespace is managed through the dictionary tables.D、The space utilization description of the data blocks in segments is recorded inbitmapblocks.E、The space utilization description of the data blocks in segments is managed through free lists.MANUAL

You have set Tablespace Full Metrics Threshold values for the USERS tablespace as follows: Warning (%): 90  Critical (%): 95  Which background process is responsible for issuing alerts when the threshold is crossed()A、System monitor (SMON)B、Process monitor (PMON)C、Memory manager process (MMAN)D、Manageability Monitor process (MMON)

Note the following functionalities of various background processes: 1. Record the checkpoint information in data file headers. 2. Perform recovery at instance startup. 3. Cleanup unused temporary segments. 4. Free the resources used by a user process when it fails. 5. Dynamically register database services with listeners. 6. Monitor sessions for idle session timeout. Which option has the correct functionalities listed for a background process()A、Archiver Process (ARCn): 1, 2, 5B、System Monitor Process (SMON): 1, 4, 5C、Process Monitor Process (PMON): 4, 5, 6D、Database Writer Process (DBWn): 1, 3, 4

单选题You have set Tablespace Full Metrics Threshold values for the USERS tablespace as follows:Warning (%): 90Critical (%): 95 Which background process is responsible for issuing alerts when the threshold is crossed()ASystem monitor (SMON)BProcess monitor (PMON)CMemory manager process (MMAN)DManageability Monitor process (MMON)

单选题ORACLE数据库启动后,有哪五个必要的后台进程(mandatory background processes)()ACKPT DBWn LGWR PMON SMONBARCn CKPT DBWn LGWR SMONCCJQ0 CKPT DBWn LGWR SMONDDBWn LGWR PMON RECO SMONECKPT DBWn LMON PMON SMON

单选题You want to be notified when the space usage of an existing critical tablespace has reached 75% of the allocated space. Which option would you use to achieve this?()Arun a procedure to check the tablespace space usageBdefine the warning threshold for the tablespace at 75% in Database ControlCcreate a trigger to be executed when tablespace space usage reaches 75%Dsubmit a job by using DBMS_JOB package to check the free space in the tablespace at regular intervalsEdefine the warning threshold to be 75% for the tablespace by ALTER TABLESPACE .. ADD THRESHOLD command

多选题You executed the following command to create a tablespace called SALES_DATA:   CREATE TABLESPACE sales_data DATAFILE SIZE 100M SEGMENT SPACE MANAGEMENT AUTO;  Which two statements are true about the SALES_DATA tablespace ()AThe database automatically determines the extent-sizing policy for the tablespace.BThe segments are automatically shrunk when the contents are removed from them.CThe allocation of extents within the tablespace is managed through the dictionary tables.DThe space utilization description of the data blocks in segments is recorded inbitmapblocks.EThe space utilization description of the data blocks in segments is managed through free lists.MANUAL

多选题You executed the following command to create a tablespace called SALES_DATA: SQL CREATE TABLESPACE sales_data DATAFILE SIZE 100M SEGMENT SPACE MANAGEMENT AUTO; Which two statements are true about the SALES_DATA tablespace()AThe database automatically determines the extent-sizing policy for the tablespace.BThe segments are automatically shrunk when the contents are removed from them.CThe allocation of extents within the tablespace is managed through the dictionary tables.DThe space utilization description of the data blocks in segments is recorded in bitmap blocks.EThe space utilization description of the data blocks in segments is managed through free lists.

单选题Note the functionalities of various background processes:  1:Perform recovery at instance startup. SMON  2:Free the resources used by a user process when it fails. PMON  3:Cleanup the database buffer cache when a process fails. PMON  4:Dynamically register database services with listeners. PMON  5:Monitor sessions for idle session timeout. PMON  6:Cleanup unused temporary segments. SMON  7:Record the checkpoint information in control file. CKPT  Which option has the correct functionalities listed for a background process()ACheckpoint (CKPT): 1, 2, 5BSystem Monitor (SMON): 1, 6CProcess Monitor (PMON): 4, 6, 7DDatabase Writer (DBWR): 1, 3, 4

单选题Note the following functionalities of various background processes: 1. Record the checkpoint information in data file headers. 2. Perform recovery at instance startup. 3. Cleanup unused temporary segments. 4. Free the resources used by a user process when it fails. 5. Dynamically register database services with listeners. 6. Monitor sessions for idle session timeout. Which option has the correct functionalities listed for a background process()AArchiver Process (ARCn): 1, 2, 5BSystem Monitor Process (SMON): 1, 4, 5CProcess Monitor Process (PMON): 4, 5, 6DDatabase Writer Process (DBWn): 1, 3, 4

单选题During regular database operation, which background process will take smaller blocks of free space in a dictionary-managed tablespace and move things around to make bigger pieces of free space?()ADBW0 BLGWR CARCH DSMON EPMON

多选题Evaluate the following command and its output:   SQLSELECT * FROM dba_temp_free_space;  TABLESPACE_NAME TABLESPACE_SIZE ALLOCATED_SPACE FREE_SPACE  LMTEMP 250609664 101048576 149561088 Which two statements correctly interpret the output?()AFREE_SPACE indicates only the space that is currently unallocated.BALLOCATED_SPACE indicates only the space currently allocated and in use.CFREE_SPACE indicates only the space that is currently allocated and available for reuse.DALLOCATED_SPACE indicates both the space currently allocated and used,and the space that is available for reuse.EFREE_SPACE indicates both the space that is currently allocated and available for reuse,and the space that is currently unallocated.

单选题Note the following functionalities of various background processes:  1:Record the checkpoint information in data file headers. CKPT  2:Perform recovery at instance startup. SMON  3:Cleanup unused temporary segments. SMON  4:Free the resources used by a user process when it fails.  5:Dynamically register database services with listeners.  6:Monitor sessions for idle session timeout.  Which option has the correct functionalities listed for a background process()AArchiver Process (ARCn):1, 2,5BSystem Monitor Process (SMON):1,4,5CProcess Monitor Process (PMON):4,5,6DDatabase Writer Process (DBWn):1,3,4

单选题You have set Tablespace Full Metrics Threshold values for the USERS tablespace as follows: Warning (%): 90  Critical (%): 95  Which background process is responsible for issuing alerts when the threshold is crossed()ASystem monitor (SMON)BProcess monitor (PMON)CMemory manager process (MMAN)DManageability Monitor process (MMON)