This kind of windows command is good to trace network connectivity. We can retrieve result specifically on certain search conditions. The best part is, we can keep the tracing alive: netstat -an 5 | findstr 1433 A few tricks are in place here: 1. Netstat...
The very first web service that we usually create in any programming language, turned out to be not-so-simple in BizTalk. Here's classic example: public class Service1 : System.Web.Services.WebService { [WebMethod] public string HelloWorld() { return...
Note to self: If UI doesn't work, there's always command prompt. http://support.microsoft.com/kb/222444
Have you ever be given a task to use SQL Server T-SQL to find out the date value of next day, at 00 hour? Say, now is '2007-10-26 13:30:50', and you need to get a '2007-10-27 00:00:00'? Naturally, I think most of us will do something like this: declare...