I have a fairly simple query I've created that I now want to use in an air-gapped environment and has no access to SSMS or the SDK. As a consequence I am really struggling to convert it to a format that the Database Manager understands.
The query is:
SELECT nd.Client, ncp.NodeID, ncp.Name, ncp.Type, ncp.TypeName, ncp.TypeDescription, ncp.Caption, ncp.FullName, ncp.IfName, ncp.InterfaceName
FROM Orion.NPM.Interfaces AS ncp JOIN
Orion.NodesCustomProperties AS nd ON ncp.NodeID = nd.NodeID
And whilst I've found the equivalent tables in (I think) in the DB Mgr (Interfaces - and - NodesCustomProperties) I can't seem to covert the query code to something the DB understands.
Whilst I appreciate you fine folks will probably get me up and running with the relevant answer, longer term, is there anywhere I can go and read/watch a video/listen to a podcast/etc that will show me the correlations and the how to or gotchas in converting from one format to the other?
Secondly: JOINS
I think I have basic joins worked out - see above, but when I try to add data from a third table in I seem to screw it all up. Are there any real simple 101 type lessons on JOINS that are specifically aimed at SolarWinds rather than generic SQL?