I open a new window in SSMS and run this:
SET ANSI_DEFAULTS ON
GO
CREATE PROCEDURE [dbo].[zzz_test2]
(
@a int
)
AS
SET NOCOUNT ON
SET @a=1
RETURN 0
GO
and then close the window, which results in this warning:
There are uncommitted transactions. Do you wish to commit these before closing the window?
what is going on??
when I open a new SSMS window and run this:
SET ANSI_NULLS ON
GO
CREATE PROCEDURE [dbo].[zzz_test2]
(
@a int
)
AS
SET NOCOUNT ON
SET @a=1
RETURN 0
GO
and close the window, I get no warning.