2016-10-31
51 reads
2016-10-31
51 reads
The release of Analysis Services in Azure means the platform has a future.
2016-10-31
65 reads
Today we have a guest editorial from Grant Fritchey that looks at emotions and how they can affect our decision making.
2016-10-28
102 reads
Things at work that waste your time are impediments to actually getting work done. Management ought to be in the business of removing as many of these things as possible.
2016-10-27 (first published: 2012-10-11)
412 reads
If you are holding, in your organisation, personal data about real people or commerce, it is wrong, and in many cases illegal to do database development work or testing using your production data. This, of course, probably applies to a minority of database systems, but data breaches caused by attacking backups or copies of production […]
2016-10-24
83 reads
Executing R scripts can be a heavy load. Today Steve Jones wonders if SQL Server is the best place to execute these.
2016-10-20
429 reads
The number one million has special meaning to many people. And it's a heck of a metric to achieve in a measurement on a database system.
2016-10-19
79 reads
2016-10-18
149 reads
2016-10-17
88 reads
2016-10-17
162 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