PASS Summit Keynote 2 – Release 2
Dr. David DeWitt is getting ready to take the stage to a huge ovation and is thrilled to be back...
2016-10-27
576 reads
Dr. David DeWitt is getting ready to take the stage to a huge ovation and is thrilled to be back...
2016-10-27
576 reads
Grant Fritchey taking the stage to talk about the financial health of PASS.
250k members , 170 countries, and 87% global representation...
2016-10-27
552 reads
Good morning from PASS Summit in Seattle, Washington. Like yesterday I will be live blogging the event. The same format...
2016-10-27
527 reads
Julie Koesmarno, Senior Project Manager at Microsoft, takes the stage to talk about business analytics utilizing War and Peace.
Tracing emotions...
2016-10-26
576 reads
Document DB: Blazing fast planet-scale NoSQL:
Guaranteed Low LatencyElastically Scaling StorageElastically Scaling ThroughputNo Impedance MismatchChoice of ConsistencyEnterprise Level SLAAzure + DocumentDB with...
2016-10-26
445 reads
Justin Silver, Scientist Pros, takes the stage……
Taking data science out of the lab settings and placing it into real world...
2016-10-26
466 reads
Rohan Kumar, General Manager of Microsoft, takes the stage hyping up SQL Server 2016. We keep hearing the word “Sharing”...
2016-10-26
477 reads
Joseph Sirosh taking the stage by first telling us a story with over 400 million children in India. Only 50%...
2016-10-26
545 reads
Good morning from PASS Summit 2016!
Today will be the first keynote session at 8:15 a.m. with Joseph Sirosh. I’ve found...
2016-10-26
436 reads
It’s about time I got back into participating in the T-SQL Tuesday block parties that are hosted by community members...
2016-10-11
365 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