zoukankan      html  css  js  c++  java
  • WHENEVER SQLERROR EXIT AND DML

    1.
    SQL> create table test_dml(id int);
    
    Table created.
    
    SQL> select * from test_dml;
    select * from test῟dml
                      *
    ERROR at line 1:
    ORA-00911: 无效字符
    
    
    SQL> select * from test_dml;
    
    no rows selected
    
    
    
    [oracle@yyjk 20190430]$ cat all.txt 
    WHENEVER SQLERROR EXIT
    @a1.sql
    COMMIT;
    @a2.sql
    COMMIT;
    [oracle@yyjk 20190430]$ 
    [oracle@yyjk 20190430]$ cat a1.sql 
    insert into test_dml values(111);
    insert into test_dml values('aaa');
    
    [oracle@yyjk 20190430]$ cat a2.sql
    insert into test_dml values(222);
    insert into test_dml values('bbb');
    
    
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@yyjk 20190430]$ sqlplus tlcbuser/tlcbuser
    
    SQL*Plus: Release 11.2.0.4.0 Production on 星期二 4月 30 15:42:56 2019
    
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> @all.txt
    
    1 row created.
    
    insert into test_dml values('aaa')
                                *
    ERROR at line 1:
    ORA-01722: 无效数字
    
    
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@yyjk 20190430]$ 
    
    
    Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL> select * from test_dml;
    
     ID
    ----------
           111
    
        
    此时111已经被插入了
  • 相关阅读:
    mysql的安装
    一个电脑登录多个微信
    项目工程构建
    MYSQL 添加字段
    Centos 搭建maven私服
    Nacos 动态刷新@RefreshScope
    Cookie & Session
    阿里蚂蚁 笔试题
    springboot 将配置文件中的配置读取为properties配置类
    .Net Gacutil工具(全局程序集缓存工具)使用教程
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348786.html
Copyright © 2011-2022 走看看