Sign in
Tone Poem
Listen to your heart
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
No tags have been created or used yet.
Archive
Archives
June 2012
(2)
May 2012
(1)
April 2012
(3)
September 2009
(1)
February 2009
(1)
November 2008
(1)
October 2008
(2)
September 2008
(2)
August 2008
(2)
June 2008
(1)
May 2008
(2)
April 2008
(3)
March 2008
(2)
March 2006
(1)
February 2006
(1)
October 2005
(1)
Blog - Title
MSDN Blogs
>
Tone Poem
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Tone Poem
Cannot Install Windows SDK :(
Posted
10 months ago
by
Matt Neerincx [MSFT]
0
Comments
You try to install latest Windows SDK and it does not work. If you look at the setup log file and you see: 8:58:43 AM Wednesday, June 27, 2012: C:\WinSDK\Setup\SFX\vcredist_x64.exe installation failed with return code 5100 Reason for this is you...
Tone Poem
Windows Diagnostics with Windows Azure Issue
Posted
10 months ago
by
Matt Neerincx [MSFT]
0
Comments
Windows Azure Diagnostics does not work, you see following in the Compute Emulator => [Diagnostics]: Error starting diagnostics: System.FormatException: Invalid account string. at Microsoft.WindowsAzure.CloudStorageAccount.<Parse>b__0(String...
Tone Poem
Enabling Advanced Driver Tracing for the SQL Native Client ODBC Drivers
Posted
over 1 year ago
by
Matt Neerincx [MSFT]
0
Comments
If you are using the SQL Native Client ODBC driver, there is built-in high performance very detailed driver tracing, here is how you use it. #1. Create batch file to start tracing (this traces for all three versions of SQL Native Client ODBC Driver...
Tone Poem
PowerShell Command Separator Is ; and Not &
Posted
over 1 year ago
by
Matt Neerincx [MSFT]
5
Comments
Ahh PowerShell, I still cannot fully embrace your powerful weirdness. With normal NT command prompt I can restart my SQL Server by running => net stop mssqlserver & net start mssqlserver This does not work in PowerShell, you get the...
Tone Poem
Disabling => CLRDLL: No CLR image loaded (i.e. mscorwks.dll)
Posted
over 1 year ago
by
Matt Neerincx [MSFT]
0
Comments
I’m debugging using the Debugging Tools For Windows (WinDbg). Debugging a native C++ process (no CLR loaded). I find with every debugger command I run, I get annoying amounts of debugger logging spew saying “ CLRDLL: No CLR image loaded (i.e. mscorwks...
Tone Poem
Calculating read_only_routing_url for AlwaysOn
Posted
over 1 year ago
by
Matt Neerincx [MSFT]
1
Comments
When setting up read-only routing for SQL Server AlwaysOn, you have to configure each availability replica with a read-only routing URL. The read-only routing URL is just a “pointer” to the replica and determines what the replica will report back...
Tone Poem
Tracking Handle Misuse Using Application Verifier and Windbg
Posted
over 4 years ago
by
Matt Neerincx [MSFT]
1
Comments
In a recent MSDN forum post Connection Pooling randomly throwing COM exceptions I uncovered an issue where some code inside the process was closing handles owned by our pooling code. This caused our pooling code to get into a bad state triggering...
Tone Poem
Nice day
Posted
over 4 years ago
by
Matt Neerincx [MSFT]
1
Comments
Yes.
Tone Poem
How to tell if binary is x86 or amd64?
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
First get dumpbin tool, ships with any Windows SDK. Run dumpbin /headers on the binary, then look at the magic number . This is an amd64 binary: c:\>dumpbin /headers c:\amd64\msvcr100.dll | findstr magic ...
Tone Poem
TrustedInstaller
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
6
Comments
Just a note to self, when typing in TrustedInstaller into security dialogs in Vista/Windows 2008, be sure to prefix with: NT SERVICE\TrustedInstaller C:\Windows>icacls c:\windows\winsxs c:\windows\winsxs ...
Tone Poem
What is mscorwks_ntdef.dll?
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
Ok, file this one under debugger trivia. If you are debugging a 32-bit CLR process from a 64-bit native (Windbg) debugger, you will notice: 0:040> lmvm mscorwks_ntdef start ...
Tone Poem
How To Read Data From AD LDS Into Java
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
Just helping out the next person, this code took me all day to cobble together. Key tricky part was how to connect to AD using an NT security account from Java. public static String ReadBindingInfoFromAd() throws NamingException { Hashtable env =...
Tone Poem
Chicken + Egg Problem With Hyper-V
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
When we neglect to port an old and crusty feature, one will always wave a few hands and say it's better in the end for the customer. But sometimes it becomes a sticking point. Today I am trying to setup VMs using Hyper-V on Windows 2008 and...
Tone Poem
SqlClient Timeouts Revealed
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
4
Comments
Just some notes from recent discussions internal and external of how timeouts work with SqlClient. First a classification of where timeouts can occur with SqlClient: When attempting to get a connection from the SqlClient connection pool When attempting...
Tone Poem
Why Can't I Log Into SQL Server?
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
Even though I've been working on the SQL Server protocol layer for the past 3 years I still have those days where I scratch my head because I cannot connect to my SQL Server. I have to agree it can be frustrating sometimes. Usually,...
Tone Poem
Sharing IE Links With Live Mesh
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
In case you have not heard the buzz, we have this new thing called Live Mesh that is pretty awesome. I found out about it whist trying to figure out how to share my Links (c:\users\...\Favorites\Links) folders across multiple machines. I talked...
Tone Poem
Finding Locals In CLR
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
0
Comments
Today I'm looking at a few Watson dumps trying to determine why SqlConnection is failing to connect to SQL Server and hanging. I see stack like below: 0:000> k 0021dc5c 79f40778 kernel32!SleepEx+0x62 0021dc90 7a0561d7 mscorwks!EESleepEx+0xa3 0021dc9c...
Tone Poem
Connection Pooling, ADO.NET, SPIDs
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
If you have pooling issues with ADO.NET (leaking connections, pool size exceeded, etc...) one way to slice and dice these with SQL 2005 is to use the SQL 2005 system DMVs. You can locate leaked connections like so: select session_id, ...
Tone Poem
Debugging .NET Code
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
Some days I wonder how customers debug .NET code. I've been debugging CLR for many years using a mix of techniques (VS.NET debugger and Windbg and logging of course). To be honest I hate debugging in VS.NET, the debugger just annoys me to no end...
Tone Poem
Writing CLR Stored Procedures
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
I'm trying to write some CLR sprocs to test out the TDS behavior of CLR sprocs versus T-SQL sprocs for TDS protocol documentation purposes. If you are not aware, we now have the TDS protocol spec on MSDN for your bedtime reading: http://msdn2...
Tone Poem
Why does Windows Always Want To Hide Things From Me?
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
2
Comments
Over the years, I find more and more of the Windows UI is designed to hide things like where the files are coming from, file extensions, etc... from me. Why is this? I want to see this stuff. For example, why can't I get the full path to a...
Tone Poem
High Performance Help In VS.NET 2008
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
Don't know about you, but some days I'm so busy I don't have time to wait while VS.NET spawns dexplore.exe over DCOM and makes bunch of SOAP calls to MSDN to then find the MSDN url to pop context sensitive help for a keyword (yes I debugged it). ...
Tone Poem
MacGruber Transactions
Posted
over 5 years ago
by
Matt Neerincx [MSFT]
1
Comments
Found an interesting bit of code on the newsgroups the other day .... what I like to call MacGruber transactions. If you are a fan of SNL you know the story. With System.Data.SqlClient.SqlConnection in .NET 2.0 we added a new connection string attribute...
Tone Poem
Easy Way To Debug SSL Issues With Web Services (Including SQL Server 2005 SOAP Endpoints)
Posted
over 7 years ago
by
Matt Neerincx [MSFT]
1
Comments
Here is a nice easy way to debug SSL issue with Windows 2003 that I discovered while working on SOAP projects. I think this works on XP SP2 as well have not tested this. 1. Create batch file c:\ssltrace.cmd with following contents: logman start...
Tone Poem
Debugging SQL Connectivity 101
Posted
over 7 years ago
by
Matt Neerincx [MSFT]
0
Comments
Note to self: Things to remember to check next time I can't connect to SQL... 1. Is SQL started? Yes. Is the instance I'm trying to connect to started? Yes. 2. Run netstat -aon on sql box, do I see something bound to 1433 or say my instance port...
Page 1 of 2 (26 items)
1
2