DB2 issues

How to manage DB2 server spaces?

After you use db2 database for a while, there are db2diag,log and transaction logs generated, which
would consume spaces of your server machine. Below steps gives you a way to clean up those logs to free up some spaces.

1
2
db2 => set database LOGARCHMETH1 =  logretain
db2 => get db cfg

you would see:

check “Path to log files” and “First active log file” items in the configure list, then issue a prune logfile command.

1
db2 => prune logfile prior to S0000681.LOG

you would notice that in C:\DB2\NODE0000\SQL00002\LOGSTREAM0000, all the log files prior to S0000681 would be deleted.

then we also need to manage db2diag.log. For windows, db2diaglog may locate in C:\Users\All\Users\IBM\DB2\DB2COPY1\DB2\DIAG0000 or C:\ProgramData\IBM\DB2\DB2COPY1\DB2\DIAG0000

for Unix, it may locate in /db2inst1/sqllib/db2dump

first make sure DB2 is stopped, if not, issue “db2 stop force” command to make it stop. then delete db2diag.log file or backup it to another place, then restart DB2 using “db2start” .

how to handle DB2 log full issue?

[^note]: do not use delete from table to delete a large table, in db2_bulkload_api testing unit, there is a job to load 200 million row into a DB2 table, using delete from table command would easily cause log file full. Try to load a null file to the table or use drop table then re-create method to empty the table.

you may have similar error message for log full:

SQL0964C The transaction log for the database is full.

so you need to enlarge the log file size using below commands.

1
2
3
4
5
db2 => update db cfg using LOGFILSIZ 7900
db2 => update db cfg using LOGPRIMARY 30
db2 => update db cfg using LOGSECOND 20
db2 => db2stop (or db2stop force) # need to shutdown to make teh update take effect
db2 => db2start
how to truncate a table or move data from a table?

in DB2, there is no truncate command, we can use other commands to fulfill this function.

1
2
3
4
on widowns: 
db2 => import from c:\empty.txt of del replace into "table_name";
on unix:
import from /dev/null of del replace into "table_name"
how to check DB2 connections when there are too many connections existed?

sometimes you would encounter SQL1035N error when you try to connect or perform an action to a database.

SQL1035N The database is currently in use.

First to check all the current opened user connections, then to shut down them all.

1
2
db2 => db2 list applications show detail
db2 => db2 force application all
connecting to a database is not permitted within a logical unit of work when the connect type 1 setting is in use.

use terminate to solve this issue.

how to handle DB2 table is in load pending state issue?

Use “load empty file…terminate into …” method, this issue happens when loading large amount of data into a table.

how to handle table space access not allowed issue?
1
db2 => db2 list tablespaces show detail

you would see :

1
2
3
4
5
6
Tablespace ID  = 2   
Name = USERSPACE1
Type = System managed space
Contents = Any data
State = 0x0020
Detailed explanation: Backup pending

if you encounter table space access not allowed issue, you need to check your tablespaces status, usually you would find that at least one of your tablespace would have state=0x0020, this state indicates that this tablespace is in abnormal state. What you need to do is to back up the database to bring tablespace back to normal.

1
db2 => db2 backup db

  转载请注明: ZQY's Lab DB2 issues

 上一篇
DB2 Client DB2 Client
How to install DB2 client on UnixUsually we use DB2 clients from /home/dbclient_Linux(or AIX, Solaris)/db2, but due to s
2019-03-10
下一篇 
DB2 DB2
How to install DB2 server on Linuxstep1:login to linux with root account, add groups and users for DB2. 123456# groupadd
2019-03-05