Power Tools for Windows
Scott Hanselman has a great list of the power tools he uses for Windows and development. It’s worth a read,...
2011-12-06
1,789 reads
Scott Hanselman has a great list of the power tools he uses for Windows and development. It’s worth a read,...
2011-12-06
1,789 reads
It’s been a long year for me. This year I’ve attended:
SQL Saturday #60 – Cleveland SQL Saturday #66 – Colorado Springs MVP...
2011-12-05
959 reads
Transparent Data Encryption is only available in Enterprise Edition and above. Steve Jones thinks that's a mistake.
2011-12-05
112 reads
This Friday Steve Jones asked about penetration testing of your security. Have any of you ever tested your systems?
2011-12-02
109 reads
I always enable autogrow on my databases. However, it’s there for emergencies, not as a space management tool. I monitor...
2011-12-02
5,809 reads
Virtualization is an important technology for anyone working with servers, and as vendors look to improve the performance of their hypervisors, this technology might be more important for data professionals to understand.
2011-12-01
124 reads
Steve Jones talks about his recent vacation break and one change that made it a huge success.
2011-11-30
113 reads
My main phone line at the house has been on the fritz for about 3-4 weeks. Yes, we still have...
2011-11-30
2,423 reads
Do you get time to stop and think, without being pressured to solve a specific problem? Steve Jones notes that it's important to get that creative time to grow and produce better work.
2011-11-29
213 reads
This editorial was originally published on Jan 11, 2007 and is being re-run as Steve is on vacation. A fun poll today asking what you like to eat at work.
2011-11-25
80 reads
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