40,329 reputation
94385
bio website
location
age
visits member for 3 years, 11 months
seen 1 hour ago
stats profile views 2,442

-


2h
comment Get the Count based on Conditions
I find that SQL code to be completely illegible. Looks like a minification contest entry.
16h
comment How I can parallel call methods with async keyword?
I recommend using await Task.WhenAll to better propagate errors and have more determinism.
1d
comment which one have better performance: tab expression, temp table?
SQL Server does not need to store join results in any way, to be clear. It only does so if it thinks it is faster than any other way. I think it came across the wrong way in this answer.
1d
answered Can different RDBMS have impact on ORM performance test results?
1d
comment Same Long string(Varchar(max)) get different hash value
Not sure what you mean. What are those SQL statements that you posted? Try my suggestion.
1d
comment Same Long string(Varchar(max)) get different hash value
@hujintao use an UPDATE statement to copy the string from one row to the other. You'll find that the hashes now agree. What evidence do you have that SQL Server has a bug here? I can't see any.
1d
answered Same Long string(Varchar(max)) get different hash value
2d
answered Run two codes simultaneously c#
2d
comment TPL creating 30 threads and not executing more than 2 threads
@VineetKumar the problem with this question is that is is impossible to answer specifically. You have made a mistake and we need to find it. It is not possible to enumerate all mistakes or pitfalls. Post anonymized code, post sample code or create a fresh repro code.
2d
revised SQL Server: LEFT OUTER JOIN with TOP 1 to Select at Most One Row
added 66 characters in body
May
22
awarded  Nice Question
May
22
comment TPL creating 30 threads and not executing more than 2 threads
Please show the code.
May
21
comment Connection pool issues on shared hosting with proper disposal
I do not believe that by itself. That would mean that ADO.NET is fundamentally broken in a way that would not have survived the past 10 years. Can you post a repro? Of course, if you convince me that ClearAllPools is the right solution (and I have never seen this) I'll convert the down- to an upvote. (I recommend that you just get rid of the question though).
May
21
comment Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?
I also had this suspicion. It is probably a code design error that is causing this. I hope the OP will post some code so we can know for sure.
May
21
comment Why is code launched on threadpool (via Task.Run) slower than the same code run in BackgroundWorker?
Please post code. Could be anything.
May
21
comment Connection pool issues on shared hosting with proper disposal
You can change the pool size using the connection string (web.config or SqlConnection ctor). I stand by my downvote as I would not recommend the procedure given here to anyone. Instead I recommend what I said earlier.; I think you're still leaking connections or screwing up pooled connections some other way. If this was not the case clearing the pool would not help.; (As the problem is solved for you you could delete the entire question, btw.)
May
20
comment How to select rows with exactly 2 values in a column fast within a table that has 10 million records?
This will still scan the entire index but maybe performance is enough.
May
20
comment A linq statement with multiple group by columns not allowing a thenby
Ok put that book into the bin :)
May
20
comment A linq statement with multiple group by columns not allowing a thenby
Is that book for a beta version of C# 3?! thenby does not exist in C#.
May
20
revised What is the difference between C# marshaled struct pointers?
more uniform formatting