Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
sale

Want to Unlock All Questions for this Exam?

Full Exam Access, Discussions, No Robots Checks

Oracle 1z0-497 Exam Actual Questions

The questions for 1z0-497 were last updated on April 19, 2024.
  • Viewing page 1 out of 38 pages.
  • Viewing questions 1-4 out of 159 questions

Topic 1 - Single Topic

Question #1 Topic 1

Which statement about CDB architecture is true?

  • A. Oracle-supplied metadata resides only in the root container.
  • B. A seed PDB can sometimes be opened for particular operations.
  • C. Multiple PDBs with the same name can reside in the same CDB.
  • D. A CDB can have an infinite number of PDBs.
  • E. You can create common users in PDBs.
Reveal Solution Hide Solution   Discussion   1

Correct Answer: A 🗳️
References:

Question #2 Topic 1

As part of your Oracle Database 12c post-installation tasks, you run these commands:

Cd $ORACLE_HOME/bin -
srvctl stop database -d myDb
chopt enable dm
srvctl start database -d myDb
What does this do?

  • A. It enables the Oracle Data Mining option in your Oracle binary files.
  • B. It creates the Fast Recovery Area disk group.
  • C. It generates Client Static Library.
  • D. It configures one of the Oracle user accounts.
  • E. It configures Oracle Net Services.
  • F. It configures Oracle Messaging Gateway.
Reveal Solution Hide Solution   Discussion  

Correct Answer: A 🗳️
References:

Question #3 Topic 1

Exhibit below:


Which three statements are true about terminating a session?

  • A. Without any error, you can terminate the active session by executing:SQL> ALTER SYSTEM KILL SESSION '7, 15';
  • B. You can terminate the active session by executing:SQL> ALTER SYSTEM KILL SESSION "7, 15';But you also get the error message:ORA-00028: your session has been killed
  • C. You cannot terminate the active session. You have to wait until that session becomes inactive.
  • D. Without any error, you can terminate the inactive session by executing:SQL> ALTER SYSTEM KILL SESSION '12, 63';
  • E. When an inactive session is killed, the status of that session remains visible in VSSESSION with status KILLED. The rowf the terminated session is removed from VSSESSION after the user attempts to use the session again.
  • F. You cannot terminate the inactive session. You have to wait until that session becomes active again.
Reveal Solution Hide Solution   Discussion  

Correct Answer: BDE 🗳️
B (not A, Not C):
* You terminate a current session using the SQL statement ALTER SYSTEM KILL SESSION. The following statement terminates the session whose system identifier is 7 and serial number is 15:
* Terminating an Active Session
If a user session is processing a transaction (ACTIVE status) when you terminate the session, the transaction is rolled back and the user immediately receives the following message:
ORA-00028: your session has been killed
ALTER SYSTEM KILL SESSION '7,15';
E (not F): Terminating an Inactive Session
If the session is not making a SQL call to Oracle Database (is INACTIVE) when it is terminated, the ORA-00028 message is not returned immediately. The message is not returned until the user subsequently attempts to use the terminated session.
When an inactive session has been terminated, the STATUS of the session in the V$SESSION view is KILLED. The row for the terminated session is removed from V$SESSION after the user attempts to use the session again and receives the ORA-00028 message.
References:

Question #4 Topic 1

Which two statements are true about shared server sessions?

  • A. No Program Global Area (PGA) is allocated for shared server processes.
  • B. User Global Area is stored in System Global Area (SGA).
  • C. Shared SQL Area is allocated from Program Global Area (PGA).
  • D. Private SQL Area is allocated from Library Cache.
  • E. Large Pool is used for SQL work areas.
Reveal Solution Hide Solution   Discussion  

Correct Answer: BD 🗳️
References:

Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...