TCP
Task
Monitor
Dispatcher
Shared Server
Shutdown address
第1题:
第2题:
What is the new Oracle Shared Server?()
第3题:
On a POWER7 processor based server what is the minimum number of cores used by the Hypervisor to run four threads?()
第4题:
Which of the following commands should be used to monitor the average number of threads in the scheduler’s run queue for any given interval?()
第5题:
A customer needs to ensure that the number of threads servicing an application does not exceed the number of database connections available to the application. What step must you take to address this situation?()
第6题:
Which two statements are true?()
第7题:
The direct handoff connection method to an Oracle9i Shared Server involves fewer messages than in previous releases of the multithreaded architecture. Which type of message has been eliminated?()
第8题:
Your application uses two threads, named threadOne and threadTwo. You need to modify the code to prevent the execution of threadOne until threadTwo completes execution. What should you do?()
第9题:
You are designing a Windows Azure application. Messages will be placed into a Windows Azure Queue and then processed by a worker role. There is no requirement for adherence to the Windows Azure Service Level Agreement (SLA). You need to recommend an approach for concurrently processing messages while minimizing compute cost. What should you recommend?()
第10题:
1
2
4
8
第11题:
An improved version of multithreaded server configuration.
A connection pooling configuration where several clients are connected to the same server process.
Two more database servers, which share data by means of database links; the client software is unaware to which server it is connected.
A configuration of Real Application Cluster where the client connection is routed to the least busy instance.
第12题:
Thread creation must be routed through a dispatcher process
The local listener may spawn a now process and have that new process create a thread
Each Oracle process runs an SCMN thread.
Each multithreaded Oracle process has an SCMN thread.
The local listener may pass the request to an existing process which in turn will create a thread.
第13题:
第14题:
Which three are direct benefits of the multiprocess, multithreaded architecture of Oracle Database 12cwhen it is enabled?()
第15题:
Which of the following commands should be used to monitor the number of threads on the scheduler’s run queue for any given interval?()
第16题:
The multithreaded agent architecture for heterogeneous services is similar to the Oracle multithreaded server architecture. The principal difference is that it used threads instead of processes. What are thee kinds of threads that it uses?()
第17题:
The listener uses dynamic information about the database and instance it has received through service registration before using information statically configured. Some services such as heterogeneous services and external procedures require the use of information statically configured within listener.ora. In order to support this, which tool could be used to configure the listener statically?()
第18题:
Which two statements are true?()
第19题:
Which three statements are true when the listener handles connection requests to an Oracle 12cdatabase instance with multithreaded architecture enabled In UNIX?()
第20题:
You have two processes, P1 and P2 on you computer. You notice that when you execute both the process at a time, process P2 always times out, while if you pause process P1, process P2 starts running fine. Process P1 runs in "Real Time" priority and uses twelve threads while process P1 runs in "Normal" priority and uses one thread. What should you do to solve this problem? ()
第21题:
Reduced logical I/O
Reduced virtual memory utilization
Improved parallel Execution performance
Improved Serial Execution performance
Reduced physical I/O
Reduced CPU utilization
第22题:
TCP
Task
Monitor
Dispatcher
Shared Server
Shutdown address
第23题:
It is possible for more than two threads to deadlock at once.
The JVM implementation guarantees that multiple threads cannot enter into a deadlocked state.
Deadlocked threads release once their sleep() method's sleep duration has expired.
Deadlocking can occur only when the wait(), notify(), and notifyAll() methods are used incorrectly.
It is possible for a single-threaded application to deadlock if synchronized blocks are used incorrectly.
If a piece of code is capable of deadlocking, you cannot eliminate the possibility of deadlocking by inserting invocations of Thread.yield().
第24题:
Configure threadOne to run at a lower priority.
Configure threadTwo to run at a higher priority.
Use a WaitCallback delegate to synchronize the threads.
Call the Sleep method of threadOne.
Call the SpinLock method of threadOne.