-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathTODO
31 lines (22 loc) · 1.26 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
a lot
maybe add some ORA- to the examples
ORA-60X alle Internal Errors
SEGV, SIGBUS alle System Access Violations
Ora-4020 Deadlock on library object
ORA-8103 Object no longer exists
ORA-1410 invalid ROWID
ORA-1578 Data block corrupted
ORA-29740 Node eviction
ORA-255 Database is not mounted
ORA-376 File cannot be read at this time
ORA-4030 Out of memory
ORA-4031 Unable to allocate more bytes of shared memory
ORA-355 The change numbers are out of order
ORA356 Inconsistent lengths in change description
ORA-353 Log corruption
ORA-7445 Operating System exception
Checkpoint not complete
! Lesny proposal for multiple sql results
flash recovery area free
http://www.muniqsoft.de/tipps/monatstipps/Tipp0308.pdf
Hi, the plugin currently calculates tablespace’s max size using … SUM(DECODE(a.autoextensible, ‘YES’, a.maxbytes, ‘NO’, a.bytes)) maxbytes … IMHO it would be more exact to use … SUM(DECODE(a.autoextensible, ‘YES’, greatest(a.maxbytes,a.bytes), ‘NO’, a.bytes)) maxbytes … instead. Although the maxsize of a datafile might be limited for autoextension, it’s valid to exceed it issuing “alter database datafile …resize ..”. Using greatest() as shown above, you’ll keep these “overallocations” in mind. Kind regards, Thilo.