The default table segment creation in Oracle is DEFERRED. This means when Spring Batch tries to insert rows for the first time, it will compete with the Oracle process that tries to create segments lazily at the same time, which leads to an error. This commit changes the default table segment creation to IMMEDIATE. Resolves #1127