Powiedziałeś, że skomentowałeś kod. To właśnie te komentarze powodują problem.
SQL> create table t42(id number(38));
Table created.
SQL> /*insert into t42(id) values (1);*/
create table t42(id number(38))
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL> /*exec dbms_stats.gather_schema_stats(user);*/
create table t42(id number(38))
*
ERROR at line 1:
ORA-00955: name is already used by an existing object
SQL> show errors
No errors.
SQL>
Ukośnik (/
) na początku komentarzy jest ponowne przesłanie polecenia w buforze
.
Dokumentacja SQL*Plus także mówi :
Więc jeśli zmienisz swoje komentarze, aby mieć spację między /*
i zakomentowany kod, który się nie wydarzy, a te zostaną zignorowane:
SQL> create table t42(id number(38));
Table created.
SQL> /* insert into t42(id) values (1); */
SQL> /* exec dbms_stats.gather_schema_stats(user); */
SQL> show errors
No errors.
SQL>