Viewing 15 posts - 961 through 975 (of 2,458 total)
Ed Wagner (2/27/2016)
Sean Lange (2/26/2016)
Alan.B (2/26/2016)
Sean Lange (2/26/2016)
Lynn Pettis (2/26/2016)
Alan.B (2/26/2016)
Lynn Pettis (2/26/2016)
Why do organizations believe...
February 29, 2016 at 9:29 am
Great article Steve. Nothing to add with respect to the algorithm discussion...
Many of us realize that subtle changes in application code can cause issues for data, which is part of...
February 29, 2016 at 8:56 am
Jeff Moden (2/27/2016)
February 29, 2016 at 8:35 am
Sean Lange (2/26/2016)
Lynn Pettis (2/26/2016)
Alan.B (2/26/2016)
Lynn Pettis (2/26/2016)
Why do organizations believe that they will get more...
February 26, 2016 at 2:48 pm
Lynn Pettis (2/26/2016)
Alan.B (2/26/2016)
Lynn Pettis (2/26/2016)
Why do organizations believe that they will get more candidates for...
February 26, 2016 at 2:38 pm
Lynn Pettis (2/26/2016)
Why do organizations believe that they will get more candidates for a position when...
February 26, 2016 at 1:49 pm
djj (2/25/2016)
February 25, 2016 at 2:12 pm
EdgeOfKnowWare (2/25/2016)
+1
Cracked me up!
February 25, 2016 at 11:48 am
Ok, here we go. This may be a bit much to follow but the key take away is that I'm showing you an excellent alternative to NTILE using a tally...
February 25, 2016 at 9:32 am
If you can get away with using a stored procedure then that's the way to go. Scalar UDFs are almost always poor performers and should be avoided at all costs.
February 25, 2016 at 5:56 am
Just a quick update:
I have a good solution that I'm still testing (note my earlier comment). It has taken me longer than expected. I'll try to post it in the...
February 24, 2016 at 10:20 pm
EdgeOfKnowWare (2/23/2016)
Rich Mechaber (2/23/2016)
This aspect of NTILE() is an eye-opening piece of information, thank you for posting...
February 23, 2016 at 12:26 pm
I don't know if anyone is aware of this but I noticed Dwain Camps hadn't posted anything in awhile so I checked his blog (dwaincsql.com), simple-talk, twitter, linkedin... then came...
February 23, 2016 at 12:09 pm
So, to dig even further...
SSC is the right place 😉
If your table had 92 million records, and you had 9 different "Val" columns, would you still use the same code?...
February 23, 2016 at 9:59 am
Note my code and comments.
USE tempdb
GO
-- Create a table with an XML column
IF OBJECT_ID('tempdb.dbo.YourTable') IS NOT NULL DROP TABLE dbo.YourTable;
CREATE TABLE dbo.YourTable(SomeID int identity primary key, SomeXML xml NOT...
February 23, 2016 at 8:36 am
Viewing 15 posts - 961 through 975 (of 2,458 total)