Building The SQLSaturday Orlando Marketing Plan-Part 23
Here’s the latest update on our registrations. We’re still ahead of all our previous events, that’s good, and we’re 2...
2014-07-16
572 reads
Here’s the latest update on our registrations. We’re still ahead of all our previous events, that’s good, and we’re 2...
2014-07-16
572 reads
I did an online presentation about PCI and Credit Card Security for BSSUG last night and it went pretty well,...
2014-07-16
671 reads
Had our second planning meeting, still trying to complete the email template and realized we had not clearly defined two...
2014-07-15
637 reads
Many of you are interested in learning more about SQL Server and improving your career. However can you extend that to your colleagues? Can you convince them to become better IT professionals? Andy Warren has some thoughts.
2014-07-14
224 reads
Most PASS Chapter meetings are supported by sponsors who either provide money which is often used for food and drink,...
2014-07-14
732 reads
If you work with colleagues that aren’t as interested in growing and learning as you are, I hope you’ll read...
2014-07-14
635 reads
Probably you’ve heard about it already, but a quick post just in case – you can download a 100 or so...
2014-07-11
993 reads
Rained as I left (early) for the meeting, confirming again why I always leave early – stuff happens (in Orlando, rain...
2014-07-11
668 reads
Last week ended up better than expected when PASS decided to release feedback to speakers (selected or not) who requested...
2014-07-09
698 reads
An SSIS question! How’s that for a change of pace? SSIS Column Export is, as you might well surmise, about...
2014-07-09
572 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