Hi,
Thanks to you all, it works.
I did:
1. db2 list tablespaces show detail
2. from the above command result I searced the tablespace state = "Load pending"
3. from load pending tablespace state there is "State change object ID " = 4
4. db2 select tabschema, tabname, tableid from syscat.tables where tableid=4
5. I got the result db2admin.work (this is the name I was looking for)
6. I executed on Windows: db2 load from nul: of ixf terminate into db2admin.work
7. The tablespace has been moved to normal state.
My problem was: I was trying to "load terminate" into table that was not in load pending state!!! So loading into table that is not in load pending state produces stupid error:
Code:
"SQL3508N Error in accessing a file or path of type "RESTART/TERMINATE INFO"
during load or load query. Reason code: "1". Path: "".
So figuring out which table made the load pending state of tablespace has solved my problem.
Thanks to you all folks,
Grofaty