select 不for update 不会锁定行,
其它人都可以用,
如果是insert delete 你可以用循环提交呀
for 1 in count loop
insert into...
if count mod 1000 =0 then
commit
end if
end loop

解决方案 »

  1.   

    只能是优化sql.ORACLE释放资源是后台进程pmon做的,它会自动清理这些进程,回滚事务,释放资源。。
      

  2.   

    做做性能分析,优化一下sql,以空间换性能,以开发效率换性能。
      

  3.   

    select 不for update 不会锁定行,
    其它人都可以用,
    如果是insert delete 你可以用循环提交呀
    for 1 in count loop
    insert into...
    if count mod 1000 =0 then
    commit
    end if
    end loop我同意这个做法