I am looking for an exhaustive list of registry entries that are only used by SQL Server 2005, and documentation on what they are used for.

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

I honestly don't think such documentation exists. Microsoft is not in the habit of documenting every little piece of the registry that their applications use because it would be a huge waste of time. If they actually provide any documentation for registry entries, they'll only document the parts that are supposed to be user configurable to begin with.

That said...if you really want this information, the best way to get it is probably going to be creating it yourself.

  • Get yourself a registry tool that can do snapshots and diff them.
  • Create snapshot #1
  • Install SQL Server
  • Create snapshot #2
  • Analyze the differences to see what it uses for basic installation
  • Modify some settings with the GUI
  • Create snapshot #3
  • Analyze the differences to see what your GUI changes correspond to in the registry

Rinse and repeat.

link|improve this answer
Has someone already done this, and made the results public? – blueberryfields Oct 8 '09 at 20:04
I don't know, but it is highly unlikely. – Ryan Oct 9 '09 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.