You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SQL> CREATE OR REPLACE PACKAGE "HR"."FOO2"2as3 bar NUMBER :=1;
4 end foo2;
5/
Package FOO2 compiled
SQL> spool output.sql
SQL> ddl foo2
CREATE OR REPLACE PACKAGE "HR"."FOO2"as
bar NUMBER :=1;
end foo2;
/
SQL> spool off
SQL> exit
Disconnected from Oracle Database 11g Express Edition Release 11.2.0.2.0- 64bit Production
The text was updated successfully, but these errors were encountered:
Not sure how to fix this via the DLL command, but if changed to use dbms_metadata.get_ddl, the output can be wrapped in an ltrim to remove leading spaces and newlines
The text was updated successfully, but these errors were encountered: