RI addition can be done after the rename of table T2 to T1. Hence no SET INTEGRITY following LOAD.
You can do a NONRECOVERABLE LOAD on T2 to avoid taking a BACKUP... But, if this is advisable, is dependent on your recovery requirements ...
And, if there are dependent objects, eg. views, then you will have to drop and recreate the views ... These dependet objects have to be recreated after the rename only ... If there are dependent objects, rename table stmt will fail ...
Do not forget RUNSTATS ...
rebind of packages may be needed if there are packages dependent on the table T1 ...
By all means, make sure you do your testing in a environment whose db object definitions is same as prod ... Data volumes similar to prod will help in timing your prod change ...
BTW, do not drop table T1 in step 3 ... Just rename it to T1_OLD, just in case ...
Sathyaram