单项选择题
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,5
B.System Monitor Process (SMON):1,4,5
C.Process Monitor Process (PMON):4,5,6
D.Database Writer Process (DBWn):1,3,4
相关考题
-
多项选择题
WhichtwostatementsaretrueaboutSharedSQLAreaandPrivateSQLArea()
A.Shared SQL Area will be allocated in the shared pool.
B.Shared SQL Area will be allocated when a session starts.
C.Shared SQL Area will be allocated in the large pool always.
D.Private SQL Area will be allocated in the Program Global Area (PGA) always.
E.Shared SQL Area and Private SQL Area will be allocated in the PGA or large pool.
F.The number of Private SQL Area allocations is dependent on the OPEN_CURSORS parameter. -
单项选择题
These are points that describe the contents of different memory components: 1: Descriptive information or metadata about schema objects that are queried by using SQL statements 2: The run-time area for data manipulation language (DML) or data definition language (DDL) statements 3: Results of SQL queries and PL/SQL functions 4: Executable forms of SQL cursors, PL/SQL programs, and Java classes 5: The information necessary to reconstruct changes made to the database by a transaction Which of these will be stored in theShared Poolif the necessary configurations are done()
A.1 and 2
B.2 and 5
C.1,3,and 4
D.3,4,and 5
E.1,2,3,and 4 -
单项选择题
You have executed this command to change the size of the database buffer cache: SQL> ALTER SYSTEM SET DB_CACHE_SIZE=2516582; System altered. To verify the change in size, you executed this command: SQL> SHOW PARAMETER DB_CACHE_SIZE NAME TYPE VALUE ------------------- ----------- ------------------ db_cache_size big integer 4194304 (4M) Why is the value set to 4194304 and not to 2516582()
A.because 4194304 is the granule size
B.because 4194304 is the standard block size
C.because 4194304 is the largest nonstandard block size defined in the database
D.because 4194304 is the total size of data already available in the database buffer cache
