ORA-44305 Tried to delete a non-default service from the database, but it failed with ORA-44305. SQL> exec dbms_service.delete_service('ERPAPP2'); BEGIN dbms_service.delete_service('ERPAPP2'); END; * ERROR at line… Read More »How to Resolve ORA-44305: service is running
By default, Container Database (CDB) provides only one service for every Pluggable Database (PDB) for connections, but we can create our own services for various… Read More »How to Add Services to PDB
There're two ways to add a service to a database (non-CDB): DBMS_SERVICE Create Service It's an administration package for managing services of a database. SRVCTL… Read More »How to Add Service to Database