Thursday, May 19, 2016

First NuGet Package Published

Feeling pretty good about my career with my first NuGet Package.  I hope this helps out other .NET Developers with CyberSource Transition on June 30, 2016 - https://www.nuget.org/packages/UnofficialCyberSourceByMoojjoo/

Friday, May 06, 2016

Update Incrementer with T-SQL instead of using a cursor


SQL TIP: Auto Increment in an UPDATE statement. - Credit - http://haacked.com/archive/2004/02/28/sql-auto-increment.aspx/ 


DECLARE @counter int SET @counter = 0 UPDATE #tmp_Users SET @counter = counter = @counter + 1