تا قبل از اوراکل 12c، امکان truncate کردن جدول master وجود نداشت:
truncate table usef.tbl1;
ORA-02266: unique/primary keys in table referenced by enabled foreign keys
در اوراکل 12c،امکان truncate کردن این نوع از جداول هم امکان پذیر شد:
truncate table usef.tbl1 cascade;
select * from tbl2;
no row selected.