Article ID: 934067 - Last Review: April 19, 2007 - Revision: 1.1

How to enable tracing in Visual Studio 2005 Team Edition for Database Professionals

System TipThis article applies to a different operating system than the one you are using. Article content that may not be relevant to you is disabled.
Important This article contains information about how to modify the registry. Make sure that you back up the registry before you modify it. Make sure that you know how to restore the registry if a problem occurs. For more information about how to back up, restore, and modify the registry, click the following article number to view the article in the Microsoft Knowledge Base:
256986  (http://support.microsoft.com/kb/256986/ ) Description of the Microsoft Windows registry

On This Page

Expand all | Collapse all

INTRODUCTION

This article describes how to enable tracing in Microsoft Visual Studio 2005 Team Edition for Database Professionals.

MORE INFORMATION

To enable tracing in Visual Studio 2005 Team Edition for Database Professionals, you must enable the
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\DBPro\Tracing
registry key. To do this, follow these steps. Warning Serious problems might occur if you modify the registry incorrectly by using Registry Editor or by using another method. These problems might require that you reinstall the operating system. Microsoft cannot guarantee that these problems can be solved. Modify the registry at your own risk.
  1. Create a new .reg file that is named EnableTrace.reg.
  2. Add the following code to the file that you created in step 1.
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\DBPro\Tracing]
    "LogDir"="%USERPROFILE%\\Application Data\\Microsoft\\VisualStudio\\8.0\\DBPro\\Trace"
    "PrefixTime"=dword:00000001
    "PrefixPid"=dword:00000001
    "PrefixThreadId"=dword:00000001
    "TraceSwitch"=dword:00000003
    "TraceToLogFile"=dword:00000000
    "TraceToEventLog"=dword:00000000
    "TraceToDebugOutput"=dword:00000001
    "DisplayCallStack"=dword:00000000
    "UniqueLogFile"=dword:00000001
    "EventIdsToTrace"=dword:00007fff 
    
  3. Click Start, click Run, type regedit, and then click OK.
  4. On the File menu, click Import.
  5. Locate and then click the file that you created in step 1, and then click Open.
  6. In the Registry Editor dialog box, click OK.
The following explains some options that are associated with the
Tracing
registry key.

TraceSwitch

The TraceSwitch option is a trace filter that has the following settings.
Collapse this tableExpand this table
ValueDescription
0Off
1Error
2Warning
3Info
4Verbose

EventIdsToTrace

Visual Studio 2005 Team Edition for Database Professionals has multiple subareas. Each area of the product is assigned an Event ID in an exponential series. For example, the Event IDs may resemble the following:
1, 2, 4, 8

LogDir

The LogDir option is the location where the output from a trace will go. You can use environment variables in the LogDir string.

UniqueLogFile

If the UniqueLogFile option is set to true, every session of Visual Studio 2005 will create a new log file. This will only occur if the TraceToLogFile option set to true. The name of the log file is determined by the algorithm itself.

APPLIES TO
  • Microsoft Visual Studio 2005 Team Edition for Database Professionals
Keywords: 
kbcode kbinfo kbhowto KB934067