Quantcast
Channel: Recent Edits
Viewing all articles
Browse latest Browse all 12198

Typo on WHERE condition

$
0
0
Thanks for the code but there seems to be a typo on the WHERE condition which will render an error after execution. Here is the code:SELECT registry_key, value_name, value_data FROM sys.dm_server_registry WHERE key_name LIKE N'%ControlSet%'; It should read:SELECT registry_key, value_name, value_data FROM sys.dm_server_registry WHERE registry_key LIKE N'%ControlSet%';I hope this helps out the next Nubie.

Viewing all articles
Browse latest Browse all 12198

Trending Articles