Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
Use a tDBRow and write the truncate statement in that.
Change your tJava to a tJavaFlex and join it using a "row" to the tRestClient. Keep the code the same. Your problem is being caused by the fact that the first subjob is running completely before your tRestClient is running. By joining the flows, you can get the tRestClient to run for every iteration.
It worked, with the tLogRow. As you can see in the images of two channels. But in the oracle while inserting i am getting only one channel data that is CQ74QNGG5 channel. Last image is of oracle data. I am not able to get the reason, why it is.
You are not inserting to Oracle in the screenshots that I have seen. When is this happening? Also, would you be able to add your images to the main body of the post. The "Photos" button allows you to do that. It can be quite difficult to work with images that need to be downloaded and viewed in a separate window.
Okay, I will do that. Actually I was using truncate table with reuse storage in Action on table, that's why i think on second iteration it will truncate the records and then insert the latest one.
By Removing the truncate table option to default, i am able to insert records. But i can manage both, iteration process and when i run again it should truncate data and load again in DB.
You are correct. When you have an iterate link in your flow, all components following that Iterate link are restarted for every iteration. As your DB component was restarted for every link, it will have truncated everything that was there prior to the restart
Agreed, but with this, when i run my job again the data got appended again. So is there any other way, i can truncate the table without effecting my iteration logic.
Truncate it at the beginning of the Job. The first step of the Job should be the truncation step, then everything else will follow
How to truncate the job at the beginning, should i need to write some custom code or sql query while i am fetching the data.
Below is the image how i am fetching the data from oracle
Use a tDBRow and write the truncate statement in that.