If you dont do SQL on a daily basis and want to get a few CRUDoperations generalted qucikly for a table, use this excellent tool http://www.ssmstoolspack.com/
Month: April 2011
Restart BizTalk using PowerShell
get-service BTS* | foreach-object -process {restart-service $_.Name}
Write to event log
System.Diagnostics.EventLog.WriteEntry(“Orchestration Debug”, System.String.Format(“The Value = {0}”, iResult));