This content has been marked as final.
Show 3 replies
-
Re: Chart Interface Filters
BakerD Nov 29, 2013 8:45 AM (in response to BakerD)I opened up the DB Manager on the server and the below works giving me a list.
SELECT TOP 10 * FROM [dbo].[Interfaces]
where Caption Like '%MPLS%'
I see in my original post I was using *, but when I changed to % I still get the same error, but it seems to work in DB manager.
-
Re: Chart Interface Filters
LadaVarga Nov 29, 2013 8:56 AM (in response to BakerD)Could you please try:
Interfaces.Caption Like '*MPLS*'
-
Re: Chart Interface Filters
BakerD Nov 29, 2013 9:07 AM (in response to LadaVarga)That works as well as using FullName Like '*MPLS*' by itself.
Thanks
-