Skip to content

Instantly share code, notes, and snippets.

@fabsenet
Last active August 29, 2015 13:57
Show Gist options
  • Save fabsenet/9891832 to your computer and use it in GitHub Desktop.
Save fabsenet/9891832 to your computer and use it in GitHub Desktop.
Transaction Sample: SQL Server vs. Oracle
--Oracle
set transaction name 'mytransaction';
update mytable set somecolumn = 'some value' where id = 22;
commit;
--SQL SERVER
begin tran
update mytable set somecolumn = 'some value' where id = 22
commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment