Another Take on SP3 & Service Packs In General
Had lunch with a friend in the business yesterday that is involved with vulnerability scans for a large company and...
2008-03-18
1,580 reads
Had lunch with a friend in the business yesterday that is involved with vulnerability scans for a large company and...
2008-03-18
1,580 reads
Tjay Belt forwarded me the information about the Utah Code Camp this year. Still early in the process, no schedule...
2008-03-18
1,513 reads
Just a reminder that the event is this Saturday. The tentative schedule has been posted and it looks like I'll...
2008-03-17
1,485 reads
I've been emailing back and forth with IndyTechfest organizer John Magnabosco over the past year as we've traded notes about...
2008-03-16
695 reads
Saw a mention of this in the latest MSDN Magazine, you can download Reflector.SQL2005Browser and install it as an add-in for...
2008-03-13
794 reads
Yesterday I posted Building YOUR Brand that described a formula for becoming rich and famous. Well, perhaps richer than you are...
2008-03-12
555 reads
Between teaching classes, attending community events, and participating in the local user group I get to have a lot of...
2008-03-11
672 reads
Just spoke with Brian this morning to get an event update for SQLSaturday #3:
122 attendees registered so far (event is...
2008-03-11
480 reads
Friday I gave another iteration of our free Sucessful Technical Speaking class, upgraded some since the last version, and this was...
2008-03-10
542 reads
I'll be teaching a one day performance tuning seminar that targets beginning DBA's and developers that do data access, hoping to...
2008-03-09
766 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