Hide the Ribbon in Power View
There may come a day when you want to embed a Power View report into a PerformancePoint dashboard or a...
2013-06-07
715 reads
There may come a day when you want to embed a Power View report into a PerformancePoint dashboard or a...
2013-06-07
715 reads
Recently while doing an installation of SharePoint 2010 on a Windows Server 2008 R2 server with a SQL Server 2012...
2013-05-29
1,177 reads
Development and demo environments can be hard to come by. Over the course of this series you will learn how...
2013-05-21
2,279 reads
Have you ever wanted to browse your SharePoint 2010 site in Windows Explorer? If you are in SharePoint 2007 please...
2013-05-14
877 reads
It was another great year at SQL Saturday Jacksonville. For the last several years I have been lucky enough to...
2013-05-07
474 reads
Anyone who knows me will see the title of this post and tell you I’m about to trash the Surface,...
2013-03-22
665 reads
I recently had an interesting situation where an SSIS package was scheduled to run at 1 AM but failed with...
2013-03-18 (first published: 2013-03-12)
5,044 reads
Recently while changing some production security around on a new server I needed to modify the SQL Server Analysis Services...
2013-03-05
1,223 reads
The SQL Server PDW (Parallel Data Warehouse) is a beast of a machine. Spreading workload across multiple nodes inside the...
2012-09-11
1,511 reads
NOTE: Always create a backup before doing any type of Windows registry modifications!!!!
With the full public release of Windows 8...
2012-09-04
1,461 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