Is there a limit to DB2 JDBC transaction size? -
i need insert large number of rows (up 100,000) 6 different db2 tables. using java jdbc it. in single database transaction whole thing can rolled if issues encountered. there limit somewhere (in jdbc driver or in db2) how many inserts can handled in single transaction? using db2 version 8.
the size of single transaction limited size of database transaction logs. sufficiently large transaction log can asking.
you don't platform running db2 on, linux/unix/windows transaction log size controlled 3 database configuration parameters - logfilsiz (the size of each transaction log file), logprimary (the number of primary transaction logs) , logsecond (the number of secondary transaction log files).
Comments
Post a Comment