Skip to content

FireflyMigration/enable-transactions-for-old-isam-apps

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Transactions, locking post migration from ISAM/DB2 to Sql Server

In this video I explain transactions & locking for Btrieve, ISAM, DB2 and Sql Server - and explain what we've done in the Sql Server migration to solve them - and how you can locally enable Transactions and standard locking if you need to.

Here's a link to the commit with the changes

SQLs used in the demo

Show transactions

select * from sys.dm_tran_session_transactions

Show locked rows in customer table

SELECT *
FROM Customers
WHERE %%lockres%% in
    (SELECT resource_description
     FROM sys.dm_tran_locks
     WHERE request_mode='U')

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages