performance_memory_etc
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| performance_memory_etc [2023/01/18 07:55] – mduersch | performance_memory_etc [2024/09/12 09:24] (current) – mduersch | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Performance ====== | ====== Performance ====== | ||
| + | |||
| + | ==== Processes ===== | ||
| + | |||
| + | |||
| + | select total, active, inactive, system, killed | ||
| + | from | ||
| + | | ||
| + | , (select count(*) system from v$session where username is null) | ||
| + | , (select count(*) active from v$session where status = ' | ||
| + | , (select count(*) inactive from v$session where status = ' | ||
| + | , (select count(*) killed from v$session where status = ' | ||
| + | |||
| ==== Memory ==== | ==== Memory ==== | ||
| Line 26: | Line 38: | ||
| 720 2 335 .9817 0 | 720 2 335 .9817 0 | ||
| + | Backup | ||
| + | |||
| + | |||
| + | set linesize 212 | ||
| + | set pagesize 1024 | ||
| + | |||
| + | col filename format a64 | ||
| + | |||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | from | ||
| + | | ||
| + | where | ||
| + | | ||
| + | and filename not like ' | ||
| + | order by 3; | ||
| + | |||
| + | exit; | ||
performance_memory_etc.1674028510.txt.gz · Last modified: 2023/01/18 07:55 by mduersch
