sqlplus 中exit 命令的隱式commit
C:>sqlplus scott/aaaaaa
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Aug 19 10:27:42 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> desc scott.dept
Name Null? Type
----------------------------------------- -------- ----------------------------
DEPTNO NOT NULL NUMBER(2)
DNAME VARCHAR2(14)
LOC VARCHAR2(13)
SQL> select *from dept;
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
SQL> update dept set dname='sales_kao' where deptno='30';
1 row updated.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Pr
oduction
With the Partitioning, OLAP, Data Mining and Real Application Testing options
C:>sqlplus scott/aaaaaa
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Aug 19 10:28:39 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select *from dept;
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 sales_kao CHICAGO
40 OPERATIONS BOSTON
SQL>[@more@]
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Aug 19 10:27:42 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> desc scott.dept
Name Null? Type
----------------------------------------- -------- ----------------------------
DEPTNO NOT NULL NUMBER(2)
DNAME VARCHAR2(14)
LOC VARCHAR2(13)
SQL> select *from dept;
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 SALES CHICAGO
40 OPERATIONS BOSTON
SQL> update dept set dname='sales_kao' where deptno='30';
1 row updated.
SQL> exit
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Pr
oduction
With the Partitioning, OLAP, Data Mining and Real Application Testing options
C:>sqlplus scott/aaaaaa
SQL*Plus: Release 11.1.0.6.0 - Production on Fri Aug 19 10:28:39 2011
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select *from dept;
DEPTNO DNAME LOC
---------- -------------- -------------
10 ACCOUNTING NEW YORK
20 RESEARCH DALLAS
30 sales_kao CHICAGO
40 OPERATIONS BOSTON
SQL>[@more@]
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/161195/viewspace-1054045/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【Oracle】-【隱式commit】-正常與異常退出對commit的作用OracleMIT
- 【DDL】DDL的隱式commit和自治事務MIT
- sqlplus中change命令的用法SQL
- cmd_sqlplus 中的break命令SQL
- mysql 5.5 lock tables與隱式事務提交commitMySqlMIT
- python中 os._exit() 和 sys.exit(), exit(0)的用法和區別Python
- SQLPLUS的ACCEPT命令SQL
- SQLPLUS 的COPY命令SQL
- sqlplus下的命令SQL
- 【DDL】DDL執行過程及其隱式COMMIT行為的探查與演示MIT
- Linux下Oracle sqlplus命令中執行ed命令LinuxOracleSQL
- 奇怪 sqlplus中 host命令出現lsSQLSQL
- sqlplus 中設定命令回顯功能SQL
- OSX中隱藏和顯示[隱藏檔案]的命令列命令列
- 在sqlplus中實現命令的上翻下翻功能SQL
- scala中隱式轉換之隱式轉換呼叫類中本不存在的方法
- 深入理解Javascript中的隱式呼叫JavaScript
- Spark中的三種隱式轉換Spark
- MySQL和Oracle中的隱式轉換MySqlOracle
- sqlplus set命令SQL
- sqlplus 命令大全SQL
- 【SQL*Plus】使用Oracle 11gR2的EXITCOMMIT引數控制在SQL*Plus中exit時commit的行為SQLOracleMIT
- C++中的return和exit區別C++
- 解析php中die(),exit(),return的區別PHP
- [轉]Sales Order 中的User Exit開發
- sqlplus專用命令SQL
- sqlplus column命令用法SQL
- sqlplus 內部命令SQL
- sqlplus set命令使用SQL
- sqlplus 命令列格式SQL命令列
- SQLPLUS命令彙總SQL
- IMP中commit=y的用法~~~MIT
- Sqlplus下的set命令詳解SQL
- exit(0)與exit(1)、return的區別
- SQLPLUS中幾個常用命令———摘自網路SQL
- git檢視和操作commit命令GitMIT
- RMAN中的 debug調式命令
- Shell 指令碼中的exit狀態解釋指令碼