The following query will list all discovered databases, and show whether or not they are fully scanned
Note, the "Type" column refers to what iQuate calls an "Application". To find a list of valid database types in your environment you can use the following query:
SELECT DISTINCT Type FROM [history].[v_DiagnosticsApplicationList]
Not all the results from the above query will be databases, but any discovered database applications will be listed.
Query to list discovered databases
List Databases
SELECT [ProjectID] ,[TargetName] ,[IPAddressOrHostname] ,[FoundApplicationID] ,[Name] ,[Type] ,[Vendor] ,[ApplicationID] ,[Status] ,[DeviceID] ,[Reason] ,[scancount] ,[DeviceHostname] ,[TargetBinary] FROM [history].[v_DiagnosticsApplicationList] WHERE (Type = 'Oracle Database Server' or Type = 'SQL Server') AND ProjectID = 1