ALTER TABLE t TRUNCATE PARTITION p UPDATE GLOBAL INDEXES;
Instead of “truncate”, we can also use “drop” or “delete”, depending on what kind of operation we need.
ALTER TABLE t TRUNCATE PARTITION p UPDATE GLOBAL INDEXES;
Instead of “truncate”, we can also use “drop” or “delete”, depending on what kind of operation we need.
is that really works?