Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a table from jira connection. In this table, I only need to extract data where the field value is timespent. I use where match but keeps getting error. Would appreciate expertise to resolve. Below is my script. Many thanks in advance.
You state that you're trying to filter on the value 'timespent' but in the script you have written 'timeestimate'.
You also say that you are using "match" but your script uses "exists". You could try where wildmatch(field, '*timeestimate*', '*timespent*').
I don't know what kind of connection your JIRA_PROD connector is, but it kind of loks like SQL. The with propertied and where exists statements are not compatible with sql, perhaps you should move that to your preceding load statement (the part above the select statement)?
same like @henrikalmen about confusion of field, otherwise this is how you can think writing?
You state that you're trying to filter on the value 'timespent' but in the script you have written 'timeestimate'.
You also say that you are using "match" but your script uses "exists". You could try where wildmatch(field, '*timeestimate*', '*timespent*').
I don't know what kind of connection your JIRA_PROD connector is, but it kind of loks like SQL. The with propertied and where exists statements are not compatible with sql, perhaps you should move that to your preceding load statement (the part above the select statement)?
Thanks a lot for your advice. Apology that I m new to the load editor.
same like @henrikalmen about confusion of field, otherwise this is how you can think writing?
Thanks a lot for the guidance. I can resolve my problem with both your expert knowledge.