Viewing 15 posts - 46 through 60 (of 276 total)
Great link, thanks! Learning some important basics here at a late date...
November 30, 2018 at 2:58 pm
I'd love to see an example too. But it seems the issue is somewhat complicated by the use of C# and SQL. Hacking this system would require passing a value...
November 30, 2018 at 2:37 pm
My interpretation of the blog post is that it's so hard to choose the *right* clustered index that you're better off erring on the side of omitting one completely. Not...
November 30, 2018 at 2:19 pm
Question #2...I am not entirely following this bit:
When SUM() is used with an OVER clause that contains an ORDER BY, then a window frame is "required." If you...
November 29, 2018 at 11:05 pm
ISNULL(LAG([to], 1) OVER(PARTITION BY CustID ORDER BY c.TransDate, c.Amount), 0)
Am I misunderstanding something here? The ISNULL check would never return NULL, and thus 0, because you've already...
November 29, 2018 at 10:59 pm
Or even just MS Access.
November 29, 2018 at 12:07 pm
As far as I can tell, it seems to work the same either way. Just didn't want to accidentally screw this up.
November 9, 2018 at 1:24 pm
Yes it's easy to test against '' manually and see the results. I was just curious if there was a function or something so I could see the "value" of...
October 29, 2018 at 4:47 pm
Lynn, just curious...is there a function we can use to see the "value" that SQL Server is assigning to these text strings to determine if they are "greater than" the...
October 29, 2018 at 4:38 pm
October 29, 2018 at 1:38 pm
It seems kinda arbitrary to assume that if/when a "deactivated" Country reverted to "active", that the previous Active/Inactive flags would still be applicable to its child Regions/Cities. Maybe that's the...
October 26, 2018 at 10:47 am
Never even heard of SIGN(). Cool. 🙂
October 26, 2018 at 10:24 am
or just dump a guid into each field in your pk.
August 15, 2018 at 3:55 pm
I still just don't fully understand how salts and the like are supposedly so helpful, because it seems like they have to be stored somewhere. Either in code or in...
August 6, 2018 at 8:23 am
Viewing 15 posts - 46 through 60 (of 276 total)