Skip to content

honette67/oracle-PDB-creation-project-PL-SQL

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Oracle Database PDB Management Assignment


Name: Honette Igiraneza

Student ID: 27707

Instructor: Maniraguha Eric

Task 1: Creating a Pluggable Database

In this task, I created a new pluggable database (PDB) named ho_pdb_27707. which will help to store all class work The creation was done from the root container using the CREATE PLUGGABLE DATABASE command, and I verified the new PDB with the SHOW PDBS command.

-Commands executed: CREATE PLUGGABLE DATABASE ho_pdb_27707 ADMIN USER honette-plsqlauca-27707 IDENTIFIED BY Welcome123 FILE_NAME_CONVERT=('C:\app\juliette\product\21c\oradata\XE\PDBSEED', 'C:\app\juliette\product\21c\oradata\XE\ho_pdb_27707');

ALTER PLUGGABLE DATABASE ho_pdb_27707 OPEN; SHOW PDBS;

PDB creation

Task 2:Creation and Deletion of a Pluggable Database

In this task, I created and then deleted a temporary PDB named ho_to_delete_pdb_27707. Before dropping a PDB, Oracle requires that it is closed. After closing it, I dropped the PDB including its datafiles and verified that it was removed.

-Commands executed: CREATE PLUGGABLE DATABASE ho_to_delete_pdb_27707 ADMIN USER admin IDENTIFIED BY Welcome123 FILE_NAME_CONVERT=('C:\app\juliette\product\21c\oradata\XE\PDBSEED', 'C:\app\juliette\product\21c\oradata\XE\ho_to_delete_pdb_27707');

new PDB

After creating it i deleted it using these commands: ALTER PLUGGABLE DATABASE ho_to_delete_pdb_27707 CLOSE IMMEDIATE; DROP PLUGGABLE DATABASE ho_to_delete_pdb_27707 INCLUDING DATAFILES;

Delete PDB

Task 3: Oracle Enterprise Manager (OEM) Express

In this task, I accessed Oracle Enterprise Manager (EM Express) using my browser at: https://localhost:5500/em I logged in with my created user HONETTE_PLSQLAUCA_27707 under the pluggable database ho_pdb_27707. The OEM dashboard provided insights into database performance, sessions, and storage usage.

OEM

*Conclusion

Through this assignment, I gained practical skills in Oracle Database 21c pluggable database management. I successfully:

-Created a new pluggable database

-Dropped a pluggable database safely

-Accessed and explored Oracle Enterprise Manager Express

This hands-on exercise helped me understand Oracle Multitenant architecture and database administration concepts more clearly.

*References

-Oracle Database 21c Documentation: https://docs.oracle.com/en/database/oracle/oracle-database/21/

-Class Lecture Notes

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published