Hi all,
Can someone help me with this.
I have the following stored proc which takes a parameter of the process to kill, but it won't compile. If I take out the parameter and hardcode a value it will work. What am I doing wrong.
Thanks
CCB
CREATE PROCEDURE [dbo].[prc004KillProcess]
(@intSPID smallint)
AS
Kill @intSPID
GO