Thanks a lot
Anand Srikanthan, September 25, 2011 - 2:13 am UTC
Thanks a lot for your response.
I did consider your idea by truncating the table. But what if i would like to keep history of runs?
Lets say, i would like to see the list of jobs completed for a particuar day.
Could you please shed light on this?
Regards
Anand Srikanthan
September 25, 2011 - 11:52 am UTC
I didn't say truncate, I said delete - which would let you MOVE the data as well.
It seems pretty darn straightforward to solve this problem doesn't it?
You have a table "current_job"
You have a table "history_of_jobs"
You move the data from current_job into history_of_jobs and then delete from current_job.
Now you have your history, and you have a simple solution to your current problem.
Is it a Typo?
Rajeshwaran, Jeyabal, September 25, 2011 - 11:11 am UTC
If the table has a C record for Table1 - table1 is not done, you start at table2
If the table has a C record for Table1 - table1 is **done**, you start at table2
September 25, 2011 - 11:53 am UTC
correct, thanks