Sign in
Riham Selim's Blog
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
3D printing
Azure
clr
crash
debug
debugging
hang
managed debugging
Performance
sos
SP1
SQL Azure
sxe
TF30059
TFS 2008
WAD
windbg
Archive
Archives
June 2013
(2)
February 2013
(1)
November 2012
(2)
March 2012
(5)
February 2012
(1)
January 2011
(2)
August 2008
(1)
February 2008
(1)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Riham Selim's Blog
Resolving CREATE DATABASE permission denied in database [db] when running Create Database [BKUP] as copy of [DB] in SQL Azure
Posted
6 days ago
by
Riham Selim
0
Comments
The easiest way to back up databases in SQL Azure is to run Create Database [BKUP] as copy of [DB] command, but this often fails with error CREATE DATABASE permission denied in database 'DB' What this error really means is that you do not have permissions...
Riham Selim's Blog
How to convert pretty much any 2D image to a 3D object in OpenSCAD format
Posted
11 days ago
by
Riham Selim
0
Comments
I have recently become quite obsessed with 3D design and printing, thanks to OpenSCAD that made designing 3D objects just too easy not to try, if you want to make 3D models from an image or SVG file, you can do it very easily - there are other ways to...
Riham Selim's Blog
My SOS cheat sheet
Posted
4 months ago
by
Riham Selim
0
Comments
Riham Selim Blog.dotx Riham Selim 6 40155 2013-02-07T21:12:00Z 2013-02-11T16:00:00Z 1 870 4964 Microsoft Corporation 41 11 5823 14.00 Clean Clean false false false false ...
Riham Selim's Blog
Performance Testing Cloud Hosted Applications
Posted
7 months ago
by
Riham Selim
3
Comments
Building while flying Performance testing in the cloud can be quite challenging, the best video I have seen so far was one that our test architect Dennis Bass used to show to people asking about what testing in the cloud is like (I am also borrowing...
Riham Selim's Blog
Windbg - Breaking on specific CLR exception
Posted
7 months ago
by
Riham Selim
0
Comments
I get this question quite frequently, "I know how to break on all CLR exceptions, but how do I break on a specific exception, e.g. I want to see only Sql Exceptions?" It is actually quite easy to do in WinDbg using the soe (StopOnException) command...
Riham Selim's Blog
Windbg QuickStart guide (Part 4 - Debugging unexpected program behavior)
Posted
over 1 year ago
by
Riham Selim
4
Comments
First Chance Exceptions Let’s assume I have written some really ugly code like what you see here: 1: int i = 0; 2: try 3: { 4: i = int.Parse(args[0]); 5: } 6: catch 7: { 8: Console.WriteLine("Invalid Argument");...
Riham Selim's Blog
Breaking on Module Load
Posted
over 1 year ago
by
Riham Selim
0
Comments
Let’s say we want to break the debugger when a specific dll is loaded, for example I want to enable some SOS commands and clr hasn’t been loaded yet, this is especially useful when you have an exception that happens too early in the program...
Riham Selim's Blog
Windbg QuickStart guide (Part 3 - Crashes)
Posted
over 1 year ago
by
Riham Selim
0
Comments
The approach you will take for debugging crashes is very similar between looking at the live process vs looking at a crash dump, there are some small differences that I will talk about in this post. The first question: What is wrong? If the...
Riham Selim's Blog
Error loading sos.dll
Posted
over 1 year ago
by
Riham Selim
1
Comments
Many times you get this error when you do .load sos 0:080> .load sos The call to LoadLibrary(sos) failed, Win32 error 0n2 "The system cannot find the file specified." Please check your debugger configuration and/or network access. You can...
Riham Selim's Blog
Windbg QuickStart guide (Part 2 - hangs)
Posted
over 1 year ago
by
Riham Selim
2
Comments
Riham Selim Riham Selim 4 19 2012-03-08T13:59:00Z 2012-03-08T14:08:00Z 3 876 4996 Microsoft Corporation 41 11 5861 14.00 In part1 we have discussed the steps you need to get ready to start debugging...
Riham Selim's Blog
Windbg QuickStart guide (Part 1)
Posted
over 1 year ago
by
Riham Selim
0
Comments
The purpose of this post is basically to give people a quick start guide to windbg, over the next few posts I will add more details on specific problems, so you can go directly to the steps to debug your specific problem, hope you find it helpful! ...
Riham Selim's Blog
Remotely enabling windows azure diagnostics
Posted
over 2 years ago
by
Riham Selim
0
Comments
I frequently need to Enable and configure collecting performance counters remotely in my windows azure deployment, There are a few tasks you are trying to accomplish 1- Get all roles you have for your deployment 2- Get the Diagnostics manager associated...
Riham Selim's Blog
Retrieving more than 1000 rows from windows azure storage
Posted
over 2 years ago
by
Riham Selim
4
Comments
I recently hit an issue with my code when trying to retrieve data from Windows Azure Diagnostics table, I noticed that I'm getting only 1000 rows every time even though I have not set any limit on the number of rows I want to retrieve, it turns out...
Riham Selim's Blog
Error TF30059: Fatal error while initializing web service from server after installing SP1
Posted
over 5 years ago
by
Riham Selim
1
Comments
If you are getting this error from the server right after installing SP1, you can open the event log and check for the crash report that has been created with the error details. If the error is similar to Exception: TypeInitializationException Message...
Riham Selim's Blog
A few VS IDE Tips to make your life easier
Posted
over 5 years ago
by
Riham Selim
0
Comments
This is a number of my favorite VS tips, let me know what you think Tip #1: Select Code Using Column Mode This is one of my favorites, if you are a copy paste person like me, you will find this very useful, Here is how is works, while selecting...
Page 1 of 1 (15 items)