Hi,
You have not given any explanation about the error messages you have or what the exact problem is (data is not being loaded, special characters doesn't seem to be correctly written into db..etc ). So I assume you have difficulty in writing and displaying Turkish characters in the text file.
I have tried the load oparation with your settings.
A database with CODESET 'UTF-8' and TERRITORY 'TR'
The command I have used to load data:
db2 load from C:\data.del of del modified by codepage=1254 replace into mytable
The format of the data in data.del file:
1, şçöiğü
2, ŞİÇÖĞÜ
Structure of mytable:
CREATE TABLE MYTABLE(
C1 INT,
C2 VARCHAR(50))
It works well with this configuration.
You can add "modified by codepage=1254" to your load command if you haven't before and then try.
I hope this helps.
KezbanB