我从批处理文件调用.sql文件但是在作业完成后控件不是来自.sql。我需要按Ctrl + C来终止作业。有没有办法可以在sql作业完成后终止它。我在批处理文件中有这个代码:
db2cmd -i db2 -o -vtf D:\Data\sql\UserProfile.sql
and this is .sql file
connect to testdb user db2admin using db2admin;
update users set Type='B' where name like '%corp%';
terminate;
答案 0 :(得分:0)
我同意db2cmd
文档有点模糊。您可以尝试db2cmd -i -c -w db2 -o -vtf D:\Data\sql\UserProfile.sql