Oracle 10g: Is there a way to build/compile a package using an SQL statement?
Conceptually, I'd like to go like:
build mypackagename;
I know this doesn't exist, but that's the concept I am going for开发者_高级运维.
Try:
alter package [your package name] compile;
精彩评论