craig Site Admin
Joined: 19 Feb 2006 Posts: 40
|
Posted: Tue May 23, 2006 12:42 pm Post subject: ddl to restore and rollforward tablespaces online. |
|
|
connect to mydb;
restore db mydb tablespace ( tspace1 ) online use tsm ;
rollforward db mydb to end of logs and complete tablespace ( tspace1 ) online;
The rollforward to an ISO point in time has problems. To end of logs works but presents other problems. If you dont want to roll forward to end of logs you will need to play games with the db2uext2 user exit to stop returning them when you want to stop. |
|