I have several different packages, one for each logical part of my application. Some packages become huge, but I would like to keep all the procedures / functions grouped in some way, rather than breaking them down into separate packages. Is there a way to insert or namespace my packages?
So, if I have MYSCHEMA.PKG_PEOPLE, and it has 10 procedures and 10 functions, I cannot, for example, move CRUD procedures to MYSCHEMA.PKG_PEOPLE.CRUD. I want to keep all these elements inside PKG_PEOPLE, but I also want to separate them.
source
share