Is it possible to create a stored procedure as
CREATE PROCEDURE Dummy @ID INT NOT NULL AS BEGIN END
Why is it not possible to do somet
One reason why you may need such syntax is that, when you use sp in C# dataset GUI wizard, it creates function with nullable parameters if there is no null restriction. No null check in sp body helps it.