Re: How to determine groovy version

2023-05-13 Thread Matt Burgess
Jim, You can find out in Github [1] or from your installation you can do (substituting your NiFi version in the NAR name): jar -tvf lib/nifi-scripting-nar-1.16.3.nar | grep groovy Regards, Matt [1]

How to determine groovy version

2023-05-13 Thread James McMahon
I'm using a series of Groovy scripts running from NiFi v1.16.3 ExecuteScript. How can I determine which version of Groovy is baked into NiFi v1.16.3?

Re: ExecuteSQL not working

2023-05-13 Thread Juan Pablo Gardella
Instead of SELECT MAX(ORDEN) FROM demo_planta2.dbo.ORDEN_VENTA_CAB Use an alias in the projection column: SELECT MAX(ORDEN) foo FROM demo_planta2.dbo.ORDEN_VENTA_CAB Juan On Fri, May 12, 2023 at 8:46 PM scott wrote: > Hello Luis, Juan Pablo, > I think I'm having the same issue with