- Q Bring out the philosophical significance of Austin’s view of ‘performance’ and meaning.
- Q What sets will the stored record connect to?
- Q Suppose you want to audit specific activities on sensitive data. How can you achieve that?
- Q What is the most creative method you've used to motivate people? Describe the situation. How did you convince them?
- Q What year did Nixon resign over Watergate?
- Q How did Washington try to improve morale in the Continental Army in late 1776 and early 1777? (A)French 1st Sergeant Davis (B)Prussian drillmaster Baron von Steuben (C)Englishman, John Locke (D)America's own, George Washington
- Q What are multiple monosaccharides called?
- Q Which was the only session of Indian National Congress presided by Mahatma Gandhi?
- Q What has been your most bizarre life experience?
- Q Which mountain range lies between the rivers Narmada and Tapti?
- Q What are dynamic actions and how to configure it?
Answers
Use SQL*Plus to monitor undo generation, long queries, and undo errors.
1. Connect to your instance with SQL*Plus as user SYSTEM.
2. Set up your session for displaying dates conveniently.
SQL> alter session set nls_date_format='dd-mm-yy:hh24:mi:ss';
3. Query V$UNDOSTAT as follows:
SQL> select begin_time, end_time, undoblks, maxquerylen, ssolderrcnt,
nospaceerrcnt from v$undostat;
4. Interpret the results of the query. Note that the view has one row per tenminute
interval, showing you how much undo was generated, in blocks; how
long the longest query was, in seconds; and whether there were any “snapshot
too old” errors, or errors from transactions running out of undo space.
5. Calculate the minimum necessary size in bytes for your undo tablespace that
will prevent errors, given your current activity data, with this query:
select
(select max(undoblks)/600 * max(maxquerylen) from v$undostat)
*
(select value from v$parameter where name='db_block_size')
from dual; Your Comment
1. Connect to your instance with SQL*Plus as user SYSTEM.
2. Set up your session for displaying dates conveniently.
SQL> alter session set nls_date_format='dd-mm-yy:hh24:mi:ss';
3. Query V$UNDOSTAT as follows:
SQL> select begin_time, end_time, undoblks, maxquerylen, ssolderrcnt,
nospaceerrcnt from v$undostat;
4. Interpret the results of the query. Note that the view has one row per tenminute
interval, showing you how much undo was generated, in blocks; how
long the longest query was, in seconds; and whether there were any “snapshot
too old” errors, or errors from transactions running out of undo space.
5. Calculate the minimum necessary size in bytes for your undo tablespace that
will prevent errors, given your current activity data, with this query:
select
(select max(undoblks)/600 * max(maxquerylen) from v$undostat)
*
(select value from v$parameter where name='db_block_size')
from dual; Your Comment
- 0
- 0
- New Answer
- Contributors: *,
More Software Questions..
What is the inputsplit in map reduce software?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is software configuration management?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What Is Java Api For Xml-based Rpc (jax-rpc)?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How can you implement fine-grained auditing?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is IBM’s simple explanation for Big Data’s four critical features?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is static synchronized method in JDBC API? Give an example?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What does the NULLIF function do?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What happens if a start method is not invoked and the run method is directly invoked?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Should we override finalize method
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
what is the difference between mysql_fetch_array and mysql_fetch_object?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How will XML affect my document links?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Why to use Style Sheets?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What are Filters in MVC?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Can you explain Application layer in OSI model?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
How to define new testplan attributes?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What are the minimum system requirements to run Photoshop? Is it possible to run Photoshop over linux?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
Which oracle package is used to manage the oracle lock management services?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is Latch Up? Explain Latch Up with cross section of a CMOS Inverter. How do you avoid Latch Up?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What is marker interface?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,
What types of partitioning are there for BW?
- 0
- 0 |
- |
- Post Answer |
- Answers ( 1 )
- Tags: Software,