B
Brian K. Maher
Guest
One possible issue is when passing datasets or temp-tables around. By default we pass by value which means we deep copy (clone) the data abnd this can be expensive. We provide ways around that (by-reference, bind, etc). Other than the above I would say write your code for understandability and mantainability first, optimize later if required.
Continue reading...
Continue reading...