Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting "Unable to check for available memory." on Oracle DB 18c

I am trying to create a database in order to complete my self learning, but unfortunately I got unexpected error "Unable to check for available memory.", I am doing it using Database Configuration Assistant (DBCA).

enter image description here

My Oracle Database Version

enter image description here

like image 635
Yusuf Ibrahim Avatar asked Mar 06 '19 09:03

Yusuf Ibrahim


3 Answers

This error as it says, indicate that the "DBCA" can not check for available memory. This happens when "DBCA" does not have permission to check.

To bypass this error, run your Command Prompt as Administrator before lunching "DBCA".

like image 83
Hossein Chamani Avatar answered Oct 20 '22 00:10

Hossein Chamani


Add the following parameter to bypass the error:

dbca -J-Doracle.assistants.dbca.validate.ConfigurationParams=false &
like image 42
0xdb Avatar answered Oct 19 '22 23:10

0xdb


Bypass via advanced setup

Run DBCA as admin and work your way through the advanced setup. I think this issue is avoided because it lets you manually enter, or use recommended defaults, for the memory section.

like image 44
slittlefield Avatar answered Oct 20 '22 01:10

slittlefield