理解不好,希望各位给翻译一下
You should defer committing as long as you have to. You should not do it quickly
to avoid stressing the system, as it does not stress the system to have long or large
transactions. The rule is commit when you must, and not before. Your transactions
should only be as small or large as your business logic dictates.

解决方案 »

  1.   

    You should defer committing as long as you have to.
    (你应该尽可能的延长commit 的步骤)
     You should not do it quickly to avoid stressing the system,
    (commit的时候不应该快,避免对系统有压力)
    as it does not stress the system to have long or large transactions.
    当oracle有长的大的事务要执行的时候,commit 并不会对系统有压力.
    The rule is commit when you must, and not before. 
    commit的原则是,当必须做的时候才commit,而不是在必须做之前做commit
    Your transactions 
    should only be as small or large as your business logic dictates.
    你的事务应该和你的事物逻辑所检测到的匹配.