Thread: CICS

READ UPDATE with no REWRITE - does the record stay locked?

Started by Nina • user2 replies142 viewsLast activity 2 weeks ago
Post #1
0 votes
Nina
Reputation
67
Posts: 6
Joined: Dec 3, 2025, 4:18 PM
Posted: Jul 30, 2026, 10:32 AM

If I READ ... UPDATE and then decide not to REWRITE/DELETE/UNLOCK, what happens to the lock? Stuck until end of task?

Post #2
0 votes
Dave
Reputation
356
Posts: 25
Joined: Jul 21, 2024, 2:55 PM
Posted: Jul 30, 2026, 12:32 PM

Lock stays until REWRITE, DELETE, UNLOCK, or SYNCPOINT. End of task does an implicit syncpoint so it clears eventually.

Still a bad habit. UNLOCK if you bail out early so the next task is not waiting on you.

You must be signed in to reply to this thread