March 2011 Entries
Microsoft: http://aspnet.codeplex.com/releases/view/40584
Google: http://code.google.com/p/minify/ ; http://code.google.com/closure/
Some online ones that takes a block of javascript:
http://jscompress.com/
http://www.minifyjavascript.com/
Today I start learning powershell, maybe 2 years too late!
http://powershell.com/cs/
http://www.powergui.org/index.jspa
http://poshcode.org/
Not much experience with these products yet.
Free: http://developer.nvidia.com/object/nsight.html
Not free: http://software.intel.com/en-us/articles/intel-parallel-studio-purchase/
For SSIS, this looks very interesting:
http://extendedssispkgexec.codeplex.com/
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 ......