Go, Go, Golang!
WHAT!
Yep, you read that right. I’m building tools in Go.
I can hear you now…. But Wes you are a SQL...
2016-08-26 (first published: 2016-08-17)
1,765 reads
WHAT!
Yep, you read that right. I’m building tools in Go.
I can hear you now…. But Wes you are a SQL...
2016-08-26 (first published: 2016-08-17)
1,765 reads
WHAT! Yep, you read that right. I’m building tools in Go. I can hear you now…. But Wes you are a SQL Server guy, a WINDOWS guy! What...
2016-08-17
7 reads
Short On Money?
Sometimes that is the motivation. Maybe the tool you want doesn’t really exist yet? For me it was...
2014-02-10
1,040 reads
Short On Money? Sometimes that is the motivation. Maybe the tool you want doesn’t really exist yet? For me it was those things and the joy of building something...
2014-02-10
4 reads
Digging Around In Google Code
Google Code was very thin when it comes to SQL Server. I did find a few...
2013-12-04
1,073 reads
Digging Around In Google Code Google Code was very thin when it comes to SQL Server. I did find a few of interesting projects that may appeal to others...
2013-12-04
6 reads
Digging Around In BitBucket
BitBucket was very thin when it comes to SQL Server. I did find a couple of interesting...
2013-12-02
910 reads
Digging Around In BitBucket BitBucket was very thin when it comes to SQL Server. I did find a couple of interesting projects that may appeal to others as well...
2013-12-02
9 reads
Tool Archaeology, Digging Through The Web
About every three to six months I will burn some time and just go digging...
2013-11-29
1,345 reads
Tool Archaeology, Digging Through The Web About every three to six months I will burn some time and just go digging for tools. Mostly, I’m looking for stuff related...
2013-11-29
10 reads
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
By Rayis Imayev
"But I don’t want to go among mad people," Alice remarked."Oh, you can’t help...
By Steve Jones
I saw some good reviews of the small gemma3 model in a few places...
Comments posted to this topic are about the item Create an HTML Report on...
Comments posted to this topic are about the item We Should Demand Better
Comments posted to this topic are about the item Estimated Rows
I have two calls to the GENERATE_SERIES TVF in this code:
SELECT TOP 10 gs.value FROM GENERATE_SERIES(1, 10) AS gs ORDER BY NEWID () OPTION (RECOMPILE); go DECLARE @a int = 10; SELECT TOP (@a) gs.value FROM GENERATE_SERIES(1, @a) AS gs ORDER BY NEWID () OPTION (RECOMPILE);In the actual query plans, what is the estimated number of rows for each batch? See possible answers