Share the Interesting Work
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
79 reads
Today we have a guest editorial from Andy Warren that looks at how we might divvy up our workload in a company.
2016-11-18
79 reads
2016-11-17
140 reads
Does your database development process prevent changes in your software? You shouldn't be held hostage by your database.
2016-11-16
90 reads
Steve Jones talks about the issues with using a local database in your application.
2016-11-14
67 reads
2016-11-11
159 reads
2016-11-10
119 reads
2016-11-08 (first published: 2013-02-14)
196 reads
ODBC is the closest thing we have to a universal standard for data access across platforms, applications and data sources. So why doesn't DocumentDB support it?
2016-11-07
107 reads
This week Steve Jones has a bit of a competition. Share with him how fast you can back up a 1TB database.
2016-11-04
204 reads
We depend on data quality to run our businesses efficiently. However, it's a problem when we mess that data up on purpose.
2016-11-02
76 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