SlideShare a Scribd company logo
1 of 37
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

What's hot

06.01 sql select distinct
06.01 sql select distinct06.01 sql select distinct
06.01 sql select distinct
Bishal Ghimire
 

What's hot (20)

SQL JOIN
SQL JOINSQL JOIN
SQL JOIN
 
Entity Relationship Diagram
Entity Relationship DiagramEntity Relationship Diagram
Entity Relationship Diagram
 
SQL DDL
SQL DDLSQL DDL
SQL DDL
 
joins in database
 joins in database joins in database
joins in database
 
Triggers in SQL | Edureka
Triggers in SQL | EdurekaTriggers in SQL | Edureka
Triggers in SQL | Edureka
 
Database Triggers
Database TriggersDatabase Triggers
Database Triggers
 
Sql commands
Sql commandsSql commands
Sql commands
 
Dbms schema & instance
Dbms schema & instanceDbms schema & instance
Dbms schema & instance
 
Triggers
TriggersTriggers
Triggers
 
PL/SQL TRIGGERS
PL/SQL TRIGGERSPL/SQL TRIGGERS
PL/SQL TRIGGERS
 
Commands of DML in SQL
Commands of DML in SQLCommands of DML in SQL
Commands of DML in SQL
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
Cursors
CursorsCursors
Cursors
 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in database
 
Sql Server Basics
Sql Server BasicsSql Server Basics
Sql Server Basics
 
SQL - Structured query language introduction
SQL - Structured query language introductionSQL - Structured query language introduction
SQL - Structured query language introduction
 
Data Manipulation Language
Data Manipulation LanguageData Manipulation Language
Data Manipulation Language
 
PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts PL/SQL Introduction and Concepts
PL/SQL Introduction and Concepts
 
06.01 sql select distinct
06.01 sql select distinct06.01 sql select distinct
06.01 sql select distinct
 
DML Commands
DML CommandsDML Commands
DML Commands
 

Similar to Sql DML

Ms sql server ii
Ms sql server  iiMs sql server  ii
Ms sql server ii
Iblesoft
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
PavithSingh
 
Ben Finkel- Using the order by clause.pptx
Ben Finkel- Using the order by clause.pptxBen Finkel- Using the order by clause.pptx
Ben Finkel- Using the order by clause.pptx
StephenEfange3
 

Similar to Sql DML (20)

Merging data (1)
Merging data (1)Merging data (1)
Merging data (1)
 
Les08
Les08Les08
Les08
 
Les08 (manipulating data)
Les08 (manipulating data)Les08 (manipulating data)
Les08 (manipulating data)
 
SQL Query
SQL QuerySQL Query
SQL Query
 
Interview Questions.pdf
Interview Questions.pdfInterview Questions.pdf
Interview Questions.pdf
 
Adbms
AdbmsAdbms
Adbms
 
Cursors, triggers, procedures
Cursors, triggers, proceduresCursors, triggers, procedures
Cursors, triggers, procedures
 
Ms sql server ii
Ms sql server  iiMs sql server  ii
Ms sql server ii
 
PPT of Common Table Expression (CTE), Window Functions, JOINS, SubQuery
PPT  of Common Table Expression (CTE), Window Functions, JOINS, SubQueryPPT  of Common Table Expression (CTE), Window Functions, JOINS, SubQuery
PPT of Common Table Expression (CTE), Window Functions, JOINS, SubQuery
 
PL/SQL 3 DML
PL/SQL 3 DMLPL/SQL 3 DML
PL/SQL 3 DML
 
SQL Database Performance Tuning for Developers
SQL Database Performance Tuning for DevelopersSQL Database Performance Tuning for Developers
SQL Database Performance Tuning for Developers
 
SQL.pptx for the begineers and good know
SQL.pptx for the begineers and good knowSQL.pptx for the begineers and good know
SQL.pptx for the begineers and good know
 
Les09.ppt
Les09.pptLes09.ppt
Les09.ppt
 
Day-2 SQL Theory_V1.pptx
Day-2 SQL Theory_V1.pptxDay-2 SQL Theory_V1.pptx
Day-2 SQL Theory_V1.pptx
 
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
Unit-1 SQL fundamentals.docx SQL commands used to create table, insert values...
 
Oracle SQL DML Statements
Oracle SQL DML StatementsOracle SQL DML Statements
Oracle SQL DML Statements
 
Database COMPLETE
Database COMPLETEDatabase COMPLETE
Database COMPLETE
 
Ben Finkel- Using the order by clause.pptx
Ben Finkel- Using the order by clause.pptxBen Finkel- Using the order by clause.pptx
Ben Finkel- Using the order by clause.pptx
 
Assignment 3
Assignment 3Assignment 3
Assignment 3
 
Sql ch 9 - data integrity
Sql ch 9 - data integritySql ch 9 - data integrity
Sql ch 9 - data integrity
 

More from Vikas Gupta (6)

Sql DML
Sql DMLSql DML
Sql DML
 
SQL subquery
SQL subquerySQL subquery
SQL subquery
 
Sql join
Sql  joinSql  join
Sql join
 
Join sql
Join sqlJoin sql
Join sql
 
SQL select statement and functions
SQL select statement and functionsSQL select statement and functions
SQL select statement and functions
 
Sql intro
Sql introSql intro
Sql intro
 

Recently uploaded

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 

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