Skip to content

Instantly share code, notes, and snippets.

@jujiro
Created May 20, 2019 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jujiro/8a9298be4cebaa163b3e8944b6a3b22f to your computer and use it in GitHub Desktop.
Save jujiro/8a9298be4cebaa163b3e8944b6a3b22f to your computer and use it in GitHub Desktop.
Running only one instance of Sql Server stored procedure
if not exists (select * from dbo.sysobjects
where id = object_id(N'dbo.p_AcquireLock') and
OBJECTPROPERTY(id, N'IsProcedure') = 1)
exec('create procedure dbo.p_AcquireLock as select 1')
go
alter procedure dbo.p_AcquireLock
(
@LockName nvarchar(255)
)
as
begin
declare @i int
declare @lckName nvarchar(100)
set @lckName='ServiceBook->'+@LockName
exec @i=sp_getapplock @lckName,'Exclusive','Session',0
select @i as LockStatus
return @i
end
go
-- Usage
exec @i=dbo.p_AcquireLock @MyProcName
if @i < 0
begin
print 'Another instance is active'
return
end
go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment