DB2 执行SQL脚本

今天有网友问到这个问题,平时也没怎么留意。刚刚做了测试在db2的SQL脚本中,直接写命令就好了。

例如:

[db2inst1@win backups]$ cat test.ddl 
--------------------------------------
insert into t3 values (123,'SQL');
select * from t3;
--------------------------------------

如果写成:

----------------------------------------------
db2 "insert into t3 values (123,'SQL')";
db2 "select * from t3";
----------------------------------------------

[db2inst1@win backups]$ db2 -tvf test.ddl
db2 "insert into t3 values (1123,'SQL')"
SQL0104N An unexpected token "db2" was found following "BEGIN-OF-STATEMENT".
Expected tokens may include: "SELECT". SQLSTATE=42601

db2 "select * from t3"
SQL0104N An unexpected token "db2" was found following "BEGIN-OF-STATEMENT".
Expected tokens may include: "SELECT". SQLSTATE=42601

语句后面要写分号,其他符号也可以,需要指定。

上面指出了,脚本中每行命令首不要带db2

再看一看删除table的脚本:

[db2inst1@win ~]$ cat dropexplain.ddl 

connect to mydb1
drop table EXPLAIN_ACTUALS                                                                                                                 
drop table EXPLAIN_ARGUMENT  
connect reset

执行:

[db2inst1@win ~]$ db2 -tvf dropexplain.ddl 

DB21007E  End of file reached while reading the command.

可是还是执行不成功,注意:脚本的结尾一定要有分隔符。修改成下面这样就好了。

[db2inst1@win ~]$ cat dropexplain.ddl 
connect to mydb1;    
drop table EXPLAIN_ACTUALS ;                                                                                                                
drop table EXPLAIN_ARGUMENT ;                                                                                                               
connect reset;

执行:

[db2inst1@win ~]$ db2 -tvf dropexplain.ddl 
connect to mydb1

   Database Connection Information

 Database server        = DB2/LINUXX8664 10.1.0
 SQL authorization ID   = DB2INST1
 Local database alias   = MYDB1


drop table EXPLAIN_ACTUALS 
DB20000I  The SQL command completed successfully.

drop table EXPLAIN_ARGUMENT 
DB20000I  The SQL command completed successfully.

connect reset
DB20000I  The SQL command completed successfully.

 

 

转载于:https://www.cnblogs.com/jackhub/p/3161875.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值