I know this is an age old debate but I'm curious as to what others do.
I tend to use stored procedures for complex reports, user verification and other queries that aren't your typical SELECT, INSERT, UPDATE, and DELETE statements. It's my understanding that SPs are faster because they save the execution stack but is there a tangable difference for your basic statements? What other benefits can be reaped for using SPs for your everyday basic SELECT, INSERT, UPDATE, and DELETE statements as it is quite tedius to create SPS for each basic query.
DUPLICATE