Define variables in a trigger : Trigger « Trigger « SQL Server / T-SQL Tutorial

SQL Server / T-SQL Tutorial
1. Query
2. Insert Delete Update
3. Table
4. Table Join
5. Data Types
6. Set Operations
7. Constraints
8. Subquery
9. Aggregate Functions
10. Date Functions
11. Math Functions
12. String Functions
13. Data Convert Functions
14. Analytical Functions
15. Sequence Indentity
16. View
17. Index
18. Cursor
19. Database
20. Transact SQL
21. Procedure Function
22. Trigger
23. Transaction
24. XML
25. System Functions
26. System Settings
27. System Tables Views
28. User Role
29. CLR
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
SQL Server / T-SQL Tutorial » Trigger » Trigger 
22. 1. 3. Define variables in a trigger
4CREATE TABLE employee
5(
6>    emp_id         varchar(20),
7>    fname          varchar(20)       NOT NULL,
8>    minit          char(1)               NULL,
9>    lname          varchar(30)       NOT NULL,
10>    job_id         smallint          NOT NULL       DEFAULT 1,
11>    job_lvl        tinyint                          DEFAULT 10,
12>    pub_id         char(4)           NOT NULL       DEFAULT ('9952'),
13>    hire_date      datetime          NOT NULL       DEFAULT (getdate())
14)
15> GO
1>
2insert employee values ('1''Jack', 'T''Lee',     2215'9952', '11/11/89')
3insert employee values ('2''Jode', 'M''Devon',   3200'9952', '07/16/91')
4insert employee values ('3''Frac', 'F''Chang',   4227'9952', '11/03/90')
5insert employee values ('4''Like', 'A''Lebihan', 5175'0736', '06/03/90')
6insert employee values ('5''Paul', 'X''Henriot', 5159'0877', '08/19/93')
7insert employee values ('6''Sick', 'K''Ottlieb', 5150'1389', '04/05/91')
8insert employee values ('7''Rita', 'B''Muller',  5198'1622', '10/09/93')
9insert employee values ('8''Mary', 'J''Pontes',  5246'1756', '03/01/89')
10insert employee values ('9''Jane', 'Y''Labrune', 5172'9901', '05/26/91')
11insert employee values ('10','Carl', 'F''Hernadez',5211'9999', '04/21/89')
12> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2CREATE TABLE jobs(
3>    job_id         smallint          IDENTITY(1,1PRIMARY KEY CLUSTERED,
4>    job_desc       varchar(50)       NOT NULL      DEFAULT 'New Position - title not formalized yet',
5>    min_lvl        tinyint           NOT NULL      CHECK (min_lvl >= 10),
6>    max_lvl        tinyint           NOT NULL      CHECK (max_lvl <= 250)
7)
8> GO
1>
2>
3insert jobs values ('Coder',          10,  10)
4insert jobs values ('Tester',         200250)
5insert jobs values ('Programmer',     175225)
6insert jobs values ('Painter',        175250)
7insert jobs values ('Drawer',         150250)
8insert jobs values ('Editor',         140225)
9insert jobs values ('Manager',        120200)
10insert jobs values ('Manager',        100175)
11insert jobs values ('Representative', 25,  100)
12insert jobs values ('Designer',       25,  100)
13>
14> GO

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)

(rows affected)
1>
2CREATE TRIGGER employee_insupd
3> ON employee
4> FOR insert, UPDATE
5> AS
6
7> declare @min_lvl tinyint, @max_lvl tinyint, @emp_lvl tinyint, @job_id smallint
8>   select @min_lvl = min_lvl, @max_lvl = max_lvl, @emp_lvl = i.job_lvl, @job_id = i.job_id
9from employee e, jobs j, inserted i
10where e.emp_id = i.emp_id AND i.job_id = j.job_id
11> IF (@job_id = 1and (@emp_lvl <> 10)
12begin
13>    raiserror ('Job id expects the default level of 10.',16,1)
14>    ROLLBACK TRANSACTION
15end
16> ELSE
17> IF NOT (@emp_lvl BETWEEN @min_lvl AND @max_lvl)
18begin
19>    raiserror ('The level for job_id:%d should be between %d and %d.',
20>       161, @job_id, @min_lvl, @max_lvl)
21>    ROLLBACK TRANSACTION
22end
23>
24> GO
1>
2> drop table employee;
3> drop table jobs;
4> GO
1>
2>
22. 1. Trigger
22. 1. 1. The syntax of the CREATE TRIGGER statement
22. 1. 2. exits if the price column has not been updated.
22. 1. 3. Define variables in a trigger
22. 1. 4. Update table in a trigger
22. 1. 5. Check @@ROWCOUNT in a trigger
22. 1. 6. Rollback transaction in a trigger
22. 1. 7. RAISERROR in trigger
22. 1. 8. Disable a trigger
22. 1. 9. Enable a trigger
22. 1. 10. Check business logic in a trigger
22. 1. 11. Check record matching in a trigger
22. 1. 12. Table for INSTEAD OF Trigger for Logical Deletes
22. 1. 13. INSTEAD OF INSERT trigger for a table
22. 1. 14. Trigger Scripts for Cascading DELETEs
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.