Home
> IT Answers
> Business Intelligence
> When I ran a SQL thru JCL and using DSNTIAUL/DSNTIB81 using PARMS(SQL), what kind of locks it puts on table in SELECT statement?
Any SELECT statement should only acquire SHARE locks (non-exclusive). Another application should be able to read right thru them. Ensure that you are not forcing RR (repeatable read) isolation.
Last Wiki Answer Submitted: July 27, 2009 8:07 pm by Meandyou5,205 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
thanks for the answer.