Welcome to MSDN Blogs
Sign in
|
Join
|
Help
Michael Entin's notebook
Michael Entin's notebook
This Blog
About
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
.NET
64bit
BI
Functional
humor
Katmai
non-admin
non-secure
Perf
Rant
SSIS
SSIS Lookup
SSIS Programming
SSIS Scripting
SSIS Tasks
Win32
wwf
News
SQL 2008 released
Archives
December 2008 (2)
October 2008 (1)
June 2008 (2)
April 2008 (1)
March 2008 (1)
February 2008 (2)
December 2007 (2)
November 2007 (4)
October 2007 (1)
August 2007 (3)
July 2007 (1)
June 2007 (3)
April 2007 (3)
March 2007 (3)
February 2007 (1)
November 2006 (1)
August 2006 (1)
April 2006 (1)
March 2006 (1)
Blog roll
OlegLv
BI Recruiting
Matt Mason
Links
Microsoft BI portal
SSIS portal
SSIS Community Search
SQL BOL Search
SSIS Forum
Browse by Tags
All Tags
»
.NET
(RSS)
Functional
SSIS
SSIS Programming
Tuesday, February 05, 2008 12:53 AM
Random() is only random if you are using it right
I like the quote "With great power comes great responsibility" when used in regards to .NET - .NET gives one great powers, but use it wisely and know how this stuff works. Recently I saw code (it was written by a guy interviewing to our team) that demonstrated
Posted by
michen
|
0 Comments
Filed under:
.NET
Tuesday, December 11, 2007 11:46 AM
Functional sort in C#
On an internal mailing list, we were discussing functional languages, and this Haskell sort code: qsort [] = [] qsort (x:xs) = qsort ( filter ( < x) xs) ++ [x] ++ qsort ( filter ( >= x) xs) While trying to explain how this code works (which is very
Posted by
michen
|
0 Comments
Filed under:
.NET
,
Functional
Friday, August 24, 2007 5:57 PM
Don't run SSIS package using SQL/CLR
A recent commenter suggested running SSIS using SQL/CLR: Just an idea on how to do this that may be a bit easier than any of the methods covered. IF you were to write a CLR procedure which accepts a string as its parameter. The string passed in would
Posted by
michen
|
0 Comments
Filed under:
.NET
,
SSIS
,
SSIS Programming
Saturday, April 01, 2006 1:01 PM
Using C# 2.0 iterators to simplify writing asynchronous code (part 2)
Previous article describes the idea of using C# 2.0 iterators to write asynchronous code, now it's time to implement the utility class that "runs" the iterator. The utility turns out to be very light, I'm glad some readers reported they've already implemented
Posted by
michen
|
8 Comments
Filed under:
.NET
Thursday, March 30, 2006 1:44 AM
Using C# 2.0 iterators to simplify writing asynchronous code
A neat idea how C# 2.0 iterators can simplify the task of writing code that uses .NET async pattern. I’ve recently attended Jeffrey Richter’s class dedicated to effective threading techniques, and that made me think about using the .NET async pattern.
Posted by
michen
|
5 Comments
Filed under:
.NET