How to create Oracle database using GUI – Graphical User Interface Method:

we can create an Oracle Database using the below two methods:

DBCA stands for Database Configuration Assistant – It is a utility that helps to create an Oracle database. Under the DBCA method, there are two ways: Through the GUI – Graphical User Interface Method and the Silent Method. In this article, I will show you how you will create Oracle database using GUI.

1.First, check where the database software is installed on your machine and note down the Oracle software installation path:

cat /etc/oraInst.loc

Database creation step1

2. Set the oracle home and run the DBCA script using the below commands:

export ORACLE_HOME=/u01/app/oracle/product/19.3.0/dbhome_1
cd $ORACLE_HOME/bin
./dbca

Database creation step2

3. Select Create a database and click on Next:

Database creation step3

4. Choose advanced configuration and click on next:

Database creation step4

5. Select database type as Oracle single instance database and choose the template general purpose or transaction processing, then click on next:

Database creation step5

6. follow the mentioned steps in the below image and click on next:

Database creation step6

7. Select Use template file for database storage attributes and click on next:

Database creation step7

8. You can enable Fast recovery area and archiving later also.If you want you can enable:

Database creation step8

9. Create a listener called LISTENER and use default port 1521:

Database creation step9

10. Oracle Database vault and label security can be enabled later:

Database creation step10

11. Use automatic shared memory management :

Database creation step11

12. Configure enterprise manager database express to monitor the database :

Database creation step12

13. Use the same administrative password for all accounts SYS,SYSTEM and PDBADMIN:

Database creation step13

14. Just ignore the warning and click on next:

Database creation step14

15. select create database and proceed:

Database creation step15

16. All done. Just click on finish.

Database creation step16

17. A database will be created. Wait for a while.

Database creation step17

18. Congratulations! you have successfully created the orcl Oracle database. Please follow all the steps and try to create Oracle database using GUI:

Database creation step18

If you want to create a database using the DBCA silent method then follow my other article DBCA Silent Method. For detailed knowledge, you can go through the Oracle website Create and Manage Database Using DBCA.

Do not just read the article, Please follow all the steps and create Oracle database using GUI in your Virtual Machine.

Leave a Reply