I have to upload a Unicode text file(want to show Japanese characters etc.) Into a netezza table. I have created a table with nvarchar columns and I have given the below code but it doesn't work.
cat *filename.csv|nzconvert -f utf8 -t nfc|tr -d '\r' |nzload ......
any other options?