exam questions

Exam 1z0-083 All Questions

View all questions & answers for the 1z0-083 exam

Exam 1z0-083 topic 1 question 32 discussion

Actual exam question from Oracle's 1z0-083
Question #: 32
Topic #: 1
[All 1z0-083 Questions]

Which two are true about the Oracle database methodology? (Choose two.)

  • A. The Oracle Database time model should be used to find the database and instance areas most in need of tuning.
  • B. Tuning activities should stop once the user is satisfied with performance.
  • C. Tuning activities should stop once agreed service levels for performance have been met.
  • D. The database instance memory should always be tuned before tuning any file systems.
  • E. SQL statements should always be tuned before tuning any file systems.
  • F. The alert log should be used to find the database and instance areas most in need of tuning.
Show Suggested Answer Hide Answer
Suggested Answer: AC 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
janw
Highly Voted 4 years, 4 months ago
AE i suppose
upvoted 13 times
...
xRodge
Highly Voted 3 years, 4 months ago
Few differences of opinions here. I believe that A is definitely correct. It will show what the database is spending most time on, that (usually) indicates where tuning is required. B and C relate to user experience. We (DBAs) should work with users, to help achieve their requirements. However, we can be proactive outside of this. Just because a user is happy - doesn't mean we can't make them "happier" by doing tuning activities before things get bad. So, neither of these should be true. D is incorrect, memory is much less likely to be a culprit of an issue, than a filesystem I/O issue. E is correct. We should never try to tune a file system first. If we make a file system change that fixes one SQL statement - it might harm a different SQL statement. However, if we tune the first SQL statement, it will have no impact on the rest of the system. Therefore, we should try to tune "bad SQL" first. F is incorrect - the alert log gives us little/no information to do with tuning. So, AE are correct.
upvoted 10 times
acesonly
6 months, 3 weeks ago
Great explanation, thank you. I personally agree, however, I'm under impression that in some cases, correct answers don't necessarily align with the common sense, but are based in an obscure sentence in the documentation, as here: "The Oracle performance method can be applied until performance goals are met or deemed impractical." https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-811C438C-149B-4BFE-A40A-1FAF2BF67C95:~:text=The%20Oracle%20performance%20method%20can%20be%20applied%20until%20performance%20goals%20are%20met%20or%20deemed%20impractical.
upvoted 1 times
acesonly
6 months, 3 weeks ago
I doubt that some answers are not offered in good faith, such as option C: "Tuning activities should stop once agreed service levels for performance have been met.". I'm aiming at the "...should..." vs. the "...can..." in the link I gave above.
upvoted 1 times
...
...
...
wagihov
Most Recent 1 day, 21 hours ago
Selected Answer: AE
Following oracle tuning methodology for tuning from top to bottom, E is correct and D is wrong. B and C are almost the same and very tricky. Although oracle methodology is to stop tuning when a goal is reached, but this goal shouldn't be just a SLA or a satisfied user as the goal can be beyond that. A is definitely correct, while F is wrong as alert.log is irrelevant to performance tuning.
upvoted 1 times
...
cujar2003
1 month, 1 week ago
Selected Answer: AE
The Oracle Database time model should be used to find the database and instance areas most in need of tuning. SQL statements should always be tuned before tuning any file systems.
upvoted 1 times
...
hojunlee
1 year, 2 months ago
I guess that correct answers are A and C.
upvoted 1 times
...
flaviogcmelo
1 year, 3 months ago
Selected Answer: AC
A. https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-8DEA5079-6AAB-47D8-857A-9B5301843290 C. https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-6203E485-FA06-4EE3-9003-4449FBDE214B
upvoted 1 times
...
kaka321
1 year, 4 months ago
AC is right tunning should be based on agreed SLA see https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-D5B54332-FE40-4537-B1C9-0704343CEF54
upvoted 1 times
...
Guhborges
1 year, 5 months ago
Selected Answer: AC
The two true statements about the Oracle database methodology are: A. The Oracle Database time model should be used to find the database and instance areas most in need of tuning. C. Tuning activities should stop once agreed service levels for performance have been met. Why not E? E. While tuning SQL statements is an important aspect of Oracle database performance tuning, it is not necessary to tune SQL statements before tuning any file systems. Again, the order of tuning activities may depend on the specific needs of the system.
upvoted 1 times
...
Guhborges
1 year, 5 months ago
Selected Answer: AC
A,C 100% sure
upvoted 1 times
...
_gio_
1 year, 7 months ago
Selected Answer: AC
https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-6203E485-FA06-4EE3-9003-4449FBDE214B
upvoted 1 times
...
jareach
1 year, 10 months ago
Selected Answer: AE
A: time model gives the best view of how the instance spends its time. E: Unless the instance configuration is totally off, the SQL statement tuning has the greatest performance benefit.
upvoted 2 times
...
G_C
2 years, 2 months ago
Selected Answer: AC
Because of the same reason as Asmodeus: 1. This feedback makes it easier to set performance goals. Improved performance can be measured in terms of business goals rather than system statistics (...) 2. (...) The Oracle performance method can be applied until performance goals are met or deemed impractical (...).
upvoted 1 times
...
Shidt
2 years, 6 months ago
NIEMNkaoguolema
upvoted 1 times
...
brolem
2 years, 7 months ago
The alert log and trace files are vital in instance tuning. They may point you to the problem (memory bottlenecks, locked sessions): - End to End Application tracing identifies excessive workloads on the system by specific user, service, or application component. - Server-generated alerts automatically provide notifications when impending problems are detected. See Oracle Database Administrator's Guide to learn how to monitor the operation of the database with server-generated alerts.
upvoted 1 times
...
Neil107
3 years, 4 months ago
It's AE. Tuning is an ongoing process.
upvoted 2 times
...
marpayer
3 years, 6 months ago
I think A y B. D and E can be wrong because they said ALWAYS and even in most of the case you will tune the instance and the SQL, maybe there is some weird cases where you see the issue is with the I/O and you start tunning first the File Systems
upvoted 2 times
...
Asmodeus
3 years, 8 months ago
I guess that correct answers are A and C. C because of documentation: https://docs.oracle.com/en/database/oracle/oracle-database/19/tdppt/oracle-database-performance-method.html#GUID-6203E485-FA06-4EE3-9003-4449FBDE214B: "Before looking at database or operating system statistics, it is crucial to get feedback from the system users and the people in charge of the application. This feedback makes it easier to set performance goals. Improved performance can be measured in terms of business goals rather than system statistics. The Oracle performance method can be applied until performance goals are met or deemed impractical."
upvoted 3 times
RinD
3 years, 8 months ago
I think B instead of C because it mention "feedback from the system users and the people". It's about the people, for example user A may feel that 8mins query is ok instead of current 15 mins query, user B however, may feel 10mins query is acceptable.
upvoted 2 times
SimoneF
3 years, 7 months ago
Yeah but it also said "the people in charge of the application". I believe that "agreed service levels" is more appropriate, since it sounds similar to a performance "goal". It's quite tricky anyway.
upvoted 2 times
...
...
...
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 ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago