Viewing 15 posts - 10,021 through 10,035 (of 39,883 total)
BTW, I see lots of generalizations. I was hoping for specifics. Not every one but a specific example of a common mistake. Perhaps like using NOLOCK everywhere or *= in...
March 20, 2015 at 9:40 am
Jeff Moden (3/19/2015)
I've run into folks with a Phd in Mathematics that couldn't convert 1416 to Base-10 without a calculator,
Reminds me of watching my son's Knowledge Bowl competition this...
March 20, 2015 at 9:39 am
Eric M Russell (3/19/2015)
R is good, but R# will be even better.
I hope so. No unmanaged code if possible.
March 19, 2015 at 10:20 am
GilaMonster (3/18/2015)
Jack Corbett (3/18/2015)
Steve Jones - SSC Editor (3/18/2015)
For your discussion: https://medium.com/@sailorhg/coding-like-a-girl-595b90791cce
That was an interesting read. I can't disagree with any of it, but I can honestly...
March 19, 2015 at 10:16 am
It's an unsupported upgrade path: https://msdn.microsoft.com/en-us/library/ms143393%28v=sql.105%29.aspx
I'd just install 2008R2 Standard and move the dbs/logins/jobs/linked servers over. Only if I have a license to 2008R2.
If you need a new license to...
March 18, 2015 at 10:29 am
You can use datepart to extract the month, and day, and then concatenate them together.
cast( datepart(mm, mydatecolumn) as char(2)) + '/' + cast( datepart(dd, mydatecolumn) as char(2))
March 18, 2015 at 10:23 am
For your discussion: https://medium.com/@sailorhg/coding-like-a-girl-595b90791cce
March 18, 2015 at 9:01 am
I didn't think we cached the forum pages, but perhaps we do. I'll ask someone to flip through the code and see.
March 18, 2015 at 8:12 am
I see it on this page: http://www.sqlservercentral.com/Forums/Forum391-1.aspx
March 18, 2015 at 7:24 am
eddy.b (3/18/2015)
March 18, 2015 at 7:22 am
Thanks, I'll take a look.
March 17, 2015 at 2:14 pm
Eirikur Eiriksson (3/13/2015)
Digressing slightly, how would the threadizens describe the optimal code comments? Obviously the opposite of that would be the worst;-)😎
I want to ask this as well. Specifically with...
March 16, 2015 at 2:53 pm
Gary Varga (3/16/2015)
March 16, 2015 at 2:32 pm
fregatepllada (3/15/2015)
Steve, I would suspect that this gig is heavily using EAV
Perhaps, but that's still just a storage design for the data. I bet there are some interesting queries written...
March 16, 2015 at 2:31 pm
Viewing 15 posts - 10,021 through 10,035 (of 39,883 total)