2011-08-11
2,098 reads
2011-08-11
2,098 reads
Data is important, but today Steve Jones notes that what we do with it is even more important.
2011-08-10
108 reads
In a recent thread I noted that a tail log backup is essentially a regular log backup, but made with...
2011-08-10
4,154 reads
Today Steve talks about security and the fact that your window for lax security is shrinking for new applications.
2011-08-09
130 reads
Steve Jones examines one of the issues of foreign chip production: security. Will this be an attack vector in the future?
2011-08-08
140 reads
2011-08-05
302 reads
Steve Jones talks about the problems you might face when moving to cloud computing and the fact that you ought to be prepared to move at some point.
2011-08-04
157 reads
I was out of town for work one day, literally on the other side of the country, in a car...
2011-08-03
863 reads
Steve Jones talks about data science and the growing number of jobs that are available in this field.
2011-08-02
162 reads
I might send this to a VP or CIO: Global CIO: A Framework For Developing Technical Leaders. It’s an article...
2011-08-01
1,377 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
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...
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