Update statement and check-constraints : Constriant violation « Constraints « 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 » Constraints » Constriant violation 
7. 12. 4. Update statement and check-constraints
4CREATE TABLE MySavings(
5>     AccountNum Int NOT NULL,
6>     Amount Money NOT NULL
7);
8> GO
1CREATE TABLE MyChecking(
2>     AcountNum Int NOT NULL,
3>     Amount Money NOT NULL
4);
5> GO
1> ALTER TABLE MyChecking ADD CONSTRAINT ckMinBalance
2> CHECK (Amount > $100.00)
3> GO
1INSERT MySavings VALUES (12345, $1000.00)
2>
3> GO

(rows affected)
1>
2>
3>
4INSERT MyChecking VALUES (12345, $1000.00)
5>
6> GO

(rows affected)
1>
2>
3>
4BEGIN TRANSACTION
5UPDATE MyChecking SET Amount = Amount - $990.00
6WHERE AcountNum = 12345
7UPDATE MySavings SET Amount = Amount + $990.00
8WHERE AccountNum = 12345
9> COMMIT TRANSACTION
10> GO
Msg 547, Level 16, State 1, Server J\SQLEXPRESS, Line 5
The UPDATE statement conflicted with the CHECK constraint "ckMinBalance". The conflict occurred in database "master", table "dbo.MyChecking", column 'Amount'.
The statement has been terminated.

(rows affected)
1>
2>
3>
4>
5BEGIN TRANSACTION
6>  UPDATE MyChecking SET Amount = Amount - $990.00
7>  IF @@ERROR != 0
8>    BEGIN
9>     ROLLBACK TRANSACTION
10>     RETURN
11>     END
12>    ELSE
13>   UPDATE MySavings SET Amount = Amount + $990.00
14>   IF @@ERROR != 0
15>     BEGIN
16>      ROLLBACK TRANSACTION
17>      RETURN
18>     END
19>    ELSE
20>  COMMIT TRANSACTION
21>  GO
Msg 547, Level 16, State 1, Server J\SQLEXPRESS, Line 6
The UPDATE statement conflicted with the CHECK constraint "ckMinBalance". The conflict occurred in database "master", table "dbo.MyChecking", column 'Amount'.
The statement has been terminated.
1>
2> drop table MySavings;
3> drop table MyChecking;
4> GO
1>
7. 12. Constriant violation
7. 12. 1. Trap Both Primary Key and CHECK Constraint Violations
7. 12. 2. Exception in a transaction
7. 12. 3. A NOT NULL phrase adds a constraint to restrict the input of rows with a null value.
7. 12. 4. Update statement and check-constraints
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.