How Big Data Changed Finance at Microsoft
Finance leaders today are faced with an interesting challenge. How can they consume and analyze the millions of rows of...
2014-02-04
381 reads
Finance leaders today are faced with an interesting challenge. How can they consume and analyze the millions of rows of...
2014-02-04
381 reads
Reflect before you leap into action.
from HBR.org http://ift.tt/1behXS1
via IFTTT
2014-02-03
266 reads
If you read nothing else, read these 10 articles from HBR’s most influential authors: 1) “Meeting the Challenge of Disruptive...
2014-02-03
359 reads
One of the interesting additions to the Power Query Preview December update is the ability to import data from Microsoft...
2014-02-02
484 reads
Today, Hortonworks announced the general availability of the Hortonworks Data Platform (HDP) 2.0 for Windows. This is the next release...
2014-02-02
326 reads
What kinds of data are exciting to you? Census and government data? Zombie Data? Marvel Comics? Time and time again...
2014-02-01
186 reads
In your environment, who do you see being the Big Data champion? it probably depends on the goals of what...
2013-11-20
296 reads
Folks,
There are many outlet s to get information on this year’s SQL PASS board of directors candidates. Including :
SQLPASS Election...
2011-12-14
947 reads
For those of you interested in cool new technology, you should definitely check out ?Building Windows 8? which is a...
2011-11-11
895 reads
Hey folks,
Welcome back to the PASS election process. The process moves forward with all of us candidates awaiting our ranking...
2011-11-10
864 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