The 2012 Powershell Scripting Game(shows) in review
Over the past few weeks, those around me know that I’ve been talking a lot about Powershell, how much it...
2012-05-01
1,183 reads
Over the past few weeks, those around me know that I’ve been talking a lot about Powershell, how much it...
2012-05-01
1,183 reads
In a recent Scripting Games event, I had to format some byte values into their most appropriate size according to...
2012-04-19
3,875 reads
I’ve been thoroughly enjoying my experience this year with the Scripting Games. This is the first year I've competed and...
2012-04-16 (first published: 2012-04-12)
6,713 reads
A while back, my young son thought it would be fun to use a CD as a virtual surfboard on...
2012-04-10
1,569 reads
A task that I have had to do several times over the years is determine if an IP Address string...
2012-04-03
4,180 reads
While preparing a demo for a presentation, I generated a 18456 error in the SQL instance by selecting a non-existent...
2012-03-29
1,167 reads
One of the challenges I’ve had over the years is figuring out a way to add the SQL Service accounts...
2012-03-27
10,519 reads
Over the next few weeks, I plan to share some of the discoveries I've had when working with Windows 2008R2...
2012-03-19
2,378 reads
This is the first time I've participated in T-SQL Tuesday - I hope to do so more often...
I can recall several...
2012-03-13
1,019 reads
My post this weekend about slaying beasts with magical .dll incantations was my way of relieving some stress after having...
2012-02-07
2,356 reads
By Steve Jones
I’ve been very happy with Docker Desktop for years, running it on both laptop...
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...
hi, my new user provided a new multi tab (sales, customer etc. not what...
If I configure remote access to 0 on my servers, am I right in...
What is the best way to set the schedule of a maintenance plan or...
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