This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Question on SWQL commands

Hi all. I have a basic question about how to extract text from a field in a query. Does SWQL support something similar to the MID command or SELECT SUBSTRING start posistion, length? I'm not a SQL person so forgive me if the lingo is incorrect.

I'm using NPM 10.4 and have connected to the server with the SDK 1.5. I'm using the SWQL Studio. Below is my query. Dont laugh, its my first one ever.emoticons_laugh.png

SELECT C.NODE.DNS,C.NODE.IP,C.NODE.NodeDescription,SerialNumber

FROM Orion.NodesCustomProperties C

WHERE C.NODE.DNS LIKE '%NSD%'

ORDER BY C.NODE.DNS

I'm trying to extract some text from NodeDescription without pulling all of it.

Thanks for any help.

J