Writing the Correct Query is Important
Making simple mistakes in queries can have far reaching consequences.
2017-01-16
165 reads
Making simple mistakes in queries can have far reaching consequences.
2017-01-16
165 reads
We need better security for our data, especially for our choices in managing data.
2017-01-12
81 reads
2017-01-11
157 reads
Today, Steve Jones looks at the popularity of SQL Server, which was named DBMS of 2017.
2017-01-10
135 reads
SQLServerCentral is getting an upgrade, and Steve Jones has a few words.
2017-01-09
136 reads
It is foolish to insist on reading only up-to-date books on technology. Nothing beats getting the broad perspective.
2017-01-09
73 reads
2017-01-06
83 reads
2017-01-05
78 reads
Numbers are both very useful and also susceptible to all sorts of attacks when their domain is limited. Steve Jones looks at some issues occurring in today's world.
2017-01-04
96 reads
2017-01-03
305 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