Tried SWQL Studio with various SELECT LIKE keyword combinations with no success.
Thanks in advance.
SELECT FullName
FROM Metadata.Entity
WHERE FullName LIKE '%alert%'
How can I avoid listing Inherited column names from the returned list of column names?
Thanks,
Reju Alex
Metadata.Property has an IsInherited property. You can use this to filter them out. Like this:
SELECT EntityName, Name, Type
FROM Metadata.Property
WHERE IsInherited=False