Quote:
Originally Posted by stolze
You won't have to remove unique/primary keys and/or referential constraints (or any other constraints). They will be removed along with the table. Also, triggers and procedures may automatically be invalidated as well.
|
Yeah, awareness is important here:
At the latest IDUG in Prague

I learned (from Scott) about the usefull parameter setting:
Code:
pctfree 0 page split high
if your index has an guaranteed ascending sequence. As all our PK's are composed of generated columns I brewed a script to drop all PK contraints & indexes and rebuilt them acoording to the new rules I'd just learned......
Not a good idea: I lost all my FK-contraints because they are dropped together with the PK-constraint on the parent-table (
I sence a "delete cascade" smell here).
Luckely I found out in my test systems on time

so I dropped the idea instead of the PK's