ORA-14701: partition-extended name or bind variable must be used for DMLs on tables partitioned by the System method
파티션을 지정하지 않음
- 실행하는 SQL에 파티션을 지정
INSERT INTO owner.table_name VALUES ('values'); -- X INSERT INTO owner.table_name PARTITION(partition_name) VALUES ('values'); -- O