Develop a High Availability/Disaster Recovery Strategy
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,079 reads
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,079 reads
SQL Server Version Upgrade - You have SQL Server running nicely with no issues or problems. The trouble is its SQL...
2012-11-15
1,176 reads
SQL Server Virtualisation - Lots of companies and organisations are adopting a virtualisation first approach to the installation of new servers...
2012-11-14
773 reads
Configuring Hyper-V on a Windows Server 2012 is really simple and straight forward. Its a very similar process on Windows...
2012-11-13 (first published: 2012-11-09)
2,814 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-13
581 reads
Here at gethynellis.com we offer a range of consulting services to help you manage and maintain your SQL Server environment,...
2012-11-12
745 reads
Occasionally I come across offers and deals that may be of interest to some of my readers. When I come...
2012-11-11
747 reads
When working with new technology, if you are like me you might like to setup virtual machines to learn the...
2012-11-08
1,343 reads
This post is very much off topic so apologies if you were expecting a technology related post.
Tonight a darts exhibition...
2012-11-08
684 reads
I have been exploring Windows 2012 over the past week or so. Things look a little different to previous versions...
2012-11-07
2,319 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