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已经被插入了
  • 相关阅读:
    Thread
    C# Iterations: IEnumerator, IEnumerable and Yield
    基于SharePoint 2010 创建一个简单的工作流
    利用with关键字实现数据查询的递归调用
    编写JQuery插件示例
    生成密码web小工具
    (转)关于SQL Server 中合并行的方法
    html5做的割绳子游戏
    SharePoint Foundation和SharePoint Server的区别
    如何实现基于AD的MOSS的FORM认证方式
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13348786.html
Copyright © 2011-2022 走看看