<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: not matching in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644887#M223323</link>
    <description>&lt;P&gt;If I have long values with lot of special character and quotation mark(")How the search string differs between value and separator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long errors may be :&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&lt;SPAN&gt;ART.117.4002] Adapter Runtime (Adapter Service): Unable to invoke adapter service cip.atsJob.connectors.cipdb.&lt;/SPAN&gt;&lt;SPAN&gt;jobCatalog:saveJobCatalog with connection cip.atsJob.connectors.cipdb:&lt;/SPAN&gt;&lt;SPAN&gt;atsJobDb.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ADA.1.316] Cannot execute the SQL statement "?= call SAVE_JOB_CATALOG( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)". "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(23000/1400) ORA-01400: cannot insert NULL into ("ATSJOB"."ATS_JOB_CATALOG"."&lt;/SPAN&gt;&lt;SPAN&gt;JOB_TITLE")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at "ATSJOB.SAVE_JOB_CATALOG", line 55&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at line 1 "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-01400: cannot insert NULL into ("ATSJOB"."ATS_JOB_CATALOG"."&lt;/SPAN&gt;&lt;SPAN&gt;JOB_TITLE")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at "ATSJOB.SAVE_JOB_CATALOG", line 55&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at line 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.&amp;nbsp;"Error in ATS_JOB_FEED.AVATURE_GLOBAL job processing either jobTitle or JobDescription value is null,chk ATS_JOB_CATALOG for job details using job code:%dynamic value%&amp;nbsp;and ATS code:AVATURE_GLOBAL&lt;BR /&gt;See CIP Framework Log for more details, Interface Code: ATS_JOB_FEED.AVATURE_GLOBAL”&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 29 May 2023 07:07:33 GMT</pubDate>
    <dc:creator>Naga1</dc:creator>
    <dc:date>2023-05-29T07:07:33Z</dc:date>
    <item>
      <title>If I have DataError field which has 10 different message text but I need to exclude 2 out 10 and 8 as stats result?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644867#M223312</link>
      <description>&lt;P&gt;If I have DataError field which has 10 different message text but I need to exclude two out 10 I need only 8 as stats result ?Please suggest any solution here?&lt;/P&gt;</description>
      <pubDate>Tue, 30 May 2023 03:40:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644867#M223312</guid>
      <dc:creator>Naga1</dc:creator>
      <dc:date>2023-05-30T03:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: not matching</title>
      <link>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644868#M223313</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/257210"&gt;@Naga1&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The are a number of methods.&lt;BR /&gt;&lt;BR /&gt;As you have not provided any example of the&amp;nbsp;&lt;SPAN&gt;DataError field values, I'll assume they are short and concise.&amp;nbsp; G&lt;/SPAN&gt;enerally, the simplest and most efficient way is do exclude them at base search time.&amp;nbsp; Something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...your search query... NOT DataError IN("value1 to exclude", "value1 to exclude")  ``` this will exclude the 2 DataError messages you want to ignore``` 
| stats count BY DataError&lt;/LI-CODE&gt;&lt;P&gt;Or, it can be just as quick to do the stats count on all values and then exclude the ones you do not want to see afterwards.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;...your search query... 
| stats count BY DataError
| search NOT DataError IN("value1 to exclude", "value1 to exclude")&lt;/LI-CODE&gt;&lt;P&gt;It really depends on the data.&lt;BR /&gt;&lt;BR /&gt;Anyway, hope that helps get you going.&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2023 03:59:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644868#M223313</guid>
      <dc:creator>yeahnah</dc:creator>
      <dc:date>2023-05-29T03:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: not matching</title>
      <link>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644887#M223323</link>
      <description>&lt;P&gt;If I have long values with lot of special character and quotation mark(")How the search string differs between value and separator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Long errors may be :&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.&amp;nbsp;&lt;SPAN&gt;ART.117.4002] Adapter Runtime (Adapter Service): Unable to invoke adapter service cip.atsJob.connectors.cipdb.&lt;/SPAN&gt;&lt;SPAN&gt;jobCatalog:saveJobCatalog with connection cip.atsJob.connectors.cipdb:&lt;/SPAN&gt;&lt;SPAN&gt;atsJobDb.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ADA.1.316] Cannot execute the SQL statement "?= call SAVE_JOB_CATALOG( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)". "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(23000/1400) ORA-01400: cannot insert NULL into ("ATSJOB"."ATS_JOB_CATALOG"."&lt;/SPAN&gt;&lt;SPAN&gt;JOB_TITLE")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at "ATSJOB.SAVE_JOB_CATALOG", line 55&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at line 1 "&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-01400: cannot insert NULL into ("ATSJOB"."ATS_JOB_CATALOG"."&lt;/SPAN&gt;&lt;SPAN&gt;JOB_TITLE")&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at "ATSJOB.SAVE_JOB_CATALOG", line 55&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-06512: at line 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.&amp;nbsp;"Error in ATS_JOB_FEED.AVATURE_GLOBAL job processing either jobTitle or JobDescription value is null,chk ATS_JOB_CATALOG for job details using job code:%dynamic value%&amp;nbsp;and ATS code:AVATURE_GLOBAL&lt;BR /&gt;See CIP Framework Log for more details, Interface Code: ATS_JOB_FEED.AVATURE_GLOBAL”&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 May 2023 07:07:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/If-I-have-DataError-field-which-has-10-different-message-text/m-p/644887#M223323</guid>
      <dc:creator>Naga1</dc:creator>
      <dc:date>2023-05-29T07:07:33Z</dc:date>
    </item>
  </channel>
</rss>

