Examine the description of the BOOKS table:The table has 100 rows.Examine this sequence of statements issued in a new session:INSERT INTO books VALUES (ADV112, Adventures of Tom Sawyer, NULL, NULL);SAVEPOINT a;DELETE FROM books;ROLLBACK TO SAVEPOINT a;ROLLBACK;Which two statements are true? (Choose two.)
A. It is not possible to shrink either indexes or Index Organized Tables (IOTs)A
B. It always eliminates all migrated rows if any exist in the table
B. The second ROLLBACK command replays the delete
C. To shrink a table it must have a PRIMARY KEY constraint
C. The first ROLLBACK command restores the 101 rows that were deleted, leaving the inserted row still to be committed
D. To shrink a table it must have a UNIQUE KEY constraint
D. The second ROLLBACK command undoes the insert
E. To shrink a table it must have row movement enabled
E. The first ROLLBACK command restores the 101 rows that were deleted and commits the inserted row
F. It must be in a tablespace that uses Automatic Segment Space Management (ASSM)