Here is the query which can be used for getting the list of Indexed views in a Database.
USE <DatabaseName>GOSELECT * FROM sys.objectsWHERE type='V'and OBJECTPROPERTY(object_id,'IsIndexed')=1