Sign in
Esoteric
The inside scoop on SQL / debugging you won't find anywhere else!
Blog - News
All postings are provided AS IS with no warranties, and confer no rights. Additionally, views expressed herein are my own and not those of my employer, Microsoft.
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.NET
AlwaysOn
Analysis Services
Aviation BI
Education
Excel
MSPFE
PowerShell
Production debugging
Reporting Services
ReportViewer
ScriptDOM
SQL
SQL Architecture
SQL General
SQL High Availability
SQL Performance
SQL Replication
SQLDOM
SSRS
T-SQL Anti-patterns
Upgrade
Upgrade Advisor
VS.NET
WinDbg
Who's viewing?
Visitor Log
Blog - Link List
Useful SQL Blogs
SQL CAT Blog
SQL Server Storage Engine team blog
Sunil Agarwal and others from the SE team
Slava Oaks's weblog
A must-read blog if you are interesting in SQLOS internals
QP team blog
Query Processor team's blog
CSS SQL Team
Bob Dorr, Bob Ward and the entire CSS SQL Escalation team. Highly recommended!
Craig Freedman
Nitty-gritty details of the optimizer, plans, parallelism etc. Probably the most detailed explanations on those topics anywhere on the Internet.
SQL Release Services
Keep an eye on this to be alerted of new CUs, SPs etc.
SQL Programmability
CSS SQL Replication Team
Paul Randal
SQL PFE Blog
Robert Bruckner (SSRS)
David Lean (SQL Spatial)
SQL Server CSS Team India
Nacho's SQL Blog
SQL PFE Israel
Check out their Service Pack / CU list!
SQL Tools
RML Utilities (x86)
RML Utilities (x64)
SQL Nexus
PAL
SQL Server 2005 Performance Dashboard Reports
SQLRAP Scoping Tool v1.2
SQL Perf Stats Script
SQL Best Practices Toolbox (DMV Scripts)
Team web pages
Premier Field Engineering (India)
Microsoft CSS Jobs
Microsoft Premier Support
Microsoft SQL Server Risk Assessment Program
Data sheet for SQLRAP
Microsoft Premier Support Offerings
Debugging Links
Reiley Yang's blog
DumpAnalysis.org
CTS Platforms EE blog
OSR Online (home of the NT Insider)
Ken 'Skywing' Johnson
Home of the Advanced Windows Debugging book
Mark Russinovich's blog
Alex Ionescu
VC++ team blog
MSDN Channel 9 'Going Deep' shows
BI (SSAS, MDX, SSRS, SSIS)
Karan Gulati's blog
Chris Webb
Jeffrey Wang's blog
Stacia Misner
Valentino Vranken
Archive
Archives
May 2013
(2)
April 2013
(5)
March 2013
(4)
February 2013
(2)
January 2013
(1)
December 2012
(2)
November 2012
(2)
October 2012
(6)
September 2012
(10)
July 2012
(1)
May 2012
(3)
March 2012
(3)
November 2011
(2)
April 2011
(2)
February 2011
(3)
December 2010
(1)
September 2010
(2)
August 2010
(1)
June 2010
(3)
May 2010
(5)
February 2010
(1)
January 2010
(1)
December 2009
(3)
October 2009
(1)
August 2009
(1)
July 2009
(2)
June 2009
(1)
May 2009
(1)
April 2009
(1)
January 2009
(2)
December 2008
(7)
November 2008
(2)
August 2008
(3)
April 2008
(1)
December 2007
(1)
June 2007
(3)
August 2006
(1)
June 2006
(5)
MSDN Blogs
>
Esoteric
>
September, 2012
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Esoteric
Debugging managed code using VS.NET remote debugger
Posted
7 months ago
by
Arvind Shyamsundar
0
Comments
Visual Studio can be used to debug processes remotely, using the MSVSMON agent. This can be used for both native code and managed code. However, for successfully debugging managed code applications, symbol files have to be correctly loaded – and...
Esoteric
AlwaysOn Availability Group Forced Failover: Under the Hood
Posted
7 months ago
by
Arvind Shyamsundar
0
Comments
In this walkthrough I will take you through one aspect of FCI + AG configuration: forced failover. We will simulate failure and force failover. And in the process we will have some … Data Loss . Does that not sound horrible! Relax! You should not...
Esoteric
‘Proof of the pudding’: Global variables and PAGE_EXECUTE_WRITECOPY
Posted
7 months ago
by
Arvind Shyamsundar
0
Comments
Today I was teaching a debugging class to our customers. As a foundational element we normally review the virtual-to-physical address translation mechanism, at least to a basic level. In this class we decided to go a bit deeper and show the evidence ...
Esoteric
SQL collation and performance
Posted
8 months ago
by
Arvind Shyamsundar
1
Comments
Recently a colleague asked me if SQL collations have any impact on performance. We also hit upon another question: do local variables (DECLARE @somevar <datatype>) have a collation associated with them and if so how is it controlled? Let us take...
Esoteric
Hosting ReportServer catalog DBs on older version of SQL database engine
Posted
8 months ago
by
Arvind Shyamsundar
0
Comments
A FAQ we get is whether it is supported to have the ReportServer and ReportServerTempDB (catalog databases used in SSRS) on an older version of SQL Server (as compared to the version used on SSRS.) Here is the summary answer along with the reference links...
Esoteric
AlwaysOn Availability Groups Connectivity Cheat Sheet
Posted
8 months ago
by
Arvind Shyamsundar
4
Comments
Today we were discussing the AlwaysOn connectivity options, and the various combinations therein of Readable Secondary setting and the connection strings became very complex. So I have summarized all the possible outcomes in the pivot tables below. ...
Esoteric
AlwaysOn Availability Groups Listener: connectivity details
Posted
8 months ago
by
Arvind Shyamsundar
2
Comments
Today in some discussions with my colleagues we were looking at the AlwaysOn Listener which allows SQL Server client applications to be abstracted from the details of the AlwaysOn Availability Group implementation. On the surface, The Listener essentially...
Esoteric
How to assign a static port to a SQL Server named instance - and avoid a common pitfall
Posted
8 months ago
by
Arvind Shyamsundar
2
Comments
While Books Online clearly mentions the steps to Configure a Server to Listen on a Specific TCP Port we still see people missing out on one small but important detail in these steps: they forget to delete the entry (0 or some random port) for dynamic...
Esoteric
Windows Performance Toolkit: Finding CPU consumer
Posted
8 months ago
by
Arvind Shyamsundar
0
Comments
A colleague of mine recently asked the question ‘I see CPU N is constantly pegged at 100%; is there any good way to determine which specific process is using that specific CPU?’ Well, he already figured that Task Manager or Process Explorer does not provide...
Esoteric
Error message: The target database ('xyz') is in an availability group and currently does not allow read only connections
Posted
8 months ago
by
Arvind Shyamsundar
0
Comments
Today while poking around the AlwaysOn Availability Groups feature I came across the above error when testing the read-only access routing configuration. That configuration allows connections with declared ReadOnly intent to be routed to one of the read...
Page 1 of 1 (10 items)
September, 2012