Re: Oracle Insert Data from one table to another table using Groovy

2016-07-28 Thread Dinko Srkoč
Result is probably being displayed as null because `forEach` method in fact returns `void`, which Groovy transforms into `null`, as it expects a method to actually return something. As for nothing being inserted, perhaps there is nothing to insert (every ID in A is also in B)? Cheers, Dinko On 2

Re: Oracle Insert Data from one table to another table using Groovy

2016-07-28 Thread GroovyBeginner
Thanks !! It worked -- View this message in context: http://groovy.329449.n5.nabble.com/Oracle-Insert-Data-from-one-table-to-another-table-using-Groovy-tp5734285p5734338.html Sent from the Groovy Dev mailing list archive at Nabble.com.