Viewing 15 posts - 1,351 through 1,365 (of 59,065 total)
A far better way, IMHO, is to write a good SELECT in a stored procedure. 😉
What's the old saying? "Just because you can do it in Python, doesn't mean you...
June 21, 2023 at 12:40 am
If they are implementing things like shift-left and shift-right maybe they should also implement unsigned integers.
It's coming... According to the way they handled things like GENERATE_SERIES(),...
June 20, 2023 at 7:33 pm
@steve-2 Collins,
Sorry... I tried your latest code on a max value of "just" 1 million. I stopped it at 2 hours and 8 minutes.
June 20, 2023 at 7:30 pm
If they are implementing things like shift-left and shift-right maybe they should also implement unsigned integers.
It's coming... According to the way they handled things like GENERATE_SERIES(), etc, it should...
June 20, 2023 at 5:08 pm
Ok... I'm a little gobsmacked... I ran your code with zero changes and it's riddled with syntax errors and,yet, it ran without error.
What is the following supposed to...
June 20, 2023 at 3:57 pm
I also have to admit that I have no clue what something like this is supposed to be doing in T-SQL. In another language, maybe but not in t-SQL.
(prime <<...
June 20, 2023 at 3:26 pm
Ok... I'm a little gobsmacked... I ran your code with zero changes and it's riddled with syntax errors and,yet, it ran without error.
What is the following supposed to do for...
June 20, 2023 at 3:21 pm
Jeff Moden wrote:The doubled-up relational symbology isn't floating my boat on an SQL Server forum, either.
There are functions also as I'm sure you're already aware
So why are you using...
June 20, 2023 at 3:17 pm
I don't know. Setting STATISTICS ON doesn't work on Fiddle
Simplified without the 4th CTE
The doubled-up relational symbology isn't floating my boat on an SQL Server forum, either.
June 20, 2023 at 2:35 pm
Sounds good. You could still be affected if you copy a DATETIME2(7) into any datatype that has a lower resolution.
June 20, 2023 at 2:25 pm
Then, there are releases like 2016 where they changed some things that cause "silent failures producing incorrect rounding" in the DateTime datatype.
And, for a change, I shall be...
June 19, 2023 at 3:25 pm
I tried your script with 10 million rows and it took 25 seconds with dbo.fnTally using 126 MB log file. With GENERATE_SERIES it took it took 126 seconds using...
June 18, 2023 at 8:00 pm
Heh... this reminds me of every bloody release since and including 2005. The ones before that didn't seem nearly as bad. Maybe because there were fewer moving parts.
The spooky part...
June 18, 2023 at 5:02 pm
Heh... or resolve yourself to the fact that no one will make any changes to the code no matter what you find and just let them do the testing they're...
June 18, 2023 at 4:52 pm
From my testing SQL Server's GENERATE_SERIES is efficient and well-optimized. It's not surprising it performers better than user defined functions as it is implemented in the native code of...
June 18, 2023 at 4:48 pm
Viewing 15 posts - 1,351 through 1,365 (of 59,065 total)