home *** CD-ROM | disk | FTP | other *** search
- begin transaction
- update titles
- set type = 'computers'
- where type = 'popular_comp'
- commit transaction
-
- /*The first transaction has been committed to the database*/
-
- begin transaction
- update titles
- set advance = $3000
- where title_id = 'PS7777'
- waitfor delay '00:01'
-
- /*Pausing for one minute in the middle of the second
- **transaction to give you an opportunity to reboot both
- **systems. This transaction will not be reflected in the
- **database because it did not reach the commit statement.*/
-
- commit transaction
-
-