How can we help you today? How can we help you today?

Inline EXEC cannot find just-created stored procedure

I create a new proc:
CREATE proc dbo.func
(
	@a bit,
	@nota bit out
)

AS
BEGIN
	SET @nota = @a ^ 1
	RETURN 
END
GO

Then call it:
DECLARE @a BIT, @nota bit
EXEC dbo.func @a, @nota OUT
SELECT @nota

Then, I hover over the function call and select "Inline EXEC" from the context menu. I get the error:
SQL Prompt couldn't find the definition of func

Why might that be??
gbritton
0

Comments

1 comment

Add comment

Please sign in to leave a comment.