Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
cheesecake
Starting Member
11 Posts |
Posted - 2010-10-21 : 16:04:02
|
| Hi, Can anyone tell me how to release a savepoint in MS SQL SERVERBEGIN TRAN SAVEPOINT_CREATIONINSERT INTO YEARVALUES (2500, 2500)SELECT * FROM YEARSAVE TRANSACTION B4RELEASE TRANSACTION B4The "release" statement is giving the following error:"Incorrect syntax near the keyword 'TRANSACTION'." |
|
|
Kristen
Test
22859 Posts |
Posted - 2010-10-21 : 17:57:07
|
| COMMIT or ROLLBACK the transaction (or the Savepoint) |
 |
|
|
|
|
|