Basic Cloud Computing Patterns for Application Development
Over the past few years, the cloud evolution has answered all questions on the cloud being the right strategy. The...
2014-02-08
811 reads
Over the past few years, the cloud evolution has answered all questions on the cloud being the right strategy. The...
2014-02-08
811 reads
Does the pairing of Nadella and Gates foretell Microsoft’s return to glory or a new era of dysfunction? Take a...
2014-02-07
944 reads
This is pretty amazing. After 1970 the grow rate is astronomical for Walmart. You have got to watch this. Pretty...
2014-02-07
415 reads
FEATURED POST BY: Quentin Clark, Corporate Vice President, The Data Platform Group, Microsoft Corporation
If you follow Microsoft’s data platform work,...
2014-02-07
1,521 reads
2014-02-06
379 reads
The most popular Excel blog posts of 2013 reflect your interest in the new capabilities we’ve added to Excel this...
2014-02-06
345 reads
Knoema is a knowledge platform. The basic idea is to connect data with analytical and presentation tools. As a result,...
2014-02-05
554 reads
While every organization is different, their “big data” is often very similar. It typically comprises massive amounts of data across...
2014-02-05
402 reads
Wondering how to stay informed and entertained during the 2014 Winter Olympics? Here are 20 Twitter accounts to get you...
2014-02-04
572 reads
A new game called Fantasy Geopolitics (think Fantasy Football meets Model United Nations) is radically changing the way high school...
2014-02-04
379 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