The way I normally do this is to use the built-in XML functions (if you're using SQL Server 2005 or later).
Check out this MSDN page: http://msdn.microsoft.com/en-us/library/ms178030
Here is an example which returns the number of sub nodes for the specific reg key SOFTWARE\Microsoft\Windows\BlaBla...
DECLARE @x xml
SET @x='<DynamicResults>
<RegQuery xmlns:xsi="http://www.w3.o....." xmlns:xsd="http://....." REGServer="localhost" REGHive="HKEY_LOCAL_MACHINE" REGSubKey="SOFTWARE\Microsoft\Windows\BlaBla">
<SubNode />
<SubNode />
</RegQuery>
<RegQuery xmlns:xsi="http://www.w3.o....." xmlns:xsd="http://....." REGServer="localhost" REGHive="HKEY_LOCAL_MACHINE" REGSubKey="SOFTWARE\Microsoft\Windows\BlaBla2" />
<RegQuery xmlns:xsi="http://www.w3.o....." xmlns:xsd="http://....." REGServer="localhost" REGHive="HKEY_LOCAL_MACHINE" REGSubKey="SOFTWARE\Microsoft\Windows\BlaBla3" />
</DynamicResults>'
SELECT @x.value('count(/DynamicResults/RegQuery[@REGSubKey="SOFTWARE\Microsoft\Windows\BlaBla"]/*)','INT')
GO
sql:variable(yourvariablename)– podiluska Aug 29 '12 at 8:36