I was not able to find in which system view the default values of stored procedure are recorded. For example, if we have:
CREATE PROCEDURE [dbo].[...]
(
@A BIGINT
,@B TINYINT = 2
,@C VARCHAR(12) = 'test'
)
AS
Is there a place where I can see that parameter @A
is required and/or @B
and @C
have default values?