Sorting a String as a Number with T-SQL and SSIS
I was working on a Cube in Analysis Services for a client recently and needed to sort on a field...
2012-01-23
3,602 reads
I was working on a Cube in Analysis Services for a client recently and needed to sort on a field...
2012-01-23
3,602 reads
With some calculated members in MDX it only makes sense to see the calculation if a certain Hierarchy is used....
2011-10-28
2,507 reads
Auditing in SSIS can be a real headache. In this two part series blog I am going to try to...
2011-10-20
3,564 reads
Auditing in SSIS can be a real headache. In this two part series blog I am going to try to...
2011-10-16
1,706 reads
SSIS packages are great ETL tools and can do just about anything you need in terms of ETL. Most organizations...
2011-10-03
1,256 reads
Data mining is a great way to help your company make decisions and predict future values. The Data Mining Algorithms...
2011-09-30
8,687 reads
Previously I wrote a blog on how to do a for each loop to look through each col in an...
2011-09-29
1,227 reads
There is no native function built in to SSIS to get the previous row in the data flow. But with...
2011-09-29
1,741 reads
The Merge component in SSIS will take two sorted sources and union them while maintaining the original sort order. The...
2011-09-28
1,294 reads
If you have a parent package that is looping through a set of files and calling child packages and want...
2011-09-27
2,683 reads
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...
By Steve Jones
I can’t believe I’ve been at Redgate long enough to get a third sabbatical....
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