22 lines
1.2 KiB
Transact-SQL
22 lines
1.2 KiB
Transact-SQL
/*
|
||
Run this script on SQL Server 2008 or later. There may be flaws if running on earlier versions of SQL Server.
|
||
*/
|
||
IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[sp_DeletePeopleResource]') AND type in (N'P', N'PC'))
|
||
DROP PROCEDURE [dbo].[sp_DeletePeopleResource]
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
CREATE PROCEDURE [dbo].[sp_DeletePeopleResource] (@id uniqueidentifier)
|
||
AS
|
||
BEGIN
|
||
begin transaction
|
||
|
||
delete from PeopleResourceAllocation where ResourceId = @id
|
||
delete from PeopleResource where Id = @id
|
||
|
||
commit transaction
|
||
END
|
||
GO
|