需要使用unix shell脚本连接DB2数据库

时间:2012-07-09 16:32:28

标签: unix db2

需要使用unix shell脚本连接到DB2数据库 我每次都使用QMF工具来运行DB2查询。现在我需要通过shell脚本连接它。 DSN名称--GM2P 数据库名称 - DPPRICMG 表名 - 项目 任何帮助和建议将不胜感激。 任何人都可以尽快回答这个问题。 感谢

1 个答案:

答案 0 :(得分:1)

为了正确运行脚本,必须将远程数据库编目为:

db2 catalog tcpip node NODE1 remote ip.ip.ip.ip server 50000
db2 catalog database mydb1 at node NODE1 authentication server

然后你可以使用这个脚本发出你想要的任何sql:

db2 connect to mydb2 user username using password
db2 "update bla bla bla "
db2 connect reset

请注意,如果您使用的是DB2 for z / OS,那么编目将会有所不同。