tags:

views:

45

answers:

1

A few years ago I came across a T-SQL technique to validate a stored procedure in SQL Server, but I cannot find it again

+1  A: 

Can probably script the stored procedure calls out with SET NOEXEC ON, so it doesn't actually run anything... This would allow you to catch a lot of basic errors (invalid objects, missing fields, etc.)

Is that along the lines of what you were talking about?

If so, there's a CLR mentioned in SQL Mag that seems to do what you're looking for.

Kevin Fairchild
Thanks Kevin. That's what I was after.
Daniel Dyson