My Oracle Support Banner

Tuxedo Application Runtime for CICS and Batch 12cR1: ACCLOCK File Remains Lock Information In Some Cases (Doc ID 1560352.1)

Last updated on OCTOBER 23, 2023

Applies to:

Oracle Tuxedo Application Runtime for CICS and Batch - Version 12.1.1.0 and later
Information in this document applies to any platform.

Symptoms

 When using following pattern, file lock information remains and never cleared.

m_FileAssign -d NEW,CATLG -S ${DATA}/BASE.GDG FILE1 ${DATA}/NEW.FILE

artjeadmin -l result:

00040|<


or

m_FileRename ${DATA}/APP.GDG.DEF ${DATA}/APP.GDG.DEF.BAK

artjeadmin -l result:

00013|<


And if LABEL is not defined, also lock will not be cleared.

#!/usr/bin/ksh
m_JobBegin -j JOB001 -s START -v 2.0 -c A
while true ;
do
       m_PhaseBegin
       case ${CURRENT_LABEL} in
(START)
       JUMP_LABEL=STEP1
       ;;
(STEP1)
#      JUMP_LABEL=STEP2
       ;;
(STEP2)
       m_FileAssign -d SHR FILE1 $DATA/app
       m_FileAssign -d OLD FILE2 $DATA/app2
       JUMP_LABEL=END_JOB
       ;;
(END_JOB)
       break
       ;;
(*)
       m_RcSet ${MT_RC_ABORT:-S999} "Unknown label : ${CURRENT_LABEL}"
       break
       ;;
esac
m_PhaseEnd
done
m_JobEnd

00043|<00044|<Path_To_WorkingDir>/tuxjes/data/app2>| Mode : <WX>| Hostname <localhost.localdomain>|      |JobName : <JOB001    >| Pid : <PID>| Date : <Tue May 28 16:02:11 2013>

Changes

 

Cause

To view full details, sign in with your My Oracle Support account.

Don't have a My Oracle Support account? Click to get started!


In this Document
Symptoms
Changes
Cause
Solution
References


My Oracle Support provides customers with access to over a million knowledge articles and a vibrant support community of peers and Oracle experts.