What registry entries does SQL 2005 rely on, and which information does it store in them?

1

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.

blueberryfields

Posted 2009-09-16T23:21:18.947

Reputation: 784

Answers

1

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.

Ryan Bolger

Posted 2009-09-16T23:21:18.947

Reputation: 3 351

Has someone already done this, and made the results public? – blueberryfields – 2009-10-08T20:04:49.963

I don't know, but it is highly unlikely. – Ryan Bolger – 2009-10-09T16:12:46.837