Jeremy

267
Reputation
36 views

Registered User

Name Jeremy
Member for 1 year
Seen Jul 23 at 14:20
Website
Location Tulsa
Age 33
nothing interesting.
Sep
16
awarded  Yearling
Jul
27
awarded  Tumbleweed
Jul
23
comment When should I use stored procedures?
If you have "50 webservers" I'd hope you have at least one DBA. Who happens to know TSQL. Which is what stored procedures are written in. There isn't anything messy about it- what is messy is not using store procedures.
Jul
23
comment When should I use stored procedures?
"database assembly language"?? That's ridiculous. It's the same_language -- transact-sql. I'm not advocating splitting business logic between the middle tier and the data layer- but your middle tier should be using SPs exclusively to deal with the data. It's a performance thing, unless you're using some crappy rdbms that doesn't precompile store procedures. I'd like to hear one single "Serious Downside".
Jul
23
comment When should I use stored procedures?
well documented performance and security benefits. Just wanted to restate that. We do not put TSQL in applications, EVER. The SQL goes in a stored procedure, the procedure is called from code. No code ever touches even so much as a select statement. Running an SP or not is the difference between pre-compiled and interpreted code- which one do you prefer? The answer to your question is "ALWAYS".
Jul
20
asked What *is* an IPM.DistList?