Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

http://pastebin.com/pSTdCx3L

share|improve this question
2  
Asking for broad opinions on refactoring your code isn't the best way to get answers. Try pointing to specific places in the code you're unhappy, explain why, what you've tried to improve them, and so on... – Yuck Aug 4 '11 at 18:54
1  
Otherwise you could ask your question on codereview.stackexchange.com, which is a more appropriate place for enhancing the code. (StackOverflow is more about solving problems with the code.) – Andriy M Aug 4 '11 at 19:03
Efficiency is do it properly. Lordy, what overkill. Next time, ask here on SO before rather than after. Then we can help solve your problem rather than close your non-SO question – gbn Aug 4 '11 at 19:38

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.

1 Answer

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.

SCHEMABINDING

Binds the view to the schema of the underlying table or tables. When SCHEMABINDING is specified, the base table or tables cannot be modified in a way that would affect the view definition. The view definition itself must first be modified or dropped to remove dependencies on the table that is to be modified.

Although, you asked for a review, I am quite amused (read: "facepalm") by:

share|improve this answer

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