Presentations using a Panel Format
At the recent SQLSaturday #4 we had a session end up finishing much earlier than expected, so we gave the...
2008-06-11
698 reads
At the recent SQLSaturday #4 we had a session end up finishing much earlier than expected, so we gave the...
2008-06-11
698 reads
Just received this from my friend John Magnabosco about the SQL portion of the event:
Business Intelligence Track - TBD (Arie Jones,...
2008-06-10
488 reads
It's a rite of passage in our business that we have to learn the RAID levels, and I still enjoy...
2008-06-09
502 reads
Shawn Weisfeld has been the President of ONETUG (Orlando .Net Users Group) for the past three years and has just...
2008-06-08
477 reads
Attendance on Saturday about 450 across the communities (SQL, .Net, DNN, etc). Not as big as we'd hoped, but still...
2008-06-08
431 reads
One of the big themes this year for Microsoft (and I just saw it on the PASS Summit site) is...
2008-06-05
701 reads
Our main presentation was on 'Unlocking the Power of SQL Compact' by Steve Lasker & Ginny Caughey. Went better than I expected...
2008-06-04
418 reads
First, the usual disclaimer: I'm not a financial professional, so take all of the following with a grain of salt...
2008-06-03
742 reads
Just took a look at the World Wild Telescope and it looks interesting, perhaps just as importantly looks cool! Don't...
2008-06-03
430 reads
Last call! We've got a 2 day event running this time. Saturday is the more traditional (it's only #4 after...
2008-06-02
231 reads
By Kevin3NF
Don’t Let Trouble Sneak Up on You Most SQL Servers run quietly. Until...
By Steve Jones
I had a conversation with a customer asking this question: how can I tell...
By Chris Yates
There was a time when the Chief Data Officer lived in the shadows of...
Comments posted to this topic are about the item Create an HTML Report on...
Hi I have a SP that occasionally get this error: Cannot resolve the collation...
Hi everyone I am getting an error when I create the index but I...
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 in SQL Server 2022? See possible answers