Okay, Sorry for stealing your Time.
This was my redirected restore command which worked fine!
After that i tried the rollforward ( as u already know ) and it failed
-- ************************************************** ***************************
-- ** automatically created redirect restore script
-- ************************************************** ***************************
UPDATE COMMAND OPTIONS USING S ON Z ON Database_NODE0000.out V ON;
SET CLIENT ATTACH_DBPARTITIONNUM 0;
SET CLIENT CONNECT_DBPARTITIONNUM 0;
-- ************************************************** ***************************
-- ** automatically created redirect restore script
-- ************************************************** ***************************
RESTORE DATABASE Database
-- USER <username>
-- USING '<password>'
REBUILD WITH TABLESPACE (
SYSCATSPACE
, TSTMP16K
, SYSTOOLSTMPSPACE
, Table1
, Table2
)
USE TSM
OPEN 1 SESSIONS
OPTIONS '-fromowner=db2inst1'
TAKEN AT Timestamp
ON '/db2/Database/storage'
DBPATH ON '/db2/Database/dbdir'
INTO Database
LOGTARGET '/db2/Database/templogs/'
NEWLOGPATH '/db2/Database/logs/'
-- WITH <num-buff> BUFFERS
-- BUFFER <buffer-size>
-- REPLACE HISTORY FILE
-- REPLACE EXISTING
REDIRECT
-- PARALLELISM <n>
-- WITHOUT ROLLING FORWARD
-- WITHOUT PROMPTING
;
-- ************************************************** ***************************
-- ** table space definition
-- ************************************************** ***************************
-- ************************************************** ***************************
-- ** Tablespace name = SYSCATSPACE
-- ** Tablespace ID = 0
-- ** Tablespace Type = System managed space
-- ** Tablespace Content Type = All permanent data. Regular table space.
-- ** Tablespace Page size (bytes) = 16384
-- ** Tablespace Extent size (pages) = 32
-- ** Using automatic storage = No
-- ** Total number of pages = 22021
-- ************************************************** ***************************
SET TABLESPACE CONTAINERS FOR 0
-- IGNORE ROLLFORWARD CONTAINER OPERATIONS
USING (
PATH '/db2/Database/ts_syscat'
);
-- ************************************************** ***************************
-- ** Tablespace name = TSTMP16K
-- ** Tablespace ID = 3
-- ** Tablespace Type = System managed space
-- ** Tablespace Content Type = System Temporary data
-- ** Tablespace Page size (bytes) = 16384
-- ** Tablespace Extent size (pages) = 32
-- ** Using automatic storage = No
-- ** Total number of pages = 4
-- ************************************************** ***************************
SET TABLESPACE CONTAINERS FOR 3
-- IGNORE ROLLFORWARD CONTAINER OPERATIONS
USING (
PATH '/db2/Database/ts_tmp16k_sys_2'
);
-- ************************************************** ***************************
-- ** Tablespace name = SYSTOOLSTMPSPACE
-- ** Tablespace ID = 1455
-- ** Tablespace Type = System managed space
-- ** Tablespace Content Type = User Temporary data
-- ** Tablespace Page size (bytes) = 16384
-- ** Tablespace Extent size (pages) = 4
-- ** Using automatic storage = Yes
-- ** Total number of pages = 4
-- ************************************************** ***************************
-- ************************************************** ***************************
-- ** Tablespace name = Table1
-- ** Tablespace ID = 1823
-- ** Tablespace Type = Database managed space
-- ** Tablespace Content Type = All permanent data. Large table space.
-- ** Tablespace Page size (bytes) = 16384
-- ** Tablespace Extent size (pages) = 32
-- ** Using automatic storage = No
-- ** Auto-resize enabled = Yes
-- ** Total number of pages = 1000
-- ** Number of usable pages = 896
-- ** High water mark (pages) = 96
-- ************************************************** ***************************
SET TABLESPACE CONTAINERS FOR 1823
-- IGNORE ROLLFORWARD CONTAINER OPERATIONS
USING (
FILE '/db2/Database/Table1.ts' 500
);
-- ************************************************** ***************************
-- ** Tablespace name = Table1
-- ** Tablespace ID = 1824
-- ** Tablespace Type = Database managed space
-- ** Tablespace Content Type = All permanent data. Large table space.
-- ** Tablespace Page size (bytes) = 16384
-- ** Tablespace Extent size (pages) = 32
-- ** Using automatic storage = Yes
-- ** Auto-resize enabled = Yes
-- ** Total number of pages = 5632
-- ** Number of usable pages = 5504
-- ** High water mark (pages) = 5408
-- ************************************************** ***************************
-- ************************************************** ***************************
-- ** start redirected restore
-- ************************************************** ***************************
RESTORE DATABASE Database CONTINUE;
-- ************************************************** ***************************
-- ** end of file
-- ************************************************** ***************************