A typical insert for an nchar field does not work:
insert into DEV.SLEONTPS (FLDNCHAR) VALUES ("test"
I was told to use this:
insert into DEV.SLEONTPS (FLDNCHAR) VALUES TRANSLATE("test" USING NCHAR_CS);
This still errors out with the following;
ORA-00906: missing left parenthesis
insert into DEV.SLEONTPS (FLDNCHAR) VALUES ("test"
I was told to use this:
insert into DEV.SLEONTPS (FLDNCHAR) VALUES TRANSLATE("test" USING NCHAR_CS);
This still errors out with the following;
ORA-00906: missing left parenthesis