Only as Good as Your Auditor
Today we have a guest editorial from Andy Warren that talks about auditing your organization.
2017-03-10
94 reads
Today we have a guest editorial from Andy Warren that talks about auditing your organization.
2017-03-10
94 reads
Steve Jones says you should treat your database servers like cattle. It makes life easier.
2017-03-09
333 reads
Today Steve Jones talks about the checklist you would want if you needed to move a SQL Server instance to new hardware.
2017-03-08
12,012 reads
2017-03-07
80 reads
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
2017-03-06
82 reads
If a successful IT career is just as much about tenacity, interest and retention as it is about brainpower, then how does one go about continuous learning?
2017-03-06
88 reads
An open letter to Microsoft from the CEO of Mandriva Linux might not have been the best idea.
2017-03-04 (first published: 2007-11-30)
362 reads
Today Steve Jones asks what default values you might choose for new columns in a table.
2017-03-03
117 reads
Read why Solomon Rutzky is excited about SQL Server running on Linux.
2017-03-02
545 reads
How do you detect issues in your systems? Testing? Monitoring? Steve Jones has a few thoughts that we should find ways to do so before our customers.
2017-03-01
113 reads
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...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
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