Hello everyone, I'm new in Splunk. My issue is to make an EXCEPT SQL query in SPL. Something like the following: index="trainning" sourcetype="userList"
| rex field=userId "\w(?<codeId>\w+)"
| WHERE NOT codeId IN [ search index="trainning" sourcetype="adminUserList"
| table adminId]
| table userId userName userProfile The problem it's that the subsearch doesn't return its result in appropriated format as ("adminid1", "adminid2", ..., "adminidN"). Thanks in advance for your answers and solutions. Sorry, I modified my question to take into account the real SPL query issue (I wasn't in front of my Pro PC last time)
... View more