- 31.3.16 08:46
-
If impdp database import on Oracle fails because it "failed to allocate shared memory", following commands help to increase the memory pool. Log in to sqlplus.
show parameter memory;
alter system set memory_max_target=500M scope=spfile sid='*';
shutdown immediate
startup
alter system set memory_target=500M scope=both sid='*';