[ORACLE DATABASE] After setting, alter session set nls_sort = GERMAN; alter session set nls_language = GERMAN;
When loading data in chunks and while using '>' to compare in order to get different sorted chunks shows incorrect data(gives duplicate entries).
Ex. for different chunks , using this in query... name > 'Account' or name > 'Project' or name > 'BB' will give names 'aa' , 'bb' , 'cc' in every output.
Note, with nls_sort=BINARY and NLS_language=ENGLISH gives correct output.