Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How do i set nls_comp & nls_sort parameters permanently.

2841327Jun 5 2015 — edited Jun 8 2015

As of now we have a trigger for logon which changes these both parameters to binary but i want a permanent solution to this.

create or replace trigger trigger_testnls

after logon on database

begin

EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_COMP=BINARY' ;

EXECUTE IMMEDIATE 'ALTER SESSION SET NLS_SORT=BINARY' ;

end;

Can anyone help?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 6 2015
Added on Jun 5 2015
7 comments
8,881 views