moving table(s) and constraints
Hi, thanks in advance,
To reclaim a fair amount of space I've been moving tables and indexes to a different tablespace. The command
-- as sys on 12.1
ALTER TABLE sequence.amplicon move tablespace SEQ_DATA2;
does the job but go to drop the original tablespace and this finds all the constraints that are left defined in the original tablespace. Is there a way to move them at the same time? I'm guessing it's because of RI complexity.
Thanks