Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to write a T-SQL stored procedure that updates a row in a table. If the row doesn't exist, insert it. All this steps wrapped by a transaction.

This is for a booking system, so it must be atomic and reliable. It must return true if the transaction was commited and the flight booked.

I'm new to T-SQL, and not sure on how to use @@rowcount. This is what I've written until now. Am I on the right road? I'm sure is an easy problem for you. Thanks

-- BEGIN TRANSACTION (HOW TO DO?)

UPDATE Bookings
 SET TicketsBooked = TicketsBooked + @TicketsToBook
 WHERE FlightId = @Id AND TicketsMax < (TicketsBooked + @TicketsToBook)

-- Here I need to insert only if the row doesn't exists.
-- If the row exists but the condition TicketsMax is violated, I must not insert the row and return FALSE

IF @@ROWCOUNT = 0 
BEGIN

 INSERT INTO Bookings ... (omitted)

END

-- END TRANSACTION (HOW TO DO?)

-- Return TRUE (How to do?)
share|improve this question
possible duplicate of Solutions for INSERT OR UPDATE on SQL Server – Alex Angas Jun 27 '11 at 5:47

6 Answers

Take a look at MERGE command You can do update, insert & delete in one statement.

Here is a working implementation on using MERGE
- It checks whether flight is full before doing an update, else does an insert.

if exists(select 1 from INFORMATION_SCHEMA.TABLES T where T.TABLE_NAME = 'Bookings') begin
	drop table Bookings
end
GO

create table Bookings(
	FlightID		int identity(1, 1) primary key,
	TicketsMax		int not null,
	TicketsBooked	int not null
)
GO

insert	Bookings(TicketsMax, TicketsBooked) select 1, 0
insert	Bookings(TicketsMax, TicketsBooked) select 2, 2
insert	Bookings(TicketsMax, TicketsBooked) select 3, 1
GO

select * from Bookings

declare	@FlightID int = 1
declare	@TicketsToBook int = 2

--; This should add a new record
merge	Bookings as T
using	(select	@FlightID as FlightID, @TicketsToBook as TicketsToBook) as S
		on	T.FlightID = S.FlightID
			and T.TicketsMax > (T.TicketsBooked + S.TicketsToBook)
	when matched then
		update set T.TicketsBooked = T.TicketsBooked + S.TicketsToBook
	when not matched then
		insert (TicketsMax, TicketsBooked) 
		values(S.TicketsToBook, S.TicketsToBook);

select * from Bookings
share|improve this answer

I assume a single row for each flight? If so:

IF EXISTS (SELECT * FROM Bookings WHERE FLightID = @Id)
BEGIN
    --UPDATE HERE
END
ELSE
BEGIN
   -- INSERT HERE
END

I assume what I said, as your way of doing things can overbook a flight, as it will insert a new row when there are 10 tickets max and you are booking 20.

share|improve this answer
Yes. There is 1 row per flight. But your code do the SELECT but doesn't check if the flight is full before to UPDATE. How to do this? – Robert Mar 12 '09 at 18:31
Not sure if this is the answer to the actual question, but this reply helped me :) – rball Apr 3 '10 at 1:49
15  
-1 This is not thread safe. – Martin Smith Oct 13 '10 at 11:53
Due to race conditions it's only correct if current transaction isolation level is Serializable. – Jarek Przygódzki Sep 27 '11 at 11:53
2  
@GregoryABeamer - Simply sticking it in a BEGIN TRAN ... COMMIT under default isolation level won't resolve the issue. The OP specified that atomic and reliable were requirements. Your answer fails to address this in any shape or form. – Martin Smith Sep 27 '11 at 14:49
show 1 more comment

Pass updlock, rowlock, holdlock hints when testing for existence of the row.

begin tran /* default read committed isolation level is fine */

if not exists (select * from Table with (updlock, rowlock, holdlock) where ...)
    /* insert */
else
    /* update */

commit /* locks are released here */

The updlock hint forces the query to take an update lock on the row if it already exists, preventing other transactions from modifying it until you commit or roll back.

The holdlock hint forces the query to take a range lock, preventing other transactions from adding a row matching your filter criteria until you commit or roll back.

The rowlock hint forces lock granularity to row level instead of the default page level, so your transaction won't block other transactions trying to update unrelated rows in the same page (but be aware of the trade-off between reduced contention and the increase in locking overhead - you should avoid taking large numbers of row-level locks in a single transaction).

See http://msdn.microsoft.com/en-us/library/ms187373.aspx for more information.

Note that locks are taken as the statements which take them are executed - invoking begin tran doesn't give you immunity against another transaction pinching locks on something before you get to it. You should try and factor your SQL to hold locks for the shortest possible time by committing the transaction as soon as possible (acquire late, release early).

Note that row-level locks may be less effective if your PK is a bigint, as the internal hashing on SQL Server is degenerate for 64-bit values (different key values may hash to the same lock id).

share|improve this answer
2  
Locking is VERY important to avoid overbooking. Is it correct to assume that a lock declared in the IF statement is held until the end of the IF statement, i.e. for one update statement? Then it might be wise to show the code above using begin end block markers to prevent newbies from copy&pasting your code and still getting it wrong. – Simon B. Oct 7 '10 at 17:14

This is something I just recently had to do:

set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[cjso_UpdateCustomerLogin]
    (
      @CustomerID AS INT,
      @UserName AS VARCHAR(25),
      @Password AS BINARY(16)
    )
AS 
    BEGIN
    	IF ISNULL((SELECT CustomerID FROM tblOnline_CustomerAccount WHERE CustomerID = @CustomerID), 0) = 0
    	BEGIN
    		INSERT INTO [tblOnline_CustomerAccount] (
    			[CustomerID],
    			[UserName],
    			[Password],
    			[LastLogin]
    		) VALUES ( 
    			/* CustomerID - int */ @CustomerID,
    			/* UserName - varchar(25) */ @UserName,
    			/* Password - binary(16) */ @Password,
    			/* LastLogin - datetime */ NULL ) 
    	END
    	ELSE
    	BEGIN
    		UPDATE  [tblOnline_CustomerAccount]
    		SET     UserName = @UserName,
    				Password = @Password
    		WHERE   CustomerID = @CustomerID	
    	END

    END
share|improve this answer
3  
-1 This is not thread safe. – Martin Smith Oct 13 '10 at 11:57

You could use the Merge Functionality to achieve. Otherwise you can do:

declare @rowCount int

select @rowCount=@@RowCount

if @rowCount=0
begin
--insert....
share|improve this answer
misspelled code! roWcount – Simon B. Oct 7 '10 at 17:11

i'm writing my solution. my method doesn't stand 'if' or 'merge'. my method is easy.

INSERT INTO TableName (col1,col2)
SELECT @par1, @par2
   WHERE NOT EXISTS (SELECT col1,col2 FROM TableName
                     WHERE col1=@par1 AND col2=@par2)

For Example:

INSERT INTO Members (username)
SELECT 'Cem'
   WHERE NOT EXISTS (SELECT username FROM Members
                     WHERE username='Cem')

Explanation:

(1) SELECT col1,col2 FROM TableName WHERE col1=@par1 AND col2=@par2 It selects from TableName searched values

(2) SELECT @par1, @par2 WHERE NOT EXISTS It takes if not exists from (1) subquery

(3) Inserts into TableName (2) step values

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.