Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happens if altering a stored procedure while it is running?

Tags:

I have a minor, one line change (fixing a typo in a string), to a stored procedure that I would like to deploy to our production SQL Server 2005 server as soon as possible.

The worry I have is what happens if at the exact time run the alter statement to update my stored procedure, it happens that something calls that stored procedure at the same time?

Does it run with the previous copy of the stored procedure, or can it result to some corruption or errors?

Considering the ACID nature of SQL Server, I would expect that it is safe. The chances of it running at the exact same time, especially since the SP is quite small are extremely low, but I just prefer to make sure, and I am also interested in the answer, just for educational purposes.

Arguably, ServerFault would be a better place for this, sorry if it is misposted.

Thank you.

like image 776
Kharlos Dominguez Avatar asked Feb 21 '13 11:02

Kharlos Dominguez


People also ask

Can stored procedure be altered?

Transact-SQL stored procedures cannot be modified to be CLR stored procedures and vice versa. If the previous procedure definition was created using WITH ENCRYPTION or WITH RECOMPILE, these options are enabled only if they are included in the ALTER PROCEDURE statement.

Does ALTER stored procedure recompile?

To recompile the stored procedure, DBA opened the stored procedure in SSMS and recreated it by using the alter statement.

What does ALTER PROCEDURE do in SQL?

The ALTER PROCEDURE statement allows changes to be made to an existing stored procedure.


2 Answers

I've just tested this in SQL Server 2008 R2

I started with:

CREATE PROCEDURE dbo.Stupid AS WAITFOR DELAY '0:00:10' SELECT TOP 5 * FROM dbo.UniqueId GO 

I then did the following SQL Server Query Window 1:

EXEC dbo.Stupid 

SQL Server Query Window 2, while query in Query Window 1 was running:

ALTER PROCEDURE dbo.Stupid AS WAITFOR DELAY '0:00:05' SELECT TOP 5 * FROM dbo.UniqueId WHERE ID > 5 GO  EXEC dbo.Stupid 

SQL Server Query Window 3, while queries in Query Window 1 and Query Window 2 were running:

EXEC dbo.Stupid 

Results:

  • Query Window 1 ran in 10 seconds (and therefore finished after windows 2 and 3), and returned ids 1 - 5
  • Query Window 2 altered and ran the procedure in 5 seconds, and returned ids 6 - 10
  • Query Window 3 ran in 5 seconds and returned ids 6 - 10

What happens:

  • Already executing code will complete running on the procedure as it was when they were started
  • Anything that starts run after the code is altered will run the new code
like image 92
tgbarnett Avatar answered Sep 23 '22 21:09

tgbarnett


When using ALTER for the procedure, a schema modification lock is set. The SP still exists, but clients will have to wait until the ALTER is executed. The same applies for ALTER, it will wait until the SP isn't used by clients.

like image 40
ExternalUse Avatar answered Sep 21 '22 21:09

ExternalUse