A Need for Monitoring without Administration
A recent hack through a network monitoring system is scary, but Steve thinks that we ought to not require these systems to have privileged access.
A recent hack through a network monitoring system is scary, but Steve thinks that we ought to not require these systems to have privileged access.
Learn how PowerShell can be used to manage files and folders in your Data Lake.
Comparing current performance to baselines helps DBAs know when there’s a problem. In this article, Pamela Mooney describes how to measure the physical resources drive space, latency, memory, and CPU.
Phil Factor explores a lesser-known capability of SQL Compare, which is to help you maintain a 'traditional', well-documented, single file build script, for creating the current version of the database during development.
Learn how to generate some convincing data for your development databases.
The story of an engineer solving a problem is a good one that shows technical skills and a passion for the work.
In this article we look at PowerShell code you can use to import Excel data into SQL Server.
Take part in this short exercise (no more than 5 minutes) by letting us know what matters most to you when considering, purchasing, or using database software. As a thank you, you can also enter our prize draw at the end for a chance to win a $150 Amazon gift voucher.
What happens with tempdb on a local disk in a cluster? Read on to see that you will not get a failover if the local disk fails
Today Steve wonders about the move back to offices and if you are looking forward to it or trying to avoid it.
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers