The General SQL Adapter requires you to write a query and output the results of that query into the proper fields in vcops. I have pasted an example below which queries a SQL server database for Citrix. After the SELECT statement, you must map the fields of the target database into the RESOURCENAME and RESOURCEKINDs for vcops.
Definitely read the instructions posted on the ftp site
SELECT
'XenApp_Application_License' AS ,
'permenant_license_count' AS ,
SUM(.[perm_license_count]) AS ,
SUM(.[in_use_license_count]) AS ,
'overdraft_license_count' AS ,
'available_license_count' AS ,
SUM(.[perm_license_count]) - SUM(.[in_use_license_count]) AS
FROM
WHERE
SELECT
FROM
)
AND
.[product_family_name] NOT IN ('Startup')
GROUP BY