vote up 5 vote down star

Is there a way to determine programmatically if a SQL Server stored procedure parameter has a default? (Bonus points if you can determine what the default is.) SqlCommandBuilder.DeriveParameters() doesn't even try.

Thanks in advance for your help!

EDIT: I honestly don't care if it's a SQL Query, an SMO object, etc.

flag

4 Answers

vote up 0 vote down

Run the builtin sp_help stored procedure?

link|flag
2  
Where in the resultset for sp_help does it indicate whether a parameter has a default? – GuyBehindtheGuy Nov 4 at 19:31
1  
does list the parameter - but not whether or not they have a default value, and what it would be :-( – marc_s Nov 4 at 19:49
vote up 4 vote down

Not a big deal in SQL Server 2005 and up:

SELECT 
    pa.NAME, 
    t.name 'Type',
    pa.max_length,
    pa.has_default_value,
    pa.default_value
FROM 
    sys.parameters pa
INNER JOIN 
    sys.procedures pr ON pa.object_id = pr.object_id
INNER JOIN 
    sys.types t ON pa.system_type_id = t.system_type_id
WHERE 
        pr.Name = 'YourStoredProcName'

Unfortunately, even though this seemed like a piece of cake - it doesn't work :-(

From Technet:

SQL Server only maintains default values for CLR objects in this catalog view; therefore, this column has a value of 0 for Transact-SQL objects. To view the default value of a parameter in a Transact-SQL object, query the definition column of the sys.sql_modules catalog view, or use the OBJECT_DEFINITION system function.

So all you can do is either query sys.sql_modules or call SELECT object_definition(object_id) to basically get the SQL definition (the T-SQL source code) for your stored proc and then you'd need to parse that (sucks!! big time.....)

Seems like there's really no other way to do this ... I'm amazed and appaled.....

Maybe in SQL Server 2008 R2 ? :-) Marc

link|flag
Hmm...have you actually run this? On SQL 2008 with db compatability set to "100", has_default_value is 0 for every row, even though the parameter definitely has a default! – GuyBehindtheGuy Nov 4 at 19:38
Yes I ran it - unfortunately, all my sprocs never have default values, so I couldn't really verify - let me check... – marc_s Nov 4 at 19:39
2  
Wow. The recommended way to do it is to parse the body of the stored procedure?! That sucks. – GuyBehindtheGuy Nov 4 at 19:47
vote up 3 vote down check

I found a way using SMO:

Server srv; 
srv = new Server("ServerName"); 

Database db; 
db = srv.Databases["MyDatabase"]; 

var Params = db.StoredProcedures["MyStoredProc"].Parameters;

foreach(StoredProcedureParameter param in Params) {
    Console.WriteLine(param.Name + "-" + param.DefaultValue);
}
link|flag
+1 excellent ! Good to know – marc_s Nov 4 at 20:18
vote up 0 vote down

For stored procedures, I believe you would have to write something that parses T-SQL, or use the T-SQL parser that Microsoft provides.

The parser and script generator live in two assemblies. The Microsoft.Data.Schema.ScriptDom contains provider agnostic classes and the Microsoft.Data.Schema.ScriptDom.Sql assembly contain classes for the parser and script generator that are SQL Server specific.

How to specifically use this to identify the parameters and whether they're defaulted isn't covered and would be something you'd have to work on (probably with a deal of effort) using the sample code.

link|flag
Interesting idea. I'd need a license to VSTS Database Edition, though. :-) – GuyBehindtheGuy Nov 5 at 14:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.