I have written the following code to do a comparision of a View and its corresponding production table. I am looking for better ways to write this code for efficiency, any pointers would be greatly appreciated. The code gives me the desired results, Now it's just a point of learning new approaches and concepts to it.
|
closed as not a real question by JNK, Yuck, marc_s, Dan J, gbn Aug 4 '11 at 19:42
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you declare your view WITH SCHEMABINDING, you don't need this overhead. I always use it. It disallows changes to base table used in the view (or udf). It also forces columns to be qualified and to use 2 part object names.
Although, you asked for a review, I am quite amused (read: "facepalm") by:
|
||||
|
|