运行 bat ,调用sql文件即可。
创建bat文件
1 | @echo off |
创建sql文件
1 | connect to zl user test using testtest; |
db2cmd 部分参数
- -c 执行 DB2 命令窗口,然后终止。
-w 一直等到 DB2 命令窗口终止。
-i 从进行调用的 shell 继承环境。
-t 从进行调用的 shell 继承标题。
db2 部分参数
- -t 指明在缺省情况下用分号(;)终止每条命令
- -v 指明应将每条命令显示到标准输出
- -f 指明从输入文件读取命令
- -l 指明将命令记录到输出文件中
- -r 指明将结果保存到报告文件中
- -s stop commands on command error
更多参数请访问 db2 命令 options