Re: Error Configure TSM

kartikramkris

Newcomer
Joined
Dec 9, 2010
Messages
3
Reaction score
0
Points
0
PREDATAR Control23

Hi,
I am getting an error when I try to config TSM later run a db2 backup.
Error: db2 backup database sample online use tsm
SQL2033N An error occurred while accessing TSM during the processing of a
database utility. Reason code: "409".

Please let me know :
Thanks.
Kartikramkris
 
PREDATAR Control23

I also met this error.

The backup has always been Ok. But recently it failed.

script:

db2inst1-jumm-dbbak.sh

LOGDATE=`date +%Y-%m-%d_%H:%M`
DBBAKLOG=/opt/tivoli/tsm/script/log/jumm/${LOGDATE}bak.log
DBEXPLOG=/opt/tivoli/tsm/script/log/jumm/${LOGDATE}expire.log

su - db2inst1 -c 'db2 backup db jumm online use tsm include logs' > ${DBBAKLOG}
su - db2inst1 -c 'db2adutl delete full older than 20 days db jumm without prompting' > ${DBEXPLOG}


error message:
[db2inst1@umm-db ~]$ db2 backup db jumm online use tsm include logs
SQL2033N An error occurred while accessing TSM during the processing of a
database utility. TSM reason code: "409".
 
PREDATAR Control23

TSM RC 0409 Means : DSM_RC_INVALID_SERVER Server name not found in System Options File.

Try the following ..
dsmc -se=<ServerName> The servername option specifies the name you want to use to identify a server and to begin a stanza containing options for that DB2 server API configuration.

Also check the dsm.opt file, which is used by the DB2 API .

Thanks
 
Top