2008-12-08
488 reads
2008-12-08
488 reads
The performance of virtual machines is getting closer and closer to that of physical machines with better software like Hyper-V.
2008-12-06
732 reads
Steve Jones asks about what you might change about yourself at work for this Friday's poll.
2008-12-04
71 reads
The upgrade treadmill might hit you in ways that you didn't expect.
2008-12-03
83 reads
Energizer, one of the world's leading battery manufacturers, is looking to have Microsoft host much of their infrastructure.
2008-12-02
508 reads
2008-12-01
927 reads
Phil Factor talks a bit about the SQLServerCentral community and how we all get something different from it.
2008-11-26
525 reads
2008-11-26
641 reads
2008-11-25
510 reads
A bit of a rant today from Steve Jones after running into a situation that seems to make no sense these days.
2008-11-24
511 reads
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
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