Hi,
I'm trying to use a query with user input, and the user input contains a special character '\' (for a domain authentication style, ie: Netapp\Roi).
When testing the query, it runs well. when I preview the whole workflow, it fails with the error:"Failed to resolve expression 'PS\Administrator'.
Here is the query code:
select
quota.quota_policy,
quota.cluster,
quota.qtree,
quota.quota_target,
quota.quota_volume,
quota.vserver_name,
quota.quota_type,
quota.disk_limit/1024,
quota.file_limit,
quota.soft_disk_limit/1024,
quota.soft_file_limit,
quota.threshold/1024,
quota.user_name
from
cm_storage_quota.quota_rule as quota
where
quota.quota_type='user'
AND quota.cluster='${clusterName}'
AND quota.vserver_name='${vserverName}'
AND quota.quota_target = '${userName}'
Any ideas?
Roi.