oscilatingcretin
oscilatingcretin

Reputation: 10919

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.

Upvotes: 0

Views: 55

Answers (1)

Gerrat
Gerrat

Reputation: 29680

Try:

alter package [your package name] compile;

Upvotes: 3

Related Questions