all sessions of the HR user only
all sessions of the HR user and the SYS user
the session of the HR user that executed the commands
all the sessions for which the database users have access privilege to the PERSONS table
第1题:
All the database users are presently connected to the database instance and working. The HR userhas opened three database sessions and executed the following command in one of his sessions: SQL> UPDATE persons SET ccode=’U031’ WHERE ccode=’U029’; 123 rows updated. SQL> DELETE FROM persons WHERE exp=’Y’; 3 rows deleted. The SYS user opens a new session after HR executed the above commands. Which sessions can seethe effect of the UPDATE and DELETE commands ()
第2题:
Your database is open and the LISTENER listener is running. The new DBA of the system stops the listener byusing the command:LSNRCTL> STOP What happens to the sessions that are presently connected to the database instance()
第3题:
View the Exhibit to examine the output produced by the following query at three different times since thedatabase instance started and has experienced workloads of different capacities:SQL> SELECT substr(component, 0, 10) COMP, current_size CS, user_specified_size US FROM v$memory_dynamic_componentsWHERE current_size!=0;What do you infer from this()
第4题:
The user SCOTT executes the following command successfully to increase the salary values in one of his sessions: SQL> UPDATE emp SET sal=sal*1.15 WHERE deptno=20; Before SCOTT ends the transaction, user HR who has the privileges on EMP table executes a query to fetch the salary details but finds the old salary values instead of the increased values. Why does HR still see the old data?()
第5题:
Your database is open and the LISTENER listener is running. The new DBA of the system stops thelistener by using the command: LSNRCTL> STOP What happens to the sessions that are presently connected to the database instance()
第6题:
You want to monitor and control the resource usage by sessions. You want to be warned automatically when more than 100 sessions are opened with your database. What action would you take to achieve this?()
第7题:
by assigning profiles for the users
by implementing Fine-Grained Auditing (FGA)
by granting a secure application role to the users
by implementing the Database Resource Manager plan
第8题:
The database instance is running with manual PGA management.
The database instance is running with manual shared memory management.
The database instance has the MEMORY_TARGET value set to a nonzero value.
All sessions are connected to the database instance in dedicated mode, and no RMAN or parallel queryoperations have been performed
第9题:
all sessions of the HR user only
all sessions of the HR user and the SYS user
the session of the HR user that executed the commands
all the sessions for which the database users have access privilege to the PERSONS table
第10题:
The command produces an error.
The profile is dropped and current user sessions use the DEFAULT profile immediately.
The profile is dropped and only the subsequent user sessions use the DEFAULT profile.
The profile is dropped, the sessions are terminated, and the subsequent user sessions use theDEFAULT profile.
第11题:
because of redo data from redo log file
because of data from database buffer cache
because of data from a temporary tablespace
because of undo data from the undo tablespace
第12题:
set the SESSIONS to 1 in the parameter file
grant SINGLE SESSION privilege to all of the users
set the SESSIONS_PER_USER to 1 in the users’ profile
grant RESTRICTED SESSION privilege to all of the database users
create a role with SINGLE SESSION privilege and assign the role to the users
第13题:
All the database users are presently connected to the database instance and working. The HR user hasopened three database sessions and executed the following command in one of his sessions:SQL> UPDATE persons SET ccode=’U031’ WHERE ccode=’U029’; 123 rows updated.SQL> DELETE FROM persons WHERE exp=’Y’;3 rows deleted. The SYS user opens a new session after HR executed the above commands. Which sessions can see theeffect of the UPDATE and DELETE commands()
第14题:
Examine the commands executed to monitor database operations: $> conn sys oracle/oracle@prod as sysdba SQL > VAR eid NUMBER SQL > EXEC: eid := DBMS_SQL_MONITOR.BEGIN_OPERATION (‘batch_job’ , FORCED_TRACKING => ‘Y’); Which two statements are true?()
第15题:
You created a profile APP_USER and assigned it to the users. After a month, you decide to drop theprofile.Some user sessions are currently connected to the database instance and are using the APP_USERprofile. This command is used to drop the profile: SQL> DROP PROFILE app_user; Which statement describes the result()
第16题:
User SCOTT executes the following command on the EMP table but has not issued COMMIT, ROLLBACK, orany data definition language (DDL) command: SQL> SELECT ename FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno; SCOTT has opened another session to work with the database instance. Which three operations would waitwhen issued in SCOTT’s second session()
第17题:
The current time zone for one of the user sessions is set to the database local time zone. For one application, the user session requires the time zone to be set to the local operating system time zone without affecting other user sessions. Which two solutions could the user implement to achieve this objective? ()
第18题:
The database users are connecting to the PROD database from different applications, thereby degrading the database performance. The senior database administrator suspects the large number of concurrent connections to be the reason for low performance and asks you to restrict the number concurrent connections per database user to one. Which action would you take to achieve this objective? ()
第19题:
The sessions are able to perform only queries.
The sessions are not affected and continue to function normally.
The active transactions are rolled back and the sessions get terminated.
The sessions are not allowed to perform any operations till the listener is started.
第20题:
All sessions of the HR user only
All sessions of the HR user and the SYS user
The session of the HR user that executed the commands
All the sessions for which the database users have access privilege to the PERSONS table
第21题:
The sessions are able to perform only queries.
The sessions are not affected and continue to function normally.
The sessions are terminated and the active transactions are rolled back.
The sessions are not allowed to perform any operations till the listener is started
第22题:
It terminates all user sessions.
It prevents users from logging in to the database remotely.
It halts the server until all user transactions are completed.
The server hangs, so users will receive an error asking them to login again.
Connected users would get an error with the message End of communication channel.
第23题:
LOCK TABLE emp IN SHARE MODE;
LOCK TABLE emp IN EXCLUSIVE MODE;
UPDATE emp SET sal=sal*1.2 WHERE job=ANAGER?UPDATE emp SET sal=sal*1.2 WHERE job=?ANAGER?
INSERT INTO emp(empno,ename) VALUES (1289,’Harry’);
SELECT ename FROM emp WHERE job=’CLERK’ FOR UPDATE OF empno
第24题:
They are able to perform only queries.
They are not affected and continue to function normally.
They are terminated and the active transactions are rolled back.
They are not allowed to perform any operations until the listener LISTENER is started