Viewing 15 posts - 76 through 90 (of 458 total)
I'm going to suggest that the suggested example website of amateur data analysis (http://devnambi.com/2015/uc-analysis/) is a good example of well-intentioned BI off the rails.
1. This Smacks of a Rhetorical...
August 27, 2015 at 9:24 am
Another thing to watch out for: sending email from inside a trigger is generally considered a bad idea. Ideally, you want your triggers to execute quickly and stop holding...
August 25, 2015 at 9:33 am
WayneS (8/11/2015)
August 11, 2015 at 9:18 pm
Yeah, well, be careful using STR() to convert from FLOAT to VARCHAR(), too:
http://www.sqlservercentral.com/questions/T-SQL/94788/[/url]
Rich
August 10, 2015 at 9:36 am
Setting aside the question of clustering key for the moment, which others here have already taken up, I would ask whether your assumption of having an 8-column natural key is,...
August 4, 2015 at 6:58 am
TomThomson (8/1/2015)
Jeff Moden (7/31/2015)
jghali (7/31/2015)
Note to self: Always look at the date before posting!!! :hehe:
Did you ever...
August 3, 2015 at 9:47 am
Here's a nice, straightforward -- but perhaps fuller -- explanation of what's going on here if you're still puzzled:
https://www.simple-talk.com/sql/t-sql-programming/ten-common-sql-programming-mistakes/[/url]
EDIT: URL corrected for the web-friendly version of the page instead of...
July 28, 2015 at 6:40 am
TheSQLGuru (7/17/2015)
rmechaber (7/17/2015)
This could be computed on-the-fly using views or stored procedures from the actual order details,...
July 17, 2015 at 9:22 am
Another perspective: do you actually need to store the subtotal in the OrderHeader table?
This could be computed on-the-fly using views or stored procedures from the actual order details, right? ...
July 17, 2015 at 7:26 am
Steve Jones - SSC Editor (7/6/2015)
Stephen Hirsch (7/6/2015)
July 16, 2015 at 11:04 am
Jeff Moden (7/15/2015)
rmechaber (7/15/2015)
Jeff Moden (7/15/2015)
Everytime I see that particular post, I can't help but ask why someone would spend so much...
July 15, 2015 at 3:17 pm
Jeff Moden (7/15/2015)
Everytime I see that particular post, I can't help but ask why someone would spend so much time and effort...
July 15, 2015 at 2:28 pm
"Wrong" but not wrong: CURRENT_TIMESTAMP takes no arguments, the others require them (or empty parentheses at least).
But I bit on this vague QotD anyway, so maybe I was wrong to...
June 29, 2015 at 1:15 pm
Echoing what Nate said above, this also happens if you create a VIEW as SELECT * FROM MyTable and then later add columns to MyTable: the VIEW will not return...
June 18, 2015 at 9:57 am
Does this app/database have any VARBINARY(MAX) columns?
Your demonstration that SELECT * is a resource hog will be made as forcefully as a.... high velocity pork chop. 🙂
Rich
June 18, 2015 at 9:50 am
Viewing 15 posts - 76 through 90 (of 458 total)