The Fall vConference Series
A series of online conferences covering various aspects of SQL Server and other Microsoft technologies. Check out the list for this fall and see if there is some training that you can attend.
2008-09-15
1,606 reads
A series of online conferences covering various aspects of SQL Server and other Microsoft technologies. Check out the list for this fall and see if there is some training that you can attend.
2008-09-15
1,606 reads
In San Francisco, Kimberly Tripp and Paul Randal of SQLSkills will be presenting a two and a half day, hands-on workshop covering database infrastructure and scalability.
2008-09-11
2,440 reads
A series of free, one-day training events are coming in October, 2008 to various locations around the country. See if you can attend one in Olympia, Greenville, or Orlando.
2008-08-25
2,197 reads
SQL Know How is holding a 3 day seminar in Hatfield, Hertfordshire in the UK this September 1-3.
2008-08-20 (first published: 2008-08-06)
4,266 reads
2008-08-06
173 reads
We're sponsoring over 5 hours over 5 days of training on SSIS and Business Intelligence with Brian Knight, SQL Server MVP and founder of Pragmatic Works.
2008-07-14 (first published: 2008-07-01)
23,864 reads
Red Gate Software wants to recognize and reward exceptional DBAs with this new program.
2008-07-07 (first published: 2008-05-29)
3,008 reads
Please join us in congratulating one of our longtime community members on MVP status.
2008-07-03
749 reads
Two longtime members of the SQLServerCentral.com community received the well-deserved MVP status this week. Congratulate Jeff Moden and Michael Coles.
2008-07-02
1,730 reads
Training in the UK this fall from a variety of SQL Server experts. If you are in the area, I'd recommend one of these classes.
2008-06-26 (first published: 2008-06-19)
2,623 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