Is (DDL) Data Manipulation Language statements Autocommit?
No. Only the DDL(Data Definition Language )statements like create,alter,drop,truncate are auto commit. But the DML statements are should be saved by giving the commit statement after execute the query
Total Answers and Comments: 4
Last Update: November 01, 2007 Asked by: srinivasan
RE: Is (DDL) Data Manipulation Language statements Aut...
Only DDL statements like create Alter Drop Rename Truncate are Auto commit where as for DML statements like Insert Update Delete we should give externally commit by user after the execution of Sql statement.
RE: Is (DDL) Data Manipulation Language statements Aut...
DDL is Data Definition Language. DDL commands work on the table directly or on the table structure. By default it has auto commit.
DML is Data Manipulation language that affects the data present in the table. Any addition or modification of data has to be saved by the Commit command.