December 2012 - Posts

How to parse comma delimited string into IN Clause in SQL Server
Thu, Dec 13 2012 16:22
Hi Folks, Today i was trying to pass multi-value parameter into my select query in SQL Server. To accomplish this i stored the multi-value parameter in a comma delimited string. Then, i want to pass it in my IN clause of the select statement. here is...
Error: unable to retrieve column information from the data source in SSIS
Wed, Dec 12 2012 11:55
Hi Folks, I was trying to call a stored procedure from OLE DB Source in SSIS. and i getting this error: "Error: unable to retrieve column information from the data source" I wasn't even able to get the columns returned from this stored procedure...
by Mostafa Elzoghbi
Filed under:
Study Material for Programming HTML5 and CSS 3 Microsoft Exam
Sun, Dec 9 2012 9:47
Hi Folks, I got a free voucher from Microsoft for programming HTML 5 and CSS 3 Exam. I studied and reviewed online video materials and i want to share with you my study notes and hope this will be helpful for passing the exam. Congratulations in advance...
by Mostafa Elzoghbi
Filed under: , , ,
Functions vs. Methods in JavaScript with Encapsulation!
Wed, Dec 5 2012 13:35
Hi Folks, I found something interesting to share with all of you in Javascript. Functions in javascript as we all know is defined with function keyword while Method in Javascript is a function but can have a scope and you can hide it as we do in object...
Asynchronous Programming in C# - async/await
Sun, Dec 2 2012 12:17
Asynchronous Programming in C# - async/wait Hi Folks, I want to share with you an important enhancement in .NET framework 4.5. The asynchronous programming paradigm for .NET developers using new C# keywords async/await. Since I'm C# developer; I will...