SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Was ist angesagt?

SQL select statement and functions
SQL select statement and functionsSQL select statement and functions
SQL select statement and functions
Vikas Gupta
 

Was ist angesagt? (20)

SQL commands
SQL commandsSQL commands
SQL commands
 
SQL select statement and functions
SQL select statement and functionsSQL select statement and functions
SQL select statement and functions
 
Sql joins inner join self join outer joins
Sql joins inner join self join outer joinsSql joins inner join self join outer joins
Sql joins inner join self join outer joins
 
DML Commands
DML CommandsDML Commands
DML Commands
 
Create table
Create tableCreate table
Create table
 
Structured Query Language (SQL)
Structured Query Language (SQL)Structured Query Language (SQL)
Structured Query Language (SQL)
 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
 
Introduction to-sql
Introduction to-sqlIntroduction to-sql
Introduction to-sql
 
Sql commands
Sql commandsSql commands
Sql commands
 
Relational algebra in dbms
Relational algebra in dbmsRelational algebra in dbms
Relational algebra in dbms
 
Introduction to structured query language (sql)
Introduction to structured query language (sql)Introduction to structured query language (sql)
Introduction to structured query language (sql)
 
Triggers in SQL | Edureka
Triggers in SQL | EdurekaTriggers in SQL | Edureka
Triggers in SQL | Edureka
 
Partitioning
PartitioningPartitioning
Partitioning
 
Ms sql-server
Ms sql-serverMs sql-server
Ms sql-server
 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
 
SQL Commands
SQL Commands SQL Commands
SQL Commands
 
Sql joins
Sql joinsSql joins
Sql joins
 
Triggers
TriggersTriggers
Triggers
 
Sql commands
Sql commandsSql commands
Sql commands
 
Advanced Sql Training
Advanced Sql TrainingAdvanced Sql Training
Advanced Sql Training
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Mehr von Vikas Gupta (6)

SQL DDL
SQL DDLSQL DDL
SQL DDL
 
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 intro
Sql introSql intro
Sql intro
 

Kürzlich hochgeladen

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
+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@
 

Kürzlich hochgeladen (20)

The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
+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...
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

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