SOLVED

ORA-27106: system pages not available to allocate memory

Asked by OracleDba13 viewsoracle

#oracle#error

Solutions(1)

Accepted Solution
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
ORA-27106: system pages not available to allocate memory

Run the IPCS command to list Interprocess Communication (IPC) status as follows.

[root@node1 ~]# ipcs -a

Now find the process of destroyed process using their shmid as follows.

[root@node1 ~]# lsof | grep 399835141

oracle_19 194509 oracle DEL REG 0,15 399835141 /SYSV00000000

oracle_24 247335 oracle DEL REG 0,15 399835141 /SYSV00000000

[root@node1 ~]#

Now kill these process :

[root@node1 ~]# kill -9 194509 247335

[root@node1 ~]# [root@node1 ~]# [root@node1 ~]# lsof | grep 399835141

[root@node1 ~]# [root@node1 ~]# ipcs -a

Now our memory space released, we can startup the database.

sqlplus / as sysdba

SQL*Plus: Release 19.0.0.0.0 - Production on Thu Sep 22 13:25:46 2022

Version 19.14.0.0.0

Copyright (c) 1982, 2021, Oracle. All rights reserved.

Connected to an idle instance.

SQL> startup

ORA-32004: obsolete or deprecated parameter(s) specified for RDBMS instance

ORACLE instance started.

Total System Global Area 2.1446E+11 bytes

Fixed Size 37223248 bytes

Variable Size 1.3314E+11 bytes

Database Buffers 8.1068E+10 bytes

Redo Buffers 207720448 bytes

Database mounted.

Database opened.

SQL>

Hope it helps!
OracleDba

Post Your Solution