Building The SQLSaturday Orlando Marketing Plan-Part 26
More notes:
In hindsight it’s easy to see we should have worked on the email template first, then the flyers. Email...
2014-07-28
1,237 reads
More notes:
In hindsight it’s easy to see we should have worked on the email template first, then the flyers. Email...
2014-07-28
1,237 reads
One of the many things we’re discussing going into the 2014 PASS election is what the planned two official campaign...
2014-07-25
657 reads
Just the chart today. We’re considerably ahead of previous year registrations for the same number of weeks out. I’m looking...
2014-07-23
474 reads
We’re at 180 registered so far and we haven’t published the schedule yet! So far so good. We’re on track...
2014-07-22
592 reads
Most SQLSaturday’s do ok when it comes to finding speakers, the results of an incredible speaker mailing list and a...
2014-07-18 (first published: 2014-07-16)
623 reads
I was doing some work on the marketing for SQLSaturday Orlando and looked back at the messages we sent last...
2014-07-18
619 reads
I wrote What Is the Hardest Feature to Learn About SQL Server? not really knowing what answer to expect. So...
2014-07-18
1,116 reads
SQL Server is a complex product and many of us work with only a small part of the product. However many of us will have exposure to quite a few features inside of the platform. Today Andy Warren asks you if there is some feature that's harder than others.
2014-07-18
515 reads
Today Andy Warren looks back at his career with Access and why he doesn't see it as a tool to be avoided.
2014-07-17
237 reads
Contrary to the title (by design), Access Disdain is about not automatically hating Access (or it’s users). Clearly Access has...
2014-07-17
621 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