Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> OLTP Vs. Batch processing Operations
For OLTP versus Batch processing with WRITE Operations into Databases, what may be best practices?
For OLTP
Smaller Oracle DB Block Size
Smaller Stripe Unit Size
Use of Bind Variables to avoid re-parsing
Row-wise load of data
Logging to Redo Logs
For Batch
Smaller Oracle DB Block Size
Smaller Stripe Unit Size
Use of Literal SQLs
Block-wise Loading of Data
NOLOGGING to Online Redo Logs
![]() |
![]() |