SQLPlus version is 9.2.0.1.0
Following testcase:
The snippet is
>
prompt
prompt Creating library L_OSINFO2
prompt =========================
prompt
create or replace library L_OSINFO2
as 'c:\osinfo.dll';
/
prompt
prompt Creating type TPARAMETER2
prompt ========================
prompt
create or replace type TParameter2 as object
(
-- Author : THKRAUSE
-- Created : 7/15/2003 5:50:04 PM
-- Purpose :
-- Attributes
Name varchar2(30),
Value varchar2(100)
-- Member functions and procedures
)
/
>
This results in the following output (OK):
>
SQL> @test.sql
Creating library L_OSINFO2
=========================
Library created.
Creating type TPARAMETER2
========================
Type created.
SQL>
>
Removing the '/' after create library results in:
>
SQL> @test.sql
Creating library L_OSINFO2
=========================
Warning: Library created with compilation errors.
SQL>
>