DB2 in the execution of a large insert/update operation, the "The transaction log for the database was full. "Error, check the document is the DB2 log file for the sake of full."
Run the following command first to view the log configuration information for the DB2
$ DB2 Get DB CFG | grep LOG
Note The following configuration items
Log file Size (4KB) (LOGFILSIZ) = 1024Number of primary log files (LOGPRIMARY) = 45Number of secondary log files
(LOGSECOND) = 20
You can now modify the log configuration information for B2 by using the following command
$ DB2 Update db CFG using LOGFILSIZ 10240$ DB2 update db CFG using LOGPRIMARY 100$ DB2 update db CFG using LOGSECOND 100
you need to restart your DB instance after you modify the configuration
$ db2stop force$ Db2start
Finally, review the modified parameters again, and then rerun the insert/update operation.
DB2 "The transaction log for the database was full" problem and solution