DBMS
DBMS
(i) Procedural DML:- require a user to specify what data are needed and how to get those
data.
(ii) Non Procedural DML : require a user to specify what data are needed without
specifying how to get those data.
Deletion Operation:-
A delete reQuestionst is expressed in much the same way as Questionry. We can delete whole tuple (
rows) we can delete values on only particulars attributes.
Syntax:
Delete from tablename :
+ Addition - Subtraction
* multiplication ** exponentiation
/ Division () Enclosed operation
Renaming columns used with Expression Lists: - The default output column names can be renamed
by the user if required
Syntax:
Logical Operators:
The logical operators that can be used in SQL sentenced
Pattern Searching:
The most commonly used operation on string is pattern matching using the operation ‘like’ we
describe patterns by using two special characters.
● Percent (%) ; the % character matches any substring we consider the following examples.
● ‘Perry %’ matches any string beginning with perry
● ‘% idge % matches any string containing’ idge as substring.
● ‘ - - - ‘ matches any string exactly three characters.
● ‘ - - - % matches any string of at least of three characters.
Oracle functions:
Functions are used to manipulate data items and return result. function follow the format of function
_name (argument1, argument2 ..) .An arrangement is user defined variable or constant. The structure
of function is such that it accepts zero or more arguments.
Examples:
Avg return average value of n
Syntax:
Avg ([distinct/all]n)
Min return minimum value of expr.
Syntax:
MIN((distict/all )expr)
Count Returns the no of rows where expr is not null
Syntax:
Count ([distinct/all)expr]
Count (*) Returns the no rows in the table, including duplicates and those with nulls.
Max Return max value of expr
Syntax:
Max ([distinct/all]expr)
Sum Returns sum of values of n
Syntax:
Sum ([distinct/all]n)
Question.1 Using the table client master and product master answer the following
Queries.
Alter table command is used to changing the structure of a table. Using the alter table clause you
cannot perform the following tasks:
The following tasks you can perform through alter table command.
Syntax
ALTER TABLE tablename
ADD (newcolumnname newdatatype (size));
Syntax:
ALTER TABLE tablename
MODIFY (newcolumnname newdatatype (size));
NOTE: Oracle not allow constraints defined using the alter table, if the data in the table, violates such
constraints.
Syntax:
DROP TABLE tabename:
You can also define integrity constraints using the constraint clause in the ALTER TABLE
command. The following examples show the definitions of several integrity constraints.
Syntax:
ALTER TABLE tablename
ADD PRIMARY KEY(columnname);
Department of Computer Science & Engineering
Syntax:
ALTER TABLE tablename
ADD CONSTRAINT constraintname
FOREIGN KEY(columnname) REFERENCES tablename;
You can drop an integrity constraint if the rule that if enforces is no longer true or if the constraint is
no longer needed. Drop the constraint using the ALTER TABLE command with the DROP clause.
The following examples illustrate the droping of integrity constraints.
Syntax:
ALTER TABLE tablename
DROP PRIMARY KEY
Syntax:
ALTER TABLE tablename
DROP CONSTRAINT constraintname;
Department of Computer Science & Engineering
Experiment No.5
Question 1. Create the following tables:
Challan_Header
Column name data type size Attributes
Challan_no varchar2 6 Primary key
s_order_no varchar2 6 Foreign key references s_order_no of
sales_order table
challan_date date not null
billed_yn char 1 values (‘Y’,’N’). Default ‘N’
Q2. Insert the following values into the challan header and challan_details tables:
Ques on.1 Using the table client master and product master answer the following
Queries.
II. Delete the record with client 0001 from the client master table.
V. Find the products whose selling price is more than 1500 and also find the
new selling price as original selling price *15.
VI. Find out the clients who stay in a city whose second le er is a.
VII. Find out the name of all clients having ‘a’ as the second le er in their names.
XIII. Count the number of products having price greater than or equal to 1500.
Theory and Concept
Data constraints: Besides the cell name, cell lengthand cell data type there are other parameters i.e.
other data constrains that canbe passed to the DBAat check creationtime. The constraints caneither be
placed at column level or at the table level.
i. Column Level Constraints: If the constraints are defined along with the column definition, it
is called a column level constraint.
ii. Table Level Constraints: If the data constraint attached to a specify cell in a table reference
the contents of another cell in the table then the user will have to use table levelconstraints.
NullValue Concepts:-while creating tables ifa rowlocksa datavalue for particular column that
value is said to be null . Column of any data types may contain null values unless the column
was defined as not null when the table was created
Syntax:
Primary Key: primary key is one or more columns is a table used to uniquickly identity each
row in the table. Primary key values must not be null and must be uni Question across the
column. A multicolumn primary key is called composite primary key.
Syntax:primarykeyasacolumn constraint
Createtabletablename
(columnnamedatatype(size)primarykey,….)
Primarykeyasatable constraint
Createtabletablename
(columnnamedatatype(size),columnnamedatatype(size)…
Primary key (columnname,columnname));
UniQuestion key concept:-A uniQuestion is similar to a primarykey except that the purpose
of a uniQuestion key is to ensure that information in the column for each record isuniQuestion
as with telephone or devices license numbers. A table may have many uniQuestion keys.
Syntax: UniQuestionasacolumnconstraint.
Createtabletablename
(columnnamedatatype(size)uniQuestion);
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
UniQuestionastable constraint:
Createtabletablename
(columnname datatype (size),columnname datatype (size)…uniQuestion
(columnname,columnname));
Syntax:
Createtabletablename
(columnnamedatatype(size)default value,….);
Foreign Key Concept :Foreign key represents relationship between tables. A foreign key is
column whose values are derived from the primary key of the same of some other table . the
existence of foreign key implies that the table with foreign key is related to the primary key
table from which the foreign key is derived .A foreign key must have corresponding primary
key value in the primary key table to have meaning.
Foreignkeyas a columnconstraint
Syntax:
Createtabletablename
(columnnamedatatype(size)referencesanothertablename);
Foreignkeyasatableconstraint:
Syntax:
Create table
name(columnnamedatatype(siz
e)…. primary key
(columnname);
foreignkey(columnname)referencestablename);
Check Integrity Constraints: Use the check constraints when you need to enforce intergrity
rules that can be evaluated based on a logical expression following are a few examples of
appropriate check constraints.
A check constraints name column of the coient_master so that the name is entered in
upper case.
A check constraint on the client_no column of the client _master so that no client_no
value starts with ‘c’
Syntax:
Createtabletablename
(columnnamedatatype(size)CONSTRAINTconstraintname)
Check (expression));
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
Experiment 4
Question.2Createthefollowing tables:
i. Sales_master
ii. Sales_order
I. Sales_order_details
Dataforsales_manmastertable
Salesman_no Salesman Address City Pin code State Salamt Tgt_ Ytd Remark
name to_ge Sales
t
500001 Kiran A/14worli Bomba 400002 Mah 3000 100 50 Good
y
500002 Manish 65,nariman Bomba 400001 Mah 3000 200 100 Good
y
500003 Ravi P-7Bandra Bomba 400032 Mah 3000 200 100 Good
y
500004 Ashish A/5 Juhu Bomba 400044 Mah 3500 200 150 Good
y
(i) Dataforsalesordertable:
(iii) Dataforsales_order_detailstable:
2. Challan_Details
Column name Datatype Size A ributes
Challan_no Varchar2 6 Primary key/foreign
key references
Product_no of
product_master
Qty_disp Number 4,2 Not null
Q2. Insert the following values into the challan header and challan_details tables:
Q1. Make the primary key to client_no in client_master.
Q3. Add the not null constraint in the product_master table with the columns
descrip on, profit percent , sell price and cost price.
Q5. Select product_no, descrip on where profit percent is between 20 and 30 both inclusive.
Department ofComputerScience&Engineering
Theory&Concept
Objective:-ToimplementtheconceptofJoins
Joint Multiple Table (Equi Join):Some times we require to treat more than one table as though
manipulate data fromallthe tables as thoughthetables were not separateobject butone single entity. To
achieve this we have to join tables.Tables are joinedon column thathave dame data typeand data with
in tables.
ThetablesthathavetobejoinedarespecifiedintheFROMclauseandthejoining attributes in
the WHERE clause.
AlgorithmforJOINinSQL:
1. Cartesianproductoftables(specifiedinthe FROMclause)
2. Selectionofrowsthatmatch(predicateintheWHEREclause)
3. Projectcolumnspecified intheSELECTclause.
1. Cartesianproduct:-
Considertwotablestudentandcourse
Select B.*,P.*
FROMstudentB,courseP;
2. INNERJOIN:
Cartesianproductfollowedbyselection
Select B.*,P.*
FROM student B, Course P
WHEREB.course#P.course#;
3. LEFTOUTERJOIN:
LEFTOUTERJOIN=Cartesianproduct+selectionbut includerowsfromthe lefttable which are
unmatched pat nulls in the values of attributes belonging to th e second table
Exam:
SelectB.*,P*
FROMstudentBleft joincoursep
ON B.course # P.course #;
4. RIGHTOUTER JOIN:
RIGHTOUTERJOIN=Cartesianproduct+selectionbut includerowsfromrighttable which are
unmatched
Exam:
SelectB.*,P.*FromstudentBRIGHTJOINcourseP
B.course# = P course # ;
5. FULLOUTER JOIN
Exam
Select B.*,P.*
Fromstudent BFULLJOINcourseP On
B.course # = P course # ;
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
EXPERIMENTNO.6
A.ConsiderthefollowingschemaforaLibraryDatabase: BOOK
(Book_id, Author_Name)
BOOK_COPIES(Book_id,Branch_id,No-of_Copies)
BOOK_LENDING(Book_id,Branch_id,Card_No,Date_Out,Due_Date)
WriteSQLqueriesto:
1. Retrieve details of all books in the library– id, title, name of publisher, authors, number of copies
in each branch, etc.
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
2. Get the particulars of borrowers who have borrowed more than 3 books, but from Jan 2017 to
Jun 2017.
3. Delete a book in BOOK table. Update the contents of other tables to reflect this data
manipulation operation.
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
4. 4.Partition the BOOK table based on year of publication.Demonstrate its working with a simple
query.
5. Create a view of all book sand its number of copies that are currently available in the Library.
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
TableCreation
CREATETABLEPUBLISHER (
NAMEVARCHAR2(20)PRIMARYKEY,
PHONE INTEGER,
ADDRESSVARCHAR2 (20)
);
CREATETABLEBOOK
(
BOOK_IDINTEGERPRIMARYKEY,
TITLE VARCHAR2 (20),
PUB_YEARVARCHAR2(20),
PUBLISHER_NAMEREFERENCESPUBLISHER(NAME)ONDELETECASCADE
);
CREATETABLEBOOK_AUTHORS (
AUTHOR_NAMEVARCHAR2(20),
BOOK_IDREFERENCESBOOK(BOOK_ID)ONDELETECASCADE, PRIMARY
KEY (BOOK_ID, AUTHOR_NAME)
);
CREATETABLELIBRARY_BRANCH (
BRANCH_IDINTEGERPRIMARYKEY,
BRANCH_NAME VARCHAR2 (50),
ADDRESSVARCHAR2 (50)
);
CREATETABLEBOOK_COPIES (
NO_OF_COPIESINTEGER,
BOOK_IDREFERENCESBOOK(BOOK_ID)ONDELETECASCADE,
BRANCH_IDREFERENCESLIBRARY_BRANCH(BRANCH_ID)ONDELETECASCADE, PRIMARY
KEY (BOOK_ID, BRANCH_ID)
);
CREATETABLECARD (
CARD_NOINTEGERPRIMARY KEY
);
CREATETABLEBOOK_LENDING (
DATE_OUTDATE,
DUE_DATEDATE,
BOOK_IDREFERENCESBOOK(BOOK_ID)ONDELETECASCADE,
BRANCH_IDREFERENCESLIBRARY_BRANCH(BRANCH_ID)ONDELETECASCADE, CARD_NO
REFERENCES CARD (CARD_NO) ON DELETE CASCADE,
PRIMARYKEY(BOOK_ID,BRANCH_ID,CARD_NO)
);
DBMSLab(KCS-551)Manual(CSE,VSEM) Page6
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
InsertionofValuesto Tables
INSERTINTOPUBLISHERVALUES(‗MCGRAW-HILL‘,9989076587,‗BANGALORE‘);
INSERT INTO PUBLISHER VALUES (‗PEARSON‘, 9889076565, ‗NEWDELHI‘);
INSERT INTO PUBLISHER VALUES (‗RANDOM HOUSE‘, 7455679345, ‗HYDRABAD‘);
INSERT INTO PUBLISHER VALUES (‗HACHETTE LIVRE‘, 8970862340, ‗CHENAI‘);
INSERTINTOPUBLISHERVALUES(‗GRUPOPLANETA‘,7756120238,‗BANGALORE‘);
INSERTINTOLIBRARY_BRANCHVALUES(10,‘RRNAGAR‘,‘BANGALORE‘);
INSERT INTO LIBRARY_BRANCH VALUES (11,‘RNSIT‘,‘BANGALORE‘);
INSERTINTOLIBRARY_BRANCHVALUES(12,‘RAJAJINAGAR‘,‘BANGALORE‘);
INSERT INTO LIBRARY_BRANCH VALUES (13,‘NITTE‘,‘MANGALORE‘);
INSERTINTOLIBRARY_BRANCHVALUES(14,‘MANIPAL‘,‘UDUPI‘);
INSERTINTOBOOK_COPIESVALUES(10,1,10);
INSERTINTOBOOK_COPIESVALUES(5,1,11);
INSERTINTOBOOK_COPIESVALUES(2,2,12);
INSERTINTOBOOK_COPIESVALUES(5,2,13);
INSERTINTOBOOK_COPIESVALUES(7,3,14);
INSERTINTOBOOK_COPIESVALUES(1,5,10);
INSERTINTOBOOK_COPIESVALUES(3,4,11);
INSERTINTOCARDVALUES(100);
INSERTINTOCARDVALUES(101);
INSERTINTOCARDVALUES(102);
INSERTINTOCARDVALUES(103);
INSERTINTOCARDVALUES(104);
INSERTINTOBOOK_LENDINGVALUES(‘01-JAN-17‘,‘01-JUN-17‘,1,10,101);
INSERTINTOBOOK_LENDINGVALUES(‘11-JAN-17‘,‘11-MAR-17‘,3,14,101);
INSERTINTOBOOK_LENDINGVALUES(‘21-FEB-17‘,‘21-APR-17‘,2,13,101);
INSERTINTOBOOK_LENDINGVALUES(‘15-MAR-17‘,‘15-JUL-17‘,4,11,101);
INSERTINTOBOOK_LENDINGVALUES(‗12-APR-17‘,‘12-MAY-17‘,1,11,104);
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
Queries:
SELECTB.BOOK_ID,B.TITLE,B.PUBLISHER_NAME,A.AUTHOR_NAME,C.NO_OF_COPIES,
L.BRANCH_ID
FROMBOOKB,BOOK_AUTHORSA,BOOK_COPIESC,LIBRARY_BRANCHL WHERE
B.BOOK_ID=A.BOOK_ID
ANDB.BOOK_ID=C.BOOK_IDAND L.BRANCH_ID=C.BRANCH_ID;
SELECTCARD_NOFROM BOOK_LENDING
WHEREDATE_OUTBETWEEN‘01-JAN-2017‘AND‘01-JUL-2017‘
GROUP BY CARD_NOHAVING COUNT (*)>3;
3. DeleteabookinBOOK table.Updatethecontentsofothertablestoreflectthisdata
manipulation operation.
DELETEFROMBOOK
WHERE BOOK_ID=3;
RajKumarGoelInstituteofTechnology,Ghaziabad
Department ofComputerScience&Engineering
4. PartitiontheBOOK tablebasedonyearofpublication.Demonstrateitsworking
withasimple query.
CREATEVIEWV_PUBLICATIONASSELECTPUB_YEARFROMBOOK;
5. Createaviewofallbooksand itsnumberofcopies
thatarecurrentlyavailableintheLibrary.
CREATEVIEWV_BOOKSASSELECTB.BOOK_ID,B.TITLE,C.NO_
OF_COPIES FROM BOOK B, BOOK_COPIES C,
LIBRARY_BRANCH L
WHEREB.BOOK_ID=C.BOOK_IDAND C.BRANCH_ID=L.BRANCH_ID;
• Raj Kumar Goel Institute of Technology, Ghaziabad
Department of Computer Science & Engineering
There are circumstances where we would like to apply the aggregate function not only to a single set
of tuples, but also to a group of sets of tuples, we specify this wish in SQL using the group by clause.
The attribute or attributes given in the group by clause are used to form group. Tuples with the same
value on all attributes in the group by clause are placed in one group.
Syntax:
At times it is useful to state a condition that applies to groups rather than to tuples. For example we
might be interested in only those branches where the average account balance is more than 1200. This
condition does not apply to a single tuple, rather it applies to each group constructed by the GROUP
BY clause. To express such Questionry, we use the having clause of SQL. SQL applies predicates in
the having may be used.
Syntax:
EXPERIMENT NO. 7
Q1.- Print the description and total quantity sold for each product.
Q3.- Calculate the average quantity sold for each client that has a maximum
order value of 15000.
Q4.- Find out the products which has been sold to Ivan.
Q6.- Find the products and their quantities for the orders placed by ‘Vandana’ and ‘Ivan’.
Q8.- Select product_no, product description and qty ordered for each product.
Q9.- Display the order number and day on which clients placed their order.
Q10.- Display the month and Date when the order must be delivered.
Sub Queries:- A Sub Queries is a form of an SQL statement that appears inside another SQL
statement. It also termed as nested Questionry. The statement containing a Sub Queries called a parent
statement. The rows returned bu the Sub Queries are use by the following statement.
It can be used by the following commands:
1. To insert records in the target table.
2. To create tables and insert records in this table.
3. To update records in the target table.
4. To create view.
5. To provide values for the condition in the WHERE , HAVING IN , SELECT,UPDATE, and
DELETE statements.
Union Clause:
The user can put together multiple Queries and combine their output using the union clause . The union
clause merges the output of two or more Queries into a single set of rows and column. The final output
of union clause will be
Output: = Records only in Questionry one + records only in Questionry two + A single set of records
with is common in the both Queries.
Intersect Clause: The use can put together multiple Queries and their output using the interest
clause. The final output of the interest clause will be :
MINUS CLAUSE:- The user can put together multiple Queries and combine their output = records
only in Questionry one
Experiment No.8
Objective: Answer the following Queries:
QUERIES:
2. Find the customer name, address, city and pincode for the client who
has placed order no “019001”
3. Find the client names who have placed order before the month of may 96.
4. Find out if product “1.44 Drive” is ordered by only client and print the
client_no name to whom it was sold.
5. find the names of client who have placed orders worth Rs.10000 or more.
7. Select the names of persons who are in Mr. Pradeep’s department and
who have also worked on an inventory control system.
8. Select all the clients and the salesman in the city of Bombay.
9. Select salesman name in “Bombay” who has atleast one client located at
“Bombay”
Indexes- An index is an ordered list of content of a column or group of columns in a table. An index created
on the single column of the table is called simple index. When multiple table columns are included in the
index it is called composite index.
Syntax (Simple)
CREATE INDEX index_name
ON tablename(column name);
Composite Index:-
SYNTAX:-
DROP INDEX indexfilename;
Views:-
Logical data is how we want to see the current data in our database. Physical data is how this
data is actually placed in our database.
Views are masks placed upon tables. This allows the programmer to develop a method via
which we can display predetermined data to users according to our desire.
1. The DBA stores the views as a definition only. Hence there is no duplication of data.
2. Simplifies Queries.
3. Can be Questionried as a base table itself.
4. Provides data security.
5. Avoids data redundancy.
Creation of Views:- Syntax:-
Destroying a view-
Syntax:-
DROP VIEW viewname;
Experiment # 9
OUTPUT:
1.
2.
3.
4.
5.
6.
7.
8.
9.
Theory and Concept
Introduction – PL/SQL bridges the gap between database technology and procedural
programming languages. It can be thought of as a development tool that extends the facilities of
Oracles SQL database language. Via PL/SQL you can insert, delete, update and retrieve table data as
well as use procedural techniQuestions such as writing loops or branching to another block of code.
DECLARE
Declarations of memory variables used later
BEGIN
SQL executable statements for manipulating table data.
EXCEPTIONS
SQL and/or PL.SQL code to handle errors.
END;
Displaying user Messages on the screen – Any programming tool requires a method
through which messages can be displayed to the user.
dbms_output is a package that includes a number of procedure and functions that accumulate
information in a buffer so that it can be retrieved later. These functions can also be used to display
message to the user.
put_line: put a piece of information in the buffer followed by a end of line marker. It can also be used
to display message to the user.
Setting the server output on:
Example: Write the following code in the PL/SQL block to display message to user
DBMS_OUTPUT.PUT_LINE(‘Display user message’);
Syntax:
FOR variable IN [REVERSE] start—end
LOOP
<Action>
END LOOP;
The GOTO statement: The goto statement allows you to change the flow of control within a
PL/SQL Block.
Experiment No.10
Q4. WAP in PL/SQL to inverse a number, eg. Number 5639 when inverted must be display
output 9365.
Q5. WAP in PL/SQL for changing the price of product ‘P00001’ to 4000 if the price is less than
4000 in product_master table. The change is recorded in the old_price_table along with
product_no and the date on which the price was changed last.
OUTPUT:
1.
2.
3.
4.
Theory and Concept :
Objective:- To implement the concept of Cursor and Trigger.
Cursor–
We have seen how oracle executes an SQL statement. Oracle DBA uses a work area for its internal
processing. This work area is private to SQL’s operation and is called a cursor.
The data that is stored in the cursor is called the Active Data set. The size of the cursor in memory is
the size required to hold the number of rows in the Active Data Set.
Explicit Cursor-
You can explicitly declare a cursor to process the rows individually. A cursor declared by the user is
called Explicit Cursor. For Queries that return more than one row, You must declare a cursor explicitly.
The data that is stored in the cursor is called the Active Data set. The size of the cursor in memory is
the size required to hold the number of rows in the Active
Why use an Explicit Cursor- Cursor can be used when the user wants to process data one row
at a time.
The steps involved in declaring a cursor and manipulating data in the active data set are:-
Declare a cursor that specifies the SQL select statement that you want to process.
Open the Cursor.
Fetch the data from the cursor one row at a time.
Close the cursor.
Oracle provides certain attributes/ cursor variables to control the execution of the cursor. Whenever
any cursor(explicit or implicit) is opened and used Oracle creates a set of four system variables via
which Oracle keeps track of the ‘Current’ status of the cursor.
Declare a cursor that specifies the SQL select statement that you want to process.
Open the Cursor.
Fetch the data from the cursor one row at a time.
Close the cursor.
The fetch statement retrieves the rows from the active set to the variables one at a time. Each time a
fetch is executed. The focus of the DBA cursor advances to the next row in the Active set.
One can make use of any loop structute(Loop-End Loop along with While,For) to fetch the records
from the cursor into variable one row at a time.
The General Syntex to Fetch the records from the cursor is as follows:-
Fetch cursorname into variable1,variable2,
Closing a Cursor:-
Database Triggers:-
Database triggers are procedures that are stored in the database and are implicitly executed(fired)
when the contents of a table are changed.
Database triggers support Oracle to provide a highly customized database management system. Some
of the uses to which the database triggers can be put to customize management information in Oracle
are as follows:-
A Trigger can permit DML statements against a table anly if they are issued, during regular
bussiness hours or on predetermined weekdays.
A trigger can also be used to keep an audit trail of a table along with the operation performed
and the time on which the operation was performed.
It can be used to prevent invalid transactions.
Enforce complex security authorizations.
1. Before Statement Trigger:- Before executing the triggering statement, the trigger action is
executed.
2. Before Row Trigger:- Before modifying the each row affected by the triggering statement and
before appropriate integrity constraints, the trigger is executed if the trigger restriction either
evaluated to TRUE or was not included.’
3. After Ststement Trigger:- After executing the triggering statement and applying any deferred
integrity canstraints, the trigger action is executed.
4. After row Trigger:- After modifying each row affected by the triggering statement and
possibly applying appropriate integrity constraints, the trigger action is executed for the current
row if the trigger restriction either evaluates to TRUE or was not included.
The HRD manager has decided to raise the salary for all the employees in the Dept
No 20 by 5%. Whenever any such raise is given to the employees, a record for the
same is maintained in the emp_raise table. It includes the EmpNo, the date when
the raise was given and the actual raise. Write a PL/SQL block to update the salary
of each employee and insert a record in the emp_raise table.
Create a transparent audit system for a table Client_master. The system must keep
track of the records that are being deleted or modified and when they have been
deleted or modified.
Sol 1:
Sol 2: