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
views:
45answers:
1
+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
2010-03-31 13:03:48
Thanks Kevin. That's what I was after.
Daniel Dyson
2010-03-31 13:37:10