Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: ORA-00600 [19004]
Yep, you are right, I shuldn't make conclusions that fast.
Correct statement is that jobs submitted via dbms_job inherits sessions NLS parameters.
Thank you for correction.
tt_at_OTIS> var i number;
tt_at_OTIS> alter session set nls_sort=latvian;
Session altered.
tt_at_OTIS> exec dbms_job.submit(:i,'null;', sysdate+1 );
PL/SQL procedure successfully completed.
tt_at_OTIS> select nls_env from user_jobs where job = :i;
NLS_ENV
Session altered.
tt_at_OTIS> exec dbms_job.change(:i, what=>'null;', next_date=>sysdate+2,interval=>null );
PL/SQL procedure successfully completed.
tt_at_OTIS> select nls_env from user_jobs where job = :i;
NLS_ENV
-- Edgar -- http://www.freelists.org/webpage/oracle-lReceived on Mon Nov 29 2004 - 00:11:56 CST
![]() |
![]() |