Microsoft: http://aspnet.codeplex.com/... Google: http://code.google.com/p/mi... ; http://code.google.com/clos... Some online ones that takes a block of javascript: http://jscompress.com/ http://www.minifyjavascript
Today I start learning powershell, maybe 2 years too late! http://powershell.com/cs/ http://www.powergui.org/ind... http://poshcode.org/
Not much experience with these products yet. Free: http://developer.nvidia.com... Not free: http://software.intel.com/e... For SSIS, this looks very interesting: http://extendedssispkgexec.
First of all, I don't know which version of SQL this post (http://www.techonthenet.co... is based on, but at least for Microsoft SQL Server 2008, the syntax is not: ALTER TABLE [table_name] MODIFY [column_name] [data_type] NOT NULL; Instead, it should be: ALTER TABLE [table_name] ALTER COLUMN [column_name] [data_type] NOT NULL; Then, as several posts point out, you can't use T-SQL to run an existing column into an IDENTITY column. Instead, use the IDENTITY_INSERT to copy...