create table DEMO (n number)
ORA-00955: name is already used by an existing objectMore Details: https://docs.oracle.com/error-help/db/ora-00955
insert /*+ append */ into DEMO select rownum from xmltable('1 to 1000')
1000 row(s) inserted.
select count(*) from DEMO
COUNT(*) | 3000 |
---|
commit
Statement processed.
alter table DEMO disable table lock
ORA-00069: cannot acquire lock -- table locks disabled for DEMOMore Details: https://docs.oracle.com/error-help/db/ora-00069
insert /*+ append */ into DEMO select rownum from xmltable('1 to 1000')
1000 row(s) inserted.
select count(*) from DEMO
COUNT(*) | 4000 |
---|