Hi Srinivas,
I believe you are trying to create WFA filter and use the query to obtain all the volumes contained in a given vfiler. Correct?
While this query is right and works fine with an SQL client, WFA infrastructure needs to validate the returned attributes against all the natural keys of the selected dictionary item.
Do the following:
Create a filter with Dictionary Type : Volume : Storage
Use this query:
---------------------------
SELECT DISTINCT(volume.name) AS name, array.ip AS 'array.ip', volume.size_mb AS 'Total Size (MB)'
FROM Storage.volume,storage.vfiler, storage.array
WHERE volume.vfiler_id=vfiler.id
AND vfiler.array_id = array.id
AND vfiler.name='${Vfiler}'
---------------------------
I've also attached a filter with this query.
warm regards,
Abhishek
If this post resolved your issue, help others by selecting ACCEPT AS SOLUTION or adding a KUDO.