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
264 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
481 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
180 reads
In your environment, who do you see being the Big Data champion? it probably depends on the goals of what...
2013-11-20
295 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
944 reads
For those of you interested in cool new technology, you should definitely check out ?Building Windows 8? which is a...
2011-11-11
892 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
862 reads
By Rayis Imayev
(2025-June-15) Long gone are the days when a data engineer could simply focus on building...
By Ed Elliott
I recently encountered an interesting issue with ADF where the publish feature suddenly attempted...
Image from Afdhaluddin on ShutterstockCLI which is generally referred to as Command Line Interface...
Comments posted to this topic are about the item How Many Can Be the...
Comments posted to this topic are about the item How to process images and...
Comments posted to this topic are about the item Patching the Patch
I am trying to analyze a number of columns in a large table to determine the highest value for each row. In SQL Server 2022, we have the GREATEST function, which will return the greatest value from those columns passed in. How many columns can I include in an expression like this:
select GREATEST( col1, col2, col3, ...)See possible answers