March 2011 Entries

Code Certificate

http://www.startssl.com/

Posted On Thursday, March 31, 2011 12:39 PM | Feedback (0)

Javascript Minify tools, optimization, style checker

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

Posted On Thursday, March 31, 2011 12:37 PM | Feedback (0)

Starting PowerShell learning process

Today I start learning powershell, maybe 2 years too late! http://powershell.com/cs/ http://www.powergui.org/ind... http://poshcode.org/

Posted On Thursday, March 31, 2011 12:31 PM | Feedback (0)

Parallel programming in Visual Studio

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.

Posted On Thursday, March 31, 2011 12:26 PM | Feedback (0)

Instead of alter table column to turn IDENTITY on and off, turn IDENTITY_INSERT on and off

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...

Posted On Wednesday, March 02, 2011 11:24 PM | Feedback (0)

Copyright © Kevin Shyr

Design by Bartosz Brzezinski

Design by Phil Haack Based On A Design By Bartosz Brzezinski