PASS Voting Extended Until October 14th
The Board of Directors has extended voting in the current election through October 14th. Read the post from President Thomas...
2014-10-07 (first published: 2014-09-30)
6,127 reads
The Board of Directors has extended voting in the current election through October 14th. Read the post from President Thomas...
2014-10-07 (first published: 2014-09-30)
6,127 reads
Miscellaneous notes as I think on this.
I’ve been reading through feedback from the students. Reading the raw feedback is interesting...
2014-10-06
755 reads
We’ve got a good handful of events listed for After Hours so far, but couldn’t we have more? A couple...
2014-10-02
832 reads
This past week we did our first try at the Student to IT Pro Seminar, run concurrently with SQLSaturday Orlando....
2014-10-01 (first published: 2014-09-29)
6,808 reads
Took a break to check email and saw the confirmation that I was renewed for another year. Pleasant news for...
2014-10-01
588 reads
Notes from a speaker/volunteer perspective:
It was a lot of fun to talk to the students at our Student to IT...
2014-09-30
1,123 reads
I’ll be driving to Viera for the monthly Space Coast SQL Users Group meeting next week. Topic still to be...
2014-09-30
998 reads
This past Saturday we held our eight annual SQLSaturday. I’ll write some notes about the event and post today or...
2014-09-29
1,002 reads
First, a reminder/disclaimer that I am serving on the PASS NomCom this year. The four candidates in the election are...
2014-09-26 (first published: 2014-09-23)
6,518 reads
Here’s my wish list:
Fix the membership problem. One voter, one vote. That’s what we want. The current hack of requiring...
2014-09-25
733 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