SlideShare a Scribd company logo
Chapter - 8

Manipulating Data
DML
- Insert
- Update
- Delete
- Merge
Data Manipulation Language


A DML statement is executed when you:
– Add new rows to a table
– Modify existing rows in a table
– Remove existing rows from a table



A collection of DML statements that form a logical unit of work is called a Transaction.



Consider a banking database. When a bank customer transfers money from a savings
account to a checking account, the transaction might consist of three separate
operations:
- decrease the savings account,
- increase the checking account,
- and record the transaction in the transaction journal.



The Oracle server must guarantee that all three SQL statements are performed to
maintain the accounts in proper balance. When something prevents one of the statements
in the transaction from executing, the other statements of the transaction must be undone.
Adding a New Row – INSERT

statement
INSERT Statement


Add new rows to a table by using the INSERT statement.




Only one row is inserted at a time with this syntax.
Example :-



Enclose character and date values within single quotation marks.
Inserting Rows with Null Values


Implicit method: Omit the column from the column list.



Explicit method: Specify the NULL keyword in the VALUES clause. specify
the empty string (’’) in the VALUES list for character strings and dates.
Common errors that can occur during user input:



Mandatory value missing for a NOT NULL column



Duplicate value violates uniqueness constraint



Foreign key constraint violated



CHECK constraint violated



Data type mismatch



Value too wide to fit in column
Inserting Special Values


The SYSDATE function records the current date and time.
Inserting Specific Date Values


Add a new employee.



If a date must be entered in a format other than the default format (DDMON-RR), for example, with another century, or a specific time, you must
use the TO_DATE function.
Creating a Script


Use & substitution in a SQL statement to prompt for values.



& is a placeholder for the variable value.



Run the script file and you are prompted for input for the & substitution
variables.



The values you input are then substituted into the statement. This allows you to
run the same script file over and over, but supply a different set of values each
time you run it.
Copying Rows from Another Table


Write your INSERT statement with a subquery.



Do not use the VALUES clause.



Match the number of columns in the INSERT clause to those in the subquery.



The number of columns and their data types in the column list of the INSERT clause
must match the number of values and their data types in the subquery.
Changing Data in a Table – UPDATE

statement
UPDATE Statement


Modify existing rows with the UPDATE statement.



Update more than one row at a time, if required.



Specific row or rows are modified if you specify the WHERE clause.



All rows in the table are modified if you omit the WHERE clause.
Updating Two Columns with a Subquery


Update employee 114’s job and salary to match that of employee 205.
Updating Rows Based on Another Table


Use subqueries in UPDATE statements to update rows in a table based on values
from another table.



The example on the slide updates the COPY_EMP table based on the values from the
EMPLOYEES table.



It changes the department number of all employees with employee 200’s job ID to
employee 100’s current department number.
Updating Rows:

Integrity Constraint Error



In the example on the slide, department number 55 does not exist in the parent table,
DEPARTMENTS, and so you receive the parent key violation ORA-02291.
Removing a Row from a Table – DELETE statement
DELETE

VS

TRUNCATE



After all the rows have been eliminated with the DELETE statement, only the
data structure of the table remains. A more efficient method of emptying a table
is with the TRUNCATE statement.



You can use the TRUNCATE statement to quickly remove all rows from a table
or cluster.



Removing rows with the TRUNCATE statement is faster than removing them
with the DELETE statement for the following reasons:
–
–
–
–

The TRUNCATE statement is a data definition language (DDL) statement and
generates no rollback information.
Truncating a table does not fire the delete triggers of the table.
If the table is the parent of a referential integrity constraint, you cannot truncate
the table.
Disable the constraint before issuing the TRUNCATE statement.
The DELETE Statement


You can remove existing rows from a table by using the DELETE statement.



Specific rows are deleted if you specify the WHERE clause.



All rows in the table are deleted if you omit the WHERE clause.
Deleting Rows Based on Another Table


Use subqueries in DELETE statements to remove rows from a table based on values
from another table.



The subquery searches the DEPARTMENTS table to find the department number based
on the department name containing the string “Public.”



The subquery then feeds the department number to the main query, which deletes rows of
data from the EMPLOYEES table based on this department number.
Deleting Rows:

Integrity Constraint Error

If the parent record that you attempt to delete has child records, then you receive the child
record found violation ORA-02292.
However, if the referential integrity constraint contains the ON DELETE CASCADE option,
then the selected row and its children are deleted from their respective tables.
WITH CHECK OPTION on DML Statements


A subquery is used to identify the table and columns of the DML statement.



The WITH CHECK OPTION keyword prohibits you from changing rows that are not
in the subquery.
Using Explicit

Default Values

•

Specify DEFAULT to set the column to the value previously specified
as the
default value for the column.

•

If no default value for the corresponding column has been specified, Oracle
sets the column to null.
The MERGE Statement


Provides the ability to conditionally update or insert data into a database table



Performs an UPDATE if the row exists, and an INSERT if it is a new row:
– Avoids separate updates
– Increases performance and ease of use
– Is useful in data warehousing applications



The decision whether to update or insert into the target table is based on a condition in the
ON clause.



The MERGE statement is deterministic. You cannot update the same row of the target
table multiple times in the same MERGE statement.



An alternative approach is to use PL/SQL loops and multiple DML statements.



The MERGE statement, however, is easy to use and more simply expressed as a single
SQL statement.
MERGE Statement Syntax
Merging Rows Example :
Database Transactions
Database Transactions


The Oracle server ensures data consistency based on transactions.



Transactions give you more flexibility and control when changing data, and they
ensure data consistency in the event of user process failure or system failure.



Transactions consist of DML statements that make up one consistent change to
the data.



For example, a transfer of funds between two accounts should include the debit
to one account and the credit to another account in the same amount.



Both actions should either fail or succeed together; the credit should not be
committed without the debit.
Advantages of

COMMIT and ROLLBACK Statements



Ensure data consistency



Preview data changes before making
changes permanent



Group logically related operations
Implicit Transaction Processing


An automatic commit occurs under the following circumstances:
– DDL statement is issued
– DCL statement is issued
– Normal exit from iSQL*Plus, without explicitly issuing COMMIT or
ROLLBACK statements



An automatic rollback occurs under an abnormal termination of iSQL*Plus or a
system failure.
Committing Changes


Every data change made during the transaction is temporary until the transaction is
committed.

State of the data before COMMIT or ROLLBACK statements are issued:


Data manipulation operations primarily affect the database buffer; therefore, the previous
state of the data can be recovered.



The current user can review the results of the data manipulation operations by querying
the tables.



Other users cannot view the results of the data manipulation operations made by the
current user. The Oracle server institutes read consistency to ensure that each user sees
data as it existed at the last commit.



The affected rows are locked; other users cannot change the data in the affected rows.
State of the Data after

COMMIT



Data changes are made permanent in the database.



The previous state of the data is permanently lost.



All users can view the results.



Locks on the affected rows are released; those rows are
available for other users to manipulate.



All save points are erased.
State of the Data After

ROLLBACK



Discard all pending changes by using the ROLLBACK
statement:



Data changes are undone.



Previous state of the data is restored.



Locks on the affected rows are released.
Statement-Level Rollbacks


Part of a transaction can be discarded by an implicit rollback if a statement
execution error is detected.



If a single DML statement fails during execution of a transaction, its effect is
undone by a statement level rollback, but the changes made by the previous
DML statements in the transaction are not discarded.



They can be committed or rolled back explicitly by the user.



Oracle issues an implicit commit before and after any data definition language
(DDL) statement. So, even if your DDL statement does not execute
successfully, you cannot roll back the previous statement because the server
issued a commit.



Terminate your transactions explicitly by executing a COMMIT or ROLLBACK
statement.
Locking
In an Oracle database, locks:


Prevent destructive interaction between concurrent
transactions



Require no user action



Automatically use the lowest level of restrictiveness



Are held for the duration of the transaction



Are of two types: explicit locking and implicit locking
What Are Locks?


Locks are mechanisms that prevent destructive interaction between
transactions accessing the same resource, either a user object (such as tables
or rows) or a system object not visible to users (such as shared data structures
and data dictionary rows).

How the Oracle Database Locks Data


Oracle locking is performed automatically and requires no user action.



Implicit locking occurs for SQL statements as necessary, depending on the
action requested. Implicit locking occurs for all SQL statements except
SELECT.



The users can also lock data manually, which is called explicit locking.
Implicit Locking


Two lock modes:
– Exclusive: Locks out other users
– Share: Allows other users to access



High level of data concurrency:
– DML: Table share, row exclusive
– Queries: No locks required
– DDL: Protects object definitions



Locks held until commit or rollback
Summary

More Related Content

PPTX
SQL Commands
PPTX
introdution to SQL and SQL functions
PPTX
sql function(ppt)
PPTX
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
PPT
SQL DDL
PPT
SQL subquery
PPT
Sql join
PPT
SQL Views
SQL Commands
introdution to SQL and SQL functions
sql function(ppt)
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
SQL DDL
SQL subquery
Sql join
SQL Views

What's hot (20)

PPTX
PPTX
PPTX
SQL JOIN
PPTX
Sql(structured query language)
PPTX
Normalization
PPTX
Sql Functions And Procedures
PPT
Constraints In Sql
PPT
Types Of Join In Sql Server - Join With Example In Sql Server
PPTX
SQL Data types and Constarints.pptx
PPTX
MySQL JOIN & UNION
PPT
Database Triggers
PPTX
Introduction to database & sql
DOCX
DATABASE MANAGEMENT SYSTEM
PPTX
Chapter 4 functions, views, indexing
PDF
SQL JOINS
PPTX
DATABASE CONSTRAINTS
PPTX
Introduction to SQL
PPTX
Sql joins
PPT
Introduction to structured query language (sql)
SQL JOIN
Sql(structured query language)
Normalization
Sql Functions And Procedures
Constraints In Sql
Types Of Join In Sql Server - Join With Example In Sql Server
SQL Data types and Constarints.pptx
MySQL JOIN & UNION
Database Triggers
Introduction to database & sql
DATABASE MANAGEMENT SYSTEM
Chapter 4 functions, views, indexing
SQL JOINS
DATABASE CONSTRAINTS
Introduction to SQL
Sql joins
Introduction to structured query language (sql)
Ad

Viewers also liked (20)

PPT
OOUG: Oracle transaction locking
PDF
Oracle Database Performance Tuning Concept
PDF
Oracle GoldenGate Architecture Performance
PPT
Earl Shaffer Oracle Performance Tuning pre12c 11g AWR uses
PDF
Oracle Database Performance Tuning: The Not SQL Option
PDF
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
PPTX
Extreme Replication - Performance Tuning Oracle GoldenGate
PPTX
Advanced goldengate training ⅰ
PPTX
Oracle Goldengate training by Vipin Mishra
PDF
Oracle database 12c 2 day + performance tuning guide
PPT
OOUG - Oracle Performance Tuning with AAS
PDF
Oracle SQL Performance Tuning and Optimization v26 chapter 1
PDF
Oracle Performance Tuning Fundamentals
PDF
Oracle LOB Internals and Performance Tuning
PDF
Oracle db performance tuning
PPT
Performance Tuning With Oracle ASH and AWR. Part 1 How And What
PPTX
Low Level CPU Performance Profiling Examples
PDF
Oracle WebLogic Diagnostics & Perfomance tuning
PDF
SQL Monitoring in Oracle Database 12c
PPTX
Top 10 tips for Oracle performance (Updated April 2015)
OOUG: Oracle transaction locking
Oracle Database Performance Tuning Concept
Oracle GoldenGate Architecture Performance
Earl Shaffer Oracle Performance Tuning pre12c 11g AWR uses
Oracle Database Performance Tuning: The Not SQL Option
Exploring Oracle Database Performance Tuning Best Practices for DBAs and Deve...
Extreme Replication - Performance Tuning Oracle GoldenGate
Advanced goldengate training ⅰ
Oracle Goldengate training by Vipin Mishra
Oracle database 12c 2 day + performance tuning guide
OOUG - Oracle Performance Tuning with AAS
Oracle SQL Performance Tuning and Optimization v26 chapter 1
Oracle Performance Tuning Fundamentals
Oracle LOB Internals and Performance Tuning
Oracle db performance tuning
Performance Tuning With Oracle ASH and AWR. Part 1 How And What
Low Level CPU Performance Profiling Examples
Oracle WebLogic Diagnostics & Perfomance tuning
SQL Monitoring in Oracle Database 12c
Top 10 tips for Oracle performance (Updated April 2015)
Ad

Similar to Sql DML (20)

PPT
Manipulating data
PPT
plsql Les08
PPT
Les08 (manipulating data)
PPT
PPT
PPT
e computer notes - Manipulating data
PPT
PPT
SQL WORKSHOP::Lecture 9
PPT
PPT
Les09[1]Manipulating Data
PPT
Manipulating Data Oracle Data base
PPT
Sql dml & tcl 2
PPTX
Oracle SQL DML Statements
PDF
SQL & Adv SQL - Basics and Advanced for Beginners
DOC
Adbms
DOC
Oracle sql material
DOC
Oracle SQL AND PL/SQL
PPTX
SQL LECTURE.pptx
Manipulating data
plsql Les08
Les08 (manipulating data)
e computer notes - Manipulating data
SQL WORKSHOP::Lecture 9
Les09[1]Manipulating Data
Manipulating Data Oracle Data base
Sql dml & tcl 2
Oracle SQL DML Statements
SQL & Adv SQL - Basics and Advanced for Beginners
Adbms
Oracle sql material
Oracle SQL AND PL/SQL
SQL LECTURE.pptx

Recently uploaded (20)

PDF
Approach and Philosophy of On baking technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Empathic Computing: Creating Shared Understanding
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
TLE Review Electricity (Electricity).pptx
PPTX
cloud_computing_Infrastucture_as_cloud_p
PPTX
Spectroscopy.pptx food analysis technology
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPT
Teaching material agriculture food technology
PDF
Encapsulation theory and applications.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPTX
A Presentation on Artificial Intelligence
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
Approach and Philosophy of On baking technology
Building Integrated photovoltaic BIPV_UPV.pdf
Empathic Computing: Creating Shared Understanding
Assigned Numbers - 2025 - Bluetooth® Document
TechTalks-8-2019-Service-Management-ITIL-Refresh-ITIL-4-Framework-Supports-Ou...
Advanced methodologies resolving dimensionality complications for autism neur...
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
MIND Revenue Release Quarter 2 2025 Press Release
TLE Review Electricity (Electricity).pptx
cloud_computing_Infrastucture_as_cloud_p
Spectroscopy.pptx food analysis technology
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
Teaching material agriculture food technology
Encapsulation theory and applications.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Per capita expenditure prediction using model stacking based on satellite ima...
A Presentation on Artificial Intelligence
Group 1 Presentation -Planning and Decision Making .pptx

Sql DML

  • 1. Chapter - 8 Manipulating Data DML - Insert - Update - Delete - Merge
  • 2. Data Manipulation Language  A DML statement is executed when you: – Add new rows to a table – Modify existing rows in a table – Remove existing rows from a table  A collection of DML statements that form a logical unit of work is called a Transaction.  Consider a banking database. When a bank customer transfers money from a savings account to a checking account, the transaction might consist of three separate operations: - decrease the savings account, - increase the checking account, - and record the transaction in the transaction journal.  The Oracle server must guarantee that all three SQL statements are performed to maintain the accounts in proper balance. When something prevents one of the statements in the transaction from executing, the other statements of the transaction must be undone.
  • 3. Adding a New Row – INSERT statement
  • 4. INSERT Statement  Add new rows to a table by using the INSERT statement.   Only one row is inserted at a time with this syntax. Example :-  Enclose character and date values within single quotation marks.
  • 5. Inserting Rows with Null Values  Implicit method: Omit the column from the column list.  Explicit method: Specify the NULL keyword in the VALUES clause. specify the empty string (’’) in the VALUES list for character strings and dates.
  • 6. Common errors that can occur during user input:  Mandatory value missing for a NOT NULL column  Duplicate value violates uniqueness constraint  Foreign key constraint violated  CHECK constraint violated  Data type mismatch  Value too wide to fit in column
  • 7. Inserting Special Values  The SYSDATE function records the current date and time.
  • 8. Inserting Specific Date Values  Add a new employee.  If a date must be entered in a format other than the default format (DDMON-RR), for example, with another century, or a specific time, you must use the TO_DATE function.
  • 9. Creating a Script  Use & substitution in a SQL statement to prompt for values.  & is a placeholder for the variable value.  Run the script file and you are prompted for input for the & substitution variables.  The values you input are then substituted into the statement. This allows you to run the same script file over and over, but supply a different set of values each time you run it.
  • 10. Copying Rows from Another Table  Write your INSERT statement with a subquery.  Do not use the VALUES clause.  Match the number of columns in the INSERT clause to those in the subquery.  The number of columns and their data types in the column list of the INSERT clause must match the number of values and their data types in the subquery.
  • 11. Changing Data in a Table – UPDATE statement
  • 12. UPDATE Statement  Modify existing rows with the UPDATE statement.  Update more than one row at a time, if required.  Specific row or rows are modified if you specify the WHERE clause.  All rows in the table are modified if you omit the WHERE clause.
  • 13. Updating Two Columns with a Subquery  Update employee 114’s job and salary to match that of employee 205.
  • 14. Updating Rows Based on Another Table  Use subqueries in UPDATE statements to update rows in a table based on values from another table.  The example on the slide updates the COPY_EMP table based on the values from the EMPLOYEES table.  It changes the department number of all employees with employee 200’s job ID to employee 100’s current department number.
  • 15. Updating Rows: Integrity Constraint Error  In the example on the slide, department number 55 does not exist in the parent table, DEPARTMENTS, and so you receive the parent key violation ORA-02291.
  • 16. Removing a Row from a Table – DELETE statement
  • 17. DELETE VS TRUNCATE  After all the rows have been eliminated with the DELETE statement, only the data structure of the table remains. A more efficient method of emptying a table is with the TRUNCATE statement.  You can use the TRUNCATE statement to quickly remove all rows from a table or cluster.  Removing rows with the TRUNCATE statement is faster than removing them with the DELETE statement for the following reasons: – – – – The TRUNCATE statement is a data definition language (DDL) statement and generates no rollback information. Truncating a table does not fire the delete triggers of the table. If the table is the parent of a referential integrity constraint, you cannot truncate the table. Disable the constraint before issuing the TRUNCATE statement.
  • 18. The DELETE Statement  You can remove existing rows from a table by using the DELETE statement.  Specific rows are deleted if you specify the WHERE clause.  All rows in the table are deleted if you omit the WHERE clause.
  • 19. Deleting Rows Based on Another Table  Use subqueries in DELETE statements to remove rows from a table based on values from another table.  The subquery searches the DEPARTMENTS table to find the department number based on the department name containing the string “Public.”  The subquery then feeds the department number to the main query, which deletes rows of data from the EMPLOYEES table based on this department number.
  • 20. Deleting Rows: Integrity Constraint Error If the parent record that you attempt to delete has child records, then you receive the child record found violation ORA-02292. However, if the referential integrity constraint contains the ON DELETE CASCADE option, then the selected row and its children are deleted from their respective tables.
  • 21. WITH CHECK OPTION on DML Statements  A subquery is used to identify the table and columns of the DML statement.  The WITH CHECK OPTION keyword prohibits you from changing rows that are not in the subquery.
  • 22. Using Explicit Default Values • Specify DEFAULT to set the column to the value previously specified as the default value for the column. • If no default value for the corresponding column has been specified, Oracle sets the column to null.
  • 23. The MERGE Statement  Provides the ability to conditionally update or insert data into a database table  Performs an UPDATE if the row exists, and an INSERT if it is a new row: – Avoids separate updates – Increases performance and ease of use – Is useful in data warehousing applications  The decision whether to update or insert into the target table is based on a condition in the ON clause.  The MERGE statement is deterministic. You cannot update the same row of the target table multiple times in the same MERGE statement.  An alternative approach is to use PL/SQL loops and multiple DML statements.  The MERGE statement, however, is easy to use and more simply expressed as a single SQL statement.
  • 27. Database Transactions  The Oracle server ensures data consistency based on transactions.  Transactions give you more flexibility and control when changing data, and they ensure data consistency in the event of user process failure or system failure.  Transactions consist of DML statements that make up one consistent change to the data.  For example, a transfer of funds between two accounts should include the debit to one account and the credit to another account in the same amount.  Both actions should either fail or succeed together; the credit should not be committed without the debit.
  • 28. Advantages of COMMIT and ROLLBACK Statements  Ensure data consistency  Preview data changes before making changes permanent  Group logically related operations
  • 29. Implicit Transaction Processing  An automatic commit occurs under the following circumstances: – DDL statement is issued – DCL statement is issued – Normal exit from iSQL*Plus, without explicitly issuing COMMIT or ROLLBACK statements  An automatic rollback occurs under an abnormal termination of iSQL*Plus or a system failure.
  • 30. Committing Changes  Every data change made during the transaction is temporary until the transaction is committed. State of the data before COMMIT or ROLLBACK statements are issued:  Data manipulation operations primarily affect the database buffer; therefore, the previous state of the data can be recovered.  The current user can review the results of the data manipulation operations by querying the tables.  Other users cannot view the results of the data manipulation operations made by the current user. The Oracle server institutes read consistency to ensure that each user sees data as it existed at the last commit.  The affected rows are locked; other users cannot change the data in the affected rows.
  • 31. State of the Data after COMMIT  Data changes are made permanent in the database.  The previous state of the data is permanently lost.  All users can view the results.  Locks on the affected rows are released; those rows are available for other users to manipulate.  All save points are erased.
  • 32. State of the Data After ROLLBACK  Discard all pending changes by using the ROLLBACK statement:  Data changes are undone.  Previous state of the data is restored.  Locks on the affected rows are released.
  • 33. Statement-Level Rollbacks  Part of a transaction can be discarded by an implicit rollback if a statement execution error is detected.  If a single DML statement fails during execution of a transaction, its effect is undone by a statement level rollback, but the changes made by the previous DML statements in the transaction are not discarded.  They can be committed or rolled back explicitly by the user.  Oracle issues an implicit commit before and after any data definition language (DDL) statement. So, even if your DDL statement does not execute successfully, you cannot roll back the previous statement because the server issued a commit.  Terminate your transactions explicitly by executing a COMMIT or ROLLBACK statement.
  • 34. Locking In an Oracle database, locks:  Prevent destructive interaction between concurrent transactions  Require no user action  Automatically use the lowest level of restrictiveness  Are held for the duration of the transaction  Are of two types: explicit locking and implicit locking
  • 35. What Are Locks?  Locks are mechanisms that prevent destructive interaction between transactions accessing the same resource, either a user object (such as tables or rows) or a system object not visible to users (such as shared data structures and data dictionary rows). How the Oracle Database Locks Data  Oracle locking is performed automatically and requires no user action.  Implicit locking occurs for SQL statements as necessary, depending on the action requested. Implicit locking occurs for all SQL statements except SELECT.  The users can also lock data manually, which is called explicit locking.
  • 36. Implicit Locking  Two lock modes: – Exclusive: Locks out other users – Share: Allows other users to access  High level of data concurrency: – DML: Table share, row exclusive – Queries: No locks required – DDL: Protects object definitions  Locks held until commit or rollback