Yousetthefollowingparametersintheparameterfileandrestartedthedatabase:MEMORY_MAX_TARGET=0MEMORY_TARGET=500MPGA_AGGREGATE_TARGET=90MSGA_TARGET=270MWhichtwostatementsaretrueabouttheseparametersafterthedatabaseinstanceisrestarted()A.TheMEMORY_MAX_TARGETparameterisautomaticallysetto500mb.B.Thepga_AGGREGATE_TARGETandsga_TARGETparametersareautomaticallysettozero.C.ThevalueoftheMEMORY_MAX_TARGETparameterremainszerountilitischangedmanually.D.Thelowerboundsofpga_AGGREGATE_TARGETandsga_TARGETparametersaresetto90nband270mb,respectively
Yousetthefollowingparametersintheparameterfileandrestartedthedatabase:MEMORY_MAX_TARGET=0MEMORY_TARGET=500MPGA_AGGREGATE_TARGET=90MSGA_TARGET=270MWhichtwostatementsaretrueabouttheseparametersafterthedatabaseinstanceisrestarted()
A.TheMEMORY_MAX_TARGETparameterisautomaticallysetto500mb.
B.Thepga_AGGREGATE_TARGETandsga_TARGETparametersareautomaticallysettozero.
C.ThevalueoftheMEMORY_MAX_TARGETparameterremainszerountilitischangedmanually.
D.Thelowerboundsofpga_AGGREGATE_TARGETandsga_TARGETparametersaresetto90nband270mb,respectively
相关考题:
You set the following parameters in the parameter file and restarted the database:Which two statements are true regarding these parameters after the database instance is restarted?() A. The MEMORY_MAX_TARGET parameter is automatically set to 500 MBB. The value of the MEMORY_MAX_TARGET parameter remains zero till it is changed manuallyC. The PGA_AGGREGATE_TARGET and SGA_TARGET parameters are automatically set to zeroD. The lower bounds of PGA_AGGREGATE_TARGET and SGA_TARGET parameters are set to 90 MB and 270 MB, respectively
Examine the following parameters for a database instance: MEMORY_MAX_TARGET=0MEMORY_TARGET=0SGA_TARGET=0PGA_AGGREGATE_TARGET=500mWhich three initialization parameters are not controlled by Automatic Shared Memory Management (ASMM)?()A. LOG_BUFFERB. SORT_AREA_SIZEC. JAVA_POOL_SIZED. STREAMS_POOL_SIZEE. DB_16K_CACHE_SZIEF. DB_KEEP_CACHE_SIZE
阅读以下程序,填写运行结果________________. def f(): m=0 m=m+1 print(m,end='') #此处''为空字符串 f() f()